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