A deprecated React SVG icon component rendering the GitHub logo mark.
## Key Components
- **`GitHubIconProps`** — Interface with optional `color` (default: `'white'`), `className` (default: `""`), `width` (default: `15`), and `height` (default: `14`) props
- **`GitHubIcon`** — Deprecated functional component rendering a GitHub Invertocat SVG path
> ⚠️ **Deprecated:** Use icons from `icons-v2-generated` instead.
## Usage Example
```typescript
import { GitHubIcon } from './github-icon';
// Default white icon
// Custom size and color
```