Using React 18, and latest styledcomponents, how do I set the font weight for MUI Table Cell?
This code is getting the right color, but not setting font weight.
const StyledTableCell = styled(TableCell)({
  backgroundColor: "#99D9EA",
  fontWeight: "800",
});
<StyledTableCell>Enrollment Date</StyledTableCell>

 
                        
Try something like:
Possible CSS classes are described here: https://mui.com/material-ui/api/table-cell/