({
theme,
disabled,
customRippleColor,
}: ColorProps)
| 73 | }; |
| 74 | |
| 75 | export const getMenuItemColor = ({ |
| 76 | theme, |
| 77 | disabled, |
| 78 | customRippleColor, |
| 79 | }: ColorProps) => { |
| 80 | return { |
| 81 | titleColor: getTitleColor({ theme, disabled }), |
| 82 | iconColor: getIconColor({ theme, disabled }), |
| 83 | rippleColor: getRippleColor({ theme, customRippleColor }), |
| 84 | }; |
| 85 | }; |
| 86 | |
| 87 | export const getContentMaxWidth = ({ |
| 88 | isV3, |
no test coverage detected
searching dependent graphs…