import React from 'react'; import { withStyles } from '@material-ui/core/styles'; import Button from '@material-ui/core/Button'; const GlobalCss = withStyles({ // @global is handled by jss-plugin-global. '@global': { // You should target [class*="MuiButton-root"] instead if you nest themes. '.MuiButton-root': { fontSize: '1rem', }, }, })(() => null); export default function GlobalCssOverride() { return ( ); }