mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
12 lines
167 B
TypeScript
12 lines
167 B
TypeScript
|
|
import {createTheme} from "@mui/material";
|
||
|
|
|
||
|
|
const theme = createTheme({
|
||
|
|
typography: {
|
||
|
|
button: {
|
||
|
|
textTransform: 'none'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|
||
|
|
export default theme;
|