Paragraph.d.ts 201 Bytes Raw Blame History Permalink 1 2 3 4 5 6 import * as React from 'react'; import { BlockProps } from './Base'; export interface ParagraphProps extends BlockProps { } declare const Paragraph: React.FC<ParagraphProps>; export default Paragraph;