@incodetech/welcome 1.85.0-20251112111147.0 → 1.85.0-20251113103111.0

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,2 @@
1
+ declare const AgeVerificationStep1Icon: () => import("react/jsx-runtime").JSX.Element;
2
+ export default AgeVerificationStep1Icon;
@@ -0,0 +1,2 @@
1
+ declare const AgeVerificationStep2Icon: () => import("react/jsx-runtime").JSX.Element;
2
+ export default AgeVerificationStep2Icon;
@@ -0,0 +1,2 @@
1
+ declare const AgeVerificationStep3Icon: () => import("react/jsx-runtime").JSX.Element;
2
+ export default AgeVerificationStep3Icon;
@@ -0,0 +1,8 @@
1
+ import { FC } from 'react';
2
+
3
+ type AgeVerificationProps = {
4
+ onContinue: () => void;
5
+ mode?: 'passport' | 'id';
6
+ };
7
+ declare const AgeVerification: FC<AgeVerificationProps>;
8
+ export default AgeVerification;