If you're looking to adjust the font size in the MUI Data Grid Toolbar
, make sure you target the correct classes within the component. The buttons inside the toolbar can be modified by targeting the MuiButton
classes specifically.
To change the font size, focus on either the MuiIconButton-root
or MuiButton-text
class for effective customization.
import { DataGrid, GridToolbar } from "@mui/x-data-grid";
<DataGrid
{...data}
components={{
Toolbar: GridToolbar
}}
sx={{ "& .MuiButton-text": { fontSize: 20 } }}
/>