## StatText
StatText components are used to display a label and associated value beneath, with the option to include a description.
**Params**
| Param | Type | Default | Description |
| --- | --- | --- | --- |
| label | string
| null
| The label for the statistic |
| value | string
| null
| Value passed in, usually a number or statistic |
| size | string
| null
| Sizing changes whether or not there is subtext. If there is subtext 's' and 'l' are valid sizes. If no subtext, then 'm' is also acceptable. |
| [subText] | string
| | SubText is optional and will display below the label |
**Example**
```js
```
**See**
- [Uses of StatText](https://github.com/hashicorp/vault/search?l=Handlebars&q=StatText+OR+stat-text)
- [StatText Source Code](https://github.com/hashicorp/vault/blob/master/ui/lib/core/addon/components/stat-text.js)
---