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