2025-06-14 18:31:20 +00:00
|
|
|
<script lang="ts">
|
|
|
|
|
export let className: string = 'w-5 h-5';
|
|
|
|
|
export let strokeWidth: string = '1.5';
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<svg
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
fill="none"
|
|
|
|
|
viewBox="0 0 24 24"
|
2025-07-02 09:29:03 +00:00
|
|
|
aria-hidden="true"
|
2025-06-14 18:31:20 +00:00
|
|
|
stroke-width={strokeWidth}
|
|
|
|
|
stroke="currentColor"
|
|
|
|
|
class={className}
|
|
|
|
|
>
|
|
|
|
|
<path
|
|
|
|
|
stroke-linecap="round"
|
|
|
|
|
stroke-linejoin="round"
|
|
|
|
|
d="M14.25 9.75 16.5 12l-2.25 2.25m-4.5 0L7.5 12l2.25-2.25M6 20.25h12A2.25 2.25 0 0 0 20.25 18V6A2.25 2.25 0 0 0 18 3.75H6A2.25 2.25 0 0 0 3.75 6v12A2.25 2.25 0 0 0 6 20.25Z"
|
|
|
|
|
/>
|
|
|
|
|
</svg>
|