UNPKG

@charkour/react-reactions

Version:

😲 Create custom reaction pickers and counters or use your favorites!

12 lines (11 loc) • 462 B
import React from 'react'; import { CounterObject } from '../../helpers'; export interface GithubCounterProps { counters?: CounterObject[]; user?: string; onSelect?: (emoji: string) => void; onAdd?: () => void; } export declare const GithubCounter: React.ForwardRefExoticComponent<GithubCounterProps & React.RefAttributes<HTMLDivElement>>; export declare const defaultProps: Required<GithubCounterProps>; export default GithubCounter;