Skip to content

Commit

Permalink
Fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
tschumpr committed Sep 3, 2024
1 parent 8729e0b commit 18b5b5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client/src/mui.theme.d.ts
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down Expand Up @@ -228,7 +228,7 @@ declare module "@mui/material/styles" {
};
MuiSelect: {
defaultProps: {
IconComponent: ComponentType<never>;
IconComponent: ComponentType<SVGProps<SVGSVGElement> & { title?: string | undefined }>;
};
};
MuiFormControl: {
Expand Down

0 comments on commit 18b5b5f

Please sign in to comment.