File tree 2 files changed +4
-0
lines changed
packages/material-ui-lab/src/SpeedDialAction
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ import Fab from '@material-ui/core/Fab';
7
7
import Tooltip from '@material-ui/core/Tooltip' ;
8
8
9
9
export const styles = theme => ( {
10
+ /* Styles applied to the root element. */
11
+ root : { } ,
10
12
/* Styles applied to the `Button` component. */
11
13
button : {
12
14
margin : 8 ,
@@ -101,6 +103,7 @@ class SpeedDialAction extends React.Component {
101
103
placement = { tooltipPlacement }
102
104
onClose = { this . handleTooltipClose }
103
105
onOpen = { this . handleTooltipOpen }
106
+ className = { classes . root }
104
107
open = { open && this . state . tooltipOpen }
105
108
{ ...other }
106
109
>
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ This property accepts the following keys:
36
36
37
37
| Name | Description |
38
38
| :-----| :------------|
39
+ | <span class =" prop-name " >root</span > | Styles applied to the root element.
39
40
| <span class =" prop-name " >button</span > | Styles applied to the ` Button ` component.
40
41
| <span class =" prop-name " >buttonClosed</span > | Styles applied to the ` Button ` component if ` open={false} ` .
41
42
You can’t perform that action at this time.
0 commit comments