## SelectableCard SelectableCard components are card-like components that display a title, total, subtotal, and anything after the yield. They are designed to be used in containers that act as flexbox or css grid containers. **Params** | Param | Type | Default | Description | | --- | --- | --- | --- | | cardTitle | String | | cardTitle displays the card title | | total | Number | 0 | the Total number displays like a title, it's the largest text in the component | | subText | String | | subText describes the total | **Example** ```js ``` **See** - [Uses of SelectableCard](https://github.com/hashicorp/vault/search?l=Handlebars&q=SelectableCard+OR+selectable-card) - [SelectableCard Source Code](https://github.com/hashicorp/vault/blob/master/ui/app/components/selectable-card.js) ---