import * as React from 'react'; export type ImgProps = Readonly>; export const Img = React.forwardRef( ({ alt, src, width, height, style, ...props }, ref) => ( {alt ), ); Img.displayName = 'Img';