A deprecated SVG icon component representing an "open source" symbol, rendered as a React functional component with configurable dimensions and color.
## Key Components
### `OpenSourceIconProps`
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `color` | `string` | `'white'` | Fill color for the SVG paths |
| `className` | `string` | `""` | Additional CSS classes |
| `width` | `number` | `19` | SVG width in pixels |
| `height` | `number` | `18` | SVG height in pixels |
### `OpenSourceIcon`
A React functional component that renders a 19×18 SVG icon. Marked as **deprecated** — use icons from `icons-v2-generated` instead.
## Usage Example
```typescript
import { OpenSourceIcon } from './open-source-icon';
// Basic usage
// Custom color and size
// With className for styling
```
> **⚠️ Deprecated:** This component is marked for removal. Migrate to the `icons-v2-generated` package for up-to-date icon assets.