aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontend/src/components/ui/dropdown-menu/dropdown-menu-separator.svelte
blob: b6c579818f764125b7132bf90525d5a62506ff87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<script lang="ts">
	import { DropdownMenu as DropdownMenuPrimitive } from 'bits-ui'
	import { cn } from '$utils/ui'

	type $$Props = DropdownMenuPrimitive.SeparatorProps

	let className: $$Props['class'] = undefined
	export { className as class }
</script>

<DropdownMenuPrimitive.Separator class={cn('-mx-1 my-1 h-px bg-muted', className)} {...$$restProps} />