Files
sistem-desa-mandiri/src/app/icon.tsx
amel d847c97bec upd: webpush
Deskripsi:
- database push notification
- update package
- memasang webpush

NO Issues
2024-11-18 17:12:58 +08:00

39 lines
704 B
TypeScript

import { ImageResponse } from 'next/og'
// Image metadata
export const size = {
width: 32,
height: 32,
}
export const contentType = 'image/png'
// Image generation
export default function Icon(): ImageResponse {
const { width, height } = size
return new ImageResponse(
(
// Element JSX yang berfungsi sebagai ikon
<div
style={{
fontSize: 24,
backgroundColor: 'black',
width: '100%',
height: '100%',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
color: 'white',
}}
>
B
</div>
),
{
width,
height,
}
)
}
// wibu:1.0.87