UNPKG

quick-ui-design

Version:

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

10 lines (9 loc) 361 B
import { ParagraphProps } from 'antd/es/typography/Paragraph'; import { FC } from 'react'; import { TYPOGRAPHY_PARAGRAPH } from '../../../Types'; export interface ITypographyParagraph { ctype: typeof TYPOGRAPHY_PARAGRAPH; props: ParagraphProps; } declare const TypographyParagraph: FC<ITypographyParagraph>; export default TypographyParagraph;