@ebay/ui-core-react
Version:
Skin components build off React
19 lines • 603 B
TypeScript
import { CSSProperties, FC } from "react";
import { TooltipProps, PointerDirection } from "../common/tooltip-utils";
export type TourtipProps = Omit<TooltipProps, "ref"> & {
a11yCloseText: string;
open?: boolean;
pointer?: PointerDirection;
onExpand?: () => void;
onCollapse?: () => void;
overlayStyle?: CSSProperties;
offset?: number;
noFlip?: boolean;
noShift?: boolean;
notInline?: boolean;
"aria-label"?: string;
className?: string;
};
declare const EbayTourtip: FC<TourtipProps>;
export default EbayTourtip;
//# sourceMappingURL=ebay-tourtip.d.ts.map