@instructure/ui-metric
v10.10.0
Published
A UI component for displaying Metrics
Downloads
21,117
Maintainers
Keywords
Readme
category: packages
ui-metric
A UI component for displaying Metrics.
Components
The ui-metric
package contains the following:
Installation
npm install @instructure/ui-metric
Usage
---
type: code
---
import React from 'react'
import { Metric } from '@instructure/ui-metric'
const MyMetric = () => {
return (
<Metric label="Grade" value="80%" />
)
}
---
type: code
---
import React from 'react'
import { MetricGroup } from '@instructure/ui-metric'
const MyGroup = () => {
return (
<MetricGroup>
<Metric label="Grade" value="80%" />
<Metric label="Late" value="4" />
<Metric label="Missing" value="2" />
</MetricGroup>
)
}