UNPKG

@namo-io/react-reactions

Version:

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

12 lines (11 loc) • 332 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.VFC<YoutubeCounterProps>; export default YoutubeCounter;