import {FC} from 'react'; export interface ImageProps { src?: string; alt?: string; style?: React.CSSProperties; } export const Image: FC = ({ src, alt, style, }) => ( {alt} )