Components
Loading preview...
Here is ListBox component
@jollyshopland
npx shadcn@latest add https://21st.dev/r/jollyshopland/list-boximport { ListBox } from "@/components/ui/list-box"
export default function ListBoxEmpty() {
return (
<ListBox
className={"max-h-[200px]"}
aria-label="Search results"
renderEmptyState={() => "No results found."}
>
{[]}
</ListBox>
)
}