import * as React from "react" import { cn } from "../../lib/utils" const Avatar = React.forwardRef< HTMLSpanElement, React.HTMLAttributes & { size?: "sm" | "md" | "lg" } >(({ className, size = "md", ...props }, ref) => { const sizeClasses = { sm: "h-8 w-8", md: "h-10 w-10", lg: "h-12 w-12", }; return ( ) }) Avatar.displayName = "Avatar" const AvatarImage = React.forwardRef< HTMLImageElement, React.ImgHTMLAttributes >(({ className, ...props }, ref) => ( )) AvatarImage.displayName = "AvatarImage" const AvatarFallback = React.forwardRef< HTMLSpanElement, React.HTMLAttributes >(({ className, ...props }, ref) => ( )) AvatarFallback.displayName = "AvatarFallback" export { Avatar, AvatarImage, AvatarFallback }