Components
Loading preview...
An easily stylable avatar component built with Base UI components.
npx shadcn@latest add https://21st.dev/r/sean0205/base-avatar-1import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/base-avatar';
export default function Component() {
return (
<Avatar>
<AvatarImage src="https://avatars.githubusercontent.com/u/124599?v=4" alt="@reui" />
<AvatarFallback>CH</AvatarFallback>
</Avatar>
);
}