1
0
Fork 0
freesewing/packages/freesewing.shared/components/mdx/figure.js
2021-12-19 19:08:54 +01:00

8 lines
296 B
JavaScript

const Figure = props => (
<figure>
<img src={props?.src} alt={props?.alt || ''} title={props?.title || ''} className="shadow-md"/>
<figcaption className="text-center italic">{props.title || 'FIXME: No title property set on this image'}</figcaption>
</figure>
)
export default Figure