UNPKG

materialuiupgraded

Version:

Material-UI's workspace package

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