Pretty rating React
A small and simple library that transform you rating in icons for you web.
Getting started
To install as npm dev dependency
API Documentation
PrettyRating
This is the wrapper component that creates the pretty format of our rating.
Name | Type | Required | Default value | Values Allowed | Description |
---|---|---|---|---|---|
rating | number | true | - | Positive floats or integers numbers | Rating that we will transform to icons |
icons | object | true | - | This object receive 3 attributes (complete, half, empty) | Class names foreach elements |
iconsNumber | number | false | 5 | Positive integers numbers | Number of icons to create |
setColors | array | false | [#000, #000, #000] | Hexadecimal colors | Colors with which icons are rendered |
The iconsNumber
determines the number of icons to render, it's related to rating
. So, if the iconsNumber
is 5, the rating must be from 0 to 5.
How to use it
The following snippet will show you how to use the library: (Example with icons of FontAwesome)
Using function components (without Typescript):
Using function components (with Typescript):