UNPKG

@atlaskit/tooltip

Version:

A tooltip is a floating, non-actionable label used to explain a user interface element or feature.

8 lines (7 loc) 388 B
/** @jsx jsx */ import { TooltipProps } from './types'; declare function Tooltip({ children, position, mousePosition, content, truncate, component: Container, tag: TargetContainer, testId, delay, onShow, onHide, hideTooltipOnClick, hideTooltipOnMouseDown, analyticsContext, }: TooltipProps): JSX.Element; declare namespace Tooltip { var displayName: string; } export default Tooltip;