#### 基本使用

```js
<div>
  <Label className='mgr10' type='info'>
    info
  </Label>
  <Label className='mgr10' type='success'>
    success
  </Label>
  <Label className='mgr10' type='warning'>
    warning
  </Label>
  <Label className='mgr10' type='error'>
    error
  </Label>
  <Label className='mgr10' type='failed'>
    failed
  </Label>
  <Label className='mgr10' type='cavity'>
    cavity
  </Label>
  <Label className='mgr10' type='danger'>
    danger
  </Label>
  <Label className='mgr10' type='alarm'>
    alarm
  </Label>
  <Label className='mgr10' type='dark'>
    dark
  </Label>
</div>
```

##### weak 版

```js
<div>
  <Label className='mgr10' weak type='info'>
    info
  </Label>
  <Label className='mgr10' weak type='success'>
    success
  </Label>
  <Label className='mgr10' weak type='warning'>
    warning
  </Label>
  <Label className='mgr10' weak type='error'>
    error
  </Label>
  <Label className='mgr10' weak type='failed'>
    failed
  </Label>
  <Label className='mgr10' weak type='cavity'>
    cavity
  </Label>
  <Label className='mgr10' weak type='danger'>
    danger
  </Label>
</div>
```

##### light 版

```js
<div>
  <Label className='mgr10' light type='info'>
    info
  </Label>
  <Label className='mgr10' light type='success'>
    success
  </Label>
  <Label className='mgr10' light type='warning'>
    warning
  </Label>
  <Label className='mgr10' light type='error'>
    error
  </Label>
  <Label className='mgr10' light type='failed'>
    failed
  </Label>
  <Label className='mgr10' light type='cavity'>
    cavity
  </Label>
  <Label className='mgr10' light type='danger'>
    danger
  </Label>
  <Label className='mgr10' light type='alarm'>
    alarm
  </Label>
  <Label className='mgr10' light type='dark'>
    dark
  </Label>
</div>
```

##### weak && light 版

```js
<div>
  <Label className='mgr10' light weak type='info'>
    info
  </Label>
  <Label className='mgr10' light weak type='success'>
    success
  </Label>
  <Label className='mgr10' light weak type='warning'>
    warning
  </Label>
  <Label className='mgr10' light weak type='error'>
    error
  </Label>
  <Label className='mgr10' light weak type='failed'>
    failed
  </Label>
</div>
```

##### 设置最大宽度

```js
<Label maxWidth={90} light type='dark'>
  特别长特别长的内容特别长特别长的内容
</Label>
```

##### 带关闭的

```js
<Label closable light type='dark'>
  可关闭
</Label>
```
