Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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