import { CSSProperties, FunctionComponent } from 'react'; interface NotificationBadgeProps { show?: boolean; style?: CSSProperties; } const NotificationBadge: FunctionComponent = ({ show, style }) => { return show ? (
) : null; }; export default NotificationBadge;