Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import { OrderSummaryLabelProps } from './typings'

const ProductOrderSummaryList: Array<OrderSummaryLabelProps> = [
  {
    label: 'subtotal(4items)',
    value: '$1,623.80',
  },
  {
    label: 'standard shipping',
    value: 'free',
  },
  {
    label: 'estimated sales tax',
    value: '$57.24',
  },
  {
    label: 'total',
    value: '$1,679.80',
    className: 'enable-bold total-count',
  },
  {
    label: 'loyalty points earned',
    value: '224',
    className: 'enable-semi',
  },
]

export { ProductOrderSummaryList }