import Box from "@mui/material/Box"; import MedicalServicesIcon from '@mui/icons-material/MedicalServices'; import { Typography } from "@mui/material"; const Hover = { '&:hover': { color: 'white', backgroundColor: '#c090e8', cursor: 'pointer' }, '&:hover.child': { color: '#160325' }, }; const CustomCard = ({ data, handleClick }) => { return ( {data.map((item, index) => { return ( handleClick(item)} > {item.name} ); })} ); }; export default CustomCard;