fix(ideal-image): do not pass down img prop (#8250)

This commit is contained in:
Alexey Pyltsyn 2022-10-26 20:59:35 +03:00 committed by GitHub
parent e301523138
commit 258ecf71f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -81,25 +81,19 @@ function getMessage(icon: IconKey, state: State) {
}
export default function IdealImage(props: Props): JSX.Element {
const {alt, className, img} = props;
const {img, ...propsRest} = props;
// In dev env just use regular img with original file
if (typeof img === 'string' || 'default' in img) {
return (
<img
src={typeof img === 'string' ? img : img.default}
className={className}
alt={alt}
{...props}
/>
// eslint-disable-next-line jsx-a11y/alt-text
<img src={typeof img === 'string' ? img : img.default} {...propsRest} />
);
}
return (
<ReactIdealImage
{...props}
alt={alt}
className={className}
{...propsRest}
height={img.src.height ?? 100}
width={img.src.width ?? 100}
placeholder={{lqip: img.preSrc}}