#### 基本使用

```js
const handleClick = () => {
  alert(1);
};
<Button onClick={handleClick}>点我</Button>;
```

#### 样式展示
```js
<div>
  <Button className="mgr20 mgb10">默认按钮</Button>
  <Button className="mgr20" type="primary">primary</Button>
  <Button className="mgr20" type="return">return</Button>
  <Button className="mgr20" type="secondary">secondary</Button>
  <Button className="mgr20" type="reset">reset</Button>
  <Button className="mgr20" type="link">link</Button>
  <Button className="mgr20" type="text">text</Button>
  <Button className="mgr20" type="white">white</Button>
  <Button className="mgr20" type="dark">dark</Button>
  <Button className="mgr20" type="danger">danger</Button>
  <Button width="200">设置了宽度</Button>
</div>
```

#### mini
```js
<div>
  <Button className="mgr20 mgb10" mini>默认按钮</Button>
  <Button className="mgr20" type="primary" mini>primary</Button>
  <Button className="mgr20" type="return" mini>return</Button>
  <Button className="mgr20" type="secondary" mini>secondary</Button>
  <Button className="mgr20" type="reset" mini>reset</Button>
  <Button className="mgr20" type="link" mini>link</Button>
  <Button className="mgr20" type="text" mini>text</Button>
  <Button className="mgr20" type="white" mini>white</Button>
  <Button className="mgr20" type="dark" mini>dark</Button>
  <Button className="mgr20" type="danger" mini>danger</Button>
  <Button width="200" mini>设置了宽度</Button>
</div>
```
