import { ComponentProps } from "react"; import NextImage from "next/image"; type Height = ComponentProps["height"]; type Width = ComponentProps["width"]; type ImageProps = Omit, "src"> & { src?: ComponentProps["src"]; }; export default function Image({ src, alt = "alt", width = 800, height = 350, ...props }: ImageProps) { if (!src) return null; return ( ); }