first
This commit is contained in:
commit
0738070ce1
287 changed files with 10116 additions and 0 deletions
13
src/lib/components/ui/input-otp/input-otp-separator.svelte
Normal file
13
src/lib/components/ui/input-otp/input-otp-separator.svelte
Normal file
|
@ -0,0 +1,13 @@
|
|||
<script>
|
||||
import Dot from "lucide-svelte/icons/dot";
|
||||
|
||||
let { ref = $bindable(null), children, ...restProps } = $props();
|
||||
</script>
|
||||
|
||||
<div bind:this={ref} role="separator" {...restProps}>
|
||||
{#if children}
|
||||
{@render children?.()}
|
||||
{:else}
|
||||
<Dot />
|
||||
{/if}
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue