quick-ui-design
Version:
A Quick UI library for user interface design with React fast and easy.
10 lines (9 loc) • 325 B
TypeScript
import { TitleProps } from 'antd/es/typography/Title';
import { FC } from 'react';
import { TYPOGRAPHY_TITLE } from '../../../Types';
export interface ITypographyTitle {
ctype: typeof TYPOGRAPHY_TITLE;
props: TitleProps;
}
declare const TypographyTitle: FC<ITypographyTitle>;
export default TypographyTitle;