mirror of
https://github.com/bolucat/Archive.git
synced 2025-12-24 13:28:37 +08:00
11 lines
236 B
TypeScript
11 lines
236 B
TypeScript
import { Theme } from "@mui/material";
|
|
import { Components } from "@mui/material/styles/components";
|
|
|
|
export const MuiButton: Components<Theme>["MuiButton"] = {
|
|
styleOverrides: {
|
|
root: {
|
|
borderRadius: "48px",
|
|
},
|
|
},
|
|
};
|