magic-ui
components
ui

avatar-circles

Overlapping circles of avatars.

flex
hover
text
View Docs

Source Code

Files
avatar-circles
1import { AvatarCircles } from "@/components/magicui/avatar-circles";
2 
3const avatars = [
4  {
5    imageUrl: "https://avatars.githubusercontent.com/u/16860528",
6    profileUrl: "https://github.com/dillionverma",
7  },
8  {
9    imageUrl: "https://avatars.githubusercontent.com/u/20110627",
10    profileUrl: "https://github.com/tomonarifeehan",
11  },
12  {
13    imageUrl: "https://avatars.githubusercontent.com/u/106103625",
14    profileUrl: "https://github.com/BankkRoll",
15  },
16  {
17    imageUrl: "https://avatars.githubusercontent.com/u/59228569",
18    profileUrl: "https://github.com/safethecode",
19  },
20  {
21    imageUrl: "https://avatars.githubusercontent.com/u/59442788",
22    profileUrl: "https://github.com/sanjay-mali",
23  },
24  {
25    imageUrl: "https://avatars.githubusercontent.com/u/89768406",
26    profileUrl: "https://github.com/itsarghyadas",
27  },
28];
29 
30export function AvatarCirclesDemo() {
31  return <AvatarCircles numPeople={99} avatarUrls={avatars} />;
32}