import * as React from 'react'; import { ComponentPropsWithoutRef, ElementRef, forwardRef } from 'react'; import * as AvatarPrimitive from '@radix-ui/react-avatar'; import { ctw } from '@/common/utils/ctw/ctw'; export const AvatarImage = forwardRef< ElementRef, ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )); AvatarImage.displayName = AvatarPrimitive.Image.displayName;