Renders the OpenAI logo as an inline SVG icon with configurable size, color, and CSS class.
## Key Components
- **`OpenAiIconProps`** — Interface with optional `className`, `size` (default `24`), and `color` (default `'white'`) props
- **`OpenAiIcon`** — Deprecated functional component that renders the OpenAI SVG logo
> ⚠️ **Deprecated:** Use icons from `icons-v2-generated` instead.
## Usage Example
```typescript
import { OpenAiIcon } from './openai-icon'
// Basic usage
// Custom size and color
```