1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M20.599, 0.999l0, 22l-16.826, 0l0, -22l16.826, 0Zm-1.228, 20.771l0, -0.955l-14.37, 0l0, 0.955l14.37, 0Zm0, -2.182l0, -17.36l-12.531, 0l0, 17.36l12.531, 0Zm-1.096, -2.265l-8.031, 0l0, -1.228l8.031, 0l0, 1.228Zm0, -8.838l-8.031, 0l0, -1.229l8.031, 0l0, 1.229Zm0, -2.766l-8.031, 0l0, -1.228l8.031, 0l0, 1.228Z" style="fill: rgb(0, 60, 150);"/>`;
</script>
<Base {svgContent}/>
|