We all need buttons.

```js
<Button>Click me</Button>
```

It can be a link by setting the `is` and `href` prop.

```js
<Button is="a" href="http://vg.no">Read news</Button>
```

They can be disabled.

```js
<Button disabled>Disabled</Button>
```

Small button

```js
<Button small>Click me</Button>
```
