import * as React from "react"; import { Command as CommandPrimitive } from "cmdk"; import { SearchIcon } from "lucide-react"; import { cn } from "../utils/classname"; function CommandComponent({ className, ...props }: React.ComponentProps) { return ; } function CommandInput({ className, ...props }: React.ComponentProps) { return (
); } function CommandList({ ...props }: React.ComponentProps) { return ; } function CommandEmpty({ ...props }: React.ComponentProps) { return ; } function CommandItem({ ...props }: React.ComponentProps) { return ; } const Command = Object.assign(CommandComponent, { Input: CommandInput, List: CommandList, Empty: CommandEmpty, Item: CommandItem, }); export { Command };