Compact participant stacks for teams, assignees, and reviewers.
AvatarGroup stacks Avatar children and summarizes overflow with a neutral count.
Use for visible collaborators without taking over the layout.
<AvatarGroup max={3} total={5}>
<Avatar><AvatarFallback>FD</AvatarFallback></Avatar>
<Avatar><AvatarFallback>UI</AvatarFallback></Avatar>
<Avatar><AvatarFallback>DS</AvatarFallback></Avatar>
<Avatar><AvatarFallback>QA</AvatarFallback></Avatar>
</AvatarGroup>import { Avatar, AvatarFallback, AvatarGroup } from "@froggdesign/enter-ui-react";The overflow count can represent hidden children or a known server total.
AvatarGroup does not invent labels for people. Provide meaningful labels or image alt text on each Avatar child when identity matters.
max controls how many children are visible.total can represent a server-side participant count.className.Every exported component accepts className when it renders an element. EnterUI styles use .eui-* classes and --eui-* variables mapped from FroggDesign theme tokens.