From f8b2251c5bdfe4d81f56017e0423d265b242617d Mon Sep 17 00:00:00 2001 From: Marija Najdova Date: Wed, 4 Sep 2024 00:57:44 +0200 Subject: [PATCH] [material] Fix wrong import to type (#43584) --- packages/mui-material/src/utils/memoTheme.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mui-material/src/utils/memoTheme.ts b/packages/mui-material/src/utils/memoTheme.ts index 2b899413ca6c36..e9fd1dd31f49bf 100644 --- a/packages/mui-material/src/utils/memoTheme.ts +++ b/packages/mui-material/src/utils/memoTheme.ts @@ -1,4 +1,4 @@ -import { CSSInterpolation } from '@mui/styled-engine'; +import { CSSInterpolation } from '@mui/system'; import { Theme } from '../styles/createTheme'; type ThemeStyleFunction = (props: { theme: Theme }) => CSSInterpolation;