@devfamily/admiral
Version:
Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.
11 lines (10 loc) • 338 B
TypeScript
import OriginTypography from './Typography';
import Text from './Text';
import Title from './Title';
import Paragraph from './Paragraph';
export declare type TypographyProps = typeof OriginTypography & {
Text: typeof Text;
Title: typeof Title;
Paragraph: typeof Paragraph;
};
export declare const Typography: TypographyProps;