import { Popout } from 'shared/components/popout/index.mjs' import { Lightbox } from 'shared/components/lightbox.mjs' import { ImageWrapper } from 'shared/components/wrappers/img.mjs' export 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.

)}
) }