You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* If `true`, the keyboard focus ripple is disabled.
64
-
* @default false
65
-
*/
66
-
disableFocusRipple: PropTypes.bool,
67
-
/**
68
-
* If `true`, the ripple effect is disabled.
69
-
*
70
-
* ⚠️ Without a ripple there is no styling for :focus-visible by default. Be sure
71
-
* to highlight the element by applying separate styles with the `.Mui-focusVisible` class.
72
-
* @default false
73
-
*/
74
-
disableRipple: PropTypes.bool,
75
-
/**
76
-
* If `true`, the touch ripple effect is disabled.
77
-
* @default false
78
-
*/
79
-
disableTouchRipple: PropTypes.bool,
80
-
/**
81
-
* If given, uses a negative margin to counteract the padding on one
82
-
* side (this is often helpful for aligning the left or right
83
-
* side of the icon with content above or below, without ruining the border
84
-
* size and shape).
85
-
* @default false
86
-
*/
87
-
edge: PropTypes.oneOf(['end','start',false]),
88
-
/**
89
-
* If `true`, the base button will have a keyboard focus ripple.
90
-
* @default false
91
-
*/
92
-
focusRipple: PropTypes.bool,
93
-
/**
94
-
* This prop can help identify which element has keyboard focus.
95
-
* The class name will be applied when the element gains the focus through keyboard interaction.
96
-
* It's a polyfill for the [CSS :focus-visible selector](https://drafts.csswg.org/selectors-4/#the-focus-visible-pseudo).
97
-
* The rationale for using this feature [is explained here](https://github.com/WICG/focus-visible/blob/HEAD/explainer.md).
98
-
* A [polyfill can be used](https://github.com/WICG/focus-visible) to apply a `focus-visible` class to other components
99
-
* if needed.
100
-
*/
101
-
focusVisibleClassName: PropTypes.string,
102
-
/**
103
-
* The component used to render a link when the `href` prop is provided.
104
-
* @default 'a'
105
-
*/
106
-
LinkComponent: PropTypes.elementType,
107
-
/**
108
-
* If `true`, the loading indicator is visible and the button is disabled.
109
-
* If `true | false`, the loading wrapper is always rendered before the children to prevent [Google Translation Crash](https://github.com/mui/material-ui/issues/27853).
110
-
* @default null
111
-
*/
112
-
loading: PropTypes.bool,
113
-
/**
114
-
* Element placed before the children if the button is in loading state.
115
-
* The node should contain an element with `role="progressbar"` with an accessible name.
116
-
* By default, it renders a `CircularProgress` that is labeled by the button itself.
0 commit comments