7 lines
201 B
TypeScript
7 lines
201 B
TypeScript
import * as React from 'react';
|
|
import { BlockProps } from './Base';
|
|
export interface ParagraphProps extends BlockProps {
|
|
}
|
|
declare const Paragraph: React.FC<ParagraphProps>;
|
|
export default Paragraph;
|