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";
export default function Component() {
return (
<Avatar>
<AvatarImage src="https://bundui-images.netlify.app/avatars/01.png" />
<AvatarFallback>CN</AvatarFallback>
</Avatar>
);
}