From a1696009081c30d670390f945a84e7cfb0fa49da Mon Sep 17 00:00:00 2001 From: admin Date: Thu, 14 Aug 2025 23:16:21 +0300 Subject: [PATCH] refactor: remove size prop from theme configuration --- src/theme.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/theme.ts b/src/theme.ts index 7e9fd50..b97edea 100644 --- a/src/theme.ts +++ b/src/theme.ts @@ -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: {