Avatar Avatar Group
Avatar Avatar Group is a React and Tailwind CSS media component from Bund UI, licensed MIT. Copy it and paste it into your project.
Bund UI
MIT
media
What it is
Avatar Avatar Group is a React and Tailwind CSS media component from Bund UI, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
No packages beyond the project baseline
Licence
This component comes from Bund UI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Avatar Avatar Group
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
export default function AvatarGroup() {
return (
<div className="[&_*]:data-[slot=avatar]:ring-background flex -space-x-2 [&_*]:data-[slot=avatar]:ring-2">
<Avatar>
<AvatarImage src="https://www.tobybelhome.com/user.png" alt="@shadcn" />
<AvatarFallback>CN</AvatarFallback>
</Avatar>
<Avatar>
<AvatarImage src="https://github.com/shadcn.png" alt="@shadcn" />
<AvatarFallback>CN</AvatarFallback>
</Avatar>
<Avatar>
<AvatarImage
src="https://images.unsplash.com/photo-1654110455429-cf322b40a906?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTB8fGF2YXRhcnxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&q=60&w=300"
alt="@shadcn"
/>
<AvatarFallback>CN</AvatarFallback>
</Avatar>
</div>
);
}