Sha256: ca1ea3a81ea85ae3b89fd74df96c0b37552abfccc2e07d017aad08b95351cb42
Contents?: true
Size: 731 Bytes
Versions: 1839
Compression:
Stored size: 731 Bytes
Contents
import React from 'react' import Currency from '../_currency' const CurrencyMatchingDecimals = (props) => { return ( <> <Currency amount="372.12" decimals="matching" label="Small" marginBottom="md" size="sm" unit="/day" {...props} /> <Currency amount="30,327.43" decimals="matching" label="Medium" marginBottom="md" size="md" symbol="€" {...props} /> <Currency amount="621,953.99" decimals="matching" label="Large" size="lg" {...props} /> </> ) } export default CurrencyMatchingDecimals
Version data entries
1,839 entries across 1,839 versions & 2 rubygems