import React, { FC } from 'react'; import Styles from './Image.module.css'; export type TImageData = { file: { url: string; }; caption?: string; withBorder?: boolean; stretched?: boolean; withBackground?: boolean; }; export const Image: FC = ({ file, caption, withBorder = false, withBackground = false, stretched = false, }) => { return (
{withBackground ? (
{caption}
) : ( {caption} )} {caption &&
{caption}
}
); };