UNPKG

react-activity-feed

Version:

React components to create activity and notification feeds

8 lines 426 B
import { MouseEvent, PropsWithChildren } from 'react'; import { PropsWithElementAttributes } from '../utils'; export declare type LinkProps = PropsWithElementAttributes<PropsWithChildren<{ onClick?: (event: MouseEvent<HTMLAnchorElement>) => void; to?: string; }>, HTMLAnchorElement>; export declare const Link: ({ to, children, onClick, className, style }: LinkProps) => JSX.Element; //# sourceMappingURL=Link.d.ts.map