Skip to content
Snippets Groups Projects
Badge.md 378 B
Newer Older
Alf Eaton's avatar
Alf Eaton committed
A badge that displays a count and a label.

```js
<Badge count={5} label="created"/> 
```

A plural form of the label can be provided.

```js
<div>
    <Badge count={1} label="thing" plural="things"/> 
Julientaq's avatar
Julientaq committed
    <Badge count={99} label="thing" plural="things"/> 
Alf Eaton's avatar
Alf Eaton committed
    <Badge count={0} label="thing" plural="things"/> 
Julientaq's avatar
Julientaq committed
    <Badge count={299} label="thing" plural="things"/> 
Alf Eaton's avatar
Alf Eaton committed
</div>
```