import React, { forwardRef } from 'react'; const AvatarGroup = (StyledAvatarGroup: any) => forwardRef(({ children, ...props }: any, ref?: any) => { return ( {[...children].flat(Infinity).reverse()} ); }); export default AvatarGroup;