@teamix/typography
Version:
15 lines (14 loc) • 443 B
TypeScript
import OriginTypography from './Typography';
import Text from './Text';
import Link from './Link';
import Title from './Title';
import Paragraph from './Paragraph';
import './style/index.scss';
export declare type TypographyProps = typeof OriginTypography & {
Text: typeof Text;
Link: typeof Link;
Title: typeof Title;
Paragraph: typeof Paragraph;
};
declare const NewTypography: TypographyProps;
export default NewTypography;