For the complete documentation index, see llms.txt. Markdown variants are available by appending .md to any URL or sending an Accept: text/markdown header. An agent skill is available at /.well-known/agent-skills/site-skill.md.
/
2k
Sponsor

Packing Slip

Printable packing slip document with order details, itemized list, and shipping info.

Installation

$ pnpm dlx shadcn@latest add @pdfcn/forme/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"
/>