@i-novus/ui-core
Version:
Базовые UI компоненты
14 lines (13 loc) • 521 B
TypeScript
import { ForwardRefExoticComponent, RefAttributes } from 'react';
import { TypographyBodyProps } from './Typography';
import { Text } from './Text';
import { Title } from './Title';
import { Link } from './Link';
import { Paragraph } from './Paragraph';
export type TypographyProps = ForwardRefExoticComponent<TypographyBodyProps & RefAttributes<HTMLElement>> & {
Link: typeof Link;
Paragraph: typeof Paragraph;
Text: typeof Text;
Title: typeof Title;
};
export declare const Typography: TypographyProps;