File size: 388 Bytes
b421d4f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | <script lang="ts">
export let size = 16;
</script>
<svg
width={size}
height={size}
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M4 8L8 4L12 8"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M8 4V12"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
/>
</svg>
|