A React SVG icon component rendering the Google Gemini logo with a multi-colored gradient star/sparkle design. ## Key Components - **`GoogleGeminiLogoIconProps`** — Interface extending `SVGProps` (excluding `width`/`height`) with: - `className` — optional CSS class string (default: `""`) - `size` — uniform width/height in pixels (default: `24`) - `color` — fill color token (default: `"currentColor"`) - **`GoogleGeminiLogoIcon`** — Functional component rendering a 24×24 viewBox SVG with layered masked paths, Gaussian blur filters, and a linear gradient to replicate the official Gemini branding colors (blue, red, green, yellow). ## Usage Example ```typescript import { GoogleGeminiLogoIcon } from "./google-gemini-logo-icon"; // Default usage // Custom size // With Tailwind class // Pass-through SVG props ```