{"version":3,"file":"index.mjs","names":[],"sources":["../src/img.tsx"],"sourcesContent":["import * as React from 'react';\n\nexport type ImgProps = Readonly<React.ComponentPropsWithoutRef<'img'>>;\n\nexport const Img = React.forwardRef<HTMLImageElement, ImgProps>(\n  ({ alt, src, width, height, style, ...props }, ref) => (\n    <img\n      {...props}\n      alt={alt}\n      height={height}\n      ref={ref}\n      src={src}\n      style={{\n        display: 'block',\n        outline: 'none',\n        border: 'none',\n        textDecoration: 'none',\n        ...style,\n      }}\n      width={width}\n    />\n  ),\n);\n\nImg.displayName = 'Img';\n"],"mappings":";;;;AAIA,MAAa,MAAM,MAAM,YACtB,EAAE,KAAK,KAAK,OAAO,QAAQ,MAAO,GAAG,SAAS,QAC7C,oBAAC;CACC,GAAI;CACC;CACG;CACH;CACA;CACL,OAAO;EACL,SAAS;EACT,SAAS;EACT,QAAQ;EACR,gBAAgB;EAChB,GAAG;EACJ;CACM;EACP,CAEL;AAED,IAAI,cAAc"}