1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M9.216, 15.591l-1.73, 1.646l-0.895, -0.943l2.104, -2.004l6.606, -0l2.108, 2.004l-0.896, 0.943l-1.731, -1.646l-5.566, -0Zm4.529, -7.894l0.916, -0.924l1.724, 1.714l1.739, -1.714l0.913, 0.924l-2.656, 2.621l-2.636, -2.621Zm-8.782, 0.001l0.912, -0.927l1.739, 1.716l1.724, -1.714l0.917, 0.923l-2.639, 2.62l-2.653, -2.618Z" style="fill: rgb(0, 190, 60);"/>`;
</script>
<Base {svgContent}/>
|