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