1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M19.813, 5.059l-4.563, 4.564l-0.918, -0.919l4.563, -4.564l0.918, 0.919Zm-1.297, 13.849l-0.824, 0.951l-5.674, -5.197l-5.674, 5.197l-0.824, -0.951l6.498, -5.926l6.498, 5.926Zm-8.844, -10.204l-0.92, 0.919l-4.563, -4.564l0.919, -0.919l4.564, 4.564Z" style="fill: rgb(255, 0, 0);"/>`;
</script>
<Base {svgContent}/>
|