import { cn } from "@/lib/utils" import * as AvatarPrimitive from "@radix-ui/react-avatar" import { ComponentPropsWithoutRef, ComponentRef, forwardRef } from "react" const Avatar = forwardRef< ComponentRef, ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) Avatar.displayName = AvatarPrimitive.Root.displayName const AvatarImage = forwardRef< ComponentRef, ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) AvatarImage.displayName = AvatarPrimitive.Image.displayName const AvatarFallback = forwardRef< ComponentRef, ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) AvatarFallback.displayName = AvatarPrimitive.Fallback.displayName export { Avatar, AvatarImage, AvatarFallback }