UNPKG
@activelylearn/material-ui
Version:
latest (1.1.0-al-menuitem-fix)
1.1.0-al-menuitem-fix
1.0.0-beta.21al
1.0.0-beta.21
Material-UI's workspace package
material-ui.com
mui-org/material-ui
@activelylearn/material-ui
/
test
/
regressions
/
tests
/
LinearProgress
/
BufferLinearProgress.js
18 lines
(15 loc)
•
307 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// @flow
import
React
from
'react'
;
import
LinearProgress
from
'@material-ui/core/LinearProgress'
;
export
default
function
DeterminateLinearProgress
(
) {
return
(
<
LinearProgress
variant
=
"buffer"
value
=
{60}
valueBuffer
=
{80}
style
=
{{
width:
150
, }} />
); }