UNPKG

263 BTypeScriptView Raw
1import * as React from 'react';
2import { BlockProps } from './Base';
3export interface ParagraphProps extends BlockProps {
4 onClick?: (e?: React.MouseEvent<HTMLDivElement>) => void;
5}
6declare const Paragraph: React.FC<ParagraphProps>;
7export default Paragraph;