1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M22.973, 3.289l0, 15.526l-8.434, 0l0, 1.777l6.447, -0l0, 1.299l-17.985, 0l0, -1.299l6.446, -0l0, -1.777l-8.437, 0l0, -15.526l21.963, -0Zm-1.299, 14.228l0, -12.927l-19.365, -0l0, 12.927l19.365, -0Zm-1.111, -1.851l-17.139, -0l-0, -9.916l17.139, -0l0, 9.916Z" style="fill: rgb(0, 60, 150);"/>`;
</script>
<Base {svgContent}/>
|