Local modifications to ClusterLabs/Anvil by Alteeve
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

51 lines
971 B

import {
MenuItem as MUIMenuItem,
menuItemClasses as muiMenuItemClasses,
MenuItemProps as MUIMenuItemProps,
} from '@mui/material';
import { GREY, TEXT } from '../lib/consts/DEFAULT_THEME';
const MenuItem = (menuItemProps: MUIMenuItemProps): JSX.Element => {
const { children, sx } = menuItemProps;
const combinedSx = {
backgroundColor: TEXT,
paddingRight: '3em',
[`&.${muiMenuItemClasses.selected}`]: {
backgroundColor: GREY,
fontWeight: 400,
[`&.${muiMenuItemClasses.focusVisible}`]: {
backgroundColor: GREY,
},
'&:hover': {
backgroundColor: GREY,
},
},
[`&.${muiMenuItemClasses.focusVisible}`]: {
backgroundColor: GREY,
},
'&:hover': {
backgroundColor: GREY,
},
...sx,
};
return (
<MUIMenuItem
{...{
...menuItemProps,
sx: combinedSx,
}}
>
{children}
</MUIMenuItem>
);
};
export default MenuItem;