@conboai/storybook.components 0.2.13 → 0.2.16

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;
@@ -1,7 +1,6 @@
1
1
  import { FC } from 'react';
2
2
 
3
3
  export interface ILogo {
4
- logo: string;
5
4
  title?: string;
6
5
  }
7
6
  declare const Logo: FC<ILogo>;
@@ -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;