A deprecated SVG icon component rendering a circular "about/info" (question mark) symbol. ## Key Components | Export | Type | Description | |--------|------|-------------| | `AboutIcon` | React Component | Renders a 24×24 SVG info/question mark icon | | `AboutIconProps` | Interface | Props for controlling icon dimensions, styling, and color | > **⚠️ Deprecated:** Use icons from `icons-v2-generated` instead. ## Props | Prop | Type | Default | Description | |------|------|---------|-------------| | `width` | `number` | `24` | SVG width in pixels | | `height` | `number` | `24` | SVG height in pixels | | `className` | `string` | `""` | CSS class for custom styling | | `color` | `string` | `"white"` | Fill color for the icon path | ## Usage Example ```typescript import { AboutIcon } from './about-icon'; // Default usage // Custom size and color ```