@bootstrap-styled/v4
Version:
twbs/bootstrap V4 UI Components made with bootstrap-styled. Work with css-in-js, react, styled-components, and Bootstrap Styled utilities.
22 lines (19 loc) • 433 B
Markdown
`<CardFooter />` component example:
```js
import {
Card,
CardBlock,
CardTitle,
CardText,
CardFooter,
Button,
} from '$PACKAGE_NAME';
<Card width="50%">
<CardBlock>
<CardTitle>Special Title Treatment</CardTitle>
<CardText>With supporting text below as a natural lead-in to additional content.</CardText>
<Button color="danger">Click Me</Button>
</CardBlock>
<CardFooter>Footer</CardFooter>
</Card>
```