30 lines
825 B
Svelte
30 lines
825 B
Svelte
<script lang="ts">
|
|
import ChevronRight from '@lucide/svelte/icons/chevron-right';
|
|
import { cn } from '$lib/utils.js';
|
|
import { DropdownMenu as DropdownMenuPrimitive } from 'bits-ui';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
inset,
|
|
children,
|
|
...restProps
|
|
}: DropdownMenuPrimitive.SubTriggerProps & {
|
|
inset?: boolean;
|
|
} = $props();
|
|
</script>
|
|
|
|
<DropdownMenuPrimitive.SubTrigger
|
|
bind:ref
|
|
data-slot="dropdown-menu-sub-trigger"
|
|
class={cn(
|
|
'focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground flex cursor-default items-center rounded-sm px-2 py-1.5 text-sm outline-hidden select-none',
|
|
inset && 'pl-8',
|
|
className
|
|
)}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
<ChevronRight class="ml-auto size-4" />
|
|
</DropdownMenuPrimitive.SubTrigger>
|