import { Command as CommandPrimitive } from 'cmdk' import * as React from 'react' import { SearchIcon } from '@/lib/icons' import { cn } from '@/lib/utils' function Command({ className, ...props }: React.ComponentProps) { return ( ) } interface CommandInputProps extends React.ComponentProps { /** Inline trailing slot, rendered on the right of the search row. */ right?: React.ReactNode } function CommandInput({ className, right, ...props }: CommandInputProps) { return (
{right}
) } 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 ( ) } function CommandShortcut({ className, ...props }: React.ComponentProps<'span'>) { return ( ) } export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut }