@ovotech/element-native 1.0.0 → 2.0.0-beta.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.
Files changed (218) hide show
  1. package/dist/components/Accordion/Accordion.d.ts +5 -22
  2. package/dist/components/Accordion/Accordion.js +99 -65
  3. package/dist/components/Accordion/Group.d.ts +3 -0
  4. package/dist/components/Accordion/Group.js +41 -0
  5. package/dist/components/Accordion/Icon.d.ts +4 -0
  6. package/dist/components/Accordion/Icon.js +68 -0
  7. package/dist/components/Accordion/hooks.d.ts +6 -0
  8. package/dist/components/Accordion/hooks.js +43 -0
  9. package/dist/components/Accordion/index.d.ts +4 -1
  10. package/dist/components/Accordion/index.js +5 -2
  11. package/dist/components/Accordion/styles.d.ts +46 -0
  12. package/dist/components/Accordion/styles.js +52 -0
  13. package/dist/components/Accordion/types.d.ts +20 -0
  14. package/dist/components/Accordion/types.js +2 -0
  15. package/dist/components/Badge/Badge.d.ts +0 -1
  16. package/dist/components/Badge/Badge.js +3 -5
  17. package/dist/components/CTAButton/CTAButton.d.ts +1 -1
  18. package/dist/components/CTAButton/CTAButton.js +1 -1
  19. package/dist/components/CTALink/CTALink.js +1 -21
  20. package/dist/components/Card/Card.js +6 -5
  21. package/dist/components/Checkbox/Checkbox.js +10 -6
  22. package/dist/components/DataTable/DataTable.js +40 -42
  23. package/dist/components/DateField/DateField.js +3 -3
  24. package/dist/components/Disclosure/Disclosure.js +4 -15
  25. package/dist/components/ErrorText/ErrorText.js +1 -1
  26. package/dist/components/Field/Field.js +3 -3
  27. package/dist/components/FormGroup/FormGroup.js +3 -31
  28. package/dist/components/Heading/Heading.js +4 -17
  29. package/dist/components/HintText/HintText.js +1 -1
  30. package/dist/components/Icon/Icon.d.ts +1 -1
  31. package/dist/components/Icon/Icon.js +1 -1
  32. package/dist/components/Input/CurrencyInput.d.ts +2 -2
  33. package/dist/components/Input/EmailInput.d.ts +2 -2
  34. package/dist/components/Input/Input.d.ts +1 -1
  35. package/dist/components/Input/NumberInput.d.ts +2 -2
  36. package/dist/components/Input/PasswordInput.d.ts +2 -2
  37. package/dist/components/Input/TelInput.d.ts +2 -2
  38. package/dist/components/Input/TextInput.d.ts +2 -2
  39. package/dist/components/Input/TextareaInput.d.ts +2 -2
  40. package/dist/components/LabelText/LabelText.js +1 -1
  41. package/dist/components/List/List.d.ts +3 -1
  42. package/dist/components/List/List.js +18 -13
  43. package/dist/components/Margin/Margin.d.ts +1 -1
  44. package/dist/components/Margin/Margin.js +3 -1
  45. package/dist/components/NavHeader/NavHeader.d.ts +15 -0
  46. package/dist/components/NavHeader/NavHeader.js +93 -0
  47. package/dist/components/NavHeader/index.d.ts +1 -0
  48. package/dist/components/NavHeader/index.js +5 -0
  49. package/dist/components/Notification/Notification.d.ts +10 -0
  50. package/dist/components/Notification/Notification.js +50 -17
  51. package/dist/components/Radio/Radio.js +10 -6
  52. package/dist/components/Tabs/Tab.js +2 -2
  53. package/dist/components/Tabs/TabList.d.ts +1 -1
  54. package/dist/components/Tabs/TabList.js +2 -1
  55. package/dist/components/Tabs/Tabs.d.ts +1 -1
  56. package/dist/components/Tabs/Tabs.js +5 -3
  57. package/dist/components/Text/Text.js +3 -3
  58. package/dist/components/TextField/CurrencyField.d.ts +2 -2
  59. package/dist/components/TextField/EmailField.d.ts +2 -2
  60. package/dist/components/TextField/NumberField.d.ts +2 -2
  61. package/dist/components/TextField/PasswordField.d.ts +2 -2
  62. package/dist/components/TextField/TelField.d.ts +2 -2
  63. package/dist/components/TextField/TextField.d.ts +2 -2
  64. package/dist/components/TextField/TextareaField.d.ts +2 -2
  65. package/dist/components/index.d.ts +1 -0
  66. package/dist/components/index.js +1 -0
  67. package/dist/esm/components/Accordion/Accordion.js +98 -65
  68. package/dist/esm/components/Accordion/Group.js +14 -0
  69. package/dist/esm/components/Accordion/Icon.js +38 -0
  70. package/dist/esm/components/Accordion/hooks.js +16 -0
  71. package/dist/esm/components/Accordion/index.js +3 -1
  72. package/dist/esm/components/Accordion/styles.js +49 -0
  73. package/dist/esm/components/Accordion/types.js +1 -0
  74. package/dist/esm/components/Badge/Badge.js +3 -5
  75. package/dist/esm/components/CTAButton/CTAButton.js +1 -1
  76. package/dist/esm/components/CTALink/CTALink.js +1 -21
  77. package/dist/esm/components/Card/Card.js +6 -5
  78. package/dist/esm/components/Checkbox/Checkbox.js +10 -6
  79. package/dist/esm/components/DataTable/DataTable.js +40 -42
  80. package/dist/esm/components/DateField/DateField.js +3 -3
  81. package/dist/esm/components/Disclosure/Disclosure.js +4 -15
  82. package/dist/esm/components/ErrorText/ErrorText.js +1 -1
  83. package/dist/esm/components/Field/Field.js +3 -3
  84. package/dist/esm/components/FormGroup/FormGroup.js +3 -8
  85. package/dist/esm/components/Heading/Heading.js +4 -17
  86. package/dist/esm/components/HintText/HintText.js +1 -1
  87. package/dist/esm/components/Icon/Icon.js +1 -1
  88. package/dist/esm/components/LabelText/LabelText.js +1 -1
  89. package/dist/esm/components/List/List.js +18 -13
  90. package/dist/esm/components/Margin/Margin.js +3 -1
  91. package/dist/esm/components/NavHeader/NavHeader.js +63 -0
  92. package/dist/esm/components/NavHeader/index.js +1 -0
  93. package/dist/esm/components/Notification/Notification.js +49 -16
  94. package/dist/esm/components/Radio/Radio.js +10 -6
  95. package/dist/esm/components/Tabs/Tab.js +2 -2
  96. package/dist/esm/components/Tabs/TabList.js +2 -1
  97. package/dist/esm/components/Tabs/Tabs.js +5 -3
  98. package/dist/esm/components/Text/Text.js +3 -3
  99. package/dist/esm/components/index.js +1 -0
  100. package/dist/esm/providers/IconsProvider.js +28 -9
  101. package/dist/esm/providers/icons/ArrowDown.js +15 -0
  102. package/dist/esm/providers/icons/ArrowLeft.js +15 -0
  103. package/dist/esm/providers/icons/ArrowRight.js +15 -0
  104. package/dist/esm/providers/icons/ArrowUp.js +15 -0
  105. package/dist/esm/providers/icons/CaretDown.js +1 -1
  106. package/dist/esm/providers/icons/CaretLeft.js +15 -0
  107. package/dist/esm/providers/icons/CaretRight.js +1 -1
  108. package/dist/esm/providers/icons/CaretUp.js +15 -0
  109. package/dist/esm/providers/icons/Chart.js +15 -0
  110. package/dist/esm/providers/icons/Check.js +2 -2
  111. package/dist/esm/providers/icons/ChevronDown.js +2 -2
  112. package/dist/esm/providers/icons/ChevronLeft.js +1 -1
  113. package/dist/esm/providers/icons/ChevronLeftSmall.js +15 -0
  114. package/dist/esm/providers/icons/ChevronLeftSmallFirst.js +15 -0
  115. package/dist/esm/providers/icons/ChevronRight.js +1 -1
  116. package/dist/esm/providers/icons/ChevronRightSmall.js +15 -0
  117. package/dist/esm/providers/icons/ChevronRightSmallLast.js +15 -0
  118. package/dist/esm/providers/icons/ChevronUp.js +2 -2
  119. package/dist/esm/providers/icons/Cross.js +1 -1
  120. package/dist/esm/providers/icons/Dollar.js +2 -3
  121. package/dist/esm/providers/icons/Download.js +1 -1
  122. package/dist/esm/providers/icons/Electricity.js +1 -1
  123. package/dist/esm/providers/icons/Euro.js +2 -3
  124. package/dist/esm/providers/icons/Gas.js +2 -2
  125. package/dist/esm/providers/icons/Help.js +15 -0
  126. package/dist/esm/providers/icons/Hide.js +15 -0
  127. package/dist/esm/providers/icons/HidePassword.js +15 -0
  128. package/dist/esm/providers/icons/Home.js +15 -0
  129. package/dist/esm/providers/icons/Info.js +15 -0
  130. package/dist/esm/providers/icons/Link.js +2 -2
  131. package/dist/esm/providers/icons/Minus.js +1 -1
  132. package/dist/esm/providers/icons/NewWindow.js +1 -2
  133. package/dist/esm/providers/icons/Payment.js +15 -0
  134. package/dist/esm/providers/icons/PaymentCard.js +15 -0
  135. package/dist/esm/providers/icons/Plus.js +1 -1
  136. package/dist/esm/providers/icons/Pound.js +2 -3
  137. package/dist/esm/providers/icons/Search.js +15 -0
  138. package/dist/esm/providers/icons/Show.js +15 -0
  139. package/dist/esm/providers/icons/ShowPassword.js +15 -0
  140. package/dist/esm/providers/icons/Usage.js +15 -0
  141. package/dist/esm/providers/icons/User.js +15 -0
  142. package/dist/esm/providers/icons/index.js +21 -2
  143. package/dist/esm/theme/create-theme.js +139 -118
  144. package/dist/providers/IconsProvider.js +27 -8
  145. package/dist/providers/icons/ArrowDown.d.ts +2 -0
  146. package/dist/providers/icons/ArrowDown.js +22 -0
  147. package/dist/providers/icons/ArrowLeft.d.ts +2 -0
  148. package/dist/providers/icons/ArrowLeft.js +22 -0
  149. package/dist/providers/icons/ArrowRight.d.ts +2 -0
  150. package/dist/providers/icons/ArrowRight.js +22 -0
  151. package/dist/providers/icons/ArrowUp.d.ts +2 -0
  152. package/dist/providers/icons/ArrowUp.js +22 -0
  153. package/dist/providers/icons/CaretDown.js +1 -1
  154. package/dist/providers/icons/CaretLeft.d.ts +2 -0
  155. package/dist/providers/icons/CaretLeft.js +22 -0
  156. package/dist/providers/icons/CaretRight.js +1 -1
  157. package/dist/providers/icons/CaretUp.d.ts +2 -0
  158. package/dist/providers/icons/CaretUp.js +22 -0
  159. package/dist/providers/icons/Chart.d.ts +2 -0
  160. package/dist/providers/icons/Chart.js +22 -0
  161. package/dist/providers/icons/Check.js +2 -2
  162. package/dist/providers/icons/ChevronDown.js +2 -2
  163. package/dist/providers/icons/ChevronLeft.js +1 -1
  164. package/dist/providers/icons/ChevronLeftSmall.d.ts +2 -0
  165. package/dist/providers/icons/ChevronLeftSmall.js +22 -0
  166. package/dist/providers/icons/ChevronLeftSmallFirst.d.ts +2 -0
  167. package/dist/providers/icons/ChevronLeftSmallFirst.js +22 -0
  168. package/dist/providers/icons/ChevronRight.js +1 -1
  169. package/dist/providers/icons/ChevronRightSmall.d.ts +2 -0
  170. package/dist/providers/icons/ChevronRightSmall.js +22 -0
  171. package/dist/providers/icons/ChevronRightSmallLast.d.ts +2 -0
  172. package/dist/providers/icons/ChevronRightSmallLast.js +22 -0
  173. package/dist/providers/icons/ChevronUp.js +2 -2
  174. package/dist/providers/icons/Cross.js +1 -1
  175. package/dist/providers/icons/Dollar.d.ts +1 -2
  176. package/dist/providers/icons/Dollar.js +1 -1
  177. package/dist/providers/icons/Download.js +1 -1
  178. package/dist/providers/icons/Electricity.js +1 -1
  179. package/dist/providers/icons/Euro.d.ts +1 -2
  180. package/dist/providers/icons/Euro.js +1 -1
  181. package/dist/providers/icons/Gas.js +2 -2
  182. package/dist/providers/icons/Help.d.ts +2 -0
  183. package/dist/providers/icons/Help.js +22 -0
  184. package/dist/providers/icons/Hide.d.ts +2 -0
  185. package/dist/providers/icons/Hide.js +22 -0
  186. package/dist/providers/icons/HidePassword.d.ts +2 -0
  187. package/dist/providers/icons/HidePassword.js +22 -0
  188. package/dist/providers/icons/Home.d.ts +2 -0
  189. package/dist/providers/icons/Home.js +22 -0
  190. package/dist/providers/icons/Info.d.ts +2 -0
  191. package/dist/providers/icons/Info.js +22 -0
  192. package/dist/providers/icons/Link.js +2 -2
  193. package/dist/providers/icons/Minus.js +1 -1
  194. package/dist/providers/icons/NewWindow.js +1 -2
  195. package/dist/providers/icons/Payment.d.ts +2 -0
  196. package/dist/providers/icons/Payment.js +22 -0
  197. package/dist/providers/icons/PaymentCard.d.ts +2 -0
  198. package/dist/providers/icons/PaymentCard.js +22 -0
  199. package/dist/providers/icons/Plus.js +1 -1
  200. package/dist/providers/icons/Pound.d.ts +1 -2
  201. package/dist/providers/icons/Pound.js +1 -1
  202. package/dist/providers/icons/Search.d.ts +2 -0
  203. package/dist/providers/icons/Search.js +22 -0
  204. package/dist/providers/icons/Show.d.ts +2 -0
  205. package/dist/providers/icons/Show.js +22 -0
  206. package/dist/providers/icons/ShowPassword.d.ts +2 -0
  207. package/dist/providers/icons/ShowPassword.js +22 -0
  208. package/dist/providers/icons/Usage.d.ts +2 -0
  209. package/dist/providers/icons/Usage.js +22 -0
  210. package/dist/providers/icons/User.d.ts +2 -0
  211. package/dist/providers/icons/User.js +22 -0
  212. package/dist/providers/icons/index.d.ts +21 -2
  213. package/dist/providers/icons/index.js +21 -2
  214. package/dist/providers/types.d.ts +1 -1
  215. package/dist/theme/create-theme.d.ts +1 -1
  216. package/dist/theme/create-theme.js +139 -118
  217. package/dist/theme/theme.d.ts +33 -25
  218. package/package.json +18 -15
@@ -9,6 +9,7 @@ export * from './Disclosure';
9
9
  export * from './ErrorSummaryNotification';
10
10
  export * from './Field';
11
11
  export * from './Grid';
12
+ export * from './NavHeader';
12
13
  export * from './Heading';
13
14
  export * from './Icon';
14
15
  export * from './Input';
@@ -10,27 +10,46 @@ var __assign = (this && this.__assign) || function () {
10
10
  return __assign.apply(this, arguments);
11
11
  };
12
12
  import React, { createContext, useContext } from 'react';
13
- import { CaretDown, CaretRight, ChevronLeft, ChevronRight, ChevronUp, ChevronDown, Cross, Check, Euro, Pound, Dollar, NewWindow, Gas, Electricity, Link, Download, Plus, Minus, Logo, } from './icons';
13
+ import { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, CaretDown, CaretLeft, CaretRight, CaretUp, Chart, Check, ChevronDown, ChevronLeft, ChevronLeftSmall, ChevronLeftSmallFirst, ChevronRight, ChevronRightSmall, ChevronRightSmallLast, ChevronUp, Cross, Dollar, Download, Electricity, Euro, Gas, Help, Hide, Home, Info, Link, Logo, Minus, NewWindow, PaymentCard, Plus, Pound, Search, Show, User, } from './icons';
14
14
  var defaultIcons = {
15
+ 'arrow-down': ArrowDown,
16
+ 'arrow-left': ArrowLeft,
17
+ 'arrow-right': ArrowRight,
18
+ 'arrow-up': ArrowUp,
15
19
  'caret-down': CaretDown,
20
+ 'caret-left': CaretLeft,
16
21
  'caret-right': CaretRight,
22
+ 'caret-up': CaretUp,
23
+ chart: Chart,
24
+ check: Check,
17
25
  'chevron-left': ChevronLeft,
26
+ 'chevron-left-small': ChevronLeftSmall,
27
+ 'chevron-left-small-first': ChevronLeftSmallFirst,
18
28
  'chevron-right': ChevronRight,
29
+ 'chevron-right-small': ChevronRightSmall,
30
+ 'chevron-right-small-last': ChevronRightSmallLast,
19
31
  'chevron-up': ChevronUp,
20
32
  'chevron-down': ChevronDown,
21
33
  cross: Cross,
22
- check: Check,
23
- euro: Euro,
24
- pound: Pound,
25
34
  dollar: Dollar,
26
- 'new-window': NewWindow,
27
- gas: Gas,
35
+ download: Download,
28
36
  electricity: Electricity,
37
+ euro: Euro,
38
+ gas: Gas,
39
+ help: Help,
40
+ hide: Hide,
41
+ home: Home,
42
+ info: Info,
43
+ 'new-window': NewWindow,
29
44
  link: Link,
30
- download: Download,
31
- plus: Plus,
32
- minus: Minus,
33
45
  logo: Logo,
46
+ minus: Minus,
47
+ 'payment-card': PaymentCard,
48
+ plus: Plus,
49
+ pound: Pound,
50
+ search: Search,
51
+ show: Show,
52
+ user: User,
34
53
  };
35
54
  var IconsContext = createContext(null);
36
55
  function useIcons() {
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var ArrowDown = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M7 -1.07324e-07L9 -8.34742e-08L9 12.2L14.6 6.6L16 8L8 16L9.5399e-08 8L1.4 6.6L7 12.2L7 -1.07324e-07Z", fill: "currentColor", fillRule: "evenodd" }))); };
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var ArrowLeft = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M16 9V7H3.8L9.4 1.4L8 0L0 8L8 16L9.4 14.6L3.8 9H16Z", fill: "currentColor" }))); };
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var ArrowRight = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M0 9V7H12.2L6.6 1.4L8 0L16 8L8 16L6.6 14.6L12.2 9H0Z", fill: "currentColor", fillRule: "evenodd" }))); };
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var ArrowUp = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M7 16L9 16L9 3.8L14.6 9.4L16 8L8 -3.49691e-07L-3.49691e-07 8L1.4 9.4L7 3.8L7 16Z", fill: "currentColor", fillRule: "evenodd" }))); };
@@ -12,4 +12,4 @@ var __assign = (this && this.__assign) || function () {
12
12
  import React from 'react';
13
13
  import { Path, Svg } from 'react-native-svg';
14
14
  export var CaretDown = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
- React.createElement(Path, { d: "M8 11.5L2 4.5L14 4.5L8 11.5Z", fill: "currentColor" }))); };
15
+ React.createElement(Path, { d: "M8 12.5L2 5.5H14L8 12.5Z", fill: "currentColor", fillRule: "evenodd" }))); };
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var CaretLeft = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M3.5 8.11999L10.5 2.12L10.5 14.12L3.5 8.11999Z", fill: "currentColor", fillRule: "evenodd" }))); };
@@ -12,4 +12,4 @@ var __assign = (this && this.__assign) || function () {
12
12
  import React from 'react';
13
13
  import { Path, Svg } from 'react-native-svg';
14
14
  export var CaretRight = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
- React.createElement(Path, { d: "M11.5 8L4.5 2L4.5 14L11.5 8Z", fill: "currentColor" }))); };
15
+ React.createElement(Path, { d: "M12.5 7.88L5.5 13.88V1.88L12.5 7.88Z", fill: "currentColor", fillRule: "evenodd" }))); };
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var CaretUp = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M8 3.5L14 10.5L2 10.5L8 3.5Z", fill: "currentColor", fillRule: "evenodd" }))); };
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var Chart = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M2 14V0H0V16H16V14H2ZM5 10H3V13H5V10ZM6.33 3H8.33V13H6.33V3ZM11.67 9H9.67V13H11.67V9ZM13 7H15V13H13V7Z", fill: "currentColor", fillRule: "evenodd" }))); };
@@ -11,5 +11,5 @@ var __assign = (this && this.__assign) || function () {
11
11
  };
12
12
  import React from 'react';
13
13
  import { Path, Svg } from 'react-native-svg';
14
- export var Check = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 24 24" }, props),
15
- React.createElement(Path, { d: "M8.57 20.67L0 12.33 2.4 10l6.17 6 13-12.67L24 5.67z", fill: "currentColor", "fill-rule": "evenodd" }))); };
14
+ export var Check = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M5 14.21L16 3.21004L14.58 1.79004L5 11.37L1.42 7.79004L0 9.21004L5 14.21Z", fill: "currentColor", fillRule: "evenodd" }))); };
@@ -11,5 +11,5 @@ var __assign = (this && this.__assign) || function () {
11
11
  };
12
12
  import React from 'react';
13
13
  import { Path, Svg } from 'react-native-svg';
14
- export var ChevronDown = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 24 24" }, props),
15
- React.createElement(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M12.1 18.1L22.6 7.6l-1.8-1.8-8.7 8.5-8.5-8.5-2 1.8 8.6 8.7 1.9 1.8z", fill: "currentColor" }))); };
14
+ export var ChevronDown = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M8 12.71L16 4.70998L14.58 3.28998L8 9.86998L1.42 3.28998L0 4.70998L8 12.71Z", fill: "currentColor" }))); };
@@ -12,4 +12,4 @@ var __assign = (this && this.__assign) || function () {
12
12
  import React from 'react';
13
13
  import { Path, Svg } from 'react-native-svg';
14
14
  export var ChevronLeft = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
- React.createElement(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M4 8l7 7 1.2-1.2L6.5 8l5.7-5.7L11 1 5.2 6.7 4 8z", fill: "currentColor" }))); };
15
+ React.createElement(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M2.57996 8L10.58 16L12 14.58L5.41996 8L12 1.42L10.58 0L2.57996 8Z", fill: "currentColor" }))); };
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var ChevronLeftSmall = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M10.5 4.94L7.44667 8L10.5 11.06L9.56 12L5.56 8L9.56 4L10.5 4.94Z", fill: "currentColor" }))); };
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var ChevronLeftSmallFirst = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M5.19661 4H3.86328V12H5.19661V4ZM9.07661 8L12.1366 11.06L11.1966 12L7.19661 8L11.1966 4L12.1366 4.94L9.07661 8Z", fill: "currentColor" }))); };
@@ -12,4 +12,4 @@ var __assign = (this && this.__assign) || function () {
12
12
  import React from 'react';
13
13
  import { Path, Svg } from 'react-native-svg';
14
14
  export var ChevronRight = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
- React.createElement(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M12.2 7.963L5.237 1 4 2.237l5.727 5.726L4 13.69l1.237 1.237L10.963 9.2 12.2 7.963z", fill: "currentColor" }))); };
15
+ React.createElement(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M12.71 7.88L4.71004 -0.119995L3.29004 1.3L9.87004 7.88L3.29004 14.46L4.71004 15.88L12.71 7.88Z", fill: "currentColor" }))); };
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var ChevronRightSmall = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M6 11.06L9.05333 8L6 4.94L6.94 4L10.94 8L6.94 12L6 11.06Z", fill: "currentColor" }))); };
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var ChevronRightSmallLast = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M6.92328 8L3.86328 4.94L4.80328 4L8.80328 8L4.80328 12L3.86328 11.06L6.92328 8ZM12.1366 4H10.8033V12H12.1366V4Z", fill: "currentColor" }))); };
@@ -11,5 +11,5 @@ var __assign = (this && this.__assign) || function () {
11
11
  };
12
12
  import React from 'react';
13
13
  import { Path, Svg } from 'react-native-svg';
14
- export var ChevronUp = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 24 24" }, props),
15
- React.createElement(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M12.1 5.8L1.6 16.3l1.8 1.8 8.7-8.6 8.5 8.6 2-1.8-8.5-8.7-2-1.8z", fill: "currentColor" }))); };
14
+ export var ChevronUp = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M8 3L0 11L1.42 12.42L8 5.84L14.58 12.42L16 11L8 3Z", fill: "currentColor" }))); };
@@ -12,4 +12,4 @@ var __assign = (this && this.__assign) || function () {
12
12
  import React from 'react';
13
13
  import { Path, Svg } from 'react-native-svg';
14
14
  export var Cross = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
- React.createElement(Path, { d: "M3.15 1.05l-1-1L0 2.06l1 1 5 5-4.84 4.83-1 1L2.23 16l1-1.05 4.79-4.8 4.67 4.69 1 1 2.11-2.06-1-1.05-4.7-4.71L15 3.23l1-1L13.89.12l-1 1L8.06 6z", fill: "currentColor" }))); };
15
+ React.createElement(Path, { d: "M9.42 8L16 1.42L14.58 0L8 6.58L1.42 0L0 1.42L6.58 8L0 14.58L1.42 16L8 9.42L14.58 16L16 14.58L9.42 8Z", fill: "currentColor" }))); };
@@ -11,6 +11,5 @@ var __assign = (this && this.__assign) || function () {
11
11
  };
12
12
  import React from 'react';
13
13
  import { Path, Svg } from 'react-native-svg';
14
- var Dollar = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
- React.createElement(Path, { d: "M8.345 7.022c-2.007-.524-2.652-1.066-2.652-1.91 0-.97.892-1.645 2.387-1.645 1.573 0 2.157.755 2.21 1.866h1.954c-.062-1.529-.99-2.933-2.838-3.386V0H6.753v1.92C5.038 2.293 3.66 3.413 3.66 5.129c0 2.053 1.689 3.075 4.155 3.671 2.21.533 2.653 1.316 2.653 2.142 0 .614-.434 1.591-2.387 1.591-1.822 0-2.538-.817-2.635-1.866H3.5c.106 1.946 1.556 3.04 3.253 3.404V16h2.653v-1.911c1.724-.329 3.094-1.333 3.094-3.156 0-2.524-2.148-3.386-4.155-3.91Z", fill: "currentColor" }))); };
16
- export { Dollar };
14
+ export var Dollar = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M8.94785 16H7.51227V14.1155C6.32209 13.9947 5.38344 13.59 4.69632 12.9015C4.0092 12.2008 3.61043 11.4096 3.5 10.5277L5.24847 9.98414C5.30982 10.6123 5.53067 11.1619 5.91104 11.6331C6.29141 12.1042 6.82515 12.4002 7.51227 12.521V8.73386L7.05215 8.64326C6.09509 8.44998 5.34663 8.06946 4.80675 7.5017C4.26687 6.93394 3.99693 6.21518 3.99693 5.34541C3.99693 4.47565 4.32209 3.71461 4.97239 3.06229C5.63497 2.40997 6.4816 2.02341 7.51227 1.90261V0H8.94785V1.92072C9.96626 2.0536 10.7454 2.40393 11.2853 2.97169C11.8374 3.52737 12.2055 4.16157 12.3896 4.87429L10.7331 5.47225C10.6718 5.07361 10.4877 4.68705 10.181 4.31257C9.87423 3.93809 9.46319 3.67837 8.94785 3.53341V7.24802L9.22393 7.30238C10.2301 7.49566 11.0276 7.90034 11.6166 8.51642C12.2055 9.1325 12.5 9.85126 12.5 10.6727C12.5 11.5304 12.1871 12.2854 11.5613 12.9377C10.9356 13.59 10.0644 13.9826 8.94785 14.1155V16ZM10.6963 10.7633C10.6963 10.3647 10.5491 10.0083 10.2546 9.69423C9.96012 9.38015 9.52454 9.15666 8.94785 9.02378V12.521C9.52454 12.4122 9.96012 12.2008 10.2546 11.8867C10.5491 11.5727 10.6963 11.1982 10.6963 10.7633ZM5.81902 5.27293C5.81902 6.15478 6.38344 6.70442 7.51227 6.92186V3.47905C6.98466 3.57569 6.56748 3.78709 6.26074 4.11325C5.96626 4.43941 5.81902 4.82597 5.81902 5.27293Z", fill: "currentColor" }))); };
@@ -12,4 +12,4 @@ var __assign = (this && this.__assign) || function () {
12
12
  import React from 'react';
13
13
  import { Path, Svg } from 'react-native-svg';
14
14
  export var Download = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
- React.createElement(Path, { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M1.778 8a6.222 6.222 0 1112.444 0A6.222 6.222 0 011.778 8zM8 0a8 8 0 100 16A8 8 0 108 0zm0 3.71c.49 0 .889.398.889.889v4.656l1.265-1.265a.889.889 0 111.257 1.257l-2.78 2.78-.002.002a.886.886 0 01-1.26-.003l-2.78-2.78A.889.889 0 115.846 7.99L7.11 9.255V4.599c0-.49.398-.889.889-.889z", fill: "currentColor" }))); };
15
+ React.createElement(Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M8 1.78C4.56 1.78 1.78 4.56 1.78 8C1.78 11.44 4.57 14.22 8 14.22C11.43 14.22 14.22 11.43 14.22 8C14.22 4.57 11.44 1.78 8 1.78ZM0 8C0 3.58 3.58 0 8 0C12.42 0 16 3.58 16 8C16 12.42 12.42 16 8 16C3.58 16 0 12.42 0 8ZM9 8.85999L10.58 7.28999L12 8.70999L8 12.71L4 8.70999L5.42 7.28999L7 8.85999V3.89999H9V8.85999Z", fill: "currentColor" }))); };
@@ -12,4 +12,4 @@ var __assign = (this && this.__assign) || function () {
12
12
  import React from 'react';
13
13
  import { Path, Svg } from 'react-native-svg';
14
14
  export var Electricity = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
- React.createElement(Path, { d: "M9.52,0V6.22h4L6,16V9.78H2Z", fill: "currentColor" }))); };
15
+ React.createElement(Path, { d: "M9.77997 0V6.22H13.78L6.21997 16V9.78H2.21997L9.77997 0Z", fill: "currentColor" }))); };
@@ -11,6 +11,5 @@ var __assign = (this && this.__assign) || function () {
11
11
  };
12
12
  import React from 'react';
13
13
  import { Path, Svg } from 'react-native-svg';
14
- var Euro = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
- React.createElement(Path, { d: "M10.248 13.467c1.576 0 2.904-.615 3.984-1.845L16 13.4a6.626 6.626 0 01-2.557 1.933c-1.008.445-2.123.667-3.345.667-1.235 0-2.386-.237-3.45-.711a7.631 7.631 0 01-2.685-2 7.56 7.56 0 01-1.534-2.978H0V8.756h2.152A9.608 9.608 0 012.13 8c0-.34.008-.593.022-.756H0V5.69h2.429A7.56 7.56 0 013.963 2.71a7.63 7.63 0 012.684-2C7.712.237 8.863 0 10.098 0c1.222 0 2.337.222 3.345.667A6.626 6.626 0 0116 2.6l-1.768 1.756c-1.08-1.215-2.408-1.823-3.984-1.823-1.137 0-2.138.282-3.004.845-.853.563-1.485 1.333-1.896 2.31h6.114v1.556h-6.52A9.333 9.333 0 004.9 8c0 .178.014.43.043.756h6.519v1.555H5.348c.411.978 1.043 1.748 1.896 2.311.866.563 1.867.845 3.004.845z", fill: "currentColor" }))); };
16
- export { Euro };
14
+ export var Euro = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M2 8.86726H3.58264C3.55593 8.5644 3.54257 8.26844 3.54257 7.97935C3.54257 7.73156 3.55593 7.45624 3.58264 7.15339H2V5.54277H3.88314C4.33723 4.09735 5.14524 2.9823 6.30718 2.19764C7.46911 1.39921 8.73122 1 10.0935 1C11.4958 1 12.6377 1.3235 13.5192 1.9705L12.7179 3.56047C12.0367 3.05113 11.1619 2.79646 10.0935 2.79646C9.17195 2.79646 8.33723 3.03048 7.58932 3.49852C6.8414 3.96657 6.28715 4.64798 5.92654 5.54277H11.7963L11.015 7.15339H5.54591C5.50584 7.40118 5.48581 7.6765 5.48581 7.97935C5.48581 8.3648 5.50584 8.66077 5.54591 8.86726H10.2938L9.51252 10.5192H5.96661C6.32721 11.4002 6.86811 12.0678 7.58932 12.5221C8.31052 12.9764 9.12521 13.2035 10.0334 13.2035C11.3022 13.2035 12.2972 12.8319 13.0184 12.0885L14 13.5339C12.8915 14.5113 11.5693 15 10.0334 15C8.69783 15 7.46244 14.6077 6.32721 13.823C5.19199 13.0383 4.39065 11.9371 3.92321 10.5192H2V8.86726Z", fill: "currentColor" }))); };
@@ -12,5 +12,5 @@ var __assign = (this && this.__assign) || function () {
12
12
  import React from 'react';
13
13
  import { Path, Svg } from 'react-native-svg';
14
14
  export var Gas = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
- React.createElement(Path, { d: "M8 0v.31a3.59 3.59 0 01-2.09 3.25 4.68 4.68 0 00-2.8 4.22A4.77 4.77 0 008 12.44v-.31a3.57 3.57 0 012.09-3.24 4.7 4.7 0 002.8-4.22A4.78 4.78 0 008 0z", fill: "currentColor" }),
16
- React.createElement(Path, { d: "M1.33 14.22V16h13.34v-1.78z", fill: "currentColor", opacity: 0.3 }))); };
15
+ React.createElement(Path, { d: "M7.82 0.31V0C10.53 0 12.71 2.09 12.71 4.67C12.71 6.53 11.55 8.13 9.91 8.89C8.66 9.46 7.82 10.71 7.82 12.13V12.44C5.11 12.44 2.93 10.35 2.93 7.77C2.93 5.91 4.08 4.31 5.73 3.55C6.97 2.98 7.82 1.73 7.82 0.31ZM1.5 16V14H14.5V16H1.5Z", fill: "currentColor" }),
16
+ React.createElement(Path, { d: "M1.33 14.22V16h13.34v-1.78z", fill: "currentColor", opacity: ".3" }))); };
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var Help = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M8 1.78C4.56 1.78 1.78 4.56 1.78 8C1.78 11.44 4.57 14.22 8 14.22C11.43 14.22 14.22 11.43 14.22 8C14.22 4.57 11.44 1.78 8 1.78ZM0 8C0 3.58 3.58 0 8 0C12.42 0 16 3.58 16 8C16 12.42 12.42 16 8 16C3.58 16 0 12.42 0 8ZM7.14 12V10.28H8.86V12H7.14ZM5.42 6.61C5.42 4.93 6.38 4 8 4C9.6 4 10.58 4.98 10.58 6.61C10.58 7.61 9.99 8.43 8.93 9.05L8.86 9.09V9.14H7.14V8.02L7.64 7.79C8.51 7.38 8.86 6.99 8.86 6.61C8.86 5.93 8.66 5.72 8 5.72C7.34 5.72 7.16 5.88 7.14 6.52V6.61H5.42Z", fill: "currentColor", fillRule: "evenodd" }))); };
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var Hide = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M15.8125 1.3125L14.5781 0.078125L10.7093 3.947C9.8406 3.65492 8.93342 3.5 8 3.5C4.89086 3.5 2.07286 5.21886 0 8C0.996343 9.33679 2.16484 10.4282 3.45507 11.2012L0.0937505 14.5625L1.32813 15.7969L5.12836 11.9966C6.04613 12.3251 7.00825 12.5 8 12.5C11.1091 12.5 13.9271 10.7811 16 8C14.9683 6.61581 13.7521 5.49476 12.4072 4.71779L15.8125 1.3125ZM9.3408 5.31545C8.93732 5.11358 8.48195 5 8 5C6.34286 5 5 6.34286 5 8C5 8.48195 5.11358 8.93732 5.31545 9.3408L6.50731 8.14894C6.50247 8.09995 6.5 8.05026 6.5 8C6.5 7.17171 7.17171 6.5 8 6.5C8.05026 6.5 8.09995 6.50247 8.14894 6.50731L9.3408 5.31545ZM9.46198 7.66302L10.6083 6.51665C10.8576 6.9541 11 7.46039 11 8C11 9.65714 9.65714 11 8 11C7.46039 11 6.9541 10.8576 6.51665 10.6083L7.66302 9.46198C7.77134 9.48686 7.88414 9.5 8 9.5C8.82829 9.5 9.5 8.82829 9.5 8C9.5 7.88414 9.48686 7.77134 9.46198 7.66302Z", fill: "currentColor", fillRule: "evenodd" }))); };
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var HidePassword = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M15.8125 1.3125L14.5781 0.078125L10.7093 3.947C9.8406 3.65492 8.93342 3.5 8 3.5C4.89086 3.5 2.07286 5.21886 0 8C0.996343 9.33679 2.16484 10.4282 3.45507 11.2012L0.0937505 14.5625L1.32813 15.7969L5.12836 11.9966C6.04613 12.3251 7.00825 12.5 8 12.5C11.1091 12.5 13.9271 10.7811 16 8C14.9683 6.61581 13.7521 5.49476 12.4072 4.71779L15.8125 1.3125ZM9.3408 5.31545C8.93732 5.11358 8.48195 5 8 5C6.34286 5 5 6.34286 5 8C5 8.48195 5.11358 8.93732 5.31545 9.3408L6.50731 8.14894C6.50247 8.09995 6.5 8.05026 6.5 8C6.5 7.17171 7.17171 6.5 8 6.5C8.05026 6.5 8.09995 6.50247 8.14894 6.50731L9.3408 5.31545ZM9.46198 7.66302L10.6083 6.51665C10.8576 6.9541 11 7.46039 11 8C11 9.65714 9.65714 11 8 11C7.46039 11 6.9541 10.8576 6.51665 10.6083L7.66302 9.46198C7.77134 9.48686 7.88414 9.5 8 9.5C8.82829 9.5 9.5 8.82829 9.5 8C9.5 7.88414 9.48686 7.77134 9.46198 7.66302Z", fill: "currentColor", fillRule: "evenodd" }))); };
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var Home = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M14 6.4L8 2.4L2 6.4V14H14V6.4ZM0 5.33L8 0L16 5.33V16H0V5.33ZM5.55164 8.64246L9.41534 7.60718L10.4506 11.4709L6.58691 12.5062L5.55164 8.64246Z", fill: "currentColor", fillRule: "evenodd" }))); };
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var Info = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M1.78 8C1.78 4.56 4.56 1.78 8 1.78C11.44 1.78 14.22 4.57 14.22 8C14.22 11.43 11.43 14.22 8 14.22C4.57 14.22 1.78 11.44 1.78 8ZM8 0C3.58 0 0 3.58 0 8C0 12.42 3.58 16 8 16C12.42 16 16 12.42 16 8C16 3.58 12.42 0 8 0ZM7 7V12H9V7H7ZM7 6V4H9V6H7Z", fill: "currentColor", fillRule: "evenodd" }))); };
@@ -12,5 +12,5 @@ var __assign = (this && this.__assign) || function () {
12
12
  import React from 'react';
13
13
  import { Path, Svg } from 'react-native-svg';
14
14
  export var Link = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
- React.createElement(Path, { d: "M7.21 11.92l-1.16 1.16a2.48 2.48 0 01-3.5-3.5l2-2A2.47 2.47 0 015.47 7a2.31 2.31 0 011-.15 2.28 2.28 0 011 .3 2.61 2.61 0 01.8.68.92.92 0 001.35.17.93.93 0 00.18-1.3 4.26 4.26 0 00-1.39-1.21A4.36 4.36 0 006.64 5a4.18 4.18 0 00-1.82.26 4.24 4.24 0 00-1.55 1l-2 2a4.33 4.33 0 006.12 6.12l1.17-1.17a.92.92 0 000-1.31.93.93 0 00-1.35.02z", fill: "currentColor" }),
16
- React.createElement(Path, { d: "M14.73 1.64a4.32 4.32 0 00-6.07 0L7.48 2.76a.92.92 0 000 1.31.93.93 0 001.32 0L10 2.92a2.48 2.48 0 013.5 3.5l-2 2a2.47 2.47 0 01-.89.57 2.31 2.31 0 01-1 .15 2.41 2.41 0 01-1-.3 2.61 2.61 0 01-.8-.68A.92.92 0 006.38 8a.93.93 0 00-.18 1.3 4.26 4.26 0 001.39 1.21 4.36 4.36 0 001.77.49 4.18 4.18 0 001.82-.26 4.24 4.24 0 001.55-1l2-2a4.32 4.32 0 000-6.07z", fill: "currentColor" }))); };
15
+ React.createElement(Path, { d: "M5.6665 8.81309C5.8348 9.12485 6.05111 9.41886 6.31444 9.68312C7.77261 11.1409 10.1375 11.1409 11.5959 9.68312L13.9066 7.37253C15.3643 5.91498 15.3643 3.5514 13.9066 2.0936C12.4482 0.635794 10.0835 0.635794 8.62535 2.0936L6.5415 4.17592C6.70655 4.15792 6.8731 4.15017 7.04065 4.15017C7.56805 4.15017 8.08069 4.23392 8.56633 4.39543L9.74717 3.21539C10.1528 2.80962 10.6922 2.58636 11.2656 2.58636C11.839 2.58636 12.3784 2.80937 12.784 3.21539C13.1897 3.6204 13.4127 4.15867 13.4127 4.73294C13.4127 5.30721 13.1897 5.84548 12.784 6.25049L10.4739 8.56008C10.0683 8.96609 9.52886 9.1891 8.95544 9.1891C8.38203 9.1891 7.79261 8.86609 7.38675 8.46032C7.18944 8.26382 6.98538 7.9348 6.87935 7.6853L5.6665 8.81309Z", fill: "currentColor" }),
16
+ React.createElement(Path, { d: "M10.3331 7.18702C10.1648 6.87525 9.9485 6.58124 9.68517 6.31698C8.22701 4.85918 5.86208 4.85918 4.40367 6.31698L2.09301 8.62757C0.635339 10.0851 0.635339 12.4487 2.09301 13.9065C3.55142 15.3643 5.9161 15.3643 7.37426 13.9065L9.45811 11.8242C9.29306 11.8422 9.12651 11.8499 8.95897 11.8499C8.43157 11.8499 7.91892 11.7662 7.43328 11.6047L6.25244 12.7847C5.84683 13.1905 5.30742 13.4137 4.73401 13.4137C4.1606 13.4137 3.62119 13.1907 3.21558 12.7847C2.80996 12.3797 2.5869 11.8414 2.5869 11.2672C2.5869 10.6929 2.80996 10.1546 3.21558 9.74961L5.52574 7.44002C5.93135 7.03401 6.47076 6.811 7.04417 6.811C7.61758 6.811 8.207 7.13401 8.61287 7.53978C8.81017 7.73628 9.01423 8.0653 9.12026 8.31481L10.3331 7.18702Z", fill: "currentColor" }))); };
@@ -12,4 +12,4 @@ var __assign = (this && this.__assign) || function () {
12
12
  import React from 'react';
13
13
  import { Path, Svg } from 'react-native-svg';
14
14
  export var Minus = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
- React.createElement(Path, { d: "M15 6v4H1V6h14z", fill: "currentColor" }))); };
15
+ React.createElement(Path, { d: "M15.96 9V7H0.0400391V9H15.96Z", fill: "currentColor" }))); };
@@ -12,5 +12,4 @@ var __assign = (this && this.__assign) || function () {
12
12
  import React from 'react';
13
13
  import { Path, Svg } from 'react-native-svg';
14
14
  export var NewWindow = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
- React.createElement(Path, { d: "M10.3 0v1.8h2.5L8 6.1l1.3 1.3L14.1 3v2.5H16V0h-5.7z", fill: "currentColor" }),
16
- React.createElement(Path, { d: "M13 9v5H2V3h5V1H0v15h15V9h-2z", fill: "currentColor" }))); };
15
+ React.createElement(Path, { d: "M9.755 3.5075V2H14V6.245H12.4925V4.5725L9.86 7.205L8.795 6.14L11.4275 3.5075H9.755ZM13.25 8.75H11.75V12.5H3.5V4.25H7.25V2.75H2V14H13.25V8.75Z", fill: "currentColor", fillRule: "evenodd" }))); };
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var Payment = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M2 1H11C12.1 1 13 1.9 13 3V10C13 11.1 12.1 12 11 12H2C0.9 12 0 11.1 0 10V3C0 1.9 0.9 1 2 1ZM11 3H2V4.5H11V3ZM2 6.5V10H11V6.5H2ZM2 15.19H11.25C13.87 15.19 16 13.06 16 10.44V4.5H14V10.44C14 11.96 12.76 13.19 11.25 13.19H2V15.19Z", fill: "currentColor", fillRule: "evenodd" }))); };
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var PaymentCard = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M2 1H11C12.1 1 13 1.9 13 3V10C13 11.1 12.1 12 11 12H2C0.9 12 0 11.1 0 10V3C0 1.9 0.9 1 2 1ZM11 3H2V4.5H11V3ZM2 6.5V10H11V6.5H2ZM2 15.19H11.25C13.87 15.19 16 13.06 16 10.44V4.5H14V10.44C14 11.96 12.76 13.19 11.25 13.19H2V15.19Z", fill: "currentColor", fillRule: "evenodd" }))); };
@@ -12,4 +12,4 @@ var __assign = (this && this.__assign) || function () {
12
12
  import React from 'react';
13
13
  import { Path, Svg } from 'react-native-svg';
14
14
  export var Plus = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
- React.createElement(Path, { d: "M10 1H6v5H1v4h5v5h4v-5h5V6h-5V1z", fill: "currentColor" }))); };
15
+ React.createElement(Path, { d: "M9 9H16V6.99H9V0H6.99V7H0V9.01H7V16.01H9.01V9.01L9 9Z", fill: "currentColor" }))); };
@@ -11,6 +11,5 @@ var __assign = (this && this.__assign) || function () {
11
11
  };
12
12
  import React from 'react';
13
13
  import { Path, Svg } from 'react-native-svg';
14
- var Pound = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
- React.createElement(Path, { d: "M6.19 13.544h7.459V16H1.333v-2.456h2.17V9.037h-2.17V7.189h2.17V6.152c0-1.247.248-2.329.744-3.245a5.136 5.136 0 012.21-2.14C7.423.254 8.58 0 9.93 0 11.57 0 12.925.353 14 1.06l-.847 2.388c-.84-.586-1.963-.879-3.368-.879-1.171 0-2.067.308-2.687.924-.606.6-.909 1.48-.909 2.637v1.059h5.228v1.848H6.19v4.507z", fill: "currentColor" }))); };
16
- export { Pound };
14
+ export var Pound = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M3.11928 7.41931H4.51093C4.11332 6.46204 3.91451 5.63147 3.91451 4.9276C3.91451 3.80141 4.29225 2.86526 5.04771 2.11916C5.80318 1.37305 6.73757 1 7.85089 1C9.24254 1 10.2565 1.37305 10.8926 2.11916C11.5421 2.86526 11.8933 3.7451 11.9463 4.75867L9.99801 5.11765C9.98476 4.35747 9.78595 3.78733 9.40159 3.40724C9.03048 3.01307 8.52684 2.81599 7.89066 2.81599C7.334 2.81599 6.85686 3.00603 6.45924 3.38612C6.06163 3.75214 5.86282 4.26596 5.86282 4.9276C5.86282 5.51885 6.08151 6.34942 6.51889 7.41931H10.3757V9.2353H7.03579C7.06229 9.48869 7.07555 9.67873 7.07555 9.80543C7.07555 10.5375 6.90987 11.1991 6.57853 11.7903C6.24718 12.3816 5.7833 12.8391 5.18688 13.1629H9.22266C9.85885 13.1629 10.336 12.9517 10.6541 12.5294C10.9722 12.093 11.1312 11.5581 11.1312 10.9246L13 11.2202C13 12.3323 12.7018 13.2403 12.1054 13.9442C11.5222 14.6481 10.7203 15 9.6998 15H3V12.994C3.66269 12.6983 4.19284 12.2831 4.59046 11.7481C4.98807 11.1991 5.18688 10.629 5.18688 10.0377C5.18688 9.728 5.16037 9.46053 5.10736 9.2353H3.11928V7.41931Z", fill: "currentColor", fillRule: "evenodd" }))); };
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var Search = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M16.02 14.61L11.65 10.05C12.37 9.01 12.8 7.76 12.8 6.4C12.8 2.87 9.93 0 6.4 0C2.87 0 0 2.87 0 6.4C0 9.93 2.87 12.8 6.4 12.8C7.85 12.8 9.19 12.31 10.26 11.49L14.57 15.99L16.01 14.61H16.02ZM6.4 10.8C3.97 10.8 2 8.83 2 6.4C2 3.97 3.97 2 6.4 2C8.83 2 10.8 3.97 10.8 6.4C10.8 8.83 8.83 10.8 6.4 10.8Z", fill: "currentColor" }))); };
@@ -0,0 +1,15 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { Path, Svg } from 'react-native-svg';
14
+ export var Show = function (props) { return (React.createElement(Svg, __assign({ viewBox: "0 0 16 16" }, props),
15
+ React.createElement(Path, { d: "M8 3.5C4.89086 3.5 2.07286 5.21886 0 8C2.07286 10.7811 4.89086 12.5 8 12.5C11.1091 12.5 13.9271 10.7811 16 8C13.9271 5.21886 11.1091 3.5 8 3.5ZM8 5C9.65714 5 11 6.34286 11 8C11 9.65714 9.65714 11 8 11C6.34286 11 5 9.65714 5 8C5 6.34286 6.34286 5 8 5ZM8 6.5C7.17171 6.5 6.5 7.17171 6.5 8C6.5 8.82829 7.17171 9.5 8 9.5C8.82829 9.5 9.5 8.82829 9.5 8C9.5 7.17171 8.82829 6.5 8 6.5Z", fill: "currentColor" }))); };