Files
gpx.studio/website/src/lib/components/ui/dropdown-menu/dropdown-menu-separator.svelte

17 lines
367 B
Svelte
Raw Normal View History

2024-04-08 17:12:39 +02:00
<script lang="ts">
import { DropdownMenu as DropdownMenuPrimitive } from "bits-ui";
import { cn } from "$lib/utils.js";
2025-06-08 16:32:41 +02:00
let {
ref = $bindable(null),
class: className,
...restProps
}: DropdownMenuPrimitive.SeparatorProps = $props();
2024-04-08 17:12:39 +02:00
</script>
<DropdownMenuPrimitive.Separator
2025-06-08 16:32:41 +02:00
bind:ref
class={cn("bg-muted -mx-1 my-1 h-px", className)}
{...restProps}
2024-04-08 17:12:39 +02:00
/>