'use client' import { forwardRef, ElementRef, ComponentPropsWithoutRef } from 'react' import * as AvatarPrimitive from '@radix-ui/react-avatar' import { twMerge } from 'tailwind-merge' const Avatar = forwardRef< ElementRef, ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) Avatar.displayName = AvatarPrimitive.Root.displayName const AvatarImage = forwardRef< ElementRef, ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) AvatarImage.displayName = AvatarPrimitive.Image.displayName const AvatarFallback = forwardRef< ElementRef, ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )) AvatarFallback.displayName = AvatarPrimitive.Fallback.displayName export { Avatar, AvatarImage, AvatarFallback }