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