MCPcopy Create free account
hub / github.com/reactstrap/reactstrap / Example

Function Example

stories/examples/Progress/Multi.js:4–44  ·  view source on GitHub ↗
(props)

Source from the content-addressed store, hash-verified

2import { Progress } from 'reactstrap';
3
4function Example(props) {
5 return (
6 <div>
7 <div className="text-center">Plain</div>
8 <Progress multi>
9 <Progress bar value="15" />
10 <Progress bar color="success" value="20" />
11 <Progress bar color="info" value="25" />
12 <Progress bar color="warning" value="20" />
13 <Progress bar color="danger" value="15" />
14 </Progress>
15 <div className="text-center">With Labels</div>
16 <Progress multi>
17 <Progress bar value="15">
18 Meh
19 </Progress>
20 <Progress bar color="success" value="35">
21 Wow!
22 </Progress>
23 <Progress bar color="warning" value="25">
24 25%
25 </Progress>
26 <Progress bar color="danger" value="25">
27 LOOK OUT!!
28 </Progress>
29 </Progress>
30 <div className="text-center">Stripes and Animations</div>
31 <Progress multi>
32 <Progress bar striped value="15">
33 Stripes
34 </Progress>
35 <Progress bar animated color="success" value="30">
36 Animated Stripes
37 </Progress>
38 <Progress bar color="info" value="25">
39 Plain
40 </Progress>
41 </Progress>
42 </div>
43 );
44}
45
46export default Example;
47

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…