fix: workaround weird type error

This commit is contained in:
Whitewater
2022-08-17 04:30:04 -08:00
committed by GitHub
parent 1d3a285681
commit 59d4cda1cc
+2 -2
View File
@@ -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;
};