Spaces:
Running
Running
| <script lang="ts"> | |
| import { DropdownMenu as DropdownMenuPrimitive } from 'bits-ui'; | |
| import CaretRightIcon from 'phosphor-svelte/lib/CaretRight'; | |
| import { cn } from '$lib/utils.js'; | |
| 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" | |
| data-inset={inset} | |
| class={cn( | |
| "focus:bg-accent focus:text-accent-foreground data-open:bg-accent data-open:text-accent-foreground not-data-[variant=destructive]:focus:**:text-accent-foreground flex min-h-7 cursor-default items-center gap-2 rounded-md px-2 py-1 text-xs outline-hidden select-none data-inset:pl-7.5 data-[inset]:pl-8 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-3.5", | |
| className | |
| )} | |
| {...restProps} | |
| > | |
| {@render children?.()} | |
| <CaretRightIcon class="ml-auto" /> | |
| </DropdownMenuPrimitive.SubTrigger> | |