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