Components
Installation
$ pnpm dlx shadcn@latest add @pdfcn/takumi/packing-slip
Usage
import { PackingSlipDocument } from "@/components/pdf/packing-slip";<PackingSlipDocument
companyName="Acme Store"
orderNumber="ORD-2026-0891"
orderDate="Sep 10, 2026"
shipTo={{
name: "Jane Doe",
address: "456 Oak Ave",
city: "Portland",
state: "OR",
zip: "97201",
}}
shipFrom={{
name: "Acme Warehouse",
address: "100 Industrial Blvd",
city: "Seattle",
state: "WA",
zip: "98101",
}}
items={[
{
name: "Widget Pro",
sku: "WP-001",
qtyPacked: 2,
qtyOrdered: 2,
unitPrice: 49.99,
},
]}
shipping={{
carrier: "UPS",
trackingNumber: "1Z999AA10123456784",
method: "Ground",
estimatedDelivery: "Sep 15, 2026",
}}
accentColor="#059669"
/>