1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M12.915, 13.292c-1.104, 0.547 -3.44, 0.737 -4.55, 0.593c0.321, -0.156 0.845, -2.43 1.6, -2.805c0.583, -0.29 1.429, -0.053 1.747, -0.209c0.319, -0.159 0.64, -0.978 1.222, -1.267c0.755, -0.376 2.882, 0.578 3.202, 0.416c-0.555, 0.972 -2.118, 2.719 -3.221, 3.272m2.135, 4.292c3.052, -1.517 5.576, -5.631 6.818, -10.387c-2.203, 0.042 -7.134, -3.01 -8.737, -3.097c-0.672, -0.049 -1.428, -0.08 -2.184, 0.295c-0.654, 0.326 -1.012, 1.393 -1.616, 1.695c-0.602, 0.299 -1.67, -0.062 -2.326, 0.265c-0.755, 0.377 -1.185, 0.999 -1.551, 1.565c-0.895, 1.331 -1.436, 7.104 -2.799, 8.836c4.542, 1.877 9.344, 2.348 12.395, 0.828" style="fill: rgb(255, 0, 0);"/>`;
</script>
<Base {svgContent}/>
|