Sha256: af96339e77f10132a917d2d0e6df82240f6ea7eed9d143674703a5ed94b969cd
Contents?: true
Size: 700 Bytes
Versions: 1919
Compression:
Stored size: 700 Bytes
Contents
import React from 'react' import Currency from '../_currency' const CurrencyVariants = (props) => { return ( <> <Currency amount="2,000.50" emphasized={false} label="Emphasized False" marginBottom="md" size="sm" {...props} /> <Currency amount="342" label="Light" marginBottom="md" size="sm" symbol="€" variant="light" {...props} /> <Currency amount="45" label="Bold" size="sm" unit="/mo" variant="bold" {...props} /> </> ) } export default CurrencyVariants
Version data entries
1,919 entries across 1,919 versions & 2 rubygems