@foris/avocado-suite 0.11.11 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
@@ -16,8 +16,11 @@ export interface TooltipProps {
|
|
16
16
|
className?: string;
|
17
17
|
/** The label of the tooltip */
|
18
18
|
label: string;
|
19
|
+
/** Not show the arrow tooltip */
|
20
|
+
notShowArrow?: boolean;
|
19
21
|
/** The placement of the popper relative to its reference */
|
20
22
|
placement?: keyof typeof PlacementEnum;
|
23
|
+
visible?: boolean;
|
21
24
|
}
|
22
25
|
declare const Tooltip: FC<TooltipProps>;
|
23
26
|
export default Tooltip;
|