# Combobox A form-ready, searchable select component that filters a list of options as the user types. It supports both controlled and uncontrolled usage. ```tsx demo import { Combobox } from "@tenstorrent/vesper/combobox"; const FRUITS = [ { label: "Apple", value: "apple" }, { label: "Banana", value: "banana" }, { label: "Cherry", value: "cherry" }, { label: "Grape", value: "grape" }, { label: "Mango", value: "mango" }, { label: "Orange", value: "orange" }, { label: "Peach", value: "peach" }, { label: "Pear", value: "pear" }, { label: "Pineapple", value: "pineapple" }, { label: "Strawberry", value: "strawberry" }, ]; export default function ComboboxDemo() { return ( ); } ``` > [!IMPORTANT] > > Always give a `Combobox` an accessible name by either [pairing it with a `