mirror of
https://github.com/open-webui/open-webui
synced 2024-11-08 09:39:55 +00:00
20 lines
577 B
Svelte
20 lines
577 B
Svelte
|
<script lang="ts">
|
||
|
export let className = 'size-3.5';
|
||
|
export let strokeWidth = '2.5';
|
||
|
</script>
|
||
|
|
||
|
<svg
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
fill="none"
|
||
|
viewBox="0 0 24 24"
|
||
|
stroke-width={strokeWidth}
|
||
|
stroke="currentColor"
|
||
|
class={className}
|
||
|
>
|
||
|
<path
|
||
|
stroke-linecap="round"
|
||
|
stroke-linejoin="round"
|
||
|
d="m20.25 7.5-.625 10.632a2.25 2.25 0 0 1-2.247 2.118H6.622a2.25 2.25 0 0 1-2.247-2.118L3.75 7.5M10 11.25h4M3.375 7.5h17.25c.621 0 1.125-.504 1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125Z"
|
||
|
/>
|
||
|
</svg>
|