Arrow

You can show arrow to tooltips too.

showArrow is true by default.

<Tooltip content="Hey there" showArrow={false}>
  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 content="Hey there" showArrow >Hover me 🙌</Tooltip></div>
)
}