Components
Loading preview...
Avatars represent a user or a team. Stacked avatars represent a group of people
@shugar
npx shadcn@latest add https://21st.dev/r/shugar/avatar-1import { GitHubAvatar, GitLabAvatar, BitbucketAvatar } from "@/components/ui/avatar-1";
export default function GitDemo() {
return (
<div className="flex flex-col gap-2 w-3/4">
<GitHubAvatar size={32} username="rauchg" src="https://avatars.githubusercontent.com/rauchg?s=64" />
<GitLabAvatar size={32} username="leerob" src="https://vercel.com/api/www/avatar?u=leerob&s=64" />
<BitbucketAvatar size={32} username="evilrabbit" src="https://vercel.com/api/www/avatar?u=evilrabbit&s=64" />
</div>
);
}