mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-21 08:45:20 +00:00
19 lines
446 B
Svelte
19 lines
446 B
Svelte
|
|
<script lang="ts">
|
||
|
|
export let className = 'w-4 h-4';
|
||
|
|
export let strokeWidth = '1.5';
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<svg
|
||
|
|
class={className}
|
||
|
|
aria-hidden="true"
|
||
|
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
|
stroke-width={strokeWidth}
|
||
|
|
fill="none"
|
||
|
|
stroke="currentColor"
|
||
|
|
viewBox="0 0 24 24"
|
||
|
|
><path
|
||
|
|
d="M12 4C6 4 6 8 6 10C4.33333 10 1 11 1 15C1 19 4.33333 20 6 20H18C19.6667 20 23 19 23 15C23 11 19.6667 10 18 10C18 8 18 4 12 4Z"
|
||
|
|
stroke-linejoin="round"
|
||
|
|
></path></svg
|
||
|
|
>
|