# Call to action
A Call to action is a styled link that directs a user to other pages or sometimes displays hidden content.

## Usage

As a link
```html
<rh-cta href="/subscribe">Subscribe</rh-cta>
```

As a button
```html
<rh-cta>
  <button>Watch live</button>
</rh-cta>
```

With a slotted anchor
```html
<rh-cta>
  <a href="/subscribe">Subscribe</a>
</rh-cta>
```
