fix: syntax issues caused by upgrading mui5

This commit is contained in:
huzibaca
2024-11-12 20:05:28 +08:00
parent 586af67829
commit 27a78af269
5 changed files with 30 additions and 24 deletions

View File

@@ -239,7 +239,9 @@ const Widget = styled(Box)(({ theme: { typography } }) => ({
borderRadius: "4px",
}));
const TypeBox = styled(Box)(({ theme: { palette, typography } }) => ({
const TypeBox = styled(Box, {
shouldForwardProp: (prop) => prop !== "component",
})<{ component?: React.ElementType }>(({ theme: { palette, typography } }) => ({
display: "inline-block",
border: "1px solid #ccc",
borderColor: "text.secondary",