UNPKG

react-notion-blocks

Version:

A library for mapping Notion blocks to React components

9 lines (8 loc) 195 B
import { BaseBlock, RichText } from './base.types'; export interface QuoteBlock extends BaseBlock { type: "quote"; quote: { rich_text: RichText[]; color: string; }; }