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