import React from 'react'; interface ImageProps extends React.HTMLAttributes { src: string; alt?: string; } const Image: React.FC = (props: ImageProps) => { const { src, className, alt = '' } = props; return {alt}; }; export default Image;