Components
Loading preview...
Filters large lists to selectable options based on the matching query.
@shugar
npx shadcn@latest add https://21st.dev/r/shugar/comboboximport { 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>
);
}