import Image from "next/image"; import type { ImageProps } from "next/image"; import type { CSSProperties } from "react"; // TODO: infer ratio when given zero/one dimensions // TODO: fold figure/figcaption tags into this component type CustomImageProps = ImageProps & { style?: CSSProperties; }; const CustomImage = (props: CustomImageProps) => { return (
{props.alt}
); }; export default CustomImage;