mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-15 13:55:19 +00:00
21 lines
594 B
Svelte
21 lines
594 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="M2 21L17 21" stroke-linecap="round" stroke-linejoin="round"></path><path
|
|
d="M21 21L22 21"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
></path><path
|
|
d="M2 16.4V3.6C2 3.26863 2.26863 3 2.6 3H21.4C21.7314 3 22 3.26863 22 3.6V16.4C22 16.7314 21.7314 17 21.4 17H2.6C2.26863 17 2 16.7314 2 16.4Z"
|
|
></path></svg
|
|
>
|