# Button

This component renders an HTML `<button>` and passes along all props.

## Example Usage

```jsx
import React from 'react';
import { Button } from 'rinse-react';
class MyClass extends React.Component {
    buttonClick() {
        console.log('Ack! You got me!');
    }
    render() {
        return (
            <section>
                <Tags primary big>
								<h1>Lorem ipsum dolor amet cliche</h1>
								umami hell of, pork belly master cleanse biodiesel air plant. Quinoa tumblr VHS kogi microdosing normcore. Portland paleo normcore kinfolk viral bitters, mlkshk chartreuse ennui photo booth. Brooklyn master cleanse shoreditch, marfa williamsburg hashtag heirloom activated charcoal 3 wolf moon ugh intelligentsia DIY synth hot chicken 8-bit.
            </Tags>
            </section>
        )
    }
}
```
