import { LazyLoadImage } from 'react-lazy-load-image-component' import 'react-lazy-load-image-component/src/effects/opacity.css' /** * The `Image` component is used to display lazy-loaded images. * * @param {Object} props - Props passed to the `Image` component. * @param {string} props.src - URL of the image to be displayed. * @param {string} props.alt - Alternative text to be displayed if the image is not found. * @returns {JSX.Element} - Rendered `Image` component. */ const Image = ({ ...props }) => { return ( ) } export default Image