Renders the Google "G" logo as an inline SVG React component with the official four-color design.
## Key Components
- **`GoogleLogo`** — Deprecated SVG icon component accepting standard `className` and `SVGProps` passthrough props.
> ⚠️ **Deprecated:** Use icons from `icons-v2-generated` instead.
## Usage Example
```typescript
import { GoogleLogo } from './google-logo';
// Basic usage
// With custom sizing and class
```
## Props
| Prop | Type | Description |
|------|------|-------------|
| `className` | `string` | Optional CSS class for styling |
| `...props` | `React.SVGProps` | Any valid SVG element attribute |
The component renders at a fixed `24×24` viewport but can be resized via CSS. Colors follow the official Google brand palette: blue (`#4285F4`), green (`#34A853`), yellow (`#FBBC05`), and red (`#EB4335`).