@chitlangesahas/react-reactions
Version:
😲 Create custom reaction pickers and counters or use your favorites!
12 lines (11 loc) • 401 B
TypeScript
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.FC<GithubCounterProps>;
export declare const defaultProps: Required<GithubCounterProps>;
export default GithubCounter;