import { Command, CommandGroup, CommandItem, CommandList, } from '@/components/ui/command'; import { Input } from '@/components/ui/input'; export default function CommandDemo() { return ( <Command className='rounded-lg border shadow-md md:min-w-[450px]'> <Input /> <CommandList> <CommandGroup> <CommandItem> <span>Calendar</span> </CommandItem> <CommandItem> <span>Search Emoji</span> </CommandItem> <CommandItem> <span>Calculator</span> </CommandItem> </CommandGroup> </CommandList> </Command> ); }