A deprecated SVG icon component that renders an info circle (ℹ️) symbol with configurable size and color.
## Key Components
### `InfoCircleIconProps`
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `className` | `string` | `""` | CSS class for the SVG element |
| `color` | `string` | `"currentColor"` | Stroke color |
| `size` | `number` | `24` | Sets both width and height |
| `width` | `number` | `24` | SVG width (overridden by `size`) |
| `height` | `number` | `24` | SVG height (overridden by `size`) |
### `InfoCircleIcon` ⚠️ Deprecated
Renders a 24×24 viewBox SVG info circle icon. `size` takes precedence over individual `width`/`height` props.
> **Deprecated:** Use icons from `icons-v2-generated` instead.
## Usage Example
```typescript
import { InfoCircleIcon } from './info-circle-icon';
// Basic usage
// Custom size and color
// Independent width/height
// Inherits text color via currentColor
```