import React, {FC} from "react" const Img: FC<{src: string, alt: string, width: string}> = ({src, alt, width, ...props}) => { return {alt} } export default Img