import { forwardRef } from 'react'; // @mui import Box from '@mui/material/Box'; import Link from '@mui/material/Link'; import Tooltip from '@mui/material/Tooltip'; import ListItemText from '@mui/material/ListItemText'; // routes import { RouterLink } from 'src/routes/components'; // import Iconify from '../../iconify'; // import { NavItemProps, NavConfigProps } from '../types'; import { StyledItem, StyledIcon } from './styles'; // ---------------------------------------------------------------------- type Props = NavItemProps & { config: NavConfigProps; }; const NavItem = forwardRef( ({ item, depth, open, active, externalLink, config, ...other }, ref) => { const { title, path, icon, info, children, disabled, caption, roles } = item; const subItem = depth !== 1; const renderContent = ( {icon && ( {icon} )} {!(config.hiddenLabel && !subItem) && ( )} {info && ( {info} )} {caption && ( )} {!!children && ( )} ); // Hidden item by role if (roles && !roles.includes(`${config.currentRole}`)) { return null; } // External link if (externalLink) return ( {renderContent} ); // Default return ( {renderContent} ); } ); export default NavItem;