From 18b5b5fdeef81ed00ab54208af398da0490b7f29 Mon Sep 17 00:00:00 2001 From: tschumpr Date: Tue, 3 Sep 2024 16:31:46 +0200 Subject: [PATCH] Fix type --- src/client/src/mui.theme.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/src/mui.theme.d.ts b/src/client/src/mui.theme.d.ts index ca27381ce..4785e6318 100644 --- a/src/client/src/mui.theme.d.ts +++ b/src/client/src/mui.theme.d.ts @@ -1,5 +1,5 @@ import { Theme, ThemeOptions } from "@mui/material/styles"; -import { ComponentType } from "react"; +import { ComponentType, SVGProps } from "react"; declare module "@mui/material/Button" { interface ButtonPropsColorOverrides { @@ -228,7 +228,7 @@ declare module "@mui/material/styles" { }; MuiSelect: { defaultProps: { - IconComponent: ComponentType; + IconComponent: ComponentType & { title?: string | undefined }>; }; }; MuiFormControl: {