react-user-avatar
Version:
React component for a user avatar with fallback to colored initials
20 lines (16 loc) • 290 B
CSS
.UserAvatar {
display: inline-block;
color: white;
}
.UserAvatar--inner {
box-sizing: border-box;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.UserAvatar--light {
color: gray;
}
.UserAvatar--light .UserAvatar--inner {
border: 1px solid lightgray;
}