antd
Version:
An enterprise-class UI design language and React components implementation
15 lines (14 loc) • 454 B
TypeScript
import Link from './Link';
import Paragraph from './Paragraph';
import Text from './Text';
import Title from './Title';
import OriginTypography from './Typography';
export type { TypographyProps } from './Typography';
type CompoundedComponent = typeof OriginTypography & {
Text: typeof Text;
Link: typeof Link;
Title: typeof Title;
Paragraph: typeof Paragraph;
};
declare const Typography: CompoundedComponent;
export default Typography;