Tooltip

A popup that displays additonal information when hovering or focusing an element.

Basic Example

<script>
	import { Tooltip, TooltipTrigger, TooltipContent, TooltipArrow } from 'lithesome';
</script>

<Tooltip>
	<TooltipTrigger>
		<button></button>
	</TooltipTrigger>
	<TooltipContent>
		<TooltipArrow />
	</TooltipContent>
</Tooltip>

Hovering the tooltip

Hovering the tooltip usually is almost never needed as it’s main purpose is to display information and not intended to be intracted with.

If hovering the tooltip is required, I suggest you view the Hovercard component.
It’ll allow for hovering the content without it disappearing upon hovering.