A floating action button (FAB) represents the primary action of a screen.
- Module @rmwc/fab
- Import styles:
- Using CSS Loader
- import '@rmwc/fab/styles';
- Or include stylesheets
- '@material/fab/dist/mdc.fab.css'
- '@rmwc/icon/icon.css'
- '@material/ripple/dist/mdc.ripple.css'
- Using CSS Loader
- MDC Docs: https://material.io/develop/web/components/buttons/floating-action-buttons/
<Fab icon="favorite" />
<Fab icon="favorite" mini />
<>
<Fab icon="add" label="Create" />
<Fab trailingIcon="add" label="Create" />
<Fab label="Label only" />
</>
<>
<Fab icon="favorite_outline" theme={['primaryBg', 'onPrimary']} />
<Fab
icon="delete"
style={{ backgroundColor: 'var(--mdc-theme-error)' }}
theme={['onError']}
/>
</>
A floating action button component
Name | Type | Description |
---|---|---|
children |
ReactNode |
Content specified as children. |
exited |
boolean |
Animates the FAB out of view. When this class is removed, the FAB will return to view. |
icon |
IconPropT |
The icon for the FAB |
label |
any |
Make the Fab extended with a label. |
mini |
boolean |
Make the Fab smaller. |
ripple |
RipplePropT |
Adds a ripple effect to the component |
trailingIcon |
IconPropT |
A trialing icon for the FAB |