UNPKG

@activelylearn/material-ui

Version:

Material-UI's workspace package

17 lines (14 loc) 289 B
// @flow import React from 'react'; import LinearProgress from '@material-ui/core/LinearProgress'; export default function DeterminateLinearProgress() { return ( <LinearProgress variant="determinate" value={60} style={{ width: 150, }} /> ); }