()
| 460 | } |
| 461 | |
| 462 | const ExampleButtonClose = () => ( |
| 463 | <div> |
| 464 | <CardGroup> |
| 465 | <Card> |
| 466 | <CardBody> |
| 467 | <CardTitle> |
| 468 | <Button close /> |
| 469 | </CardTitle> |
| 470 | <CardText>Default close icon</CardText> |
| 471 | </CardBody> |
| 472 | </Card> |
| 473 | <Card> |
| 474 | <CardBody> |
| 475 | <CardTitle> |
| 476 | <Button close aria-label="Cancel"> |
| 477 | <span aria-hidden>–</span> |
| 478 | </Button> |
| 479 | </CardTitle> |
| 480 | <CardText>Custom content and aria-label</CardText> |
| 481 | </CardBody> |
| 482 | </Card> |
| 483 | </CardGroup> |
| 484 | </div> |
| 485 | ); |
| 486 | |
| 487 | class ExampleButtonToggle extends React.Component { |
| 488 | render() { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…