`<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>
```
