···11+---
22+title: AutocompleteInput
33+description: A text input with a dropdown list of suggestions that filters as you type.
44+---
55+66+import { PropDocs } from "../../../lib/PropDocs";
77+import { Example } from "../../../lib/Example";
88+import { Basic } from "../../../examples/autocomplete/basic";
99+1010+<Example src={Basic} />
1111+1212+## Installation
1313+1414+Run the following command to add the AutocompleteInput component to your project.
1515+1616+```bash
1717+pnpm hip install autocomplete
1818+```
1919+2020+The AutocompleteInput component requires the listbox and text-field components.
2121+2222+Install them if you have not already.
2323+2424+```bash
2525+pnpm hip install autocomplete listbox text-field
2626+```
2727+2828+## Props
2929+3030+This component is built using the [React Aria Autocomplete](https://react-spectrum.adobe.com/react-aria/Autocomplete.html).
3131+3232+<PropDocs components={["AutocompleteInput"]} />
3333+3434+## Related Components
3535+3636+- [ComboBox](/docs/components/form/combobox) - For selecting from a dropdown with search
3737+- [SearchField](/docs/components/form/search-field) - For search input with clear button
3838+- [TextField](/docs/components/form/text-field) - For general text input
3939+- [Select](/docs/components/form/select) - For dropdown selection without search
+1
apps/docs/src/docs/components/form/combobox.mdx
···6262## Related Components
63636464- [Select](/docs/components/select) - For dropdown selection without search
6565+- [AutocompleteInput](/docs/components/form/autocomplete) - For text input with suggestions
6566- [SearchField](/docs/components/search-field) - For search input with clear button
6667- [TextField](/docs/components/text-field) - For general text input
6768- [Label](/docs/components/label) - For form labels and descriptions
···4646## Related Components
47474848- [TextField](/docs/components/text-field) - For general text input
4949+- [AutocompleteInput](/docs/components/form/autocomplete) - For text input with suggestions
4950- [ComboBox](/docs/components/combobox) - For searchable dropdown selection
5051- [CommandMenu](/docs/components/command-menu) - For command palette with search
5152- [Label](/docs/components/label) - For form labels and descriptions