A React component that renders an SVG icon representing multiple users/people, commonly used for team, group, or user management interfaces. ## Key Components - **`UsersIconProps`** - Interface extending `React.SVGProps` with optional `color` prop - **`UsersIcon`** - React functional component that renders a scalable users icon ## Usage Example ```typescript import { UsersIcon } from './users-icon' // Basic usage with default props // Custom styling and color // With additional SVG properties console.log('Users clicked')} style={{ cursor: 'pointer' }} /> ``` The component uses a 24x24 viewBox and includes stroke-based paths depicting two user silhouettes. Default props include white color and `h-6 w-6` Tailwind classes for consistent sizing. All standard SVG props are supported through the spread operator, making it highly customizable for different UI contexts.