AutocompleteInput
File: ui/autocomplete-input.tsx
Category: ui
Props
| Name | Type | Required | Description |
|---|---|---|---|
value | string | Yes | - |
onChange | (value: string) => void | Yes | - |
suggestions | string[] | Yes | - |
minChars | number | No | - |
placeholder | string | No | - |
required | boolean | No | - |
className | string | No | - |
Usage
tsx
import AutocompleteInput from '@/components/ui/autocomplete-input';
<AutocompleteInput {...props} />