We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a13ff2 commit 4722904Copy full SHA for 4722904
components/menu/IconMenu.d.ts
@@ -27,6 +27,11 @@ export interface IconMenuProps extends ReactToolbox.Props {
27
* @default true
28
*/
29
iconRipple?: boolean;
30
+ /**
31
+ * If true, the neutral colors are inverted. Useful if the icon is over a dark background.
32
+ * @default false
33
+ */
34
+ inverse?: boolean;
35
/**
36
* Transferred to the Menu component.
37
components/menu/IconMenu.js
@@ -16,6 +16,7 @@ const factory = (IconButton, Menu) => {
16
PropTypes.element,
17
]),
18
iconRipple: PropTypes.bool,
19
+ inverse: PropTypes.bool,
20
menuRipple: PropTypes.bool,
21
onClick: PropTypes.func,
22
onHide: PropTypes.func,
0 commit comments