import React from "react"; export function Image(props: { src: string; alt: string } & React.ComponentPropsWithoutRef<"img">) { return {props.alt}; }