(props: any)
| 3586 | }; |
| 3587 | |
| 3588 | const Example90 = (props: any) => { |
| 3589 | return ( |
| 3590 | <div> |
| 3591 | <Progress animated value={2 * 5} /> |
| 3592 | <Progress animated color="success" value="25" /> |
| 3593 | <Progress animated color="info" value={50} /> |
| 3594 | <Progress animated color="warning" value={75} /> |
| 3595 | <Progress animated color="danger" value="100" /> |
| 3596 | <Progress multi> |
| 3597 | <Progress animated bar value="10" /> |
| 3598 | <Progress animated bar color="success" value="30" /> |
| 3599 | <Progress animated bar color="warning" value="20" /> |
| 3600 | <Progress animated bar color="danger" value="20" /> |
| 3601 | </Progress> |
| 3602 | </div> |
| 3603 | ); |
| 3604 | }; |
| 3605 | |
| 3606 | const Example91 = (props: any) => { |
| 3607 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…