refactor: remove size prop from theme configuration

This commit is contained in:
2025-08-14 23:16:21 +03:00
parent 43355b6ce3
commit a169600908

View File

@ -14,7 +14,7 @@ export const myColor: MantineColorsTuple = [
];
const radius = "md";
const size = "md";
// const size = "md";
export const theme = createTheme({
colors: {
@ -25,13 +25,11 @@ export const theme = createTheme({
Button: {
defaultProps: {
radius,
size,
},
},
InputBase: {
defaultProps: {
radius,
size,
},
},
Modal: {