Files

19 lines
365 B
JavaScript
Raw Permalink Normal View History

2025-12-12 14:26:25 +09:00
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 (
<ThemeProvider theme={theme}>
<Button>font-size: 1rem</Button>
</ThemeProvider>
);
}