UNPKG

react-notion-blocks

Version:

A library for mapping Notion blocks to React components

16 lines (15 loc) 365 B
import { BaseBlock, RichText } from './base.types'; export interface CalloutBlock extends BaseBlock { type: "callout"; callout: { rich_text: RichText[]; icon: { type: "emoji" | "external"; emoji?: string; external?: { url: string; }; }; color: string; }; }