1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M12.075, 10.391l9.159, 9.16l-1.684, 1.685l-9.16, -9.161l1.685, -1.684Zm-8.349, -4.982l1.683, -1.684l1.569, 1.569l-1.683, 1.684l-1.569, -1.569Zm19.273, 14.141l-10.042, -10.04l3.097, -3.098c0.417, -0.418 0.417, -1.102 0, -1.518l-3.579, -3.579c-0.417, -0.419 -1.101, -0.419 -1.517, -0l-3.098, 3.097l-2.451, -2.45l-3.448, 3.447l2.451, 2.451l-3.097, 3.097c-0.419, 0.417 -0.419, 1.101 0, 1.518l3.578, 3.579c0.418, 0.418 1.101, 0.418 1.518, -0l3.098, -3.097l10.041, 10.043l3.449, -3.45Z" style="fill: rgb(89, 89, 89);"/>`;
</script>
<Base {svgContent}/>
|