Skip to main content
To display secondary information alongside a page’s main content, use the <Aside> component. It is a wrapper over built-in Callout components provided by Mintlify, but with an unified interface and a way to specify a title.

Import

Usage

Display an aside (also known as “admonitions” or “callouts”) using the <Aside> component. An <Aside> can have an optional type attribute, which controls the aside’s color, icon, and default title.

Use custom titles

Override the default aside titles by using the title attribute.
Watch out!

<Aside> props

Implementation: aside.jsx The <Aside> component accepts the following props:

type

type: "note" | "tip" | "caution" | "danger"
default: "note"
The type of aside to display:
  • note asides (the default) are blue and display an information icon.
  • tip asides are purple and display a rocket icon.
  • caution asides are yellow and display a triangular warning icon.
  • danger asides are red and display an octagonal warning icon.

title

type: string The title of the aside to display. If title is not set, the default title for the current aside type will be used.