Я стилизовал обе области заголовка двумя разными способами: один с помощью стилей панели инструментов, а другой напрямую:
В компоненте results per page
есть две части, которые по умолчанию p
import makeStyles from "@material-ui/core/styles/makeStyles";
const useStyles = makeStyles({
caption: {
color: "green",
padding: 8,
border: "1px dashed grey",
fontSize: "0.875rem"
},
toolbar: {
"& > p:nth-of-type(2)": {
fontSize: "1.25rem",
color: "red",
fontWeight: 600
}
}
});
// then later
const classes = useStyles();
<TablePagination
// ...
classes={{
toolbar: classes.toolbar,
caption: classes.caption
}}
/>
Вот демоверсия codesandbox