Sha256: afda71d909792ec4de064807e958868de7c61f7160a8d0f90cfc278dea92dc24
Contents?: true
Size: 934 Bytes
Versions: 1919
Compression:
Stored size: 934 Bytes
Contents
import React from 'react' import DashboardValue from '../../pb_dashboard_value/_dashboard_value' 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
1,919 entries across 1,919 versions & 2 rubygems