A deprecated SVG sun icon React component with configurable size and color props.
## Key Components
### `SunIconProps`
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `color` | `string` | `'white'` | Fill color for the SVG paths |
| `className` | `string` | `""` | CSS class name(s) for the SVG element |
| `width` | `number` | `24` | Width of the icon in pixels |
| `height` | `number` | `24` | Height of the icon in pixels |
### `SunIcon`
A functional component rendering a 24×24 viewBox SVG sun icon with a circular center and eight radiating points (rays). Accepts color, size, and className overrides.
> ⚠️ **Deprecated** — This component is deprecated. Use icons from `icons-v2-generated` instead.
## Usage Example
```typescript
import { SunIcon } from './sun-icon';
// Default usage (white, 24×24)
// Custom color and size
// With Tailwind class
```