A React SVG icon component that renders the Google Gemini logo with its characteristic multi-color gradient star/sparkle shape. ## Key Components ### `GeminiLogoIconProps` Extends `SVGProps` (excluding `width`/`height`) with: | Prop | Type | Default | Description | |------|------|---------|-------------| | `className` | `string` | `""` | CSS class for styling | | `size` | `number` | `24` | Width and height in pixels | | `color` | `string` | `"currentColor"` | Base color (inherits from CSS) | ### `GeminiLogoIcon` Renders the Gemini logo as an inline SVG with layered color paths (yellow, red, green, blue) and Gaussian blur filters to produce the smooth gradient glow effect characteristic of the Gemini brand mark. ## Usage Example ```typescript import { GeminiLogoIcon } from "./gemini-logo-icon"; // Default size (24px) // Custom size // With Tailwind class // Inside a button ```