UNPKG

400 BTypeScriptView Raw
1import Link from './Link';
2import Paragraph from './Paragraph';
3import Text from './Text';
4import Title from './Title';
5import OriginTypography from './Typography';
6export type TypographyProps = typeof OriginTypography & {
7 Text: typeof Text;
8 Link: typeof Link;
9 Title: typeof Title;
10 Paragraph: typeof Paragraph;
11};
12declare const Typography: TypographyProps;
13export default Typography;