23 lines
470 B
TypeScript
23 lines
470 B
TypeScript
import { forwardRef, Image, ImageProps } from '@chakra-ui/react';
|
|
|
|
type ImagePreviewProps = ImageProps & {
|
|
image: string;
|
|
};
|
|
|
|
export const ImagePreview = forwardRef<ImagePreviewProps, 'img'>(
|
|
({ image, ...imageProps }, ref) => {
|
|
return (
|
|
<>
|
|
{/* TODO add fallback Image */}
|
|
<Image
|
|
ref={ref}
|
|
src={image}
|
|
{...imageProps}
|
|
fallbackSrc="https://via.placeholder.com/150"
|
|
/>
|
|
</>
|
|
);
|
|
}
|
|
);
|
|
|