1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M14.526, 19.84c0, 1.396 -1.133, 2.528 -2.527, 2.528c-1.395, -0 -2.525, -1.132 -2.525, -2.528c0, -1.392 1.13, -2.523 2.525, -2.523c1.394, -0 2.527, 1.131 2.527, 2.523Zm-5.006, -18.162l0.918, 13.563l3.09, -0l0.904, -13.563l-4.912, -0Z" style="fill: rgb(255, 0, 0);"/>`;
</script>
<Base {svgContent}/>
|