mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-22 22:05:24 +02:00
17 lines
414 B
Svelte
17 lines
414 B
Svelte
<script lang="ts">
|
|
import {DropdownMenu as DropdownMenuPrimitive} from "bits-ui";
|
|
import {cn} from "$lib/utils.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
...restProps
|
|
}: DropdownMenuPrimitive.SeparatorProps = $props();
|
|
</script>
|
|
|
|
<DropdownMenuPrimitive.Separator
|
|
{...restProps}
|
|
bind:ref
|
|
class={cn("bg-muted -mx-1 my-1 h-px", className)}
|
|
/>
|