open-webui/src/lib/components/icons/XMark.svelte
Timothy Jaeryang Baek 38dfa6e6db refac
2025-06-27 15:30:00 +04:00

18 lines
455 B
Svelte

<script lang="ts">
export let className = 'w-5 h-5';
export let strokeWidth = '2';
</script>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
stroke-width={strokeWidth}
class={className}
>
<slot />
<path
d="M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z"
/>
</svg>