A deprecated SVG icon component rendering a group of users symbol, intended to be replaced by icons from the `icons-v2-generated` package.
## Key Components
### `UsersGroupIcon`
A React functional component that renders a 24×24 SVG users group icon.
**Props (`UsersGroupIconProps`):**
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `className` | `string` | `''` | CSS class for custom styling |
| `size` | `number` | `24` | Width and height in pixels |
| `color` | `string` | `'white'` | SVG fill color |
> ⚠️ **Deprecated** — Use icons from `icons-v2-generated` instead.
## Usage Example
```typescript
import { UsersGroupIcon } from './users-group-icon'
// Basic usage
// Custom size and color
```
## Migration
Replace usages with the equivalent icon from the new icon library:
```typescript
// ❌ Deprecated
import { UsersGroupIcon } from './users-group-icon'
// ✅ Preferred
import { UsersGroupIcon } from '@/components/icons-v2-generated'
```