import React, { createContext, forwardRef } from 'react'; export const AvatarContext = createContext({}); export const Avatar = (StyledAvatar: any) => forwardRef(({ children, ...props }: any, ref?: any) => { return ( {children} ); });