# Select URL: /docs/ui/select A dropdown select component with composable sub-components. import { PreviewCode } from "@/components/docs/preview-code.server"; import { SelectSample, SelectDisabledItemsSample, SelectPlaceholderSample, SelectDisabledSample, SelectGroupsSample, SelectVariantsSample, SelectSizesSample, SelectScrollableSample, } from "@/components/docs/samples/select"; This is a **standalone component** that does not depend on the assistant-ui runtime. Use it anywhere in your application. Installation \[#installation] Usage \[#usage] ```tsx import { Select } from "@/components/assistant-ui/select"; const options = [ { value: "apple", label: "Apple" }, { value: "banana", label: "Banana" }, { value: "orange", label: "Orange" }, ]; export function FruitPicker() { const [value, setValue] = useState("apple"); return (