UNPKG

react-notion-blocks

Version:

A library for mapping Notion blocks to React components

10 lines (9 loc) 235 B
import { BaseBlock, RichText } from './base.types'; export interface ParagraphBlock extends BaseBlock { type: "paragraph"; paragraph: { rich_text: RichText[]; color: string; }; children?: BaseBlock[]; }