mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-21 08:45:20 +00:00
24 lines
484 B
Svelte
24 lines
484 B
Svelte
|
|
<script lang="ts">
|
||
|
|
export let className = 'size-4';
|
||
|
|
export let strokeWidth = '1.5';
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<svg
|
||
|
|
stroke-width={strokeWidth}
|
||
|
|
stroke="currentColor"
|
||
|
|
class={className}
|
||
|
|
aria-hidden="true"
|
||
|
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
|
fill="none"
|
||
|
|
width="24"
|
||
|
|
height="24"
|
||
|
|
viewBox="0 0 22 22"
|
||
|
|
>
|
||
|
|
<path
|
||
|
|
stroke="currentColor"
|
||
|
|
stroke-linecap="round"
|
||
|
|
stroke-linejoin="round"
|
||
|
|
d="m4 12 8-8 8 8M6 10.5V19a1 1 0 0 0 1 1h3v-3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3h3a1 1 0 0 0 1-1v-8.5"
|
||
|
|
/>
|
||
|
|
</svg>
|