Skip to content
Blode.md

AI agents: fetch the documentation index at llms.txt. Markdown versions are available by appending .md to any page URL, including this page's markdown.

Callout

Highlight important information with colored alert boxes.

Use the Callout component to draw attention to important information. Each callout type has a distinct color to signal its intent.

Basic usage

Wrap your content in a <Callout> with a type prop:

<Callout type="info">This is an informational callout.</Callout>

Types

There are seven built-in callout types:

Shorthand aliases

Each callout type has a shorthand component that you can use without the type prop:

<Note>A concise note for your readers.</Note>

<Warning>This action cannot be undone.</Warning>

<Tip>You can combine callouts with other components.</Tip>

The available aliases are <Note>, <Warning>, <Info>, <Tip>, <Check>, and <Danger>.

With a title

Add a title prop to display a heading above the callout content:

<Callout type="warning" title="Breaking change">
  The `v2` API removes the `legacy` parameter. Update your integration before
  upgrading.
</Callout>

Props

FieldTypeDescriptionRequiredDefault
type"info" | "success" | "warning" | "danger" | "note" | "tip" | "check"Visual style of the callout.Optional"info"
titlestringOptional heading displayed above the content.Optional
iconReactNodeCustom icon rendered before the content.Optional
colorstringCustom border and background color (hex or CSS color).Optional
childrenReactNodeThe callout content.Yes