1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M23.008, 12.02c-0, -3.054 -1.074, -5.655 -3.221, -7.801c-2.146, -2.146 -4.736, -3.22 -7.766, -3.22c-3.054, 0.001 -5.654, 1.075 -7.8, 3.22c-2.148, 2.146 -3.221, 4.747 -3.221, 7.801c-0, 3.03 1.073, 5.619 3.221, 7.766c2.146, 2.147 4.746, 3.219 7.8, 3.219c3.03, 0 5.62, -1.072 7.766, -3.219c2.147, -2.147 3.221, -4.736 3.221, -7.766" style="fill: rgb(0, 60, 150);"/>`;
</script>
<Base {svgContent}/>
|