1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M7.762, 5.636l2.037, 3.529l-5.119, 2.956l-2.038, -3.529l5.12, -2.956Zm8.475, 0.001l5.121, 2.958l-2.037, 3.526l-5.12, -2.958l2.036, -3.526Z" style="fill: rgb(230, 230, 230);"/><path d="M19.321, 12.121l-5.119, -2.957l2.035, -3.527l5.122, 2.956l-2.038, 3.528Zm-14.641, 0l-2.038, -3.528l5.119, -2.957l2.037, 3.528l-5.118, 2.957Zm11.118, -8.127l-3.798, 6.577l-3.797, -6.578l-7.203, 4.158l3.239, 5.613l6.159, -3.558l0.906, 1.569l-4.403, 7.631l1.042, 0.6l4.056, -7.028l4.057, 7.029l1.044, -0.602l-4.406, -7.631l0.906, -1.57l6.16, 3.56l3.24, -5.614l-7.202, -4.156Z" style="fill: rgb(89, 89, 89);"/><path d="M7.382, 8.209c-0.371, -0.642 -1.189, -0.859 -1.83, -0.49c-0.641, 0.37 -0.861, 1.189 -0.492, 1.831c0.372, 0.639 1.191, 0.859 1.831, 0.489c0.641, -0.37 0.861, -1.188 0.491, -1.83Zm11.068, -0.49c-0.641, -0.369 -1.46, -0.151 -1.829, 0.49c-0.371, 0.642 -0.151, 1.46 0.489, 1.83c0.641, 0.37 1.46, 0.151 1.831, -0.489c0.37, -0.642 0.15, -1.461 -0.491, -1.831Z" style="fill: rgb(255, 0, 0);"/>`;
</script>
<Base {svgContent}/>
|