@charkour/react-reactions
Version:
😲 Create custom reaction pickers and counters or use your favorites!
9 lines (8 loc) • 372 B
TypeScript
import React from 'react';
export interface GithubSelectorProps {
reactions?: string[];
onSelect?: (shortCode: string) => void;
}
export declare const GithubSelector: React.ForwardRefExoticComponent<GithubSelectorProps & React.RefAttributes<HTMLDivElement>>;
export declare const defaultProps: Required<GithubSelectorProps>;
export default GithubSelector;