Renders the G2 crowd review platform logo as an inline SVG React component. ## Key Components ### `G2IconProps` | Prop | Type | Default | Description | |------|------|---------|-------------| | `width` | `number \| string` | `2500` | SVG width | | `height` | `number \| string` | `2500` | SVG height | | `className` | `string` | `''` | CSS class name | | `color` | `string` | `'#ff492c'` | Fill color for the G2 logo | ### `G2Icon` > ⚠️ **Deprecated** — Use icons from `icons-v2-generated` instead. A functional component that renders the G2 logo SVG with configurable dimensions and fill color. ## Usage Example ```typescript import { G2Icon } from './g2-icon'; // Basic usage // Custom size and color ```