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