1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M3.687, 18.641l7.062, -14.203l-0, 15.504l10.576, -0l-1.675, 2.621l-13.631, -0l-3.344, -2.621l6.774, -0l-0, -1.301l-5.762, -0Zm8.15, -17.203l-0, 17.203l7.063, -0l-7.063, -17.203Zm-2.388, 15.903l-0, -7.369l-3.664, 7.369l3.664, -0Z" style="fill: rgb(0, 0, 255);"/>`;
</script>
<Base {svgContent}/>
|