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

Function Example86

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

Source from the content-addressed store, hash-verified

3501// ------------------------- Progress
3502
3503const Example86 = (props: any) => {
3504 return (
3505 <div>
3506 <div className="text-center">0%</div>
3507 <Progress />
3508 <div className="text-center">25%</div>
3509 <Progress value="25" />
3510 <div className="text-center">50%</div>
3511 <Progress value={50} />
3512 <div className="text-center">75%</div>
3513 <Progress value={75} />
3514 <div className="text-center">100%</div>
3515 <Progress value="100" />
3516 <div className="text-center">Multiple bars</div>
3517 <Progress multi>
3518 <Progress bar value="15" />
3519 <Progress bar color="success" value="30" />
3520 <Progress bar color="info" value="25" />
3521 <Progress bar color="warning" value="20" />
3522 <Progress bar color="danger" value="5" />
3523 </Progress>
3524 </div>
3525 );
3526};
3527
3528const Example87 = (props: any) => {
3529 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…