UNPKG

react-help-desk-tailwindcss-ts

Version:

Help desk component for React with Tailwindcss in TypeScript

9 lines (8 loc) 262 B
import { default as React } from 'react'; interface ThumbRatingProps { onClick: (type: "up" | "down") => void; selected?: "up" | "down" | null; type: "up" | "down"; } declare const ThumbRating: React.FC<ThumbRatingProps>; export default ThumbRating;