import { forwardRef, Image, ImageProps } from '@chakra-ui/react'; type ImagePreviewProps = ImageProps & { image: string; }; export const ImagePreview = forwardRef( ({ image, ...imageProps }, ref) => { return ( <> {/* TODO add fallback Image */} ); } );