> ## Documentation Index
> Fetch the complete documentation index at: https://context7.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Callouts

> Highlight notes, warnings, and other important information

Use a named callout for short information that should stand out. `<Success>` is an alias for `<Check>`.

## Usage

```mdx theme={null}
<Note>Useful context.</Note>
<Info>Neutral information.</Info>
<Tip>A helpful suggestion.</Tip>
<Warning>Something needs attention.</Warning>
<Check>Something worked.</Check>
<Danger>A risky action.</Danger>

<Callout icon="sparkles" color="#8B5CF6">
  A custom callout.
</Callout>
```

Named callouts also accept `emoji` and `type`. `<Callout>` accepts `icon`, `iconType`, and `color`.

## Example

<Note>Useful context.</Note>
<Info>Neutral information.</Info>
<Tip>A helpful suggestion.</Tip>
<Warning>Something needs attention.</Warning>
<Check>Something worked.</Check>
<Danger>A risky action.</Danger>

<Callout icon="sparkles" color="#8B5CF6">
  A custom callout.
</Callout>
