import { type AvatarProps, Avatar as MUIAvatar } from '@mui/material'; import type { ReactNode } from 'react'; import { useAvatarStyles } from './Avatar.styles'; interface Props extends AvatarProps { children: ReactNode; className?: string; compact?: boolean; } const Avatar = ({ compact = false, children, className, ...attr }: Props): JSX.Element => { const { classes, cx } = useAvatarStyles(); return ( {children} ); }; export default Avatar;