Interactive Star Component is used for reviewing items. The user has the ability to set some initial value to the stars and then interact with them, by selecting different values.

value - initial value of number of stars active
onStarPress - function executing when the value of the stars changes
Example:
<InteractiveStar
value={ratingCount}
onStarPress={rating => setRatingCount(rating)}
/>