diff --git a/src/components/general/Rating.js b/src/components/general/Rating.js index b93343c..81e352b 100644 --- a/src/components/general/Rating.js +++ b/src/components/general/Rating.js @@ -5,9 +5,9 @@ import classNames from 'classnames'; import './Rating.scss'; -function Rating({ rating, maxRating, size = 1.2 }) { +function Rating({ rating, maxRating, size = 1.6 }) { return ( -
+
{new Array(maxRating).fill(0).map((_, index) => { const isActive = rating >= index + 1; return (