Sha256: 63a16a787810191592c3471c043f751ca6a230422067f2688be4299d6ba22688
Contents?: true
Size: 697 Bytes
Versions: 94
Compression:
Stored size: 697 Bytes
Contents
import React from 'react' import { Currency } from '../../' 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
94 entries across 94 versions & 1 rubygems