Baggage Summary

Passenger baggage card with item rows, per-row included or paid pills, and a total allowance footer.

Beste Sözen · 12D
Cabin bag8 kg · 1 piece
Included
Checked suitcase23 kg · 2 pieces
Paid
Personal item2 kg · 1 piece
Included
Total allowance 54 kg

Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.

Import & use
import { Travel20 } from "@/components/beste/piece/travel20";

<Travel20
  passenger="Beste Sözen · 12D"
  items={[
    {
      "label": "Cabin bag",
      "weight": "8 kg",
      "count": 1,
      "included": true
    },
    {
      "label": "Checked suitcase",
      "weight": "23 kg",
      "count": 2
    },
    {
      "label": "Personal item",
      "weight": "2 kg",
      "count": 1,
      "included": true
    }
  ]}
  limit="Total allowance 54 kg"
/>