@worldcoin/idkit 0.2.6 → 0.3.0-alpha.3

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.
@@ -4,8 +4,6 @@ type Props = {
4
4
  default: string;
5
5
  mobile: string;
6
6
  } | null;
7
- showQR: boolean;
8
- setShowQR: (show: boolean | ((state: boolean) => boolean)) => void;
9
7
  };
10
8
  declare const QRState: FC<Props>;
11
9
  export default QRState;
@@ -1,3 +1,4 @@
1
- import type { HTMLAttributes, FC } from 'react';
2
- declare const WorldIDWordmark: FC<HTMLAttributes<SVGElement>>;
1
+ declare const WorldIDWordmark: ({ className }: {
2
+ className?: string | undefined;
3
+ }) => JSX.Element;
3
4
  export default WorldIDWordmark;
@@ -1,3 +1,5 @@
1
- import type { FC, HTMLAttributes } from 'react';
2
- declare const WorldcoinLogomark: FC<HTMLAttributes<SVGElement>>;
1
+ import type { CSSProperties } from 'react';
2
+ declare const WorldcoinLogomark: ({ style }: {
3
+ style?: CSSProperties | undefined;
4
+ }) => JSX.Element;
3
5
  export default WorldcoinLogomark;