Avatar GroupAvatar group with hover-to-expand name reveal and overlap layoutavatargroupuserprofile PreviewCodeAliceBobCharlieDianaCopyimport { AvatarGroup } from "@/components/vritti/avatar-group"; const avatars = [ { imageUrl: "/basic-img.png", name: "Alice" }, { imageUrl: "/basic-img.png", name: "Bob" }, { imageUrl: "/basic-img.png", name: "Charlie" }, { imageUrl: "/basic-img.png", name: "Diana" }, ]; export function AvatarGroupExample() { return ( <div className="flex items-center justify-center p-8"> <AvatarGroup avatarUrls={avatars} /> </div> ); } Installation CLIManualpnpmnpmyarnbunpnpm dlx shadcn@latest add "https://vritti.thesatyajit.com/r/avatar-group"Copy