1
2
3
4
5
6
7
|
<script type="text/typescript">
import Base from "../../component/IconBase.svelte";
export const svgContent = `<path d="M13.667, 3.17c0.455, 4.676 0.508, 6.908 1.65, 9.254c1.144, 2.347 2.251, 3.678 2.251, 5.842c-0, 1.148 -0.561, 2.078 -1.253, 2.078c-1.171, -0 -1.953, -1.031 -2.841, -0.219c-0.377, 0.528 -0.992, 0.875 -1.69, 0.875c-0.698, -0 -1.312, -0.347 -1.689, -0.875c-0.889, -0.812 -1.67, 0.219 -2.842, 0.219c-0.692, -0 -1.253, -0.93 -1.253, -2.078c0, -2.164 1.107, -3.495 2.25, -5.842c1.144, -2.346 1.196, -4.578 1.652, -9.254" style="fill: none; stroke:rgb(255, 140, 0); stroke-width: 1.3px;"/>`;
</script>
<Base {svgContent}/>
|