ant-design/components/typography/Paragraph.tsx
CodingYingYingYing a21c1a88c1
fix: Typography.Paragraph\Text\Title ts (#29787)
* fix: Typography.Paragraph\Text\Title ts

* feat: add doc

* feat: title ts

* feat: cr

* chore: revert

* chore: ts

* feat: doc/sort & drop onChange
2021-03-23 13:32:37 +08:00

11 lines
309 B
TypeScript

import * as React from 'react';
import Base, { BlockProps } from './Base';
export interface ParagraphProps extends BlockProps {
onClick?: (e?: React.MouseEvent<HTMLDivElement>) => void;
}
const Paragraph: React.FC<ParagraphProps> = props => <Base {...props} component="div" />;
export default Paragraph;