1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M8.823, 19.84c0.002, -1.752 1.422, -3.174 3.176, -3.174c1.754, -0 3.176, 1.42 3.176, 3.174c0, 1.754 -1.422, 3.176 -3.176, 3.178c-1.756, -0.002 -3.176, -1.424 -3.176, -3.178Zm5.313, -3.951l-4.306, 0l-0.959, -14.169l-0.047, -0.694l6.301, 0l-0.989, 14.863Z" style="fill: rgb(255, 0, 0);"/><path d="M10.124, 19.84c0.002, 1.035 0.84, 1.875 1.875, 1.877c1.035, -0.002 1.875, -0.842 1.877, -1.877c-0.002, -1.031 -0.842, -1.873 -1.877, -1.875c-1.035, 0.002 -1.873, 0.842 -1.875, 1.875Zm3.61, -17.514l-0.816, 12.264l-1.874, -0l-0.831, -12.264l3.521, -0Z" style="fill: rgb(230, 230, 230);"/>`;
</script>
<Base {svgContent}/>
|