1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M7.78, 21.773l4.57, -10.306l5.403, 5.997l4.019, -12.065l0, 16.374l-13.992, 0Zm-5.553, -3.18l3.769, 3.18l-3.769, 0l0, -3.18Zm0, -8.972l3.073, 0l0, 2.167l1.227, 0l0, -2.167l3.688, 0l0, -1.229l-3.688, 0l0, -0.94l3.688, 0l0, -1.229l-3.688, 0l0, -0.429l3.568, -3.568l11.441, 0l-4.28, 12.85l-5.261, -5.834l-5.158, 11.632l-4.61, -3.888l0, -7.365Zm3.073, -3.824l0, 0.426l-3.073, 0l0, -3.497l3.073, 3.071Zm0.613, -1.123l-2.449, -2.448l4.898, 0l-2.449, 2.448Zm-3.686, 2.778l3.072, 0l0, 0.94l-3.072, 0l0, -0.94Zm-1.228, 15.548l22.002, 0l0, -22l-22.002, 0l0, 22Z" style="fill: rgb(255, 140, 0);"/>`;
</script>
<Base {svgContent}/>
|