import * as React from 'react'
import { Img, ImgProps } from 'react-image'
import { isBrowser } from '../utils'
export const GracefulImage = (props: ImgProps) => {
if (isBrowser) {
return
} else {
// @ts-expect-error (must use the appropriate subset of props for
if using SSR)
return
}
}