1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M21.438, 15.344c-1.06, -0.717 -2.701, -0.78 -3.854, -0c-0.47, 0.318 -2.43, 1.647 -4.59, 3.11c-3.184, -3.309 -7.113, -7.377 -8.13, -8.365c-1.028, -1.002 -2.498, -1.354 -3.864, -1.184l-0, 14.095l22.001, -0l-0.001, -6.597c-0.779, -0.528 -1.352, -0.916 -1.563, -1.059Zm-12.241, -6.01c0.699, -2.157 3.011, -3.34 5.169, -2.642c2.155, 0.696 3.34, 3.011 2.638, 5.166c-0.696, 2.161 -3.011, 3.342 -5.164, 2.645c-2.16, -0.698 -3.342, -3.01 -2.643, -5.169Zm12.848, 3.473l-0.401, 1.237l-3.238, -1.049l0.401, -1.238l3.238, 1.05Zm-14.249, -4.608l-0.398, 1.234l-3.24, -1.045l0.398, -1.234l3.24, 1.045Zm13.786, -1.207l-3.034, 1.546l-0.59, -1.157l3.034, -1.547l0.59, 1.158Zm-10.535, -1.846l-1.16, 0.592l-1.549, -3.03l1.161, -0.593l1.548, 3.031Zm5.504, -3.096l-1.049, 3.239l-1.238, -0.401l1.049, -3.239l1.238, 0.401Z" style="fill: rgb(255, 0, 0);"/>`;
</script>
<Base {svgContent}/>
|