Spaces:
Running
Running
| <script lang="ts"> | |
| import { cn } from '$lib/utils.js'; | |
| import { Command as CommandPrimitive } from 'bits-ui'; | |
| export type CommandRootApi = CommandPrimitive.Root; | |
| let { | |
| api = $bindable(null), | |
| ref = $bindable(null), | |
| value = $bindable(''), | |
| class: className, | |
| ...restProps | |
| }: CommandPrimitive.RootProps & { | |
| api?: CommandRootApi | null; | |
| } = $props(); | |
| </script> | |
| <CommandPrimitive.Root | |
| bind:this={api} | |
| bind:value | |
| bind:ref | |
| data-slot="command" | |
| class={cn( | |
| 'flex h-full w-full flex-col overflow-hidden rounded-md bg-popover text-popover-foreground', | |
| className | |
| )} | |
| {...restProps} | |
| /> | |