Search
A search input component with built-in search icon and optional clear button.
Usage
The Search component provides a consistent search input experience with a built-in search icon and optional clear button functionality.
Search Props
Prop | Type | Default |
---|---|---|
size | "small" | "large" | large |
placeholder | string | - |
disabled | boolean | - |
showClearButton | boolean | - |
value | string | - |
onChange | (value: string) => void | - |
onClear | () => void | - |
className | string | - |
Examples
Size
The Search component comes in two sizes to fit different design contexts.
Clear Button
The Search component can include a clear button that appears when there is input value.
Accessibility
The Search component is built with accessibility in mind, following ARIA best practices:
- Container has
role="search"
to identify it as a search landmark - Input has
type="search"
for semantic HTML - Search icon is marked as decorative with
aria-hidden="true"
- Clear button has appropriate
aria-label
for screen readers - Keyboard navigation support for the clear button
- Input inherits
aria-label
from placeholder text
Example with accessibility features:
The component supports keyboard navigation:
- Tab to focus on the search input
- Tab again to focus on the clear button (when visible)
- Enter or Space to trigger the clear button