"use client"; import * as React from "react"; import { Command as CommandPrimitive } from "cmdk"; import { SearchIcon } from "lucide-react"; import { cn } from "@/lib/utils"; import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, } from "@/components/ui/dialog"; function Command({ className, ...props }) { return ( ); } function CommandDialog({ title = "Befehlsmenü", description = "Befehl auswählen…", children, className, showCloseButton = true, ...props }) { return ( {title} {description} {children} ); } function CommandInput({ className, ...props }) { return (
); } function CommandList({ className, ...props }) { return ( ); } function CommandEmpty({ ...props }) { return ( ); } function CommandGroup({ className, ...props }) { return ( ); } function CommandSeparator({ className, ...props }) { return ( ); } function CommandItem({ className, ...props }) { return ( ); } function CommandShortcut({ className, ...props }) { return ( ); } export { Command, CommandDialog, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem, CommandShortcut, CommandSeparator, };