Files
marka/playground/src/lib/icons/MinusCircleIcon.svelte
Max Richter ae5cd8481a wip
2025-09-26 12:42:06 +02:00

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>