We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0499ae commit 6519f36Copy full SHA for 6519f36
package.json
@@ -17,7 +17,7 @@
17
"react-star",
18
"star"
19
],
20
- "homepage": "",
+ "homepage": "https://github.com/Bunlong/react-star",
21
"main": "dist/react-star.js",
22
"module": "dist/react-star.es.js",
23
"jsnext:main": "dist/react-star.es.js",
src/Icon.tsx
@@ -69,7 +69,9 @@ class Icon extends React.PureComponent<Props> {
69
70
return (
71
<span
72
- style={index === 0 ? Object.assign({}, style, { marginLeft: 0 }) : style}
+ style={
73
+ index === 0 ? Object.assign({}, style, { marginLeft: 0 }) : style
74
+ }
75
onClick={handleMouseClick}
76
onMouseMove={handleMouseMove}
77
onTouchMove={handleMouseMove}
0 commit comments