forked from MapComplete/MapComplete
30 lines
929 B
Svelte
30 lines
929 B
Svelte
<script>
|
|
export let color = "#000000"
|
|
</script>
|
|
|
|
<svg
|
|
{...$$restProps}
|
|
on:click
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
on:keydown
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="375px"
|
|
height="375px"
|
|
viewBox="0 0 375 375"
|
|
version="1.1"
|
|
>
|
|
<g id="surface1">
|
|
<path
|
|
style="fill: none !important;stroke-width:5.291667;stroke-linecap:round;stroke-linejoin:round;stroke:{color};stroke-opacity:1;stroke-miterlimit:4;"
|
|
d="M 14.287499 23.618748 L 4.143209 13.229167 L 14.287499 2.871556 "
|
|
transform="matrix(14.173228,0,0,14.173228,0.0000135166,0)"
|
|
/>
|
|
<path
|
|
style="fill: none !important;stroke-width:3.96875;stroke-linecap:round;stroke-linejoin:miter;stroke:{color};stroke-opacity:1;stroke-miterlimit:4;"
|
|
d="M 5.532271 13.229167 C 12.346946 13.21704 23.467714 13.190031 23.8125 13.200504 "
|
|
transform="matrix(14.173228,0,0,14.173228,0.0000135166,0)"
|
|
/>
|
|
</g>
|
|
</svg>
|