From c72c773e6764e9a3331363cc46cd2138727f1c9a Mon Sep 17 00:00:00 2001 From: Pubudu Kodikara Date: Tue, 9 Jun 2020 17:24:59 +0530 Subject: [PATCH] fix: export CardInterface from Card resolves #24864 (#24866) --- components/card/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/card/index.tsx b/components/card/index.tsx index 35098eecbc..cda4693ad1 100644 --- a/components/card/index.tsx +++ b/components/card/index.tsx @@ -57,7 +57,7 @@ export interface CardProps extends Omit, 't tabProps?: TabsProps; } -interface CardInterface extends React.FC { +export interface CardInterface extends React.FC { Grid: typeof Grid; Meta: typeof Meta; }