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