import { SvgUse } from "@ivtui/base" import clsx from "clsx" import { Command as CommandPrimitive } from "cmdk" import type * as React from "react" import { Dialog } from "../../base/src/containment/dialog/Dialog" function Command({ className, ...props }: React.ComponentProps) { return ( ) } function CommandDialog({ title = "Command Palette", description = "Search for a command to run...", children, ...props }: React.ComponentProps & { title?: string description?: string }) { return (
{title} {description}
{children}
) } function CommandInput({ className, ...props }: React.ComponentProps) { return (
) } function CommandList({ className, ...props }: React.ComponentProps) { return ( ) } function CommandEmpty({ ...props }: React.ComponentProps) { return ( ) } function CommandGroup({ className, ...props }: React.ComponentProps) { return ( ) } function CommandSeparator({ className, ...props }: React.ComponentProps) { return ( ) } function CommandItem({ className, ...props }: React.ComponentProps) { return ( ) } function CommandShortcut({ className, ...props }: React.ComponentProps<"span">) { return ( ) } export { Command, CommandDialog, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem, CommandShortcut, CommandSeparator, }