import { forwardRef } from 'react'; import { LazyLoadImage } from 'react-lazy-load-image-component'; // @mui import { alpha, useTheme } from '@mui/material/styles'; import Box from '@mui/material/Box'; // import { getRatio } from './utils'; import { ImageProps } from './types'; // ---------------------------------------------------------------------- const Image = forwardRef( ( { ratio, overlay, disabledEffect = false, // alt, src, afterLoad, delayTime, threshold, beforeLoad, delayMethod, placeholder, wrapperProps, scrollPosition, effect = 'blur', visibleByDefault, wrapperClassName, useIntersectionObserver, sx, ...other }, ref ) => { const theme = useTheme(); const overlayStyles = !!overlay && { '&:before': { content: "''", top: 0, left: 0, width: 1, height: 1, zIndex: 1, position: 'absolute', background: overlay || alpha(theme.palette.grey[900], 0.48), }, }; const content = ( ); return ( {content} ); } ); export default Image;