blob: a017579709b476a23d316eefb47194c173694f77 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
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",
backgroundColor: "#0a0a0a",
color: "#e5e5e5",
fontFamily: "monospace",
fontWeight: 700,
fontSize: 14,
}}
>
asa
</div>
),
{ ...size }
)
}
|