Include children in the AvatarProps
export interface AvatarProps extends ChakraAvatar.RootProps {
name?: string
src?: string
srcSet?: string
children: React.ReactNode; // <= Right here. It is not included
loading?: ImageProps['loading']
icon?: React.ReactElement
fallback?: React.ReactNode
}