A typical boring button:
```js
<Button>Push Me</Button>
```
A primary button:
```js
<Button type="primary">Push Me</Button>
```
A primary button that is also a a link:
```js
<Button href="https://www.civicplus.com" type="primary">Push Me</Button>
```