mirror of
https://github.com/open-webui/open-webui
synced 2025-01-10 04:47:42 +00:00
21 lines
542 B
Svelte
21 lines
542 B
Svelte
|
<script lang="ts">
|
||
|
export let className = 'w-4 h-4';
|
||
|
export let strokeWidth = '0';
|
||
|
</script>
|
||
|
|
||
|
<svg
|
||
|
aria-hidden="true"
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
fill="currentColor"
|
||
|
viewBox="0 0 24 24"
|
||
|
stroke-width={strokeWidth}
|
||
|
stroke="currentColor"
|
||
|
class={className}
|
||
|
>
|
||
|
<path
|
||
|
fill-rule="evenodd"
|
||
|
d="M12 5a7 7 0 0 0-7 7v1.17c.313-.11.65-.17 1-.17h2a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H6a3 3 0 0 1-3-3v-6a9 9 0 0 1 18 0v6a3 3 0 0 1-3 3h-2a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h2c.35 0 .687.06 1 .17V12a7 7 0 0 0-7-7Z"
|
||
|
clip-rule="evenodd"
|
||
|
/>
|
||
|
</svg>
|