A deprecated React SVG icon component rendering the GetApp logo with customizable dimensions and multi-color theming support.
## Key Components
### `GetAppIconProps` Interface
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `width` | `number \| string` | `24` | SVG width |
| `height` | `number \| string` | `24` | SVG height |
| `className` | `string` | `''` | CSS class override |
| `firstColor` | `string` | `#009C9C` | Primary teal fill |
| `secondColor` | `string` | `#40E3E3` | Light cyan fill |
| `thirdColor` | `string` | `#1ABAB8` | Mid teal fill |
| `fourthColor` | `string` | `#87F0F0` | Pale cyan fill |
| `fifthColor` | `string` | `#17CFCF` | Bright teal fill |
| `sixthColor` | `string` | `#424A52` | Dark slate fill |
### `GetAppIcon` *(deprecated)*
Renders a six-path SVG composing the GetApp logo within a `10 260 170 90` viewBox.
> ⚠️ **Deprecated** — Use icons from `icons-v2-generated` instead.
## Usage Example
```typescript
import { GetAppIcon } from './getapp-icon';
// Default usage
// Custom size and color overrides
```