From 5ac799452b60c6e44cf6e88c1804e3954b49e137 Mon Sep 17 00:00:00 2001 From: hrushi_kedar <49672580+hrushikedar33@users.noreply.github.com> Date: Tue, 24 Jan 2023 12:27:48 +0530 Subject: [PATCH] Updated theme.ts --- styles/theme.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/styles/theme.ts b/styles/theme.ts index 9d6a746c..a0bbd647 100644 --- a/styles/theme.ts +++ b/styles/theme.ts @@ -1,10 +1,10 @@ -import { createMuiTheme } from '@material-ui/core/styles'; +import { createTheme } from '@material-ui/core/styles'; import { green } from '@material-ui/core/colors'; // A theme with custom primary and secondary color. // It's optional. -const theme = createMuiTheme({ +const theme = createTheme({ drawerWidth: 240, palette: { primary: { @@ -23,5 +23,3 @@ const theme = createMuiTheme({ } as any); export type Theme = typeof theme; export default theme; - -