2017-03-26 21:09:19 -04:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
title: Labels
|
|
|
|
parent: UI Components
|
|
|
|
nav_order: 3
|
|
|
|
---
|
|
|
|
|
|
|
|
# Labels
|
|
|
|
|
|
|
|
Use labels as a way to add an additional mark to a section of your docs. Labels come in a few colors. By default, labels will be blue.
|
|
|
|
|
|
|
|
<div class="code-example" markdown="1">
|
|
|
|
Default label
|
|
|
|
{: .label }
|
|
|
|
|
|
|
|
Blue label
|
2019-01-14 14:18:09 -05:00
|
|
|
{: .label .label-blue }
|
2017-03-26 21:09:19 -04:00
|
|
|
|
|
|
|
Stable
|
2019-01-14 14:18:09 -05:00
|
|
|
{: .label .label-green }
|
2017-03-26 21:09:19 -04:00
|
|
|
|
|
|
|
New release
|
2019-01-14 14:18:09 -05:00
|
|
|
{: .label .label-purple }
|
2017-03-26 21:09:19 -04:00
|
|
|
|
|
|
|
Coming soon
|
2019-01-14 14:18:09 -05:00
|
|
|
{: .label .label-yellow }
|
2017-03-26 21:09:19 -04:00
|
|
|
|
|
|
|
Deprecated
|
2019-01-14 14:18:09 -05:00
|
|
|
{: .label .label-red }
|
2017-03-26 21:09:19 -04:00
|
|
|
</div>
|
|
|
|
```markdown
|
|
|
|
Default label
|
|
|
|
{: .label }
|
|
|
|
|
|
|
|
Blue label
|
2019-01-14 14:18:09 -05:00
|
|
|
{: .label .label-blue }
|
2017-03-26 21:09:19 -04:00
|
|
|
|
|
|
|
Stable
|
2019-01-14 14:18:09 -05:00
|
|
|
{: .label .label-green }
|
2017-03-26 21:09:19 -04:00
|
|
|
|
|
|
|
New release
|
2019-01-14 14:18:09 -05:00
|
|
|
{: .label .label-purple }
|
2017-03-26 21:09:19 -04:00
|
|
|
|
|
|
|
Coming soon
|
2019-01-14 14:18:09 -05:00
|
|
|
{: .label .label-yellow }
|
2017-03-26 21:09:19 -04:00
|
|
|
|
|
|
|
Deprecated
|
2019-01-14 14:18:09 -05:00
|
|
|
{: .label .label-red }
|
2017-03-26 21:09:19 -04:00
|
|
|
```
|