/react-rtstar

react-rtstar is a react component to give you opportunity to make great and easy to use rating/notation system.

Primary LanguageTypeScript

react-rtstar logo

react-rtstar

Usage

import RtStar from 'react-rtstar'

<RtStar />

Props

type RtStarProps = {
  stars?: number // number of stars
  size?: number // size of stars in pixel
  activeColor?: string
  inactiveColor?: string
  value?: number
  onChange?: (value: number) => void
}