Renders a Python logo SVG icon as a React functional component. **Deprecated** — use icons from `icons-v2-generated` instead.
## Key Components
- **`PythonIconProps`** — Interface defining optional `size`, `className`, and `color` props
- **`PythonIcon`** — Deprecated React FC rendering a scalable Python SVG icon
## Usage Example
```typescript
import { PythonIcon } from './python-icon'
// Default usage (16px, white)
// Custom size and color
```
## Props
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `size` | `number` | `16` | Width and height in pixels |
| `className` | `string` | `''` | CSS class name |
| `color` | `string` | `'white'` | SVG fill color |
> **⚠️ Deprecated:** This component is deprecated. Use the equivalent icon from `icons-v2-generated` instead.