mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-13 21:05:19 +00:00
23 lines
549 B
Svelte
23 lines
549 B
Svelte
|
|
<script lang="ts">
|
||
|
|
export let className = 'size-4';
|
||
|
|
export let strokeWidth = '1.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
|
||
|
|
d="M3 20.4V3.6C3 3.26863 3.26863 3 3.6 3H20.4C20.7314 3 21 3.26863 21 3.6V20.4C21 20.7314 20.7314 21 20.4 21H3.6C3.26863 21 3 20.7314 3 20.4Z"
|
||
|
|
stroke-width="1.5"
|
||
|
|
></path><path
|
||
|
|
d="M7 12.5L10 15.5L17 8.5"
|
||
|
|
stroke-width="1.5"
|
||
|
|
stroke-linecap="round"
|
||
|
|
stroke-linejoin="round"
|
||
|
|
></path>
|
||
|
|
</svg>
|