UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

17 lines 527 B
import { CSSProperties, FC } from "react"; import { TooltipProps, PointerDirection } from "../common/tooltip-utils"; type Props = Omit<TooltipProps, "ref"> & { noHover?: boolean; open?: boolean; onExpand?: () => void; onCollapse?: () => void; pointer?: PointerDirection; overlayStyle?: CSSProperties; offset?: number; noFlip?: boolean; noShift?: boolean; notInline?: boolean; }; declare const EbayTooltip: FC<Props>; export default EbayTooltip; //# sourceMappingURL=ebay-tooltip.d.ts.map