"use client"; import * as DialogPrimitive from "@radix-ui/react-dialog"; import { Command as CommandPrimitive } from "cmdk"; import { Search } from "lucide-react"; import type * as React from "react"; import { cn } from "@/lib/utils"; function Command({ className, ...props }: React.ComponentProps) { return ( ); } function CommandDialog({ children, ...props }: React.ComponentProps & { children: React.ReactNode; }) { return ( {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 CommandItem({ className, ...props }: React.ComponentProps) { return ( ); } function CommandShortcut({ className, ...props }: React.ComponentProps<"span">) { return ( ); } function CommandSeparator({ className, ...props }: React.ComponentProps) { return ( ); } export { Command, CommandDialog, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem, CommandShortcut, CommandSeparator, };