UNPKG

@chitlangesahas/react-reactions

Version:

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

12 lines (11 loc) • 331 B
import React from 'react'; export interface YoutubeCounterProps { like?: string; dislike?: string; onLikeClick?: () => void; onDislikeClick?: () => void; didLike?: boolean; didDislike?: boolean; } export declare const YoutubeCounter: React.FC<YoutubeCounterProps>; export default YoutubeCounter;