1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M12.633, 1.796l-0, -0.146c-0, -0.36 -0.292, -0.65 -0.65, -0.65c-0.36, 0 -0.651, 0.29 -0.651, 0.65l-0, 15.351c-1.027, -0.475 -2.507, -0.435 -3.934, 0.232c-2.123, 0.988 -3.3, 2.957 -2.627, 4.395c0.67, 1.441 2.934, 1.804 5.055, 0.814c1.68, -0.782 2.748, -2.179 2.795, -3.441c0.002, -0.021 0.012, -12.229 0.012, -12.229c2.34, 0.367 4.129, 2.137 4.129, 4.594c-0, 1.153 -0.408, 2.202 -1.066, 3.047c2.227, -1.077 3.767, -3.351 3.767, -5.992c-0, -3.459 -3.368, -6.302 -6.83, -6.625" style="fill: rgb(255, 0, 0);"/>`;
</script>
<Base {svgContent}/>
|