ComponentsSelectDocsApi ReferenceSelect a fruit Installation NpmManualNPM packages are currently unstable and may cause issues. Use it at your own risk.npmpnpmyarnbunnpm install @mijn-ui/react-select Example Usage select-example.tsximport { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectTrigger, SelectValue, } from "@mijn-ui/react-select" const SelectExample = () => { return ( <Select> <SelectTrigger className="w-[180px]"> <SelectValue placeholder="Select a fruit" /> </SelectTrigger> <SelectContent position="popper"> <SelectGroup> <SelectLabel>Fruits</SelectLabel> <SelectItem value="apple">Apple</SelectItem> <SelectItem value="banana">Banana</SelectItem> <SelectItem value="blueberry">Blueberry</SelectItem> <SelectItem value="grapes">Grapes</SelectItem> <SelectItem value="pineapple">Pineapple</SelectItem> </SelectGroup> </SelectContent> </Select> ) } export default SelectExampleEdit on GitHubPreviousScrollAreaNextSeparator