Skip to content

UsersIcon

const UsersIcon: NamedExoticComponent<Omit<{ children: ReactNode; className?: string; color?: IconColor; decorative?: boolean; ref?: Ref<SVGSVGElement>; size?: IconSize; testId?: string; title?: string; }, "children">>

Defined in: src/components/Icons/UsersIcon.tsx:28

Users icon component for groups, teams, and multi-user contexts.

Two overlapping user silhouettes commonly used for team membership, shared resources, and group-level actions. Pairs with UserIcon for single-user contexts.

Example

// Basic usage
<UsersIcon />
// With custom size and color
<UsersIcon size="md" color="secondary" />
// In a team selector
<Button icon={<UsersIcon />}>Team</Button>