16 lines
298 B
JavaScript
16 lines
298 B
JavaScript
|
|
import * as React from 'react';
|
||
|
|
import LinearProgress from '@mui/material/LinearProgress';
|
||
|
|
|
||
|
|
export default function DeterminateLinearProgress() {
|
||
|
|
return (
|
||
|
|
<LinearProgress
|
||
|
|
variant="buffer"
|
||
|
|
value={60}
|
||
|
|
valueBuffer={80}
|
||
|
|
style={{
|
||
|
|
width: 150,
|
||
|
|
}}
|
||
|
|
/>
|
||
|
|
);
|
||
|
|
}
|