Interface TooltipProviderProps

interface TooltipProviderProps {
    children: ReactNode;
    delayDuration?: number;
    disableHoverableContent?: boolean;
    skipDelayDuration?: number;
}

Properties

children: ReactNode
delayDuration?: number

The duration from when the pointer enters the trigger until the tooltip opens, in milliseconds. Default: 500.

disableHoverableContent?: boolean

When true, the tooltip content stays open while the pointer is over it. Set to false for stricter "hover the trigger only" behavior. Default: true.

skipDelayDuration?: number

If a tooltip has opened, the duration during which other tooltips open instantly (without waiting for delayDuration), in milliseconds. Default: 300.