Hello,
I'm a beginner in next.js and I'm trying to place my tooltip below my 'Log In' Text with an arrow but I can't get the arrow to show.
<div className="relative mr-2">
<Tooltip
content={
<div className="flex items-center justify-center h-full">
Coming soon
</div>
}
showArrow={true}
placement="bottom"
size="sm"
className="bg-tooltip-grey bg-opacity-60 text-white rounded-md shadow-xl text-sm h-7 w-28">
<span className="cursor-pointer">Log In</span>
</Tooltip>
</div>```