import { ThemeProvider, createTheme } from '@mui/material/styles'; import Button from '@mui/material/Button'; const theme = createTheme({ typography: { button: { fontSize: '1rem', }, }, }); export default function ThemeVariables() { return ( ); }