Files

32 lines
519 B
TypeScript

import { ImageResponse } from "next/og";
export const size = {
width: 32,
height: 32,
};
export const contentType = "image/png";
export default function Icon() {
return new ImageResponse(
(
<div
style={{
width: "100%",
height: "100%",
display: "flex",
alignItems: "center",
justifyContent: "center",
background: "white",
fontSize: 26,
}}
>
🦞
</div>
),
{
...size,
},
);
}