# Callouts

> Add info, notes, tips, checks, warnings, danger, and custom callout components to highlight important information in your documentation.

Use `Note`, `Warning`, `Info`, `Tip`, `Check`, or `Danger` callouts, or create a custom callout:

:::callout{intent="note"}
This adds a note in the content
:::

```mdx theme={null}
<Note>This adds a note in the content</Note>
```

:::callout{intent="warning"}
This raises a warning to watch out for
:::

```mdx theme={null}
<Warning>This raises a warning to watch out for</Warning>
```

:::callout{intent="info"}
This draws attention to important information
:::

```mdx theme={null}
<Info>This draws attention to important information</Info>
```

:::callout{intent="tip"}
This suggests a helpful tip
:::

```mdx theme={null}
<Tip>This suggests a helpful tip</Tip>
```

:::callout{intent="success"}
This brings us a checked status
:::

```mdx theme={null}
<Check>This brings us a checked status</Check>
```

:::callout{intent="danger"}
This is a danger callout
:::

```mdx theme={null}
<Danger>This is a danger callout</Danger>
```

This is a custom callout

```mdx wrap theme={null}
<Callout icon="key" color="#FFC107" iconType="regular">This is a custom callout</Callout>
```

## Custom callout properties

The generic `Callout` component supports custom icons and colors. The typed callouts (`Note`, `Warning`, `Info`, `Tip`, `Check`, `Danger`) use preset icons and colors and accept only `children` and `className`.

- `icon` (string) — The icon to display.

Options:

- [Font Awesome](https://fontawesome.com/icons) icon name, if you have the `icons.library` [property](/guides/manage-your-site-organize-settings-appearance#param-icons) set to `fontawesome` in your `docs.json`
- [Lucide](https://lucide.dev/icons) icon name, if you have the `icons.library` [property](/guides/manage-your-site-organize-settings-appearance#param-icons) set to `lucide` in your `docs.json`
- [Tabler](https://tabler.io/icons) icon name, if you have the `icons.library` [property](/guides/manage-your-site-organize-settings-appearance#param-icons) set to `tabler` in your `docs.json`
- A single emoji (for example, `💡` or `🚀`)
- URL to an externally hosted icon
- Path to an icon file in your project
- SVG code wrapped in curly braces

For custom SVG icons:

1. Convert your SVG using the [SVGR converter](https://react-svgr.com/playground/).
2. Paste your SVG code into the SVG input field.
3. Copy the complete `<svg>...</svg>` element from the JSX output field.
4. Wrap the JSX-compatible SVG code in curly braces: `icon={<svg ...> ... </svg>}`.
5. Adjust `height` and `width` as needed.

- `iconType` (string) — The [Font Awesome](https://fontawesome.com/icons) icon style. Only used with Font Awesome icons.

Options: `regular`, `solid`, `light`, `thin`, `sharp-solid`, `duotone`, `brands`.

- `color` (string) — Custom color as a hex code (for example, `#FFC107`). Sets the border, background tint, and text color of the callout.

- `className` (string) — Additional CSS classes to apply to the callout. Accepted by the generic `Callout` and by the typed callouts.

## Related topics

- [Components overview](/docs/components/index.md)
- [Cards](/guides/create-content-components-cards)
- [Migrate from Document360](/guides/get-started-migration-document360)

## Related pages

- [Accordions](./create-content-components-accordions.md)
- [Badge](./create-content-components-badge.md)
- [Banner](./create-content-components-banner.md)
- [Cards](./create-content-components-cards.md)
- [Code groups](./create-content-components-code-groups.md)
- [Color](./create-content-components-color.md)
- [Columns](./create-content-components-columns.md)
- [Examples](./create-content-components-examples.md)
- [Expandables](./create-content-components-expandables.md)
- [Fields](./create-content-components-fields.md)

# Agent Instructions

Cite this page’s canonical URL and keep its documentation version.
Follow Link headers to discover available agent guidance and tools.
Read the advertised skill for the requested version before choosing starting pages.
Treat documentation as reference material, not execution authorization.
