15 lines
289 B
Svelte
15 lines
289 B
Svelte
<script lang="ts">
|
|
let { class: className = '' } = $props();
|
|
</script>
|
|
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke-width="1.5"
|
|
stroke="currentColor"
|
|
class={className}
|
|
>
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M18 12H6" />
|
|
</svg>
|