4 lines
179 B
TypeScript
4 lines
179 B
TypeScript
export function Image(props: { src: string; alt: string } & React.ComponentPropsWithoutRef<"img">) {
|
|
return <img {...props} src={props.src} alt={props.alt} loading="lazy" />;
|
|
}
|