1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M21.9, 1c0.605, 0 1.1, 0.492 1.1, 1.1l0, 19.8c0, 0.608 -0.495, 1.1 -1.1, 1.1l-19.801, -0c-0.607, -0 -1.099, -0.492 -1.099, -1.1l0, -19.8c0, -0.608 0.492, -1.1 1.099, -1.1l19.801, -0Zm-2.377, 19.5l-6.594, -17l-1.857, 0l-6.594, 17l2.375, 0l2.02, -5.172l6.257, 0l2.018, 5.172l2.375, 0Zm-9.777, -7.402l4.516, -0l-2.264, -5.822l-2.252, 5.822Z" style="fill: rgb(255, 0, 0);"/>`;
</script>
<Base {svgContent}/>
|