'use client' import * as React from 'react' import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle } from '@admin/components/ui/dialog' import { InputGroup, InputGroupAddon } from '@admin/components/ui/input-group' import { cn } from '@admin/utils/shared/cn' import { Command as CommandPrimitive } from 'cmdk' import { CheckIcon, SearchIcon } from 'lucide-react' function Command({ className, ...props }: React.ComponentProps) { return ( ) } function CommandDialog({ title = 'Command Palette', description = 'Search for a command to run...', children, className, showCloseButton = false, ...props }: Omit, 'children'> & { title?: string description?: string className?: string showCloseButton?: boolean children: React.ReactNode }) { return ( {title} {description} {children} ) } function CommandInput({ className, ...props }: React.ComponentProps) { return (
) } function CommandList({ className, ...props }: React.ComponentProps) { return ( ) } function CommandEmpty({ className, ...props }: React.ComponentProps) { return ( ) } function CommandGroup({ className, ...props }: React.ComponentProps) { return ( ) } function CommandSeparator({ className, ...props }: React.ComponentProps) { return ( ) } function CommandItem({ className, children, ...props }: React.ComponentProps) { return ( {children} ) } function CommandShortcut({ className, ...props }: React.ComponentProps<'span'>) { return ( ) } export { Command, CommandDialog, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem, CommandShortcut, CommandSeparator }