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 (
<Button variant="outline" className="rounded-full p-0! pe-3!">
<Avatar>
<AvatarImage src="https://bundui-images.netlify.app/avatars/07.png" />
<AvatarFallback>CN</AvatarFallback>
</Avatar>
<span>Toby Belhome</span>
</Button>
);
}