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

35 lines
812 B
Markdown
Raw Normal View History

2015-07-28 15:40:28 +08:00
# 带有Icon的通知提醒框
2015-08-03 15:17:12 +08:00
- order: 2
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) {
2015-08-04 15:16:10 +08:00
return function(){
2015-08-06 15:19:45 +08:00
notification[type]({
message: '这是标题',
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
};
2015-10-20 16:47:55 +08:00
ReactDOM.render(<div>
<Button onClick={openNotificationWithIcon('success')}>成功</Button>
<Button onClick={openNotificationWithIcon('info')}>消息</Button>
<Button onClick={openNotificationWithIcon('warn')}>警告</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>