Skip to content

Instantly share code, notes, and snippets.

@drahoslavzan
drahoslavzan / Rating.tsx
Last active August 2, 2020 17:05
[REACT | TAILWIND] Rating Component
import * as React from "react";
import { times } from "lodash";
export type RatingProps = {
rating: number
onUpdate: (rating: number) => void
className?: string
};
export default React.forwardRef<HTMLButtonElement, RatingProps>((props, ref) => {