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