19 lines
434 B
Svelte
19 lines
434 B
Svelte
<script lang="ts">
|
|
import { DropdownMenu as DropdownMenuPrimitive } from "bits-ui";
|
|
import { cn } from "$lib/utils.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
inset,
|
|
...restProps
|
|
}: DropdownMenuPrimitive.GroupHeadingProps & {
|
|
inset?: boolean;
|
|
} = $props();
|
|
</script>
|
|
|
|
<DropdownMenuPrimitive.GroupHeading
|
|
bind:ref
|
|
class={cn("px-2 py-1.5 text-sm font-semibold", inset && "pl-8", className)}
|
|
{...restProps}
|
|
/>
|