mirror of
https://github.com/open-webui/open-webui
synced 2025-01-09 04:22:00 +00:00
12 lines
410 B
Svelte
12 lines
410 B
Svelte
<script lang="ts">
|
|
export let className = 'size-4';
|
|
</script>
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" class={className}>
|
|
<path
|
|
fill-rule="evenodd"
|
|
d="M15 8A7 7 0 1 1 1 8a7 7 0 0 1 14 0Zm-5-2a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM8 9c-1.825 0-3.422.977-4.295 2.437A5.49 5.49 0 0 0 8 13.5a5.49 5.49 0 0 0 4.294-2.063A4.997 4.997 0 0 0 8 9Z"
|
|
clip-rule="evenodd"
|
|
/>
|
|
</svg>
|