Files
omni-tools/src/config/muiConfig.ts

12 lines
167 B
TypeScript
Raw Normal View History

2024-06-19 21:18:35 +01:00
import {createTheme} from "@mui/material";
const theme = createTheme({
typography: {
button: {
textTransform: 'none'
}
}
});
export default theme;