Dropdown selection with search and multi-select support.
import { Select } from "@/components/ui";<Select
options={[
{ value: "react", label: "React" },
{ value: "vue", label: "Vue" },
{ value: "angular", label: "Angular" },
]}
placeholder="Select framework"
/>Enable search filter
<Select searchable options={countries} placeholder="Select country"/>Allow selecting multiple options
<Select multiple options={tags} placeholder="Select tags"/>Configure your app with the features you need and download production-ready code.
Start Configuring