@prosperitainova/mirage-ui 1.0.88 → 1.0.90

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.
@@ -0,0 +1,7 @@
1
+ export type IconProps = {
2
+ tooltipColor?: string;
3
+ tooltipLabel: string;
4
+ visible?: boolean;
5
+ };
6
+ declare const Tooltip: (props: IconProps) => JSX.Element;
7
+ export default Tooltip;
@@ -0,0 +1,8 @@
1
+ import { IconProps } from "./Tooltip";
2
+ import { Story } from "@storybook/react";
3
+ declare const TooltipStories: {
4
+ title: string;
5
+ component: (props: IconProps) => JSX.Element;
6
+ };
7
+ export default TooltipStories;
8
+ export declare const Icon: Story<IconProps>;
@@ -0,0 +1 @@
1
+ export { default } from "./Tooltip";
@@ -29,3 +29,4 @@ export { default as ParcelSelector } from "./ParcelSelector";
29
29
  export { default as ButtonMoreDetails } from "./ButtonMoreDetails";
30
30
  export { default as AddBalanceOutput } from "./AddBalanceOutput";
31
31
  export { default as IconWithTooltip } from "./IconWithTooltip";
32
+ export { default as Tooltip } from "./TooltTip";