1<script lang="ts">
2 import type { Separator as SeparatorPrimitive } from 'bits-ui';
3 import { Separator } from '$lib/components/ui/separator/index.js';
4 import { cn } from '$lib/components/ui/utils.js';
5
6 let {
7 ref = $bindable(null),
8 class: className,
9 ...restProps
10 }: SeparatorPrimitive.RootProps = $props();
11</script>
12
13<Separator
14 bind:ref
15 data-slot="select-separator"
16 class={cn('pointer-events-none -mx-1 my-1 h-px bg-border', className)}
17 {...restProps}
18/>