import React from 'react'; import NextImage, { ImageProps } from 'next/image'; import { useBasePath } from '@digigov/nextjs/hooks'; const Image: React.FC = ({ src, ...rest }) => { const basePathSrc = useBasePath(typeof src === 'string' ? src : ''); return ( ); }; export default Image;