import {XCircleIcon} from '@heroicons/react/solid'; import * as React from 'react'; export interface IImageFallbackProps { src: string; } export const ImageFallback: React.FunctionComponent = ({ src }: React.PropsWithChildren) => { if (!src) { return (

The image couldn't be loaded

); } return ( ); };