Avatar

An image element with a fallback for representing the user.

CN
Code
import { Avatar, AvatarFallback, AvatarImage, } from "https://deno.land/x/testing_shadcn_ui_for_deno@0.1.2/components/avatar.tsx" export function AvatarDemo() { return ( <Avatar> <AvatarImage src="https://github.com/shadcn.png" alt="@shadcn" /> <AvatarFallback>CN</AvatarFallback> </Avatar> ) }