ant-design/components/typography/Paragraph.tsx
叶枫 4f43482059 feat: export interface (#20111)
* feat: add export

* Update Title.tsx
2019-12-06 10:44:47 +08:00

9 lines
249 B
TypeScript

import * as React from 'react';
import Base, { BlockProps } from './Base';
export interface ParagraphProps extends BlockProps {}
const Paragraph: React.SFC<ParagraphProps> = props => <Base {...props} component="div" />;
export default Paragraph;