import { Popover } from 'antd'; import { CloseOutlined } from '@ant-design/icons'; import React, { useState } from 'react'; import s from './NotifyReminderPopup.module.scss'; interface Props { visible: boolean; children: React.ReactNode; notificationClicked: () => void; notificationClosed: () => void; } export default function NotifyReminderPopup(props: Props) { const { children, visible, notificationClicked, notificationClosed } = props; const [visiblePopup, setVisiblePopup] = useState(visible); const title =
Stay updated!
; const popupStyle = { borderRadius: '5px', cursor: 'pointer', paddingTop: '10px', paddingRight: '10px', fontSize: '16px', }; const popupClicked = e => { e.stopPropagation(); notificationClicked(); }; const popupClosed = e => { e.stopPropagation(); setVisiblePopup(false); notificationClosed(); }; const content = ( Click and never miss
future streams! ); return ( {children} ); }