StockStatusBadge

Domain

Inventory status badge mapping stock levels to semantic colours.

All stock statuses

Preview
In StockLow StockOut of StockBackorder
Code
{(['IN_STOCK', 'LOW_STOCK', 'OUT_OF_STOCK', 'BACKORDER'] as const).map((s) => (
  <StockStatusBadge key={s} status={s} />
))}

Small size

Preview
In StockLow StockOut of StockBackorder
Code
{(['IN_STOCK', 'LOW_STOCK', 'OUT_OF_STOCK', 'BACKORDER'] as const).map((s) => (
  <StockStatusBadge key={s} status={s} size="sm" />
))}
Sourcemodules/domains/commerce/product/StockStatusBadge.tsx