1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M14.578, 7.789l-2.042, 0l0, 2.045l-1.072, 0l0, -2.045l-2.043, 0l0, -1.07l2.043, 0l0, -2.043l1.072, 0l0, 2.043l2.042, 0l0, 1.07Zm0, 12.201l-5.155, 0l0, -1.072l5.155, 0l0, 1.072Zm-0.77, -16.881l0, -2.109l-3.616, 0l0, 2.109l-4.755, 0l0, 19.891l13.125, 0l0, -19.891l-4.754, 0Z" style="fill: rgb(255, 0, 0);"/>`;
</script>
<Base {svgContent}/>
|