Renders a simple image SVG icon with a rounded rectangle frame, a circle representing a sun/highlight, and a diagonal path suggesting a landscape — accepting optional className and color props.
## Key Components
- **`ImageIconProps`** — Interface defining optional `className` and `color` props
- **`ImageIcon`** — ⚠️ Deprecated functional component; use `icons-v2-generated` instead
## Usage Example
```typescript
import { ImageIcon } from './image-icon';
// Default size and inherited color
// Custom size and explicit color
```
## Notes
> ⚠️ **Deprecated:** `ImageIcon` is marked for removal. Use the equivalent icon from `icons-v2-generated` for all new code.
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `className` | `string` | `"w-6 h-6"` | Tailwind/CSS classes for sizing |
| `color` | `string` | `currentColor` | Stroke and fill color override |