Components
Installation
$ pnpm dlx shadcn@latest add @pdfcn/theme-forest
Usage
import { PdfcnThemeProvider } from "@/components/pdf/theme-provider";
import { forestTheme } from "@/lib/pdf-themes/forest";
export function Invoice() {
return (
<PdfcnThemeProvider theme={forestTheme}>
{/* Your PDF content */}
</PdfcnThemeProvider>
);
}