Components
Loading preview...
Enchanced shadcn/ui avatar
npx shadcn@latest add https://21st.dev/r/originui/avatarimport { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
function Component() {
return (
<Avatar className="rounded-lg">
<AvatarImage src="https://originui.com/avatar-80-07.jpg" alt="Kelly King" />
<AvatarFallback>KK</AvatarFallback>
</Avatar>
);
}
export { Component };