@prosperitainova/mirage-ui 1.0.90 → 1.0.91

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,11 @@
1
+ import { HTMLAttributes } from "react";
2
+ import "../../../src/theme/fonts/ProximaNova.css";
3
+ export type ModalProps = HTMLAttributes<HTMLDivElement> & {
4
+ open?: boolean;
5
+ header?: boolean;
6
+ title?: string;
7
+ children?: JSX.Element;
8
+ toggleModal: () => void;
9
+ };
10
+ declare const BottomModal: (props: ModalProps) => JSX.Element;
11
+ export default BottomModal;
@@ -0,0 +1,8 @@
1
+ import { Story } from "@storybook/react";
2
+ import { ModalProps } from "./BottomModal";
3
+ declare const LateraleModalStories: {
4
+ title: string;
5
+ component: (props: ModalProps) => JSX.Element;
6
+ };
7
+ export default LateraleModalStories;
8
+ export declare const Bottom: Story<ModalProps>;
@@ -0,0 +1 @@
1
+ export { default } from "./BottomModal";
@@ -30,3 +30,4 @@ export { default as ButtonMoreDetails } from "./ButtonMoreDetails";
30
30
  export { default as AddBalanceOutput } from "./AddBalanceOutput";
31
31
  export { default as IconWithTooltip } from "./IconWithTooltip";
32
32
  export { default as Tooltip } from "./TooltTip";
33
+ export { default as BottomModal } from "./BottomModal";