Sha256: 2aef009a0d43685c1d68f9f6475bb2ab5904bf2f843f374764e7d98f3238fbb5
Contents?: true
Size: 902 Bytes
Versions: 76
Compression:
Stored size: 902 Bytes
Contents
import React from 'react' import { DashboardValue } from '../../' const DashboardValueAlign = (props) => { return ( <div> <DashboardValue {...props} statChange={{ change: 'decrease', value: '26.1' }} statLabel="Top Title Value" statValue={{ value: '1,428', unit: 'appts' }} /> <br /> <br /> <DashboardValue {...props} align="center" statChange={{ change: 'decrease', value: 56.1 }} statLabel="Top Title Value" statValue={{ value: '1,428', unit: 'appts' }} /> <br /> <br /> <DashboardValue {...props} align="right" statChange={{ change: 'decrease', value: 86 }} statLabel="Top Title Value" statValue={{ value: '1,428', unit: 'appts' }} /> </div> ) } export default DashboardValueAlign
Version data entries
76 entries across 76 versions & 1 rubygems