adui
Version:
<div> <img src="https://wxa.wxs.qq.com/mpweb/delivery/legacy/wxadtouch/upload/t1/od834zef_52939fc6.png" style="margin:40px 0 0 -8px; background-color: #fcfcfc; box-shadow: none;" /> </div>
50 lines (47 loc) • 970 B
Markdown
---
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>
)
```