From 41cf2c78c55d1cc4c9c289df400dab72517bf451 Mon Sep 17 00:00:00 2001 From: zack Date: Fri, 28 Dec 2018 10:35:54 +0800 Subject: [PATCH] Fix(Grid): Fix activeStyle type (#2996) --- components/grid/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/grid/index.tsx b/components/grid/index.tsx index d9bc44d346..c7d19814f6 100644 --- a/components/grid/index.tsx +++ b/components/grid/index.tsx @@ -11,7 +11,7 @@ export interface GridProps extends GridPropsType { className?: string; square?: boolean; activeClassName?: string; - activeStyle?: object; + activeStyle?: boolean | React.CSSProperties; itemStyle?: React.CSSProperties; }