You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
383 B
19 lines
383 B
<script> |
|
export let size = 24; // default size |
|
export let className = ""; |
|
</script> |
|
|
|
<svg |
|
xmlns="http://www.w3.org/2000/svg" |
|
width={size} |
|
height={size} |
|
fill="none" |
|
stroke="currentColor" |
|
stroke-width="2" |
|
stroke-linecap="round" |
|
stroke-linejoin="round" |
|
class={className} |
|
viewBox="0 0 24 24" |
|
> |
|
<polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2" /> |
|
</svg>
|
|
|