UNPKG

quick-ui-design

Version:

A Quick UI library for user interface design with React fast and easy.

10 lines (9 loc) 316 B
import { TextProps } from 'antd/es/typography/Text'; import { FC } from 'react'; import { TYPOGRAPHY_TEXT } from '../../../Types'; export interface ITypographyText { ctype: typeof TYPOGRAPHY_TEXT; props: TextProps; } declare const TypographyText: FC<ITypographyText>; export default TypographyText;