From 50f7eb5fabc27586b678bbfbd9c4c7615101c2e6 Mon Sep 17 00:00:00 2001 From: Mihai Dinculescu Date: Thu, 21 Sep 2017 18:17:29 +0100 Subject: [PATCH] fix(Icon): fix typings of Icon.Group --- src/elements/Icon/Icon.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/elements/Icon/Icon.d.ts b/src/elements/Icon/Icon.d.ts index ba4d24ac1d..282e4a1ba1 100644 --- a/src/elements/Icon/Icon.d.ts +++ b/src/elements/Icon/Icon.d.ts @@ -55,7 +55,7 @@ export interface IconProps { } declare class Icon extends React.Component { - Group: typeof IconGroup; + static Group: typeof IconGroup; } export default Icon;