From 5a7434c5d6e8368fe18153334e5e1782533e6756 Mon Sep 17 00:00:00 2001 From: afc163 Date: Tue, 28 May 2019 16:06:03 +0800 Subject: [PATCH] :zap: export TypographyProps close #15190 --- components/typography/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/typography/index.tsx b/components/typography/index.tsx index 73bbd766d2..e490b21fd5 100644 --- a/components/typography/index.tsx +++ b/components/typography/index.tsx @@ -3,7 +3,7 @@ import Text from './Text'; import Title from './Title'; import Paragraph from './Paragraph'; -type TypographyProps = typeof OriginTypography & { +export type TypographyProps = typeof OriginTypography & { Text: typeof Text; Title: typeof Title; Paragraph: typeof Paragraph;