'use client' import { Command as CommandPrimitive } from 'cmdk' import type * as React from 'react' import { cn } from '../utils' import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle } from './dialog' import { Icon } from './icon' const Command = ({ className, ...props }: React.ComponentProps) => { return ( ) } const CommandDialog = ({ title = 'Command Palette', description = 'Search for a command to run...', children, className, showCloseButton = true, ...props }: React.ComponentProps & { title?: string description?: string className?: string showCloseButton?: boolean }) => { return ( {title} {description} {children} ) } const CommandInput = ({ className, ...props }: React.ComponentProps) => { return (
) } const CommandList = ({ className, ...props }: React.ComponentProps) => { return ( ) } const CommandEmpty = ({ ...props }: React.ComponentProps) => { return ( ) } const CommandGroup = ({ className, ...props }: React.ComponentProps) => { return ( ) } const CommandSeparator = ({ className, ...props }: React.ComponentProps) => { return ( ) } const CommandItem = ({ className, ...props }: React.ComponentProps) => { return ( ) } const CommandShortcut = ({ className, ...props }: React.ComponentProps<'span'>) => { return ( ) } export { Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut }