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