import { ImageResponse } from 'next/og' export const contentType = 'image/png' export const size = { height: 32, width: 32 } export default async function Icon() { return new ImageResponse(
R
, { ...size } ) }