tdesign-react
Version:
TDesign Component for React
11 lines (10 loc) • 420 B
TypeScript
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;