UNPKG

tdesign-react

Version:
11 lines (10 loc) 420 B
import React from 'react'; import type { StyledProps } from '../common'; import type { TdParagraphProps } from './type'; export type TypographyParagraphProps = TdParagraphProps & StyledProps & { children: React.ReactNode; }; declare const Paragraph: React.ForwardRefExoticComponent<TdParagraphProps & StyledProps & { children: React.ReactNode; } & React.RefAttributes<HTMLDivElement>>; export default Paragraph;