> ## Documentation Index
> Fetch the complete documentation index at: https://wiki.another-horizon.eu/llms.txt
> Use this file to discover all available pages before exploring further.

# 标注框

> 使用标注框来为重要内容设定样式并突出显示。

标注框可以设置为 Note、Warning、Info、Tip、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>
```
