@xelto.npm/xc2-lib 0.0.26 → 0.0.28

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,6 @@
1
+ /// <reference types="react" />
2
+ declare const BottomBarComponent: ({ buttons, ...props }: {
3
+ [x: string]: any;
4
+ buttons: any;
5
+ }) => JSX.Element;
6
+ export default BottomBarComponent;
@@ -0,0 +1 @@
1
+ export { default } from "./BottomBarComponent";
@@ -0,0 +1,17 @@
1
+ /// <reference types="react" />
2
+ import propTypes from "prop-types";
3
+ declare const BottomInfoBar: {
4
+ ({ noLogo, leftText, rightText, onRightTextClick }: {
5
+ noLogo?: boolean | undefined;
6
+ leftText?: string | undefined;
7
+ rightText?: string | undefined;
8
+ onRightTextClick: any;
9
+ }): JSX.Element;
10
+ propTypes: {
11
+ noLogo: propTypes.Requireable<boolean>;
12
+ leftText: propTypes.Requireable<string>;
13
+ rightText: propTypes.Requireable<string>;
14
+ onRightTextClick: propTypes.Requireable<(...args: any[]) => any>;
15
+ };
16
+ };
17
+ export default BottomInfoBar;
@@ -0,0 +1 @@
1
+ export { default } from "./BottomInfoBar";
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ declare const Logo: ({ logoName, color, ...props }: {
3
+ [x: string]: any;
4
+ logoName: any;
5
+ color: any;
6
+ }) => JSX.Element;
7
+ export default Logo;
@@ -0,0 +1 @@
1
+ export { default } from "./Logo";
@@ -3,3 +3,6 @@ export { default as Typography } from "./typography";
3
3
  export { default as Button } from "./buttons/customButton";
4
4
  export { default as Illustration } from "./foundations/illustration";
5
5
  export { default as Icon } from "./foundations/icon";
6
+ export { default as Logo } from "./foundations/logo";
7
+ export { default as BottomBar } from "./bottomBar";
8
+ export { default as BottomInfoBar } from "./bottomInfoBar";