import Popout from 'shared/components/popout' import Lightbox from 'shared/components/lightbox' import ImageWrapper from 'shared/components/wrappers/img.js' const Figure = props => { const title = props?.title ? props.title : props?.alt ? props.alt : false return (
{props?.alt {title ?
{title}
: (
This image does not have an alt of title specified

Please improve our documentation and fix this.

) }
) } export default Figure