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