import * as AvatarPrimitive from '@radix-ui/react-avatar'; import * as React from 'react'; import { cn } from '@/common/helpers/cn'; function Avatar({ className, ...props }: React.ComponentProps) { return ( ); } function AvatarImage({ className, ...props }: React.ComponentProps) { return ; } function AvatarFallback({ className, ...props }: React.ComponentProps) { return ( ); } export { Avatar, AvatarFallback, AvatarImage };