@conboai/storybook.components 0.2.15 → 0.2.17

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,10 @@
1
+ import { FC } from 'react';
2
+
3
+ interface IImageModal {
4
+ isModalOpen?: boolean;
5
+ onModalClose: () => void;
6
+ startIndex: number;
7
+ images: string[];
8
+ }
9
+ declare const ImageModal: FC<IImageModal>;
10
+ export default ImageModal;
@@ -4,6 +4,9 @@ interface IMediaModalProps {
4
4
  open: boolean;
5
5
  handleClose: () => void;
6
6
  children: React.ReactNode;
7
+ arrows?: boolean;
8
+ onPrevClick?: () => void;
9
+ onNextClick?: () => void;
7
10
  }
8
11
  declare const MediaModal: FC<IMediaModalProps>;
9
12
  export default MediaModal;