🚀 BlockNote AI is here! Access the early preview.
BlockNote Docs/Features/Built-in Blocks

Built-in Blocks

BlockNote supports a number of built-in blocks, inline content types, and styles that are included in the editor by default. This is called the Default Schema. To create your own content types, see Custom Schemas.

The demo below showcases each of BlockNote's built-in block and inline content types:

Default Block Properties

There are some default block props that BlockNote uses for the built-in blocks:

type  = {
  /**
   * The background color of the block, which also applies to nested blocks.
   * @default "default"
   */
  : string;
  /**
   * The text color of the block, which also applies to nested blocks.
   * @default "default"
   */
  : string;
  /**
   * The text alignment of the block.
   * @default "left"
   */
  : "left" | "center" | "right" | "justify";
};

Explore