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

Function Example91

types/reactstrap-tests.tsx:3606–3646  ·  view source on GitHub ↗
(props: any)

Source from the content-addressed store, hash-verified

3604};
3605
3606const Example91 = (props: any) => {
3607 return (
3608 <div>
3609 <div className="text-center">Plain</div>
3610 <Progress multi>
3611 <Progress bar value="15" />
3612 <Progress bar color="success" value="20" />
3613 <Progress bar color="info" value="25" />
3614 <Progress bar color="warning" value="20" />
3615 <Progress bar color="danger" value="15" />
3616 </Progress>
3617 <div className="text-center">With Labels</div>
3618 <Progress multi>
3619 <Progress bar value="15">
3620 Meh
3621 </Progress>
3622 <Progress bar color="success" value="35">
3623 Wow!
3624 </Progress>
3625 <Progress bar color="warning" value="25">
3626 25%
3627 </Progress>
3628 <Progress bar color="danger" value="25">
3629 LOOK OUT!!
3630 </Progress>
3631 </Progress>
3632 <div className="text-center">Stripes and Animations</div>
3633 <Progress multi>
3634 <Progress bar striped value="15">
3635 Stripes
3636 </Progress>
3637 <Progress bar animated color="success" value="30">
3638 Animated Stripes
3639 </Progress>
3640 <Progress bar color="info" value="25">
3641 Plain
3642 </Progress>
3643 </Progress>
3644 </div>
3645 );
3646};
3647
3648const Example92 = (props: any) => {
3649 return (

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…