mirror of
https://github.com/open-webui/open-webui.git
synced 2026-09-20 00:11:27 +00:00
23 lines
623 B
Svelte
23 lines
623 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="M19 8C20.6569 8 22 6.65685 22 5C22 3.34315 20.6569 2 19 2C17.3431 2 16 3.34315 16 5C16 6.65685 17.3431 8 19 8Z"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
></path><path
|
|
d="M21 12V15C21 18.3137 18.3137 21 15 21H9C5.68629 21 3 18.3137 3 15V9C3 5.68629 5.68629 3 9 3H12"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
></path></svg
|
|
>
|