(props: any)
| 641 | } |
| 642 | |
| 643 | const Example22 = (props: any) => ( |
| 644 | <div> |
| 645 | <ButtonGroup size="lg"> |
| 646 | <Button>Left</Button> |
| 647 | <Button>Middle</Button> |
| 648 | <Button>Right</Button> |
| 649 | </ButtonGroup> |
| 650 | |
| 651 | <ButtonGroup> |
| 652 | <Button>Left</Button> |
| 653 | <Button>Middle</Button> |
| 654 | <Button>Right</Button> |
| 655 | </ButtonGroup> |
| 656 | |
| 657 | <ButtonGroup size="sm"> |
| 658 | <Button>Left</Button> |
| 659 | <Button>Middle</Button> |
| 660 | <Button>Right</Button> |
| 661 | </ButtonGroup> |
| 662 | </div> |
| 663 | ); |
| 664 | |
| 665 | const Example23 = (props: any) => ( |
| 666 | <ButtonGroup> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…