@charkour/react-reactions
Version:
😲 Create custom reaction pickers and counters or use your favorites!
12 lines (11 loc) • 392 B
TypeScript
import React from 'react';
export interface YoutubeCounterProps {
like?: string;
dislike?: string;
onLikeClick?: () => void;
onDislikeClick?: () => void;
didLike?: boolean;
didDislike?: boolean;
}
export declare const YoutubeCounter: React.ForwardRefExoticComponent<YoutubeCounterProps & React.RefAttributes<HTMLDivElement>>;
export default YoutubeCounter;