You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
868 B

# 带有Icon的通知提醒框
- order: 2
通知提醒框左侧有图标。
---
````jsx
import { Button, notification } from 'antd';
const openNotificationWithIcon = function(type) {
9 years ago
return function(){
notification[type]({
9 years ago
message: "这是标题",
description: "这是提示框的文案这是提示框示框的文案这是提示是提示框的文案这是提示框的文案"
});
9 years ago
};
};
9 years ago
ReactDOM.render(<div>
<Button onClick={openNotificationWithIcon('success')}>成功</Button>
<Button onClick={openNotificationWithIcon('info')}>消息</Button>
<Button onClick={openNotificationWithIcon('warn')}>警告</Button>
<Button onClick={openNotificationWithIcon('error')}>错误</Button>
</div>
, document.getElementById('components-notification-demo-with-icon'));
9 years ago
````
<style>
.code-box-demo .ant-btn {
margin-right: 1em;
}
</style>