(props: any)
| 896 | }; |
| 897 | |
| 898 | const Example32 = (props: any) => { |
| 899 | return ( |
| 900 | <div> |
| 901 | <Card |
| 902 | body |
| 903 | inverse |
| 904 | style={{ backgroundColor: '#333', borderColor: '#333' }} |
| 905 | > |
| 906 | <CardTitle>Special Title Treatment</CardTitle> |
| 907 | <CardText> |
| 908 | With supporting text below as a natural lead-in to additional content. |
| 909 | </CardText> |
| 910 | <Button>Button</Button> |
| 911 | </Card> |
| 912 | <Card body inverse color="primary"> |
| 913 | <CardTitle>Special Title Treatment</CardTitle> |
| 914 | <CardText> |
| 915 | With supporting text below as a natural lead-in to additional content. |
| 916 | </CardText> |
| 917 | <Button color="secondary">Button</Button> |
| 918 | </Card> |
| 919 | <Card body inverse color="success"> |
| 920 | <CardTitle>Special Title Treatment</CardTitle> |
| 921 | <CardText> |
| 922 | With supporting text below as a natural lead-in to additional content. |
| 923 | </CardText> |
| 924 | <Button color="secondary">Button</Button> |
| 925 | </Card> |
| 926 | <Card body inverse color="info"> |
| 927 | <CardTitle>Special Title Treatment</CardTitle> |
| 928 | <CardText> |
| 929 | With supporting text below as a natural lead-in to additional content. |
| 930 | </CardText> |
| 931 | <Button color="secondary">Button</Button> |
| 932 | </Card> |
| 933 | <Card body inverse color="warning"> |
| 934 | <CardTitle>Special Title Treatment</CardTitle> |
| 935 | <CardText> |
| 936 | With supporting text below as a natural lead-in to additional content. |
| 937 | </CardText> |
| 938 | <Button color="secondary">Button</Button> |
| 939 | </Card> |
| 940 | <Card body inverse color="danger"> |
| 941 | <CardTitle>Special Title Treatment</CardTitle> |
| 942 | <CardText> |
| 943 | With supporting text below as a natural lead-in to additional content. |
| 944 | </CardText> |
| 945 | <Button color="secondary">Button</Button> |
| 946 | </Card> |
| 947 | </div> |
| 948 | ); |
| 949 | }; |
| 950 | |
| 951 | const Example33 = (props: any) => { |
| 952 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…