@xelto.npm/xc2-lib 0.0.21 → 0.0.22

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.
@@ -1,6 +1,10 @@
1
1
  /// <reference types="react" />
2
- declare const AppTileComponent: ({ header, forwardedRef }: {
2
+ declare const AppTileComponent: ({ header, illustrationName, forwardedRef, isBigType, size, color }: {
3
3
  header: any;
4
+ illustrationName: any;
4
5
  forwardedRef: any;
6
+ isBigType: any;
7
+ size: any;
8
+ color: any;
5
9
  }) => JSX.Element;
6
10
  export default AppTileComponent;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ declare const Illustration: ({ illustrationName, color, size, isBigType }: {
3
+ illustrationName: any;
4
+ color: any;
5
+ size: any;
6
+ isBigType: any;
7
+ }) => JSX.Element;
8
+ export default Illustration;
@@ -0,0 +1 @@
1
+ export { default } from "./Illustration";
@@ -1,3 +1,4 @@
1
1
  export { default as AppTile } from "./appTile";
2
2
  export { default as Typography } from "./typography";
3
3
  export { default as Button } from "./buttons/customButton";
4
+ export { default as Illustration } from "./foundations/illustration";