1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M20.02, 23.003l-16.038, 0l0, -22.005l16.038, 0l0, 22.005Zm-1.301, -20.704l-13.436, 0l0, 19.403l13.436, 0l0, -19.403Zm-12.661, 11.539c0.002, -1.123 0.911, -2.034 2.036, -2.036c1.123, 0.002 2.034, 0.911 2.034, 2.036c-0, 1.125 -0.911, 2.034 -2.034, 2.036c-1.125, -0 -2.036, -0.911 -2.036, -2.036Zm1.3, -0c0.002, 0.407 0.331, 0.734 0.736, 0.736c0.403, -0.002 0.735, -0.331 0.735, -0.736c-0, -0.405 -0.332, -0.734 -0.735, -0.736c-0.405, 0.002 -0.734, 0.331 -0.736, 0.736Zm8.988, -4.194l-8.691, 0l0, -5.05l8.691, -0l0, 5.05Zm-1.301, -3.749l-6.09, 0l0, 2.448l6.09, 0l0, -2.448Z" style="fill: rgb(180, 80, 0);"/>`;
</script>
<Base {svgContent}/>
|