> ## Documentation Index
> Fetch the complete documentation index at: https://omer-914cc1c6.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# 标注

> 使用标注为你的内容添加醒目的上下文信息

标注可以设置为 Note、Warning、Info、提示、Check、Danger，或创建你自己的标注：

<Note>这将在内容中添加一条说明</Note>

```mdx theme={null}
<Note>这在对象中添加了一个注释</Note>
```

<Warning>这会触发一个 Warning，提醒你留意</Warning>

```mdx theme={null}
<Warning>这会发出一个需要注意的警告</Warning>
```

<Info>强调重要信息</Info>

```mdx theme={null}
<Info>这会突出显示重要信息</Info>
```

<Tip>这是一条实用提示</Tip>

```mdx theme={null}
<Tip>这是一个有用的提示</Tip>
```

<Check>这会呈现一个“已选中”的状态</Check>

```mdx theme={null}
<Check>这为我们提供了选中状态</Check>
```

<Danger>这是一个警告提示</Danger>

```mdx theme={null}
<Danger>这是一个危险提示</Danger>
```

<Callout icon="key" color="#FFC107" iconType="regular"> 这是一个自定义标注</Callout>

```mdx wrap theme={null}
<Callout icon="key" color="#FFC107" iconType="regular">这是一个自定义提示框</Callout>
```
