// @mui import { alpha } from '@mui/material/styles'; import Box from '@mui/material/Box'; import ListItemText from '@mui/material/ListItemText'; import ListItemButton from '@mui/material/ListItemButton'; // components import Label from 'src/components/label'; // ---------------------------------------------------------------------- type Props = { title: { text: string; highlight: boolean; }[]; path: { text: string; highlight: boolean; }[]; groupLabel: string; onClickItem: VoidFunction; }; export default function ResultItem({ title, path, groupLabel, onClickItem }: Props) { return ( theme.palette.divider, '&:hover': { borderRadius: 1, borderColor: (theme) => theme.palette.primary.main, backgroundColor: (theme) => alpha(theme.palette.primary.main, theme.palette.action.hoverOpacity), }, }} > ( {part.text} ))} secondary={path.map((part, index) => ( {part.text} ))} /> {groupLabel && } ); }