1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M17.532, 4.266l0, -3.266l-12.904, 3.104l-0.001, 18.896l14.746, 0l0, -18.734l-1.841, 0Zm0.626, 17.517l0, -16.3l-11.092, 0l0, 16.3l11.092, 0Zm-1.163, -10.599l-7.877, 0l-0, -1.217l7.877, 0l-0, 1.217Zm-0, -2.637l-7.877, 0l-0, -1.217l7.877, 0l-0, 1.217Zm-0.682, -4.281l0, -1.664l-7.704, 1.664l7.704, 0Z" style="fill: rgb(0, 0, 255);"/>`;
</script>
<Base {svgContent}/>
|