From 7776a5892707d23232979a59a57c4dfea189087b Mon Sep 17 00:00:00 2001 From: Denny Lubitz Date: Wed, 11 Dec 2024 17:32:44 +0100 Subject: [PATCH] FEATURE: Mark inherited disabled nodes in document and content tree --- packages/react-ui-components/src/Icon/icon.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-ui-components/src/Icon/icon.tsx b/packages/react-ui-components/src/Icon/icon.tsx index cb40056a68..88ddd75164 100644 --- a/packages/react-ui-components/src/Icon/icon.tsx +++ b/packages/react-ui-components/src/Icon/icon.tsx @@ -7,7 +7,7 @@ import {defaultProps} from './iconDefaultProps'; type IconSize = 'xs' | 'sm' | 'lg' | '2x' | '3x'; type IconPadding = 'none' | 'left' | 'right'; -type IconColor = 'default' | 'warn' | 'error' | 'primaryBlue'; +type IconColor = 'default' | 'warn' | 'error' | 'primaryBlue' | 'contrastDark'; export interface IconTheme { readonly icon: string;