React Notification UI Component
import Notification from '@rc-component/notification';
Notification.newInstance({}, (notification) => {
  notification.notice({
    content: 'content',
  });
});| Browser | Supported Version | 
|---|---|
|  Firefox | last 2 versions | 
|  Chrome | last 2 versions | 
|  Safari | last 2 versions | 
|  Electron | last 2 versions | 
online example: https://notification-react-component.vercel.app
props details:
| name | type | default | description | 
|---|---|---|---|
| prefixCls | String | prefix class name for notification container | |
| style | Object | {'top': 65, left: '50%'} | additional style for notification container. | 
| getContainer | getContainer(): HTMLElement | function returning html node which will act as notification container | |
| maxCount | number | max notices show, drop first notice if exceed limit | 
props details:
| name | type | default | description | 
|---|---|---|---|
| content | React.Element | content of notice | |
| key | String | id of this notice | |
| closable | Boolean | { closeIcon: ReactNode, onClose: VoidFunction } | whether show close button | |
| onClose | Function | called when notice close | |
| duration | number | 1.5 | after duration of time, this notice will disappear.(seconds) | 
| showProgress | boolean | false | show with progress bar for auto-closing notification | 
| pauseOnHover | boolean | true | keep the timer running or not on hover | 
| style | Object | { right: '50%' } | additional style for single notice node. | 
| closeIcon | ReactNode | specific the close icon. | |
| props | Object | An object that can contain data-*,aria-*, orroleprops, to be put on the notificationdiv. This currently only allowsdata-testidinstead ofdata-*in TypeScript. See microsoft/TypeScript#28960. | 
remove single notice with specified key
destroy current notification
npm test
npm run chrome-test
npm run coverage
open coverage/ dir
@rc-component/notification is released under the MIT license.
