---
order: 0
title:
  zh-CN: 内部驱动
  en-US: Type
---

关闭提醒

```jsx
return (
  <div>
    <Alert
      closable
      text="这是一条提示信息"
      title="提醒标题"
      style={{ width: "500px", marginBottom: "12px" }}
    />
    <Alert
      closable
      text="这是一条提示信息"
      title="提醒标题"
      style={{ width: "500px", marginBottom: "12px" }}
      intent="primary"
    />
    <Alert
      closable
      text="这是一条提示信息"
      title="提醒标题"
      style={{ width: "500px", marginBottom: "12px" }}
      intent="success"
    />
    <Alert
      closable
      text="这是一条提示信息"
      title="提醒标题"
      style={{ width: "500px", marginBottom: "12px" }}
      intent="warning"
    />
    <Alert
      closable
      text="这是一条提示信息"
      title="提醒标题"
      style={{ width: "500px", marginBottom: "12px" }}
      intent="danger"
    />
  </div>
)
```
