import { Command as CommandPrimitive } from "cmdk"; import * as React from "react"; import { cn } from "@/lib/utils"; function Command({ className, ...props }: React.ComponentProps): React.JSX.Element { return ( ); } function CommandInput({ className, ...props }: React.ComponentProps): React.JSX.Element { return (
); } function CommandList({ className, ...props }: React.ComponentProps): React.JSX.Element { return ( ); } function CommandEmpty({ className, ...props }: React.ComponentProps): React.JSX.Element { return ( ); } function CommandGroup({ className, ...props }: React.ComponentProps): React.JSX.Element { return ( ); } function CommandItem({ className, ...props }: React.ComponentProps): React.JSX.Element { return ( ); } export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, };