Sha256: 52644d3da4b8dd7de462cd477c37f217768b7485f3f5e25d9a74329551488494
Contents?: true
Size: 602 Bytes
Versions: 94
Compression:
Stored size: 602 Bytes
Contents
import React from 'react' import { Currency } from '../../' const CurrencyAlignment = (props) => { return ( <> <Currency amount="2,000.50" label="Left" size="sm" {...props} /> <Currency align="center" amount="342" label="Center" size="sm" symbol="€" {...props} /> <Currency align="right" amount="45" label="Right" size="sm" unit="/mo" {...props} /> </> ) } export default CurrencyAlignment
Version data entries
94 entries across 94 versions & 1 rubygems