SearchInput
Default
Props
| Prop | Type | Default | Notes |
|---|---|---|---|
| value | string | — | Bindable search text. |
| ariaLabel | string | — | Required accessible name. |
| placeholder | string | 'Search...' | Native placeholder. |
| size | 'sm' | 'md' | 'lg' | 'sm' | Input and icon scale. |
| wrapperClass | string | '' | Extra classes for the outer wrapper. |
| inputClass | string | built-in | Replaces the default input classes. |
| inputRef | HTMLInputElement | null | null | Bindable native input. |
| oninput | (event: Event) => void | — | Input callback. |
| onkeydown | (event: KeyboardEvent) => void | — | Keydown callback; Escape clears in this demo. |