1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M8.486, 11.578c-2.277, -3.145 -6.723, -1.734 -6.723, 2.168c-0, 3.904 6.723, 7.88 6.723, 9.254c-0, -1.374 6.722, -5.35 6.722, -9.254c-0, -3.902 -4.445, -5.313 -6.722, -2.168Zm8.751, -9.24c-1.753, -2.42 -5.175, -1.335 -5.175, 1.668c0, 3.006 5.175, 6.066 5.175, 7.123c0, -1.057 5.174, -4.117 5.174, -7.123c0, -3.003 -3.422, -4.088 -5.174, -1.668Z" style="fill: rgb(255, 0, 0);"/>`;
</script>
<Base {svgContent}/>
|