open-webui/src/lib/components/icons/Union.svelte
Timothy Jaeryang Baek a68342d5a8 refac: input menu
2025-09-12 15:05:37 +04:00

22 lines
607 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="M9 22C12.866 22 16 18.866 16 15C16 11.134 12.866 8 9 8C5.13401 8 2 11.134 2 15C2 18.866 5.13401 22 9 22Z"
stroke-linecap="round"
stroke-linejoin="round"
></path><path
d="M15 16C18.866 16 22 12.866 22 9C22 5.13401 18.866 2 15 2C11.134 2 8 5.13401 8 9C8 12.866 11.134 16 15 16Z"
stroke-linecap="round"
stroke-linejoin="round"
></path></svg
>