frst-components 0.33.2 → 0.33.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10112,7 +10112,7 @@ function StarRatingComponent({ id, variant, isEmpty, active, handleClick, sizeSt
|
|
|
10112
10112
|
const getColorStarPrimary = () => (active ? '#FFC200' : '#757575');
|
|
10113
10113
|
const getColorStarSecondary = () => {
|
|
10114
10114
|
if (isEmpty && !active)
|
|
10115
|
-
return '
|
|
10115
|
+
return '#BDBDBD';
|
|
10116
10116
|
return active ? '#FDD836' : '#BDBDBD';
|
|
10117
10117
|
};
|
|
10118
10118
|
React.useEffect(() => {
|