19 lines
395 B
Svelte
19 lines
395 B
Svelte
<script>
|
|
export let size = 20;
|
|
export let strokeWidth = 2;
|
|
</script>
|
|
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={size}
|
|
height={size}
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
stroke-width={strokeWidth}
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
>
|
|
<rect x="3" y="5" width="18" height="14" rx="2" ry="2" />
|
|
<polyline points="3,7 12,13 21,7" />
|
|
</svg>
|