1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M10.494, 19.84c0, 1.396 -1.133, 2.528 -2.526, 2.528c-1.396, -0 -2.526, -1.132 -2.526, -2.528c0, -1.392 1.13, -2.523 2.526, -2.523c1.393, -0 2.526, 1.131 2.526, 2.523Zm3.012, -0c-0, 1.396 1.133, 2.528 2.527, 2.528c1.395, -0 2.526, -1.132 2.526, -2.528c-0, -1.392 -1.131, -2.523 -2.526, -2.523c-1.394, -0 -2.527, 1.131 -2.527, 2.523Zm-8.018, -18.163l0.918, 13.563l3.09, 0l0.904, -13.563l-4.912, 0Zm12.106, 13.563l-3.09, 0l-0.904, -13.563l4.912, 0l-0.918, 13.563Z" style="fill: rgb(255, 0, 0);"/>`;
</script>
<Base {svgContent}/>
|