A deprecated SVG search icon React component with configurable size, color, and styling props.
## Key Components
### `SearchIconProps`
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `color` | `string` | `#888888` | Fill color for the SVG paths |
| `width` | `number` | `22` | Width in pixels |
| `height` | `number` | `22` | Height in pixels |
| `className` | `string` | `''` | Additional CSS classes |
### `SearchIcon`
Renders a 22×22 viewBox SVG magnifying glass icon. Marked as **deprecated** — use icons from `icons-v2-generated` instead.
## Usage Example
```typescript
import { SearchIcon } from './search-icon';
// Default usage
// Custom size and color
// With className
```
> ⚠️ **Deprecated:** This component is no longer recommended. Migrate to the `icons-v2-generated` package for updated icon support.