(props: any)
| 3646 | }; |
| 3647 | |
| 3648 | const Example92 = (props: any) => { |
| 3649 | return ( |
| 3650 | <div> |
| 3651 | <div className="text-center">1 of 5</div> |
| 3652 | <Progress value="1" min="1" max="5" /> |
| 3653 | <div className="text-center">50 of 135</div> |
| 3654 | <Progress value={50} max="135" /> |
| 3655 | <div className="text-center">75 of 111</div> |
| 3656 | <Progress value={75} min={1} max={111} /> |
| 3657 | <div className="text-center">463 of 500</div> |
| 3658 | <Progress |
| 3659 | value="463" |
| 3660 | max={500} |
| 3661 | barAriaValueText="test" |
| 3662 | barAriaLabelledBy="test" |
| 3663 | /> |
| 3664 | |
| 3665 | <div className="text-center">Various (40) of 55</div> |
| 3666 | <Progress multi> |
| 3667 | <Progress bar value="5" max={55}> |
| 3668 | 5 |
| 3669 | </Progress> |
| 3670 | <Progress bar color="success" value="15" max={55}> |
| 3671 | 15 |
| 3672 | </Progress> |
| 3673 | <Progress bar color="warning" value="10" max={55}> |
| 3674 | 10 |
| 3675 | </Progress> |
| 3676 | <Progress bar color="danger" value="10" max={55}> |
| 3677 | 10 |
| 3678 | </Progress> |
| 3679 | </Progress> |
| 3680 | </div> |
| 3681 | ); |
| 3682 | }; |
| 3683 | |
| 3684 | // --------------- Table |
| 3685 | class Example93 extends React.Component { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…