import { ImageResponse } from "next/og"; export const size = { width: 32, height: 32 }; export const contentType = "image/png"; export default function PrototypeIcon() { return new ImageResponse( (
🎨
), { ...size }, ); }