1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M17.113, 21.142l-1.906, -1.646l3.097, -3.097l1.866, 1.683l-3.057, 3.06Zm-13.84, -1.883l4.792, -0l0, 2.514l-4.792, -0l0, -2.514Zm9.004, -16.73l1.227, -0l0, 2.356l2.664, 0.001l0, 1.226l-3.891, -0l0, -3.583Zm-1.691, 0.842c0, 0.466 -0.378, 0.843 -0.843, 0.843c-0.464, -0 -0.843, -0.377 -0.843, -0.843c0, -0.464 0.379, -0.842 0.843, -0.842c0.465, -0 0.843, 0.378 0.843, 0.842m-7.268, 1.514l2.663, -0l0, -2.356l1.229, -0l0, 3.584l-3.892, -0l0, -1.228Zm14.119, 9.08l0.002, -9.642l-1.756, -3.323l-11.883, -0l-1.753, 3.323l0, 18.677l7.245, -0l0, -12.935l0.903, -0l0, 6.724l6.981, 6.028l4.777, -4.779l-4.516, -4.073Z" style="fill: rgb(0, 60, 150);"/>`;
</script>
<Base {svgContent}/>
|