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