memento-dev/app/components/common/Image.tsx

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" />;
}