A React SVG icon component that renders a community hub symbol featuring interconnected people and connection nodes.
## Key Components
- **CommunityHubIcon**: Main React functional component that renders an SVG icon
- **CommunityHubIconProps**: TypeScript interface defining component props including optional className, width, and height
- **SVG Path Elements**: Two path elements creating the visual representation of community connections and user figures
## Usage Example
```typescript
import { CommunityHubIcon } from './community-hub-icon';
// Basic usage with default size (19x16)
// Custom styling and dimensions
// In a button or navigation element
```
The icon uses `currentColor` for the fill, making it easily themeable through CSS color properties. The component provides flexible sizing while maintaining the original 19:16 aspect ratio through the viewBox.