# Search

A styled text input component specifically designed for search queries, featuring a leading search icon. It is built upon the `TextInput` component.

## Props

*   All props from `TextInput` are supported (e.g., `placeholder`, `value`, `onChange`).
*   `className` (string, optional): Additional CSS classes for the container `div`.

## Usage

```tsx
import { Search } from './src/components';

<Search placeholder="Search documentation..." />
```
