import React from
'react'
import
'@blueprintjs/core/lib/css/blueprint.css'
;
export
default
function
App() {
return
(
<div style={{ margin: 100 }}>
<h1 style={{ color:
'green'
}}>
GeeksforGeeks
</h1>
<h3>
React.js BluePrint
Progress bar Component CSS
</h3>
<p>No Stripes progress bar</p>
<div class=
"bp4-progress-bar bp4-no-stripes"
>
<div
class=
"bp4-progress-meter"
style={{ width:
"10%"
}}>
</div>
</div>
<br /><br />
<div class=
"bp4-progress-bar
bp4-intent-warning bp4-no-stripes"
>
<div
class=
"bp4-progress-meter"
style={{ width:
"25%"
}}>
</div>
</div>
<br /><br />
<p>Non Animated progress bar</p>
<div class=
"bp4-progress-bar
bp4-intent-primary bp4-no-animation"
>
<div
class=
"bp4-progress-meter"
style={{ width:
"40%"
}}>
</div>
</div>
<br /><br />
<div class=
"bp4-progress-bar
bp4-intent-success bp4-no-animation"
>
<div
class=
"bp4-progress-meter"
style={{ width:
"65%"
}}>
</div>
</div>
</div>
);
}