Components
Loading preview...
Here is Avatar component
@arihantcodes_1f7b8c4d
npx shadcn@latest add https://21st.dev/r/arihantcodes_1f7b8c4d/avatar-1import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar-1";
import { Button } from "@/components/ui/button";
export default function Component() {
return (
<div className="flex items-center gap-4">
<Avatar>
<AvatarFallback className="bg-indigo-600 text-white">TB</AvatarFallback>
</Avatar>
<Avatar>
<AvatarFallback className="bg-teal-600 text-white">LR</AvatarFallback>
</Avatar>
</div>
);
}