1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M18.756, 15.415l2.555, -0l0, 6.641l-2.555, -0l0, -6.641Zm-16.07, -0l2.553, -0l0, 6.641l-2.553, -0l0, -6.641Zm9.312, -6.194l3.701, 5.249l-7.402, 0l3.701, -5.249Zm-2.585, 7.678l0, 5.157l-2.651, 0l-0, -6.641l10.472, -0l0, 6.641l-2.65, 0l-0, -5.157l-5.171, 0Zm3.058, -8.751l0, -1.891l5.361, -2.417l-6.308, -2.84l0.001, 7.148l-9.783, 6.541l-0, 8.311l20.516, 0l-0, -8.312l-9.787, -6.54Z" style="fill: rgb(255, 0, 0);"/>`;
</script>
<Base {svgContent}/>
|