Side offset

The distance in pixels from the trigger.

By default, sideOffset is 0.

<Tooltip content="Hey there" sideOffset={10}>
  Hover me 🙌
</Tooltip>

Playground

Play around with the library here

import {Tooltip} from 'react-tiny-tooltip'
export default function App() {
return (
<div style={{marginTop: 50, marginLeft: 50, display: "inline-block"}}>
<Tooltip sideOffset={50} content="Hey there">
Hover me 🙌
</Tooltip>
</div>
)
}