## InfoTableRow
`InfoTableRow` displays a label and a value in a table-row style manner. The component is responsive so
that the value breaks under the label on smaller viewports.
| Param | Type | Default | Description |
| --- | --- | --- | --- |
| value | any
|
| The the data to be displayed - by default the content of the component will only show if there is a value. Also note that special handling is given to boolean values - they will render `Yes` for true and `No` for false. |
| label | string
| null
| The display name for the value. |
| alwaysRender | Boolean
| false
| Indicates if the component content should be always be rendered. When false, the value of `value` will be used to determine if the component should render. |
**Example**
```js
```
**See**
- [Uses of InfoTableRow](https://github.com/hashicorp/vault/search?l=Handlebars&q=InfoTableRow+OR+info-table-row)
- [InfoTableRow Source Code](https://github.com/hashicorp/vault/blob/master/ui/app/components/info-table-row.js)
---