# Button

## Usage

Simplest use case: a button with text in it, telling the user what to do.

```html
<button class="es-button" aria-label="click me" type="button">
    click me
</button>
```

## Secondary Buttons

```html
<button class="es-button-secondary" aria-label="click me" type="button">
    click me
</button>
```

## Styling Links
It is also possible to style a link to look like a button using the `es-button` or `es-button-secondary` class.

```html
<a href="https://emberjs.com" class="es-button">Go to Ember homepage</a>
<a href="https://guides.emberjs.com" class="es-button-secondary">Go to the Guides</a>
```
