1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M19.389, 21.776l-14.777, 0l0, -15.168l14.777, 0l0, 15.168Zm-7.389, -20.776l-8.611, 4.285l0, 17.715l17.222, 0l0, -17.715l-8.611, -4.285Z" style="fill: rgb(255, 0, 0);"/><path d="M16.978, 12.353l0, 1.726l-4.114, 0l0, 5.405l-1.725, 0l0, -5.405l-4.114, 0l0, -1.726l9.953, 0Zm0.001, -1.724l-9.954, 0l-0, -1.726l9.954, -0l-0, 1.726Z" style="fill: rgb(255, 0, 0);"/>`;
</script>
<Base {svgContent}/>
|