From 37978d288f3edc6c86c2315611d01652f3fba223 Mon Sep 17 00:00:00 2001 From: Philipp Hugenroth Date: Mon, 19 Jun 2023 10:31:17 +0200 Subject: [PATCH] Change IconComponent type to be compatible with MUI5 Signed-off-by: Philipp Hugenroth --- packages/core-plugin-api/src/icons/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core-plugin-api/src/icons/types.ts b/packages/core-plugin-api/src/icons/types.ts index d7dca27bf9..3e90c2eac4 100644 --- a/packages/core-plugin-api/src/icons/types.ts +++ b/packages/core-plugin-api/src/icons/types.ts @@ -33,5 +33,5 @@ import { ComponentType } from 'react'; * @public */ export type IconComponent = ComponentType<{ - fontSize?: 'default' | 'small' | 'large'; + fontSize?: 'inherit' | 'medium' | 'large' | 'small'; }>;