mirror of
https://github.com/mintlify/docs.git
synced 2026-09-14 13:35:46 +08:00
40d2e2cd2d
* Add proper language support for syntax highlighting to all code blocks * Camel case inline code
52 lines
944 B
Plaintext
52 lines
944 B
Plaintext
---
|
|
title: 'Callouts'
|
|
description: 'Use callouts to add eye-catching context to your content'
|
|
icon: 'info'
|
|
---
|
|
|
|
Callouts can be styled as a Note, Warning, Info, Tip, or Check:
|
|
|
|
<Note>This adds a note in the content</Note>
|
|
|
|
```mdx
|
|
<Note>This adds a note in the content</Note>
|
|
```
|
|
|
|
<Warning>This raises a warning to watch out for</Warning>
|
|
|
|
```mdx
|
|
<Warning>This raises a warning to watch out for</Warning>
|
|
```
|
|
|
|
<Info>This draws attention to important information</Info>
|
|
|
|
```mdx
|
|
<Info>This draws attention to important information</Info>
|
|
```
|
|
|
|
<Tip>This suggests a helpful tip</Tip>
|
|
|
|
```mdx
|
|
<Tip>This suggests a helpful tip</Tip>
|
|
```
|
|
|
|
<Check>This brings us a checked status</Check>
|
|
|
|
```mdx
|
|
<Check>This brings us a checked status</Check>
|
|
```
|
|
|
|
<Danger>This is a danger callout</Danger>
|
|
|
|
```jsx
|
|
<Danger>This is a danger callout</Danger>
|
|
```
|
|
|
|
<RequestExample>
|
|
|
|
```mdx Callout Example
|
|
<Note>This adds a note in the content</Note>
|
|
```
|
|
|
|
</RequestExample>
|