@instructure/ui-progress
v11.5.0
Published
Styled HTML <progress /> elements for showing completion of a task
Maintainers
Keywords
Readme
ui-progress
A styled HTML 'progress' element
Components
The ui-progress package contains the following:
Installation
npm install @instructure/ui-progressUsage
import React from 'react'
import { ProgressBar } from '@instructure/ui-progress'
const MyProgress = () => {
return (
<ProgressBar
screenReaderLabel="Loading completion"
valueNow={40}
valueMax={60}
/>
)
}