Skip to content

Commit fee6fdd

Browse files
authored
[typescript] SystemCSSProperties should not have SystemStyleObject as value (#44029)
1 parent cdcd337 commit fee6fdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/mui-system/src/styleFunctionSx/styleFunctionSx.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export type SystemCssProperties<Theme extends object = {}> = {
5151
[K in keyof AllSystemCSSProperties]:
5252
| ResponsiveStyleValue<AllSystemCSSProperties[K]>
5353
| ((theme: Theme) => ResponsiveStyleValue<AllSystemCSSProperties[K]>)
54-
| SystemStyleObject<Theme>;
54+
| null;
5555
};
5656

5757
/**

0 commit comments

Comments
 (0)