A deprecated React SVG icon component rendering the Google Gemini logo with configurable size, color, and className props. ## Key Components ### `GoogleGeminiIconProps` | Prop | Type | Default | Description | |------|------|---------|-------------| | `className` | `string` | `''` | CSS class for the SVG element | | `size` | `number` | `24` | Width and height in pixels | | `color` | `string` | `'white'` | Fill color for the glow/blur layers | ### `GoogleGeminiIcon` The exported component renders a 16×16 viewBox SVG featuring: - A star-shaped mask path clipping the icon outline - Multiple Gaussian-blurred glow layers creating the characteristic Gemini shimmer effect - A linear gradient overlay (blue → purple) applied via mask ## Usage Example ```typescript import { GoogleGeminiIcon } from './google-gemini-icon' // Default usage // Custom size and color ``` > **⚠️ Deprecated:** This component is marked as deprecated. Use the equivalent icon from `icons-v2-generated` instead.