mirror of
https://github.com/open-webui/open-webui
synced 2024-11-08 09:39:55 +00:00
12 lines
418 B
Svelte
12 lines
418 B
Svelte
|
<script lang="ts">
|
||
|
export let className = 'w-4 h-4';
|
||
|
</script>
|
||
|
|
||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class={className}>
|
||
|
<path
|
||
|
fill-rule="evenodd"
|
||
|
d="M7.5 6a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0ZM3.751 20.105a8.25 8.25 0 0 1 16.498 0 .75.75 0 0 1-.437.695A18.683 18.683 0 0 1 12 22.5c-2.786 0-5.433-.608-7.812-1.7a.75.75 0 0 1-.437-.695Z"
|
||
|
clip-rule="evenodd"
|
||
|
/>
|
||
|
</svg>
|