@conboai/storybook.components 0.1.14 → 0.1.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.
@@ -22,6 +22,7 @@ export { Logo } from '../components/Logo';
22
22
  export { VerticalTable } from '../components/VerticalTable';
23
23
  export { UserAvatar } from '../components/UserAvatar';
24
24
  export { Toggle } from '../components/Toggle';
25
+ export { ImageBox } from '../components/ImageBox';
25
26
  export * from '../interfaces/filter';
26
27
  export * from '../interfaces/tab';
27
28
  export * from '../interfaces/detailsView';
@@ -0,0 +1,6 @@
1
+ import { default as React } from 'react';
2
+
3
+ declare function ImageBox({ images }: {
4
+ images: string[];
5
+ }): React.JSX.Element;
6
+ export default ImageBox;
@@ -0,0 +1 @@
1
+ export { default as ImageBox } from './ImageBox';
@@ -2,6 +2,8 @@ interface Icons {
2
2
  add: Icon;
3
3
  arrowDown: Icon;
4
4
  arrowUp: Icon;
5
+ arrowLeft: Icon;
6
+ arrowRight: Icon;
5
7
  calendar: Icon;
6
8
  close: Icon;
7
9
  download: Icon;
@@ -0,0 +1 @@
1
+ export declare const images: string[];