Tally UI

OrderCard

Compact card showing an order's number, date, status, and total

Import

import { OrderCard } from '@tallyui/components';

Usage

<OrderCard
  orderNumber="#1042"
  date="Feb 26, 2026"
  total="$48.50"
  status="completed"
/>

A compact card that summarises a single order. Tap behaviour is optional -- pass onPress to make the card pressable for navigating to order details.

Props

PropTypeDefaultDescription
orderNumberstringrequiredDisplay label for the order (e.g. "#1042")
datestringrequiredFormatted date string
totalstringrequiredFormatted order total
statusOrderStatusrequiredStatus value passed to OrderStatusBadge
customerNamestringOptional customer name shown below the date
onPress() => voidMakes the card pressable
classNamestringOverride container styles

Live demo

On this page