01
Overview
SpeedDialAction is the SpeedDial.Action leaf. It must be rendered inside a
SpeedDial parent so it can participate in roving keyboard navigation and close
the owning dial after activation.
Usage
02
When to use
Use when
- Rendering a secondary quick action inside SpeedDial.
Avoid when
- Rendering an action outside SpeedDial - use floating-action directly. Use Floating Action instead
03
Props
| Name | Type | Default | Description |
|---|---|---|---|
id | text | ||
label required | text | Visible and accessible label for the action. | |
icon required | snippet | Icon or compact content rendered inside the action button. | |
onclick | (event: MouseEvent) => void | Called when the action is activated. The SpeedDial closes afterward. | |
disabled | boolean | false | Disables the action and removes it from roving keyboard navigation. |
labelPlacement | 'auto' | 'start' | 'end' | 'none' | 'auto' | Placement of the visible label relative to the action button. |