From 8615934ede91b1e037b4c675050abae2f6507f92 Mon Sep 17 00:00:00 2001 From: mnajdova Date: Tue, 3 Sep 2024 12:57:28 +0200 Subject: [PATCH] [material] Fix wrong import to type --- 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;