Renders a globe SVG icon as a React component with configurable stroke color and CSS class support.
## Key Components
- **`GlobeIconProps`** — Interface accepting optional `color` (stroke color, defaults to `'white'`) and `className` (CSS class string)
- **`GlobeIcon`** — ⚠️ **Deprecated.** Functional component returning a 24×24 SVG globe icon using stroke-based rendering
> **Deprecation Notice:** `GlobeIcon` is deprecated. Use the equivalent icon from `icons-v2-generated` instead.
## Usage Example
```typescript
// ❌ Deprecated usage
import { GlobeIcon } from './globe-icon';
// Basic usage with default white stroke
// Custom color and class
```
```typescript
// ✅ Preferred — use icons-v2-generated
import { GlobeIcon } from '@/components/icons-v2-generated';
```