A deprecated SVG icon component that renders an external link symbol with a customizable appearance.
## Key Components
**`CustomExternalLinkIconProps`** — Interface defining optional props:
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `className` | `string` | — | CSS class for the SVG element |
| `fill` | `string` | `"#888888"` | Icon fill color |
| `width` | `number` | `21` | SVG width in pixels |
| `height` | `number` | `22` | SVG height in pixels |
**`CustomExternalLinkIcon`** — ⚠️ Deprecated SVG component. Use icons from `icons-v2-generated` instead.
## Usage Example
```typescript
import { CustomExternalLinkIcon } from './custom-external-link-icon';
// Default rendering
// Custom color and size
```
> ⚠️ **Deprecated:** This component is marked for removal. Migrate to the equivalent icon from `icons-v2-generated` for future-proof usage.