Open tahv0 opened 5 years ago
if you want to increase star size, i use this way
place the star inside div, and you set fontsize style to div, and it worked (for me, atleast)
import StarRatingComponent from 'react-star-rating-component'
...
<div style={{fontSize:'20px'}}>
<StarRatingComponent
starCount={5}
value={3}
starColor="#ffcc00"
emptyStarColor="#b4b4b4"
editing={false}
/>
</div>
Hey
I think it would be nice if custom styles could be passed via props. E.g one could change star size with
style={{ fontSize: '50px' }}
Any thoughts?