import { Stack, Avatar } from '@mui/material';
export default function ImageAvatars() {
return (
<Stack direction="row" spacing={2}>
<Avatar
alt="https://bilalahmed-dev.azeemlab.com/"
src="/static/images/avatar/1.jpg"
sx={{ width: 56, height: 56 }}
/>
</Stack>
);
}