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 166c188 commit c5c5663Copy full SHA for c5c5663
src/index.tsx
@@ -84,7 +84,7 @@ const Cursor: React.FC<CursorProps> = ({ zIndex = 9999, theme = {}, defaultColor
84
theme.rules
85
.filter((rule) => {
86
if (Array.isArray(rule.selector)) {
87
- return rule.selector.some(selector => target.matches(selector));
+ return rule.selector.some((selector) => target.matches(selector));
88
}
89
return target.matches(rule.selector);
90
})
0 commit comments