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

15 lines
353 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="M6 12H12M18 12H12M12 12V6M12 12V18" stroke-linecap="round" stroke-linejoin="round"
></path></svg
>