# Floating action buttons
- [MDC Docs](https://material.io/develop/web/components/buttons/floating-action-buttons/)
- [MDC Demo](https://material-components.github.io/material-components-web-catalog/#/component/fab)

# Props
| Name | Description
| --- | ---
| icon | self-explanatory.
| mini | makes the button a bit smaller.
| fixed | gives the button `position: fixed`.
| extended | extends the fab.
| iconTrailing | renders the icon after the text label.

# Examples
```html
<Fab icon="add" />
<!-- this one is a link: -->
<Fab icon="open_in_new" href="https://somewhere.com" />
<Fab icon="add" extended>create</Fab>
<Fab extended>label-only</Fab>
```
