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; };