Select
Install
Section titled “Install”npx stylesheet-ui add selectAlso installs bottom-sheet and list-item as dependencies.
import { useState } from "react";import { Select } from "@/components/ui/select";
function PlanPicker() { const [plan, setPlan] = useState("free"); return ( <Select value={plan} onValueChange={setPlan} options={[ { value: "free", label: "Free", description: "For personal projects" }, { value: "pro", label: "Pro", description: "For teams" }, { value: "ent", label: "Enterprise", disabled: true }, ]} /> );}