@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.
19 lines (16 loc) • 420 B
Markdown
`<CardLink />` component example:
```js
import {
Card,
CardBlock,
CardLink,
CardText,
} from '$PACKAGE_NAME';
<Card inverse width="50%">
<CardBlock>
<CardText>Some quick example text to build on the card title and make up the bulk of the cards content.</CardText>
<CardLink href="javascript:;">Card Link</CardLink>
<CardLink href="javascript:;">Another Link</CardLink>
</CardBlock>
</Card>
```