mirror of
https://github.com/khoaliber/dockhand.git
synced 2026-03-03 13:18:56 +00:00
29 lines
601 B
Svelte
29 lines
601 B
Svelte
<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(
|
|
"bg-popover text-popover-foreground flex h-full w-full flex-col overflow-hidden rounded-md",
|
|
className
|
|
)}
|
|
{...restProps}
|
|
/>
|