@worldcoin/idkit 0.2.3 → 0.2.5

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 LoadingState: () => JSX.Element;
2
+ export default LoadingState;
@@ -0,0 +1,9 @@
1
+ import type { FC } from 'react';
2
+ type Props = {
3
+ qrData: {
4
+ default: string;
5
+ mobile: string;
6
+ } | null;
7
+ };
8
+ declare const QRState: FC<Props>;
9
+ export default QRState;
@@ -0,0 +1,3 @@
1
+ import type { FC, HTMLAttributes } from 'react';
2
+ declare const ArrowLongLeftIcon: FC<HTMLAttributes<SVGElement>>;
3
+ export default ArrowLongLeftIcon;
@@ -0,0 +1,3 @@
1
+ import type { FC, HTMLAttributes } from 'react';
2
+ declare const CheckIcon: FC<HTMLAttributes<SVGElement>>;
3
+ export default CheckIcon;
@@ -0,0 +1,3 @@
1
+ import type { FC, HTMLAttributes } from 'react';
2
+ declare const ChevronDownIcon: FC<HTMLAttributes<SVGElement>>;
3
+ export default ChevronDownIcon;
@@ -0,0 +1,3 @@
1
+ import type { FC, HTMLAttributes } from 'react';
2
+ declare const DevicePhoneMobileIcon: FC<HTMLAttributes<SVGElement>>;
3
+ export default DevicePhoneMobileIcon;
@@ -0,0 +1,3 @@
1
+ import type { FC, HTMLAttributes } from 'react';
2
+ declare const XMarkIcon: FC<HTMLAttributes<SVGElement>>;
3
+ export default XMarkIcon;