mirror of
https://github.com/open-webui/open-webui
synced 2024-11-08 17:49:57 +00:00
12 lines
398 B
Svelte
12 lines
398 B
Svelte
<script lang="ts">
|
|
export let className = 'w-4 h-4';
|
|
</script>
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class={className}>
|
|
<path
|
|
fill-rule="evenodd"
|
|
d="M15.75 4.5a3 3 0 1 1 .825 2.066l-8.421 4.679a3.002 3.002 0 0 1 0 1.51l8.421 4.679a3 3 0 1 1-.729 1.31l-8.421-4.678a3 3 0 1 1 0-4.132l8.421-4.679a3 3 0 0 1-.096-.755Z"
|
|
clip-rule="evenodd"
|
|
/>
|
|
</svg>
|