You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819
  1. import { Box } from '@mui/system';
  2. import Image from 'next/image';
  3. const ProductImage = ({ image }) => {
  4. return (
  5. <Box
  6. sx={{
  7. display: 'flex',
  8. width: { xs: '100%', md: '50%' },
  9. height: '100%',
  10. justifyContent: { xs: 'center' },
  11. }}
  12. >
  13. <Image src={image} alt="profile" width={500} height={500} />
  14. </Box>
  15. );
  16. };
  17. export default ProductImage;