1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M21.419, 4.058c0.874, -0 1.581, 0.707 1.581, 1.579l-0, 12.724c-0.002, 0.872 -0.707, 1.579 -1.581, 1.581l-18.838, -0c-0.872, -0.002 -1.579, -0.708 -1.581, -1.581l-0, -12.724c0.002, -0.872 0.707, -1.579 1.581, -1.579l18.838, -0Zm-0, 14.655c0.196, -0 0.353, -0.156 0.353, -0.352l-0, -9.019l-19.544, -0l-0, 9.019c-0, 0.194 0.159, 0.352 0.353, 0.352l18.838, -0Zm-0.307, -0.66l-4.03, 0l-0, -4.033l4.03, 0l-0, 4.033Zm-1.228, -2.805l-1.577, -0l0, 1.577l1.577, -0l0, -1.577Zm-6.105, -1.129l-10.248, -0l-0, -3.502l10.248, -0l-0, 3.502Zm-1.229, -2.275l-7.789, -0l0, 1.049l7.789, -0l0, -1.049Zm9.222, -5.401l-0, -0.806c-0, -0.194 -0.157, -0.352 -0.353, -0.352l-18.838, -0c-0.194, -0 -0.353, 0.16 -0.353, 0.352l-0, 0.806l19.544, -0Z" style="fill: rgb(0, 60, 150);"/>`;
</script>
<Base {svgContent}/>
|