react-laag
react-laag copied to clipboard
Tooltip flickers while hovering on the button
I used react-laag to create a tooltip. When I hover over the info button and button, the tooltip shows the blinking effect. How I can fix it?
https://github.com/everweij/react-laag/assets/105698064/7dc08ebd-a2e6-41dd-8b74-ddccf1954f8e
add pointerEvents: "none" in your component which you are passing in renderLayer()
{(isOver ? renderLayer(
<m.div
ref={layerProps.ref}
style={{
pointerEvents: "none",
...layerProps.style,
}}
>
<span>
Tooltip
</span>
</m.div>
) : null}