Files
shadcn-ui/apps/v4/examples/base/avatar-basic.tsx
shadcn 64b88b6cdb feat: refactor styles handling across v4 (#10176)
* feat: refactor styles handling across v4

* fix

* fix

* fix

* fix

* fix

* fix
2026-03-26 09:50:58 +04:00

19 lines
340 B
TypeScript

import {
Avatar,
AvatarFallback,
AvatarImage,
} from "@/styles/base-nova/ui/avatar"
export default function AvatarDemo() {
return (
<Avatar>
<AvatarImage
src="https://github.com/shadcn.png"
alt="@shadcn"
className="grayscale"
/>
<AvatarFallback>CN</AvatarFallback>
</Avatar>
)
}