A styled HTML 'progress' element
The ui-progress
package contains the following:
npm install @instructure/ui-progress
---
example: false
---
import React from 'react'
import { ProgressBar } from '@instructure/ui-progress'
const MyProgress = () => {
return (
<ProgressBar
screenReaderLabel="Loading completion"
valueNow={40}
valueMax={60}
/>
)
}