1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M18.572, 17.787l-13.143, 0l0, -4.987l13.143, 0l0, 4.987Zm-1.301, -3.688l-10.542, 0l-0, 2.389l10.542, 0l0, -2.389Zm-3.484, -5.847l2.611, -2.039l2.614, 2.039l-0.803, 1.023l-1.811, -1.414l-1.808, 1.417l-0.803, -1.026Zm-6.183, -0.39l-1.813, 1.415l-0.802, -1.024l2.615, -2.039l2.612, 2.039l-0.8, 1.024l-1.812, -1.415Z" style="fill: rgb(255, 0, 255);"/>`;
</script>
<Base {svgContent}/>
|