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