A popup that displays information related to an element when the element receives keyboard focus or the mouse hovers over it.
<script lang="ts">
import { buttonVariants } from "../ui/button/index.js";
import * as Tooltip from "$lib/components/ui/tooltip/index.js";
</script>
<Tooltip.Provider>
<Tooltip.Root>
<Tooltip.Trigger class={buttonVariants({ variant: "outline" })}
>Hover</Tooltip.Trigger
>
<Tooltip.Content>
<p>Add to library</p>
</Tooltip.Content>
</Tooltip.Root>
</Tooltip.Provider> Installation
Install bits-ui:
Copy and paste the following code into your project.
Usage
The Tooltip.Provider component should be placed once in your root layout, wrapping all content that will contain tooltips. This ensures that only one tooltip within the provider can be open at a time.
<script lang="ts">
import * as Tooltip from "$lib/components/ui/tooltip/index.js";
let { children } = $props();
</script> <Tooltip.Provider>
{@render children()}
</Tooltip.Provider> Then use tooltips anywhere in your app:
<script lang="ts">
import * as Tooltip from "$lib/components/ui/tooltip/index.js";
</script>
<Tooltip.Root>
<Tooltip.Trigger>Hover</Tooltip.Trigger>
<Tooltip.Content>
<p>Add to library</p>
</Tooltip.Content>
</Tooltip.Root> Nested Providers
You can nest providers to create groups with different settings. Tooltips use the closest ancestor provider. This is useful when you want instant tooltips in specific areas:
<Tooltip.Provider delayDuration={0}>
<!-- Tooltips here will open instantly -->
</Tooltip.Provider> Changelog
2025-12 Update tooltip colors
We've updated the tooltip colors to use the foreground color for the background and the background color for the foreground.
Replace bg-primary text-primary-foreground with bg-foreground text-background for <Tooltip.Content />.