forked from wrenn/wrenn
Reviewed-on: wrenn/sandbox#1 Co-authored-by: pptx704 <rafeed@omukk.dev> Co-committed-by: pptx704 <rafeed@omukk.dev>
20 lines
418 B
Svelte
20 lines
418 B
Svelte
<script lang="ts">
|
|
let { size = 18, class: className = '' }: { size?: number; class?: string } = $props();
|
|
</script>
|
|
|
|
<svg
|
|
width={size}
|
|
height={size}
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
stroke-width="1.75"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
class={className}
|
|
aria-hidden="true"
|
|
>
|
|
<rect x="2" y="4" width="20" height="16" rx="3" />
|
|
<polyline points="22,4 12,13 2,4" />
|
|
</svg>
|