Answers for "rounded image mui"

0

rounded image mui

import { Stack, Avatar } from '@mui/material';

export default function ImageAvatars() {
  return (
    <Stack direction="row" spacing={2}>
      <Avatar
        alt="https://bilal-dev-portfolio.azeemlab.com/"
        src="/static/images/avatar/1.jpg"
        sx={{ width: 56, height: 56 }}
      />
    </Stack>
  );
}
Posted by: Guest on May-02-2022

Code answers related to "TypeScript"

Browse Popular Code Answers by Language