StockStatusBadge
DomainInventory status badge mapping stock levels to semantic colours.
In StockLow StockOut of StockBackorder
{(['IN_STOCK', 'LOW_STOCK', 'OUT_OF_STOCK', 'BACKORDER'] as const).map((s) => (
<StockStatusBadge key={s} status={s} />
))}In StockLow StockOut of StockBackorder
{(['IN_STOCK', 'LOW_STOCK', 'OUT_OF_STOCK', 'BACKORDER'] as const).map((s) => (
<StockStatusBadge key={s} status={s} size="sm" />
))}