1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M21.773, 21.773l-19.547, -0l0, -7.813l5.698, -2.764l0, 3.355l6.923, -3.355l0, 3.357l6.926, -3.357l0, 10.577Zm-17.422, -19.546l1.447, 0l0, 8.635l-1.447, 0.702l0, -9.337Zm11.724, 10.366l0, -3.358l-6.925, 3.358l0, -3.356l-2.122, 1.029l-0.002, -9.266l-3.902, 0l0, 11.159l-2.124, 1.03l0, 9.811l22, 0l0, -13.763l-6.925, 3.356Z" style="fill: rgb(89, 89, 89);"/><path d="M13.46, 15.217l0, 2.919l-2.92, 0l0, -2.919l2.92, 0Zm6.924, -0.001l0, 2.92l-2.92, 0l0, -2.92l2.92, 0Zm-13.847, 0.001l-0, 2.918l-2.922, 0l-0, -2.918l2.922, 0Zm5.978, 1.974l-0.001, -1.033l-1.032, 0l0, 1.033l1.033, 0Zm6.924, -0.001l0, -1.032l-1.033, 0l0, 1.032l1.033, 0Zm-13.847, 0l0, -1.031l-1.033, 0l-0, 1.031l1.033, 0Z" style="fill: rgb(89, 89, 89);"/>`;
</script>
<Base {svgContent}/>
|