Filters large lists to selectable options based on the matching query.
import { Combobox } from "@/components/ui/combobox"; export default function CustomEmptyMessageDemo() { return ( <div className="w-3/4"> <Combobox placeholder="Search..." width={256}> <Combobox.Input /> <Combobox.List emptyMessage="Nothing to see here..." /> </Combobox> </div> ); }
Part of Geist — browse the full library on 21st.dev.