Deprecated SVG icon component for Reddit, rendering the Reddit logo with configurable size, color variant, and CSS class support.
## Key Components
### `RedditIconProps`
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `width` | `number \| string` | `24` | SVG width |
| `height` | `number \| string` | `24` | SVG height |
| `className` | `string` | `"text-current"` | CSS class |
| `variant` | `'original' \| 'grayscale' \| 'white'` | `'grayscale'` | Color scheme |
### Color Variants
| Variant | Background Color |
|---------|-----------------|
| `original` | `#FF4500` (Reddit orange) |
| `grayscale` | `#888888` (medium gray) |
| `white` | `#FFFFFF` (white) |
### `RedditIcon` *(deprecated)*
Renders a 256×256 viewBox SVG of the Reddit logo (Snoo alien head) using a single filled path.
> ⚠️ **Deprecated:** Use icons from `icons-v2-generated` instead.
## Usage Example
```typescript
import { RedditIcon } from './reddit-icon'
// Default grayscale, 24×24
// Reddit brand orange, larger size
// White variant with custom class
```