A UI component for displaying Metrics.
The ui-metric
package contains the following:
npm install @instructure/ui-metric
---
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>
)
}