Function AvatarGroup
Source pub fn AvatarGroup(props: AvatarGroupProps) -> Element
Expand description
AvatarGroup component for displaying multiple avatars
§Example
ⓘrsx! {
AvatarGroup { max: Some(3),
Avatar { src: Some("user1.jpg".to_string()) }
Avatar { src: Some("user2.jpg".to_string()) }
Avatar { src: Some("user3.jpg".to_string()) }
}
}