mirror of
https://github.com/nikdoof/pocket-id.git
synced 2025-12-14 07:12:19 +00:00
29 lines
741 B
Svelte
29 lines
741 B
Svelte
<script lang="ts">
|
|
import { Tooltip as TooltipPrimitive } from "bits-ui";
|
|
import { cn, flyAndScale } from "$lib/utils/style.js";
|
|
|
|
type $$Props = TooltipPrimitive.ContentProps;
|
|
|
|
let className: $$Props["class"] = undefined;
|
|
export let sideOffset: $$Props["sideOffset"] = 4;
|
|
export let transition: $$Props["transition"] = flyAndScale;
|
|
export let transitionConfig: $$Props["transitionConfig"] = {
|
|
y: 8,
|
|
duration: 150,
|
|
};
|
|
export { className as class };
|
|
</script>
|
|
|
|
<TooltipPrimitive.Content
|
|
{transition}
|
|
{transitionConfig}
|
|
{sideOffset}
|
|
class={cn(
|
|
"bg-popover text-popover-foreground z-50 overflow-hidden rounded-md border px-3 py-1.5 text-sm shadow-md",
|
|
className
|
|
)}
|
|
{...$$restProps}
|
|
>
|
|
<slot />
|
|
</TooltipPrimitive.Content>
|