import type { SvgIconProps } from '@mui/material/SvgIcon'; import { memo } from 'react'; import SvgIcon from '@mui/material/SvgIcon'; // ---------------------------------------------------------------------- function AvatarShape({ sx, ...other }: SvgIconProps) { return ( ); } export default memo(AvatarShape);