A flexible and theme-aware autocomplete dropdown component built on top of MUI's Autocomplete. Supports single and multiple selection, controlled/uncontrolled usage, custom labels, and enhanced UI behavior.
<Autocomplete options={[{ key: 'MALE', value: 'Male' }]} inputLabel="Gender" onChange={(val) => console.log(val)}/> Copy
<Autocomplete options={[{ key: 'MALE', value: 'Male' }]} inputLabel="Gender" onChange={(val) => console.log(val)}/>
Description
A flexible and theme-aware autocomplete dropdown component built on top of MUI's Autocomplete. Supports single and multiple selection, controlled/uncontrolled usage, custom labels, and enhanced UI behavior.
Example
Basic Usage