"use client" import * as React from "react" import { Command as CommandPrimitive } from "cmdk" import { Search } from "lucide-react" import { Dialog, DialogContent, DialogTitle } from "@/components/ui/dialog" import { cn } from "@/lib/utils" import { VisuallyHidden } from "radix-ui" function Command({ className, ...props }: React.ComponentProps) { return ( ) } function CommandDialog({ title = "Command", children, ...props }: React.ComponentProps & { title?: string }) { return ( {title} {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 ( ) } export { Command, CommandDialog, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandSeparator, CommandItem, }