1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M22.982, 21.765l-3.666, -0l-1.836, -5.135l-1.832, 5.135l-2.416, -0l-1.834, -5.135l-1.832, 5.135l-2.445, -0l-1.835, -5.135l-1.832, 5.135l-2.446, -0l3.057, -8.526l2.445, -0l1.833, 5.103l1.835, -5.103l2.445, -0l1.834, 5.103l1.802, -5.103l2.444, -0l2.203, 6.082l2.076, -0l0, 2.444Zm0, -10.971l-3.666, -0l-1.836, -5.134l-1.832, 5.134l-2.416, -0l-1.834, -5.134l-1.832, 5.134l-2.445, -0l-1.835, -5.134l-1.832, 5.134l-2.446, -0l3.057, -8.558l2.445, -0l1.833, 5.134l1.835, -5.134l2.445, -0l1.834, 5.134l1.802, -5.134l2.444, -0l2.203, 6.112l2.076, -0l0, 2.446Z" style="fill: rgb(0, 190, 60);"/>`;
</script>
<Base {svgContent}/>
|