A deprecated React SVG icon component rendering the Slack logo with four brand colors, supporting optional color injection and standard sizing props.
## Key Components
### `SlackIconProps` Interface
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `width` | `number \| string` | `24` | SVG width |
| `height` | `number \| string` | `24` | SVG height |
| `className` | `string` | `"text-current"` | CSS class for the SVG element |
| `injectedColor` | `string` | `undefined` | Overrides all four Slack brand colors with a single color |
### `SlackIcon` (Deprecated)
Renders a 24×24 viewBox SVG of the Slack logo. When `injectedColor` is provided, all four quadrant paths use that color; otherwise the standard Slack brand colors are applied:
- **Red** `#E01E5A` — bottom-left
- **Blue** `#36C5F0` — top-left
- **Green** `#2EB67D` — top-right
- **Yellow** `#ECB22E` — bottom-right
> ⚠️ **Deprecated:** Use icons from `icons-v2-generated` instead.
## Usage Example
```typescript
// Default Slack brand colors
// Single injected color (e.g., monochrome/grayscale)
// Custom sizing with Tailwind class
```