Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

Blue - v0.0.59

Compare
Choose a tag to compare
@ItsJonQ ItsJonQ released this 24 Nov 19:51
· 3011 commits to main since this release

Adds AvatarGrid and StatusDot components

screen recording 2017-11-23 at 03 44 pm

This update adds a new AvatarGrid component. It's similar to
AvatarStack and AvatarList, in that it renders an array of Avatars.
However the presentation for the avatars is different. Like AvatarList,
the new AvatarGrid component provides animations.

Example

<AvatarGrid>
  <Avatar />
  <Avatar />
  <Avatar />
</AvatarGrid>

Eventually, we'll want to update the AvatarStack and AvatarList
components to follow the same children prop convention, instead
of passing in Avatars via an avatar prop.

This update also adds a new StatusDot component, which is now
built into Avatar, and can be enabled by passing in the appropriate
status prop.

Example

<Avatar status='offline' />

Resolves: #121