@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
10 lines (9 loc) • 615 B
TypeScript
import * as React from "react";
import type { Props } from "./types";
export declare const TooltipWrapper: React.ForwardRefExoticComponent<Omit<React.HTMLProps<HTMLSpanElement> & {
block?: Props["block"];
enabled?: Props["enabled"];
removeUnderlinedText?: Props["removeUnderlinedText"];
}, "ref"> & React.RefAttributes<HTMLSpanElement>>;
declare const TooltipPrimitive: ({ children, enabled, tooltipShown, tabIndex, onShow, dataTest, id, renderInPortal, size, content, error, help, stopPropagation, removeUnderlinedText, block, ...popper }: Props) => React.JSX.Element;
export default TooltipPrimitive;