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