1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M16.762, 3.299l-9.59, -0l-0, 15.098l9.59, -0l-0, -15.098Zm-1.141, 16.397l-2.283, -0l-0, 1.752l2.283, -0l-0, -1.752Zm-2.887, -0l-1.535, -0l-0, 1.752l1.535, -0l-0, -1.752Zm-2.138, -0l-2.283, -0l-0, 1.752l2.283, -0l0, -1.752Zm-5.223, -16.995c0, -0.936 0.765, -1.701 1.701, -1.701l9.785, -0c0.936, -0 1.702, 0.765 1.702, 1.701l0, 18.598c0, 0.935 -0.766, 1.701 -1.702, 1.701l-9.785, -0c-0.936, -0 -1.701, -0.766 -1.701, -1.701l-0, -18.598Z" style="fill: rgb(89, 89, 89);"/>`;
</script>
<Base {svgContent}/>
|