From 59d4cda1ccbec7e17038921d1dbc2ea90397bb5d Mon Sep 17 00:00:00 2001 From: Whitewater Date: Wed, 17 Aug 2022 04:30:04 -0800 Subject: [PATCH] fix: workaround weird type error --- libs/components/ui/src/button/IconButton.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/components/ui/src/button/IconButton.tsx b/libs/components/ui/src/button/IconButton.tsx index 9ad863d636..88114f7b2c 100644 --- a/libs/components/ui/src/button/IconButton.tsx +++ b/libs/components/ui/src/button/IconButton.tsx @@ -29,8 +29,8 @@ type SizeType = keyof typeof SIZE_CONFIG; type IconButtonContainerProps = { size?: SizeType; - hoverColor?: CSSProperties['backgroundColor']; - backgroundColor?: CSSProperties['backgroundColor']; + hoverColor?: string; // CSSProperties['backgroundColor']; + backgroundColor?: string; // CSSProperties['backgroundColor']; disabled?: boolean; };