Renders a customizable AI robot SVG icon as a React functional component. ## Key Components - **`AiRobotIconProps`** — Interface accepting optional `className` (string) and `color` (string) props - **`AiRobotIcon`** — Deprecated React FC rendering a 200×200 SVG robot icon with configurable stroke color > ⚠️ **Deprecated:** Use icons from `icons-v2-generated` instead. ## Usage Example ```typescript import { AiRobotIcon } from './ai-robot-icon' // Default pink color // Custom color and class ``` ## Props | Prop | Type | Default | Description | |------|------|---------|-------------| | `className` | `string` | `''` | CSS class applied to the `` element | | `color` | `string` | `#f357bb` | Stroke color of the robot icon paths |