ant-design/components/notification/demo/with-icon.md

35 lines
835 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 2
title: 带有Icon的通知提醒框
---
2015-07-28 15:40:28 +08:00
2015-08-06 15:19:45 +08:00
通知提醒框左侧有图标。
2015-07-28 15:40:28 +08:00
````jsx
import { Button, notification } from 'antd';
2015-07-28 15:40:28 +08:00
const openNotificationWithIcon = function (type) {
return function () {
2015-08-06 15:19:45 +08:00
notification[type]({
message: '这是标题',
2016-05-11 09:32:33 +08:00
description: '这是提示框的文案这是提示框示框的文案这是提示是提示框的文案这是提示框的文案',
2015-08-06 15:19:45 +08:00
});
2015-08-04 15:16:10 +08:00
};
2015-08-03 15:17:12 +08:00
};
ReactDOM.render(
<div>
<Button onClick={openNotificationWithIcon('success')}>成功</Button>
<Button onClick={openNotificationWithIcon('info')}>消息</Button>
2016-03-28 14:38:25 +08:00
<Button onClick={openNotificationWithIcon('warning')}>警告</Button>
<Button onClick={openNotificationWithIcon('error')}>错误</Button>
2015-08-03 15:17:12 +08:00
</div>
, mountNode);
2015-08-04 15:48:00 +08:00
````
<style>
.code-box-demo .ant-btn {
margin-right: 1em;
}
</style>