Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 591 Bytes

README.md

File metadata and controls

32 lines (25 loc) · 591 Bytes

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
}