--- order: 4 title: zh-CN: 自定义 en-US: Custom clase button and handler --- ## zh-CN 自定义关闭按钮的样式和文字。 ## en-US To customize the style or font of the close button. ````jsx import { Button, notification } from 'antd'; const close = function () { console.log('Notification was closed. Either the close button was clicked or duration time elapsed.'); }; const openNotification = function () { const key = `open${Date.now()}`; const btnClick = function () { // to hide notification box notification.close(key); }; const btn = ( ); notification.open({ message: 'This is the title', description: 'A function will be be called after the notification is closed(automatically after the "duration" time of manually).', btn, key, onClose: close, }); }; ReactDOM.render(