@atlaskit/tooltip
Version:
A tooltip briefly describes an interactive element on mouse hover or keyboard focus.
10 lines (9 loc) • 464 B
TypeScript
import { type TooltipPrimitiveProps } from './tooltip-primitive';
export interface TooltipContainerProps extends TooltipPrimitiveProps {
}
/**
* Used as the default tooltip container component for the exported `Tooltip` component.
* Adds some styles to the tooltip primitive.
*/
declare const TooltipContainer: React.ForwardRefExoticComponent<React.PropsWithoutRef<TooltipContainerProps> & React.RefAttributes<HTMLDivElement>>;
export default TooltipContainer;