/ frontend / src / app / components / ChatAvatar.jsx
ChatAvatar.jsx
 1  import { Avatar, Box, styled } from "@mui/material";
 2  
 3  const StyledAvatar = styled(Avatar)({
 4    height: 40,
 5    width: 40
 6  });
 7  
 8  export default function ChatAvatar({ src, status }) {
 9    return (
10      <Box position="relative">
11        <StyledAvatar src={src} />
12      </Box>
13    );
14  }