SVG icon component representing a community/group of people, used in the Flamingo/OpenFrame UI. Marked as deprecated in favor of the newer `icons-v2-generated` icon system.
## Key Components
### `CommunityIconProps`
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `color` | `string` | `'white'` | Fill color of the SVG paths |
| `className` | `string` | `""` | CSS class for styling |
| `width` | `number` | `24` | SVG width in pixels |
| `height` | `number` | `24` | SVG height in pixels |
### `CommunityIcon`
A functional React component rendering a 24×24 SVG icon depicting two people figures, suitable for community, users, or group-related UI elements.
> **⚠️ Deprecated:** Use icons from `icons-v2-generated` instead.
## Usage Example
```typescript
import { CommunityIcon } from './community-icon';
// Basic usage
// Custom color and size
// Preferred replacement (use instead)
import { CommunityIcon } from '@/components/icons-v2-generated';
```