import React, { FC, MouseEventHandler } from 'react' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { faWindowClose } from '@fortawesome/free-solid-svg-icons' import { useTheme } from '../hooks' import { NotificationType } from '../types' interface Props { id: string type: NotificationType auto: boolean setAuto: (id: string) => void dismiss: (id: string) => void } const Notification: FC = ({ id, type, auto, setAuto, dismiss, children }) => { const theme = useTheme() const handleDismiss: MouseEventHandler = e => { e.stopPropagation() dismiss(id) } const color = () => { switch (type) { case NotificationType.Success: return theme.green case NotificationType.Error: return theme.red default: return theme.blue } } return (
setAuto(id)} style={{ backgroundColor: color(), color: '#fff' }}> {!auto && }
{children}
) } export default Notification