@rownd/react-native 0.1.5 → 0.1.6

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.
Files changed (25) hide show
  1. package/lib/commonjs/components/SignIn.js +5 -5
  2. package/lib/commonjs/components/SignIn.js.map +1 -1
  3. package/lib/commonjs/components/images/CheckmarkFilled.js +40 -0
  4. package/lib/commonjs/components/images/CheckmarkFilled.js.map +1 -0
  5. package/lib/commonjs/components/images/EmailVerifyWaiting.js +100 -0
  6. package/lib/commonjs/components/images/EmailVerifyWaiting.js.map +1 -0
  7. package/lib/commonjs/components/images/PhoneVerifyWaiting.js +91 -0
  8. package/lib/commonjs/components/images/PhoneVerifyWaiting.js.map +1 -0
  9. package/lib/module/components/SignIn.js +3 -3
  10. package/lib/module/components/SignIn.js.map +1 -1
  11. package/lib/module/components/images/CheckmarkFilled.js +27 -0
  12. package/lib/module/components/images/CheckmarkFilled.js.map +1 -0
  13. package/lib/module/components/images/EmailVerifyWaiting.js +87 -0
  14. package/lib/module/components/images/EmailVerifyWaiting.js.map +1 -0
  15. package/lib/module/components/images/PhoneVerifyWaiting.js +78 -0
  16. package/lib/module/components/images/PhoneVerifyWaiting.js.map +1 -0
  17. package/lib/package.json +1 -1
  18. package/lib/typescript/src/components/images/CheckmarkFilled.d.ts +4 -0
  19. package/lib/typescript/src/components/images/EmailVerifyWaiting.d.ts +4 -0
  20. package/lib/typescript/src/components/images/PhoneVerifyWaiting.d.ts +4 -0
  21. package/package.json +1 -1
  22. package/src/components/SignIn.tsx +3 -3
  23. package/src/components/images/CheckmarkFilled.tsx +30 -0
  24. package/src/components/images/EmailVerifyWaiting.tsx +95 -0
  25. package/src/components/images/PhoneVerifyWaiting.tsx +74 -0
@@ -0,0 +1,74 @@
1
+ import * as React from 'react';
2
+ import Svg, { SvgProps, Defs, Rect, G, Use, Circle } from 'react-native-svg';
3
+ /* SVGR has dropped some elements not supported by react-native-svg: title, filter */
4
+
5
+ const SvgComponent = (props: SvgProps) => (
6
+ <Svg
7
+ width="62px"
8
+ height="100px"
9
+ viewBox="0 0 62 100"
10
+ // @ts-ignore
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ xmlnsXlink="http://www.w3.org/1999/xlink"
13
+ {...props}
14
+ >
15
+ <Defs>
16
+ <Rect id="path-1" x={0} y={0} width={58} height={96} rx={8} />
17
+ </Defs>
18
+ <G
19
+ id="SMS-verify-from-web-stay-on-web-(BR)"
20
+ stroke="none"
21
+ strokeWidth={1}
22
+ fill="none"
23
+ fillRule="evenodd"
24
+ >
25
+ <G
26
+ id="xlg-1312px-16-column-copy-51"
27
+ transform="translate(-625.000000, -259.000000)"
28
+ >
29
+ <G id="unverified-phone" transform="translate(627.000000, 261.000000)">
30
+ <G id="Rectangle">
31
+ <Use
32
+ fill="black"
33
+ fillOpacity={1}
34
+ // @ts-ignore
35
+ filter="url(#filter-2)"
36
+ xlinkHref="#path-1"
37
+ />
38
+ <Use fill="#444444" fillRule="evenodd" xlinkHref="#path-1" />
39
+ </G>
40
+ <Circle id="Oval" fill="#000000" cx={29} cy={89} r={5} />
41
+ <Rect
42
+ id="Rectangle"
43
+ fill="#FFFFFF"
44
+ x={5}
45
+ y={11}
46
+ width={48}
47
+ height={71}
48
+ rx={2}
49
+ />
50
+ <Rect
51
+ id="Rectangle"
52
+ fillOpacity={0.4}
53
+ fill="#D8D8D8"
54
+ x={10}
55
+ y={20}
56
+ width={38}
57
+ height={5}
58
+ />
59
+ <Rect
60
+ id="Rectangle-Copy"
61
+ fillOpacity={0.4}
62
+ fill="#D8D8D8"
63
+ x={10}
64
+ y={31}
65
+ width={38}
66
+ height={36}
67
+ />
68
+ </G>
69
+ </G>
70
+ </G>
71
+ </Svg>
72
+ );
73
+
74
+ export default SvgComponent;