UNPKG

next-banner

Version:

Generate Open Graph images for Next.js on build

9 lines (8 loc) 272 B
import React from "react"; interface ScreenshotCanvasProps { style?: React.CSSProperties; className?: string; children: React.ReactNode; } export default function ScreenshotCanvas({ style, className, children }: ScreenshotCanvasProps): JSX.Element; export {};