@mindly/ui-components 3.34.4 → 3.35.1

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.
@@ -155,3 +155,5 @@ export { default as ProgressBar } from './lib/ProgressBar';
155
155
  export * from './lib/ProgressBar';
156
156
  export { default as LineFileInput } from './lib/Inputs/LineFileInput';
157
157
  export * from './lib/Inputs/LineFileInput';
158
+ export { default as SuccessScreen } from './lib/SuccessScreen';
159
+ export * from './lib/SuccessScreen';
@@ -0,0 +1,8 @@
1
+ import { FC } from 'react';
2
+ declare type SuccessScreenProps = {
3
+ title: string;
4
+ subTitle?: string;
5
+ onClick?: () => void;
6
+ };
7
+ declare const SuccessScreen: FC<SuccessScreenProps>;
8
+ export default SuccessScreen;
@@ -0,0 +1,2 @@
1
+ export declare const SuccessWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ export declare const SuccessContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -0,0 +1 @@
1
+ export { default } from './SuccessScreen';