UNPKG

react-activity-feed

Version:

React components to create activity and notification feeds

10 lines 497 B
import { PropsWithChildren, MouseEventHandler } from 'react'; import { PropsWithElementAttributes } from '../utils'; export declare type IconBadgeProps = PropsWithChildren<PropsWithElementAttributes<{ hidden?: boolean; onClick?: MouseEventHandler<HTMLDivElement>; showNumber?: boolean; unseen?: number; }>>; export declare const IconBadge: ({ children, onClick, hidden, unseen, showNumber, className, style }: IconBadgeProps) => JSX.Element; //# sourceMappingURL=IconBadge.d.ts.map