1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M6.215, 4.768l0.932, -1.472l9.601, -0l5.341, 7.784l-0, 11.469l-20.182, 0l-0, -10.975l1.225, -1.936l-0, -8.187l3.083, 0l0, 3.317Zm14.573, 16.48l-0, -8.867l-7.242, 0l-0, 8.867l7.242, 0Zm-8.543, 0l0.004, -9.363l-4.522, -6.859l-4.519, 6.859l0, 9.363l1.744, 0l0, -8.489l5.549, 0l0, 8.489l1.744, 0Zm-3.044, 0l0.002, -7.19l-2.952, 0l0, 2.293c0.132, -0.058 0.276, -0.091 0.429, -0.091c0.595, 0 1.078, 0.482 1.078, 1.078c0, 0.596 -0.483, 1.078 -1.078, 1.078c-0.153, 0 -0.297, -0.033 -0.429, -0.091l0, 2.923l2.95, 0Zm7.496, -4.043l-2.227, 0l0, -3.674l2.227, 0l0, 3.674Zm3.169, 0l-2.227, 0l0, -3.674l2.227, 0l0, 3.674Z" style="fill: rgb(255, 0, 0);"/>`;
</script>
<Base {svgContent}/>
|