@wavv/ui 1.7.4 → 1.7.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.
- package/build/cjs/index.js +1 -1
- package/build/cjs/types/assets/icons/Screenshot.d.ts +2 -2
- package/build/cjs/types/assets/icons/ShieldCheck.d.ts +2 -2
- package/build/cjs/types/assets/icons/ShieldSlash.d.ts +2 -2
- package/build/esm/index.js +1 -1
- package/build/esm/types/assets/icons/Screenshot.d.ts +2 -2
- package/build/esm/types/assets/icons/ShieldCheck.d.ts +2 -2
- package/build/esm/types/assets/icons/ShieldSlash.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
2
|
-
declare const Screenshot: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const Screenshot: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
|
|
3
3
|
export default Screenshot;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
2
|
-
declare const ShieldCheck: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const ShieldCheck: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
|
|
3
3
|
export default ShieldCheck;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
2
|
-
declare const ShieldSlash: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const ShieldSlash: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
|
|
3
3
|
export default ShieldSlash;
|