Demo

Avatar Group

Represents a stack of avatars with overflow control.

Loading...

Usage

example-usage.tsx
<AvatarGroup
  avatars={avatars}
  max={4}
  renderAvatar={(avatar, index) => (
    <CustomAvatar
      key={avatar.id}
      name={avatar.name}
      image={avatar.image}
    />
  )}
/>