@obolnetwork/obol-ui 1.0.101 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
|
3
|
+
import { CSS } from "../../../stitches.config";
|
|
3
4
|
export declare const Provider: React.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
4
5
|
export declare const Tooltip: React.FC<TooltipPrimitive.TooltipProps>;
|
|
5
6
|
export declare const TooltipTrigger: React.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -10,5 +11,7 @@ export interface TooltipComponentProps extends TooltipPrimitive.TooltipProps {
|
|
|
10
11
|
side?: "top" | "bottom" | "right" | "left";
|
|
11
12
|
sideOffset?: number;
|
|
12
13
|
showOnClick?: boolean;
|
|
14
|
+
showArrow?: boolean;
|
|
15
|
+
css?: CSS;
|
|
13
16
|
}
|
|
14
17
|
export declare const TooltipComponent: React.FC<TooltipComponentProps>;
|