@ovotech/element-native 5.4.3 → 5.6.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 (1144) hide show
  1. package/dist/components/Accordion/Accordion.js +71 -33
  2. package/dist/components/Accordion/Group.js +12 -8
  3. package/dist/components/Accordion/Icon.js +51 -15
  4. package/dist/components/Accordion/index.js +9 -3
  5. package/dist/components/Accordion/styles.d.ts +9 -0
  6. package/dist/components/Accordion/styles.js +52 -13
  7. package/dist/components/Accordion/types.js +2 -1
  8. package/dist/components/ActionCard/ActionCard.js +74 -34
  9. package/dist/components/ActionCard/CloseIconShape.js +46 -6
  10. package/dist/components/ActionCard/IndicatorIconShape.js +46 -6
  11. package/dist/components/ActionCard/index.js +5 -1
  12. package/dist/components/ActionList/Action.d.ts +23 -0
  13. package/dist/components/ActionList/Action.js +29 -0
  14. package/dist/components/ActionList/ActionList.d.ts +11 -27
  15. package/dist/components/ActionList/ActionList.js +30 -23
  16. package/dist/components/ActionList/ActionListItems/DataListItem.d.ts +23 -0
  17. package/dist/components/ActionList/ActionListItems/DataListItem.js +21 -0
  18. package/dist/components/ActionList/ActionListItems/EditableListItem.d.ts +43 -0
  19. package/dist/components/ActionList/ActionListItems/EditableListItem.js +134 -0
  20. package/dist/components/ActionList/ActionListItems/NavigationListItem.d.ts +16 -0
  21. package/dist/components/ActionList/ActionListItems/NavigationListItem.js +30 -0
  22. package/dist/components/ActionList/ActionListItems/ProgressRing.d.ts +7 -0
  23. package/dist/components/ActionList/ActionListItems/ProgressRing.js +66 -0
  24. package/dist/components/ActionList/ActionListItems/ToggleListItem.d.ts +9 -0
  25. package/dist/components/ActionList/ActionListItems/ToggleListItem.js +13 -0
  26. package/dist/components/ActionList/ActionListItems/styles.d.ts +10433 -0
  27. package/dist/components/ActionList/ActionListItems/styles.js +171 -0
  28. package/dist/components/ActionList/components/ActionListHeading.d.ts +9 -0
  29. package/dist/components/ActionList/components/ActionListHeading.js +11 -0
  30. package/dist/components/ActionList/index.d.ts +6 -1
  31. package/dist/components/ActionList/index.js +15 -1
  32. package/dist/components/ActionList/styled.d.ts +1187 -7
  33. package/dist/components/ActionList/styled.js +83 -32
  34. package/dist/components/Badge/Badge.d.ts +3 -0
  35. package/dist/components/Badge/Badge.js +64 -15
  36. package/dist/components/Badge/index.js +5 -1
  37. package/dist/components/Button/Button.js +26 -10
  38. package/dist/components/Button/Button.styles.d.ts +12 -0
  39. package/dist/components/Button/Button.styles.js +65 -29
  40. package/dist/components/Button/index.js +6 -1
  41. package/dist/components/Card/Card.d.ts +7 -4
  42. package/dist/components/Card/Card.js +75 -36
  43. package/dist/components/Card/Card.styles.d.ts +11 -1
  44. package/dist/components/Card/Card.styles.js +23 -30
  45. package/dist/components/Card/index.js +5 -1
  46. package/dist/components/Cards/AccountCard/AccountCard.d.ts +2 -2
  47. package/dist/components/Cards/AccountCard/AccountCard.js +15 -11
  48. package/dist/components/Cards/AccountCard/AccountCard.styles.d.ts +24 -0
  49. package/dist/components/Cards/AccountCard/AccountCard.styles.js +18 -19
  50. package/dist/components/Cards/AccountCard/index.js +17 -1
  51. package/dist/components/Cards/BalanceCard/BalanceCard.d.ts +16 -7
  52. package/dist/components/Cards/BalanceCard/BalanceCard.js +16 -23
  53. package/dist/components/Cards/BalanceCard/BalanceCard.styles.d.ts +5321 -12
  54. package/dist/components/Cards/BalanceCard/BalanceCard.styles.js +70 -26
  55. package/dist/components/Cards/BalanceCard/BalanceCardErrorFallback.d.ts +12 -0
  56. package/dist/components/Cards/BalanceCard/BalanceCardErrorFallback.js +15 -0
  57. package/dist/components/Cards/BalanceCard/BalanceCardImages.d.ts +3 -0
  58. package/dist/components/Cards/BalanceCard/BalanceCardImages.js +54 -0
  59. package/dist/components/Cards/BalanceCard/Components.d.ts +20 -0
  60. package/dist/components/Cards/BalanceCard/Components.js +46 -0
  61. package/dist/components/Cards/BalanceCard/index.d.ts +2 -1
  62. package/dist/components/Cards/BalanceCard/index.js +7 -1
  63. package/dist/components/Cards/DisruptiveCard/DisruptiveCard.d.ts +13 -0
  64. package/dist/components/Cards/DisruptiveCard/DisruptiveCard.js +45 -0
  65. package/dist/components/Cards/DisruptiveCard/DisruptiveCard.styles.d.ts +580 -0
  66. package/dist/components/Cards/DisruptiveCard/DisruptiveCard.styles.js +11 -0
  67. package/dist/components/Cards/DisruptiveCard/index.d.ts +1 -0
  68. package/dist/components/Cards/DisruptiveCard/index.js +17 -0
  69. package/dist/components/Cards/HeroImageCard/HeroImageCard.d.ts +12 -0
  70. package/dist/components/Cards/HeroImageCard/HeroImageCard.js +65 -0
  71. package/dist/components/Cards/HeroImageCard/HeroImageCard.styles.d.ts +1741 -0
  72. package/dist/components/Cards/HeroImageCard/HeroImageCard.styles.js +27 -0
  73. package/dist/components/Cards/HeroImageCard/index.d.ts +1 -0
  74. package/dist/components/Cards/HeroImageCard/index.js +17 -0
  75. package/dist/components/Cards/IconDataCard/IconDataCard.d.ts +10 -16
  76. package/dist/components/Cards/IconDataCard/IconDataCard.js +16 -10
  77. package/dist/components/Cards/IconDataCard/IconDataCard.styles.d.ts +18 -3466
  78. package/dist/components/Cards/IconDataCard/IconDataCard.styles.js +14 -32
  79. package/dist/components/Cards/IconDataCard/index.js +17 -1
  80. package/dist/components/Cards/IconTextCard/IconTextCard.d.ts +2 -2
  81. package/dist/components/Cards/IconTextCard/IconTextCard.js +13 -24
  82. package/dist/components/Cards/IconTextCard/IconTextCard.styles.d.ts +11 -581
  83. package/dist/components/Cards/IconTextCard/IconTextCard.styles.js +13 -19
  84. package/dist/components/Cards/IconTextCard/index.js +17 -1
  85. package/dist/components/Cards/IllustrationTextCard/IllustrationTextCard.d.ts +14 -0
  86. package/dist/components/Cards/IllustrationTextCard/IllustrationTextCard.js +26 -0
  87. package/dist/components/Cards/IllustrationTextCard/IllustrationTextCard.styles.d.ts +2903 -0
  88. package/dist/components/Cards/IllustrationTextCard/IllustrationTextCard.styles.js +34 -0
  89. package/dist/components/Cards/IllustrationTextCard/index.d.ts +1 -0
  90. package/dist/components/Cards/IllustrationTextCard/index.js +17 -0
  91. package/dist/components/Cards/LinkTextCard/LinkTextCard.d.ts +4 -4
  92. package/dist/components/Cards/LinkTextCard/LinkTextCard.js +16 -10
  93. package/dist/components/Cards/LinkTextCard/LinkTextCard.styles.d.ts +25 -1169
  94. package/dist/components/Cards/LinkTextCard/LinkTextCard.styles.js +25 -33
  95. package/dist/components/Cards/LinkTextCard/index.js +17 -1
  96. package/dist/components/Cards/ProgressBarCard/ProgressBar/EPCBar.js +10 -6
  97. package/dist/components/Cards/ProgressBarCard/ProgressBar/EPCMarkers.js +47 -9
  98. package/dist/components/Cards/ProgressBarCard/ProgressBar/ValueBar.js +15 -11
  99. package/dist/components/Cards/ProgressBarCard/ProgressBarCard.d.ts +1 -1
  100. package/dist/components/Cards/ProgressBarCard/ProgressBarCard.js +25 -25
  101. package/dist/components/Cards/ProgressBarCard/ProgressBarCard.styles.d.ts +35 -1737
  102. package/dist/components/Cards/ProgressBarCard/ProgressBarCard.styles.js +21 -28
  103. package/dist/components/Cards/ProgressBarCard/index.js +17 -1
  104. package/dist/components/Cards/QuickLinkCard/QuickLinkCard.d.ts +12 -0
  105. package/dist/components/Cards/QuickLinkCard/QuickLinkCard.js +27 -0
  106. package/dist/components/Cards/QuickLinkCard/QuickLinkCard.styles.d.ts +2897 -0
  107. package/dist/components/Cards/QuickLinkCard/QuickLinkCard.styles.js +31 -0
  108. package/dist/components/Cards/QuickLinkCard/index.d.ts +1 -0
  109. package/dist/components/Cards/QuickLinkCard/index.js +17 -0
  110. package/dist/components/Cards/ServicesImageCard/ServicesImageCard.d.ts +12 -0
  111. package/dist/components/Cards/ServicesImageCard/ServicesImageCard.js +24 -0
  112. package/dist/components/Cards/ServicesImageCard/ServicesImageCard.styles.d.ts +2902 -0
  113. package/dist/components/Cards/ServicesImageCard/ServicesImageCard.styles.js +38 -0
  114. package/dist/components/Cards/ServicesImageCard/index.d.ts +1 -0
  115. package/dist/components/Cards/ServicesImageCard/index.js +17 -0
  116. package/dist/components/Cards/components.d.ts +15 -0
  117. package/dist/components/Cards/components.js +24 -0
  118. package/dist/components/Cards/index.d.ts +6 -1
  119. package/dist/components/Cards/index.js +26 -6
  120. package/dist/components/Cards/shared.styles.d.ts +5792 -0
  121. package/dist/components/Cards/shared.styles.js +55 -0
  122. package/dist/components/Cards/types.js +2 -1
  123. package/dist/components/Cards/utils.d.ts +4 -0
  124. package/dist/components/Cards/utils.js +29 -0
  125. package/dist/components/Checkbox/Checkbox.d.ts +2 -13
  126. package/dist/components/Checkbox/Checkbox.js +27 -54
  127. package/dist/components/Checkbox/CheckboxField.js +29 -14
  128. package/dist/components/Checkbox/index.js +7 -2
  129. package/dist/components/Checkbox/styled.d.ts +3483 -0
  130. package/dist/components/Checkbox/styled.js +52 -0
  131. package/dist/components/Checkbox/types.d.ts +16 -0
  132. package/dist/components/Checkbox/types.js +2 -0
  133. package/dist/components/CurrencyField/CurrencyField.js +21 -5
  134. package/dist/components/CurrencyField/index.js +5 -1
  135. package/dist/components/CurrencyInput/CurrencyInput.d.ts +2 -1
  136. package/dist/components/CurrencyInput/CurrencyInput.js +32 -10
  137. package/dist/components/CurrencyInput/index.js +5 -1
  138. package/dist/components/CurrencyInput/styled.d.ts +2318 -0
  139. package/dist/components/CurrencyInput/styled.js +39 -0
  140. package/dist/components/DataTable/DataTable.js +29 -13
  141. package/dist/components/DataTable/TableRow.js +18 -14
  142. package/dist/components/DataTable/index.js +21 -3
  143. package/dist/components/DataTable/styles.d.ts +39 -0
  144. package/dist/components/DataTable/styles.js +78 -42
  145. package/dist/components/DataTable/types.js +2 -1
  146. package/dist/components/DateField/DateField.js +66 -32
  147. package/dist/components/DateField/index.js +5 -1
  148. package/dist/components/Disclosure/Disclosure.d.ts +3 -0
  149. package/dist/components/Disclosure/Disclosure.js +70 -21
  150. package/dist/components/Disclosure/index.js +17 -1
  151. package/dist/components/Display/Display.js +69 -16
  152. package/dist/components/Display/index.js +9 -1
  153. package/dist/components/Divider/Divider.d.ts +1 -1
  154. package/dist/components/Divider/Divider.js +46 -7
  155. package/dist/components/Divider/index.js +5 -1
  156. package/dist/components/Em/Em.d.ts +3 -0
  157. package/dist/components/Em/Em.js +8 -2
  158. package/dist/components/Em/index.js +5 -1
  159. package/dist/components/EmailField/EmailField.js +21 -5
  160. package/dist/components/EmailField/index.js +5 -1
  161. package/dist/components/EmailInput/EmailInput.d.ts +4 -1
  162. package/dist/components/EmailInput/EmailInput.js +37 -4
  163. package/dist/components/EmailInput/index.js +5 -1
  164. package/dist/components/EmptyState/EmptyState.d.ts +2 -0
  165. package/dist/components/EmptyState/EmptyState.js +17 -0
  166. package/dist/components/EmptyState/EmptyState.test.d.ts +1 -0
  167. package/dist/components/EmptyState/EmptyState.test.js +92 -0
  168. package/dist/components/EmptyState/index.d.ts +1 -0
  169. package/dist/components/EmptyState/index.js +17 -0
  170. package/dist/components/EmptyState/styles.d.ts +1156 -0
  171. package/dist/components/EmptyState/styles.js +23 -0
  172. package/dist/components/EmptyState/types.d.ts +18 -0
  173. package/dist/components/EmptyState/types.js +2 -0
  174. package/dist/components/ErrorText/ErrorText.d.ts +3 -0
  175. package/dist/components/ErrorText/ErrorText.js +47 -11
  176. package/dist/components/ErrorText/index.js +5 -1
  177. package/dist/components/ErrorWrapper/ErrorFallback.js +30 -16
  178. package/dist/components/ErrorWrapper/ErrorWrapper.js +32 -13
  179. package/dist/components/ErrorWrapper/config.js +5 -2
  180. package/dist/components/ErrorWrapper/index.js +5 -1
  181. package/dist/components/ErrorWrapper/types.js +6 -2
  182. package/dist/components/Field/Field.d.ts +3 -2
  183. package/dist/components/Field/Field.js +33 -21
  184. package/dist/components/Field/index.js +17 -1
  185. package/dist/components/FormGroup/FormGroup.js +26 -6
  186. package/dist/components/FormGroup/index.js +5 -1
  187. package/dist/components/Grid/Col.d.ts +3 -0
  188. package/dist/components/Grid/Col.js +46 -10
  189. package/dist/components/Grid/Row.js +62 -12
  190. package/dist/components/Grid/index.js +7 -2
  191. package/dist/components/Heading/Heading.js +69 -16
  192. package/dist/components/Heading/index.js +8 -1
  193. package/dist/components/HintText/HintText.d.ts +3 -0
  194. package/dist/components/HintText/HintText.js +47 -11
  195. package/dist/components/HintText/index.js +5 -1
  196. package/dist/components/Icon/Icon.js +24 -8
  197. package/dist/components/Icon/index.js +5 -1
  198. package/dist/components/Input/Input.d.ts +2 -1
  199. package/dist/components/Input/Input.js +27 -70
  200. package/dist/components/Input/styled.d.ts +1747 -0
  201. package/dist/components/Input/styled.js +96 -0
  202. package/dist/components/LabelText/LabelText.d.ts +3 -0
  203. package/dist/components/LabelText/LabelText.js +45 -9
  204. package/dist/components/LabelText/index.js +5 -1
  205. package/dist/components/LargeValueReference/LargeValueReference.d.ts +11 -0
  206. package/dist/components/LargeValueReference/LargeValueReference.js +49 -0
  207. package/dist/components/LargeValueReference/index.d.ts +1 -0
  208. package/dist/components/LargeValueReference/index.js +17 -0
  209. package/dist/components/LargeValueReference/styles.d.ts +1741 -0
  210. package/dist/components/LargeValueReference/styles.js +29 -0
  211. package/dist/components/LineThrough/LineThrough.d.ts +3 -0
  212. package/dist/components/LineThrough/LineThrough.js +8 -2
  213. package/dist/components/LineThrough/index.js +5 -1
  214. package/dist/components/Link/Link.js +63 -14
  215. package/dist/components/Link/index.js +6 -1
  216. package/dist/components/List/List.js +19 -14
  217. package/dist/components/List/index.js +7 -1
  218. package/dist/components/List/styled.d.ts +12 -0
  219. package/dist/components/List/styled.js +52 -16
  220. package/dist/components/Margin/Margin.d.ts +3 -0
  221. package/dist/components/Margin/Margin.js +38 -20
  222. package/dist/components/Margin/index.js +5 -1
  223. package/dist/components/NavHeader/NavHeader.js +38 -38
  224. package/dist/components/NavHeader/NavHeader.styles.d.ts +33 -0
  225. package/dist/components/NavHeader/NavHeader.styles.js +80 -41
  226. package/dist/components/NavHeader/NavHeaderComponents/ActionButtons.js +14 -9
  227. package/dist/components/NavHeader/NavHeaderComponents/NavButton.js +62 -10
  228. package/dist/components/NavHeader/NavHeaderComponents/StepCounterBars.js +8 -4
  229. package/dist/components/NavHeader/index.js +5 -1
  230. package/dist/components/NavHeader/utils.js +7 -2
  231. package/dist/components/NavIcon/NavIcon.js +54 -16
  232. package/dist/components/NavIcon/index.js +5 -1
  233. package/dist/components/Notification/Notification.d.ts +7 -1159
  234. package/dist/components/Notification/Notification.js +46 -73
  235. package/dist/components/Notification/Notification.styles.d.ts +5210 -0
  236. package/dist/components/Notification/Notification.styles.js +115 -0
  237. package/dist/components/Notification/index.js +9 -1
  238. package/dist/components/Notification/utils.d.ts +5 -0
  239. package/dist/components/Notification/utils.js +27 -0
  240. package/dist/components/NumberField/NumberField.js +21 -5
  241. package/dist/components/NumberField/index.js +5 -1
  242. package/dist/components/NumberInput/NumberInput.js +7 -4
  243. package/dist/components/NumberInput/index.js +5 -1
  244. package/dist/components/P/P.js +48 -11
  245. package/dist/components/P/index.js +5 -1
  246. package/dist/components/PasswordField/PasswordField.js +21 -5
  247. package/dist/components/PasswordField/index.js +5 -1
  248. package/dist/components/PasswordInput/PasswordInput.js +9 -6
  249. package/dist/components/PasswordInput/PasswordInput.styled.d.ts +4 -3
  250. package/dist/components/PasswordInput/PasswordInput.styled.js +46 -8
  251. package/dist/components/PasswordInput/PasswordVisibilityToggle.js +13 -14
  252. package/dist/components/PasswordInput/index.js +5 -1
  253. package/dist/components/PhoneField/PhoneField.js +21 -5
  254. package/dist/components/PhoneField/index.js +5 -1
  255. package/dist/components/PhoneInput/PhoneInput.js +7 -3
  256. package/dist/components/PhoneInput/index.js +5 -1
  257. package/dist/components/Pictogram/Pictogram.js +24 -8
  258. package/dist/components/Pictogram/index.js +5 -1
  259. package/dist/components/ProductCarousel/NavigationDots.js +50 -14
  260. package/dist/components/ProductCarousel/ProductCarousel.js +74 -38
  261. package/dist/components/ProductCarousel/anchor-point.js +5 -1
  262. package/dist/components/ProductCarousel/index.js +5 -1
  263. package/dist/components/Radio/Radio.js +47 -28
  264. package/dist/components/Radio/RadioField.js +30 -15
  265. package/dist/components/Radio/index.js +7 -2
  266. package/dist/components/RadioCard/RadioCard.d.ts +2 -1
  267. package/dist/components/RadioCard/RadioCard.js +25 -55
  268. package/dist/components/RadioCard/RadioCard.styles.d.ts +2901 -0
  269. package/dist/components/RadioCard/RadioCard.styles.js +97 -0
  270. package/dist/components/RadioCard/index.js +5 -1
  271. package/dist/components/RemoteImage/RemoteImage.js +26 -23
  272. package/dist/components/RemoteImage/index.js +5 -1
  273. package/dist/components/RemoteImage/types.js +2 -1
  274. package/dist/components/ScreenView/ScreenView.js +48 -11
  275. package/dist/components/ScreenView/index.js +17 -1
  276. package/dist/components/SegmentedControls/SegmentedControls.js +75 -23
  277. package/dist/components/SegmentedControls/components/SegmentButton.js +64 -24
  278. package/dist/components/SegmentedControls/index.js +5 -2
  279. package/dist/components/SelectField/Select.d.ts +5 -579
  280. package/dist/components/SelectField/Select.js +24 -84
  281. package/dist/components/SelectField/SelectField.d.ts +3 -3
  282. package/dist/components/SelectField/SelectField.js +22 -4
  283. package/dist/components/SelectField/index.js +5 -1
  284. package/dist/components/SelectField/styled.d.ts +4642 -0
  285. package/dist/components/SelectField/styled.js +118 -0
  286. package/dist/components/SkeletonAnimation/SkeletonAnimation.js +16 -14
  287. package/dist/components/SkeletonAnimation/index.js +5 -1
  288. package/dist/components/SkeletonButton/SkeletonButton.js +30 -9
  289. package/dist/components/SkeletonButton/index.js +5 -1
  290. package/dist/components/SkeletonCircle/SkeletonCircle.js +29 -8
  291. package/dist/components/SkeletonCircle/index.js +5 -1
  292. package/dist/components/SkeletonHeading/SkeletonHeading.js +29 -6
  293. package/dist/components/SkeletonHeading/index.js +5 -1
  294. package/dist/components/SkeletonText/SkeletonText.d.ts +2 -1
  295. package/dist/components/SkeletonText/SkeletonText.js +36 -15
  296. package/dist/components/SkeletonText/index.js +5 -1
  297. package/dist/components/Spinner/Spinner.js +53 -16
  298. package/dist/components/Spinner/index.js +5 -1
  299. package/dist/components/Stack/Stack.js +33 -15
  300. package/dist/components/Stack/index.js +5 -1
  301. package/dist/components/Stretch/Stretch.js +45 -8
  302. package/dist/components/Stretch/index.js +17 -1
  303. package/dist/components/Strong/Strong.d.ts +3 -0
  304. package/dist/components/Strong/Strong.js +8 -2
  305. package/dist/components/Strong/index.js +5 -1
  306. package/dist/components/SubLabelText/SubLabelText.d.ts +3 -0
  307. package/dist/components/SubLabelText/SubLabelText.js +45 -9
  308. package/dist/components/SubLabelText/index.js +5 -1
  309. package/dist/components/Tabs/Tab.d.ts +3 -0
  310. package/dist/components/Tabs/Tab.js +65 -16
  311. package/dist/components/Tabs/TabList.js +62 -13
  312. package/dist/components/Tabs/TabPanel.js +57 -8
  313. package/dist/components/Tabs/Tabs.js +69 -20
  314. package/dist/components/Tabs/index.js +11 -4
  315. package/dist/components/TextField/TextField.js +21 -5
  316. package/dist/components/TextField/index.js +5 -1
  317. package/dist/components/TextInput/TextInput.js +21 -4
  318. package/dist/components/TextInput/index.js +5 -1
  319. package/dist/components/TextareaField/TextareaField.js +21 -5
  320. package/dist/components/TextareaField/index.js +5 -1
  321. package/dist/components/TextareaInput/TextareaInput.js +66 -12
  322. package/dist/components/TextareaInput/index.js +5 -1
  323. package/dist/components/Toast/Toast.js +96 -55
  324. package/dist/components/Toast/index.js +6 -1
  325. package/dist/components/Toggle/Toggle.d.ts +3 -1
  326. package/dist/components/Toggle/Toggle.js +32 -17
  327. package/dist/components/Toggle/index.js +5 -1
  328. package/dist/components/Toggle/styles.d.ts +13 -0
  329. package/dist/components/Toggle/styles.js +24 -18
  330. package/dist/components/index.d.ts +4 -1
  331. package/dist/components/index.js +76 -57
  332. package/dist/esm/components/Accordion/Accordion.js +3 -3
  333. package/dist/esm/components/ActionCard/ActionCard.js +2 -2
  334. package/dist/esm/components/ActionCard/CloseIconShape.js +1 -1
  335. package/dist/esm/components/ActionCard/IndicatorIconShape.js +1 -1
  336. package/dist/esm/components/ActionList/Action.js +26 -0
  337. package/dist/esm/components/ActionList/ActionList.js +23 -20
  338. package/dist/esm/components/ActionList/ActionListItems/DataListItem.js +17 -0
  339. package/dist/esm/components/ActionList/ActionListItems/EditableListItem.js +131 -0
  340. package/dist/esm/components/ActionList/ActionListItems/NavigationListItem.js +26 -0
  341. package/dist/esm/components/ActionList/ActionListItems/ProgressRing.js +29 -0
  342. package/dist/esm/components/ActionList/ActionListItems/ToggleListItem.js +9 -0
  343. package/dist/esm/components/ActionList/ActionListItems/styles.js +135 -0
  344. package/dist/esm/components/ActionList/components/ActionListHeading.js +7 -0
  345. package/dist/esm/components/ActionList/index.js +6 -1
  346. package/dist/esm/components/ActionList/styled.js +23 -8
  347. package/dist/esm/components/Badge/Badge.js +16 -4
  348. package/dist/esm/components/Button/Button.js +16 -4
  349. package/dist/esm/components/Button/Button.styles.js +1 -1
  350. package/dist/esm/components/Card/Card.js +57 -23
  351. package/dist/esm/components/Card/Card.styles.js +11 -24
  352. package/dist/esm/components/Cards/AccountCard/AccountCard.js +2 -2
  353. package/dist/esm/components/Cards/AccountCard/AccountCard.styles.js +2 -9
  354. package/dist/esm/components/Cards/BalanceCard/BalanceCard.js +12 -23
  355. package/dist/esm/components/Cards/BalanceCard/BalanceCard.styles.js +61 -23
  356. package/dist/esm/components/Cards/BalanceCard/BalanceCardErrorFallback.js +11 -0
  357. package/dist/esm/components/Cards/BalanceCard/BalanceCardImages.js +15 -0
  358. package/dist/esm/components/Cards/BalanceCard/Components.js +40 -0
  359. package/dist/esm/components/Cards/BalanceCard/index.js +2 -1
  360. package/dist/esm/components/Cards/DisruptiveCard/DisruptiveCard.js +41 -0
  361. package/dist/esm/components/Cards/DisruptiveCard/DisruptiveCard.styles.js +5 -0
  362. package/dist/esm/components/Cards/DisruptiveCard/index.js +1 -0
  363. package/dist/esm/components/Cards/HeroImageCard/HeroImageCard.js +28 -0
  364. package/dist/esm/components/Cards/HeroImageCard/HeroImageCard.styles.js +21 -0
  365. package/dist/esm/components/Cards/HeroImageCard/index.js +1 -0
  366. package/dist/esm/components/Cards/IconDataCard/IconDataCard.js +8 -6
  367. package/dist/esm/components/Cards/IconDataCard/IconDataCard.styles.js +3 -27
  368. package/dist/esm/components/Cards/IconTextCard/IconTextCard.js +8 -23
  369. package/dist/esm/components/Cards/IconTextCard/IconTextCard.styles.js +4 -16
  370. package/dist/esm/components/Cards/IllustrationTextCard/IllustrationTextCard.js +22 -0
  371. package/dist/esm/components/Cards/IllustrationTextCard/IllustrationTextCard.styles.js +28 -0
  372. package/dist/esm/components/Cards/IllustrationTextCard/index.js +1 -0
  373. package/dist/esm/components/Cards/LinkTextCard/LinkTextCard.js +11 -9
  374. package/dist/esm/components/Cards/LinkTextCard/LinkTextCard.styles.js +15 -29
  375. package/dist/esm/components/Cards/ProgressBarCard/ProgressBar/ValueBar.js +1 -1
  376. package/dist/esm/components/Cards/ProgressBarCard/ProgressBarCard.js +6 -13
  377. package/dist/esm/components/Cards/ProgressBarCard/ProgressBarCard.styles.js +6 -19
  378. package/dist/esm/components/Cards/QuickLinkCard/QuickLinkCard.js +23 -0
  379. package/dist/esm/components/Cards/QuickLinkCard/QuickLinkCard.styles.js +25 -0
  380. package/dist/esm/components/Cards/QuickLinkCard/index.js +1 -0
  381. package/dist/esm/components/Cards/ServicesImageCard/ServicesImageCard.js +20 -0
  382. package/dist/esm/components/Cards/ServicesImageCard/ServicesImageCard.styles.js +32 -0
  383. package/dist/esm/components/Cards/ServicesImageCard/index.js +1 -0
  384. package/dist/esm/components/Cards/components.js +19 -0
  385. package/dist/esm/components/Cards/index.js +6 -1
  386. package/dist/esm/components/Cards/shared.styles.js +49 -0
  387. package/dist/esm/components/Cards/utils.js +23 -0
  388. package/dist/esm/components/Checkbox/Checkbox.js +19 -49
  389. package/dist/esm/components/Checkbox/CheckboxField.js +15 -3
  390. package/dist/esm/components/Checkbox/styled.js +46 -0
  391. package/dist/esm/components/Checkbox/types.js +1 -0
  392. package/dist/esm/components/CurrencyField/CurrencyField.js +14 -2
  393. package/dist/esm/components/CurrencyInput/CurrencyInput.js +25 -6
  394. package/dist/esm/components/CurrencyInput/styled.js +33 -0
  395. package/dist/esm/components/DataTable/DataTable.js +14 -2
  396. package/dist/esm/components/DataTable/TableRow.js +5 -5
  397. package/dist/esm/components/DateField/DateField.js +1 -4
  398. package/dist/esm/components/Disclosure/Disclosure.js +15 -3
  399. package/dist/esm/components/Display/Display.js +18 -6
  400. package/dist/esm/components/Divider/Divider.js +3 -1
  401. package/dist/esm/components/EmailField/EmailField.js +14 -2
  402. package/dist/esm/components/EmailInput/EmailInput.js +31 -1
  403. package/dist/esm/components/EmptyState/EmptyState.js +13 -0
  404. package/dist/esm/components/EmptyState/EmptyState.test.js +90 -0
  405. package/dist/esm/components/EmptyState/index.js +1 -0
  406. package/dist/esm/components/EmptyState/styles.js +17 -0
  407. package/dist/esm/components/EmptyState/types.js +1 -0
  408. package/dist/esm/components/ErrorWrapper/ErrorFallback.js +14 -2
  409. package/dist/esm/components/ErrorWrapper/ErrorWrapper.js +17 -4
  410. package/dist/esm/components/ErrorWrapper/config.js +1 -1
  411. package/dist/esm/components/ErrorWrapper/types.js +1 -0
  412. package/dist/esm/components/Field/Field.js +15 -7
  413. package/dist/esm/components/FormGroup/FormGroup.js +15 -1
  414. package/dist/esm/components/Grid/Row.js +15 -1
  415. package/dist/esm/components/Heading/Heading.js +18 -6
  416. package/dist/esm/components/Icon/Icon.js +14 -2
  417. package/dist/esm/components/Input/Input.js +18 -64
  418. package/dist/esm/components/Input/styled.js +60 -0
  419. package/dist/esm/components/LargeValueReference/LargeValueReference.js +45 -0
  420. package/dist/esm/components/LargeValueReference/index.js +1 -0
  421. package/dist/esm/components/LargeValueReference/styles.js +23 -0
  422. package/dist/esm/components/Link/Link.js +15 -3
  423. package/dist/esm/components/Margin/Margin.js +14 -2
  424. package/dist/esm/components/NavHeader/NavHeader.js +1 -5
  425. package/dist/esm/components/NavHeader/NavHeaderComponents/ActionButtons.js +3 -2
  426. package/dist/esm/components/NavHeader/NavHeaderComponents/NavButton.js +18 -3
  427. package/dist/esm/components/NavIcon/NavIcon.js +2 -1
  428. package/dist/esm/components/Notification/Notification.js +33 -68
  429. package/dist/esm/components/Notification/Notification.styles.js +79 -0
  430. package/dist/esm/components/Notification/utils.js +21 -0
  431. package/dist/esm/components/NumberField/NumberField.js +14 -2
  432. package/dist/esm/components/NumberInput/NumberInput.js +1 -1
  433. package/dist/esm/components/P/P.js +1 -1
  434. package/dist/esm/components/PasswordField/PasswordField.js +14 -2
  435. package/dist/esm/components/PasswordInput/PasswordInput.js +1 -1
  436. package/dist/esm/components/PasswordInput/PasswordInput.styled.js +5 -3
  437. package/dist/esm/components/PasswordInput/PasswordVisibilityToggle.js +2 -8
  438. package/dist/esm/components/PhoneField/PhoneField.js +14 -2
  439. package/dist/esm/components/PhoneInput/PhoneInput.js +1 -1
  440. package/dist/esm/components/Pictogram/Pictogram.js +14 -2
  441. package/dist/esm/components/ProductCarousel/NavigationDots.js +3 -3
  442. package/dist/esm/components/ProductCarousel/ProductCarousel.js +4 -7
  443. package/dist/esm/components/Radio/Radio.js +20 -7
  444. package/dist/esm/components/Radio/RadioField.js +15 -3
  445. package/dist/esm/components/RadioCard/RadioCard.js +18 -52
  446. package/dist/esm/components/RadioCard/RadioCard.styles.js +61 -0
  447. package/dist/esm/components/RemoteImage/RemoteImage.js +2 -2
  448. package/dist/esm/components/SegmentedControls/SegmentedControls.js +27 -12
  449. package/dist/esm/components/SegmentedControls/components/SegmentButton.js +2 -2
  450. package/dist/esm/components/SelectField/Select.js +7 -74
  451. package/dist/esm/components/SelectField/SelectField.js +16 -2
  452. package/dist/esm/components/SelectField/styled.js +82 -0
  453. package/dist/esm/components/SkeletonAnimation/SkeletonAnimation.js +0 -2
  454. package/dist/esm/components/SkeletonButton/SkeletonButton.js +15 -1
  455. package/dist/esm/components/SkeletonCircle/SkeletonCircle.js +15 -1
  456. package/dist/esm/components/SkeletonHeading/SkeletonHeading.js +17 -1
  457. package/dist/esm/components/SkeletonText/SkeletonText.js +20 -6
  458. package/dist/esm/components/Stack/Stack.js +14 -2
  459. package/dist/esm/components/Stretch/Stretch.js +1 -1
  460. package/dist/esm/components/Tabs/Tab.js +14 -2
  461. package/dist/esm/components/Tabs/TabList.js +16 -4
  462. package/dist/esm/components/Tabs/TabPanel.js +14 -2
  463. package/dist/esm/components/Tabs/Tabs.js +15 -3
  464. package/dist/esm/components/TextField/TextField.js +14 -2
  465. package/dist/esm/components/TextInput/TextInput.js +15 -1
  466. package/dist/esm/components/TextareaField/TextareaField.js +14 -2
  467. package/dist/esm/components/TextareaInput/TextareaInput.js +25 -7
  468. package/dist/esm/components/Toast/Toast.js +8 -5
  469. package/dist/esm/components/Toggle/Toggle.js +17 -6
  470. package/dist/esm/components/Toggle/styles.js +3 -3
  471. package/dist/esm/components/index.js +4 -1
  472. package/dist/esm/hooks/use-font-scaling.js +32 -0
  473. package/dist/esm/index.js +1 -0
  474. package/dist/esm/providers/IconsProvider.js +1 -4
  475. package/dist/esm/providers/PictogramsProvider.js +2 -5
  476. package/dist/esm/providers/icons/AI.js +1 -1
  477. package/dist/esm/providers/icons/Address.js +1 -1
  478. package/dist/esm/providers/icons/Advice.js +1 -1
  479. package/dist/esm/providers/icons/Archive.js +1 -1
  480. package/dist/esm/providers/icons/ArrowDown.js +1 -1
  481. package/dist/esm/providers/icons/ArrowLeft.js +1 -1
  482. package/dist/esm/providers/icons/ArrowRight.js +1 -1
  483. package/dist/esm/providers/icons/ArrowUp.js +1 -1
  484. package/dist/esm/providers/icons/Award.js +1 -1
  485. package/dist/esm/providers/icons/Battery.js +1 -1
  486. package/dist/esm/providers/icons/BritishSignLanguage.js +1 -1
  487. package/dist/esm/providers/icons/Cal.js +1 -1
  488. package/dist/esm/providers/icons/CalBook.js +1 -1
  489. package/dist/esm/providers/icons/CaretArrowDown.js +1 -1
  490. package/dist/esm/providers/icons/CaretArrowLeft.js +1 -1
  491. package/dist/esm/providers/icons/CaretArrowRight.js +1 -1
  492. package/dist/esm/providers/icons/CaretArrowUp.js +1 -1
  493. package/dist/esm/providers/icons/CaretDown.js +1 -1
  494. package/dist/esm/providers/icons/CaretLeft.js +1 -1
  495. package/dist/esm/providers/icons/CaretRight.js +1 -1
  496. package/dist/esm/providers/icons/CaretUp.js +1 -1
  497. package/dist/esm/providers/icons/Chart.js +1 -1
  498. package/dist/esm/providers/icons/ChartFilled.js +1 -1
  499. package/dist/esm/providers/icons/Check.js +1 -1
  500. package/dist/esm/providers/icons/CheckCircle.js +1 -1
  501. package/dist/esm/providers/icons/ChevronDown.js +1 -1
  502. package/dist/esm/providers/icons/ChevronDownSmall.js +1 -1
  503. package/dist/esm/providers/icons/ChevronLeft.js +1 -1
  504. package/dist/esm/providers/icons/ChevronLeftSmall.js +1 -1
  505. package/dist/esm/providers/icons/ChevronLeftSmallFirst.js +1 -1
  506. package/dist/esm/providers/icons/ChevronRight.js +1 -1
  507. package/dist/esm/providers/icons/ChevronRightSmall.js +1 -1
  508. package/dist/esm/providers/icons/ChevronRightSmallLast.js +1 -1
  509. package/dist/esm/providers/icons/ChevronUp.js +1 -1
  510. package/dist/esm/providers/icons/ChevronUpSmall.js +1 -1
  511. package/dist/esm/providers/icons/Circle.js +1 -1
  512. package/dist/esm/providers/icons/CloseCircle.js +1 -1
  513. package/dist/esm/providers/icons/Copy.js +1 -1
  514. package/dist/esm/providers/icons/Cross.js +1 -1
  515. package/dist/esm/providers/icons/Doc.js +1 -1
  516. package/dist/esm/providers/icons/Dollar.js +1 -1
  517. package/dist/esm/providers/icons/Dots.js +1 -1
  518. package/dist/esm/providers/icons/Download.js +1 -1
  519. package/dist/esm/providers/icons/Eco.js +1 -1
  520. package/dist/esm/providers/icons/EcoHome.js +1 -1
  521. package/dist/esm/providers/icons/Edit.js +1 -1
  522. package/dist/esm/providers/icons/ElectricCar.js +1 -1
  523. package/dist/esm/providers/icons/ElectricHome.js +1 -1
  524. package/dist/esm/providers/icons/Electricity.js +1 -1
  525. package/dist/esm/providers/icons/Ellipsis.js +1 -1
  526. package/dist/esm/providers/icons/EnergyAdvice.js +1 -1
  527. package/dist/esm/providers/icons/Equals.js +1 -1
  528. package/dist/esm/providers/icons/Euro.js +1 -1
  529. package/dist/esm/providers/icons/Gas.js +1 -1
  530. package/dist/esm/providers/icons/GlobeAddress.js +1 -1
  531. package/dist/esm/providers/icons/HeatPump.js +1 -1
  532. package/dist/esm/providers/icons/Help.js +1 -1
  533. package/dist/esm/providers/icons/HelpFilled.js +1 -1
  534. package/dist/esm/providers/icons/Hide.js +1 -1
  535. package/dist/esm/providers/icons/Home.js +1 -1
  536. package/dist/esm/providers/icons/HomeFilled.js +1 -1
  537. package/dist/esm/providers/icons/HydroPower.js +1 -1
  538. package/dist/esm/providers/icons/Info.js +1 -1
  539. package/dist/esm/providers/icons/Link.js +1 -1
  540. package/dist/esm/providers/icons/Logo.js +1 -1
  541. package/dist/esm/providers/icons/Mail.js +1 -1
  542. package/dist/esm/providers/icons/MailOpen.js +1 -1
  543. package/dist/esm/providers/icons/Menu.js +1 -1
  544. package/dist/esm/providers/icons/Message.js +1 -1
  545. package/dist/esm/providers/icons/MessageFilled.js +1 -1
  546. package/dist/esm/providers/icons/Minus.js +1 -1
  547. package/dist/esm/providers/icons/Mobile.js +1 -1
  548. package/dist/esm/providers/icons/NewWindow.js +1 -1
  549. package/dist/esm/providers/icons/OvoLive.js +1 -1
  550. package/dist/esm/providers/icons/OvoLiveFilled.js +1 -1
  551. package/dist/esm/providers/icons/Pause.js +1 -1
  552. package/dist/esm/providers/icons/PaymentCard.js +1 -1
  553. package/dist/esm/providers/icons/PaymentCardFilled.js +1 -1
  554. package/dist/esm/providers/icons/Paypoint.js +1 -1
  555. package/dist/esm/providers/icons/Phone.js +1 -1
  556. package/dist/esm/providers/icons/Plus.js +1 -1
  557. package/dist/esm/providers/icons/PlusFilled.js +1 -1
  558. package/dist/esm/providers/icons/Pound.js +1 -1
  559. package/dist/esm/providers/icons/Pricing.js +1 -1
  560. package/dist/esm/providers/icons/PricingFilled.js +1 -1
  561. package/dist/esm/providers/icons/Search.js +1 -1
  562. package/dist/esm/providers/icons/Security.js +1 -1
  563. package/dist/esm/providers/icons/Send.js +1 -1
  564. package/dist/esm/providers/icons/Share.js +1 -1
  565. package/dist/esm/providers/icons/Shop.js +1 -1
  566. package/dist/esm/providers/icons/ShopFilled.js +1 -1
  567. package/dist/esm/providers/icons/Show.js +1 -1
  568. package/dist/esm/providers/icons/SmartHome.js +1 -1
  569. package/dist/esm/providers/icons/SmartMeter.js +1 -1
  570. package/dist/esm/providers/icons/Solar.js +1 -1
  571. package/dist/esm/providers/icons/Star.js +1 -1
  572. package/dist/esm/providers/icons/StarFilled.js +1 -1
  573. package/dist/esm/providers/icons/Sun.js +1 -1
  574. package/dist/esm/providers/icons/Switch.js +1 -1
  575. package/dist/esm/providers/icons/ThumbsDown.js +1 -1
  576. package/dist/esm/providers/icons/ThumbsDownFilled.js +1 -1
  577. package/dist/esm/providers/icons/ThumbsUp.js +1 -1
  578. package/dist/esm/providers/icons/ThumbsUpFilled.js +1 -1
  579. package/dist/esm/providers/icons/Torch.js +1 -1
  580. package/dist/esm/providers/icons/Trees.js +1 -1
  581. package/dist/esm/providers/icons/Tune.js +1 -1
  582. package/dist/esm/providers/icons/User.js +1 -1
  583. package/dist/esm/providers/icons/UserFilled.js +1 -1
  584. package/dist/esm/providers/icons/Wallet.js +1 -1
  585. package/dist/esm/providers/icons/WalletFilled.js +1 -1
  586. package/dist/esm/providers/icons/WarmHome.js +1 -1
  587. package/dist/esm/providers/icons/Warning.js +1 -1
  588. package/dist/esm/providers/icons/WebAddress.js +1 -1
  589. package/dist/esm/providers/icons/WindPower.js +1 -1
  590. package/dist/esm/providers/index.js +2 -2
  591. package/dist/esm/providers/pictograms/AccountInCreditPositiveBalance.js +1 -1
  592. package/dist/esm/providers/pictograms/AccountInDebtNegativeBalance.js +1 -1
  593. package/dist/esm/providers/pictograms/AccousticGuitar.js +1 -1
  594. package/dist/esm/providers/pictograms/AddYourCar.js +1 -1
  595. package/dist/esm/providers/pictograms/Archive.js +1 -1
  596. package/dist/esm/providers/pictograms/AssistanceDog.js +1 -1
  597. package/dist/esm/providers/pictograms/Awards.js +1 -1
  598. package/dist/esm/providers/pictograms/Bag.js +1 -1
  599. package/dist/esm/providers/pictograms/Battery13.js +1 -1
  600. package/dist/esm/providers/pictograms/Battery23.js +1 -1
  601. package/dist/esm/providers/pictograms/Battery33.js +1 -1
  602. package/dist/esm/providers/pictograms/BatteryEmpty.js +1 -1
  603. package/dist/esm/providers/pictograms/Bicycle.js +1 -1
  604. package/dist/esm/providers/pictograms/Bill.js +1 -1
  605. package/dist/esm/providers/pictograms/Bin.js +1 -1
  606. package/dist/esm/providers/pictograms/Boiler.js +1 -1
  607. package/dist/esm/providers/pictograms/BoilerEngineer.js +1 -1
  608. package/dist/esm/providers/pictograms/BoilerHeating.js +1 -1
  609. package/dist/esm/providers/pictograms/BoilerReplacement.js +1 -1
  610. package/dist/esm/providers/pictograms/BoilerService.js +1 -1
  611. package/dist/esm/providers/pictograms/BoilerWorking.js +1 -1
  612. package/dist/esm/providers/pictograms/BritishSignLanguage.js +1 -1
  613. package/dist/esm/providers/pictograms/Bus.js +1 -1
  614. package/dist/esm/providers/pictograms/CableLengthLong.js +1 -1
  615. package/dist/esm/providers/pictograms/CableLengthMedium.js +1 -1
  616. package/dist/esm/providers/pictograms/CableLengthShort.js +1 -1
  617. package/dist/esm/providers/pictograms/Calendar.js +1 -1
  618. package/dist/esm/providers/pictograms/Camera.js +1 -1
  619. package/dist/esm/providers/pictograms/Car.js +1 -1
  620. package/dist/esm/providers/pictograms/ChargerChademo.js +1 -1
  621. package/dist/esm/providers/pictograms/ChargerCssCombo.js +1 -1
  622. package/dist/esm/providers/pictograms/ChargerType1.js +1 -1
  623. package/dist/esm/providers/pictograms/ChargerType2.js +1 -1
  624. package/dist/esm/providers/pictograms/Cloakroom.js +1 -1
  625. package/dist/esm/providers/pictograms/Clock.js +1 -1
  626. package/dist/esm/providers/pictograms/Comedy.js +1 -1
  627. package/dist/esm/providers/pictograms/Competition.js +1 -1
  628. package/dist/esm/providers/pictograms/Confirmation.js +1 -1
  629. package/dist/esm/providers/pictograms/ContactUs.js +1 -1
  630. package/dist/esm/providers/pictograms/Copy.js +1 -1
  631. package/dist/esm/providers/pictograms/CreatePaymentSchedule.js +1 -1
  632. package/dist/esm/providers/pictograms/CreditCard.js +1 -1
  633. package/dist/esm/providers/pictograms/Cursor.js +1 -1
  634. package/dist/esm/providers/pictograms/Customer.js +1 -1
  635. package/dist/esm/providers/pictograms/CustomerStar.js +1 -1
  636. package/dist/esm/providers/pictograms/DisbaledToilet.js +1 -1
  637. package/dist/esm/providers/pictograms/DownloadApp.js +1 -1
  638. package/dist/esm/providers/pictograms/Drink1.js +1 -1
  639. package/dist/esm/providers/pictograms/Drink2.js +1 -1
  640. package/dist/esm/providers/pictograms/Drink3.js +1 -1
  641. package/dist/esm/providers/pictograms/Drink4.js +1 -1
  642. package/dist/esm/providers/pictograms/EcoHome.js +1 -1
  643. package/dist/esm/providers/pictograms/Edit.js +1 -1
  644. package/dist/esm/providers/pictograms/Electric.js +1 -1
  645. package/dist/esm/providers/pictograms/ElectricCarEv.js +1 -1
  646. package/dist/esm/providers/pictograms/ElectricityWarning.js +1 -1
  647. package/dist/esm/providers/pictograms/Emergency.js +1 -1
  648. package/dist/esm/providers/pictograms/EnergyAdvice.js +1 -1
  649. package/dist/esm/providers/pictograms/EnergyExperts.js +1 -1
  650. package/dist/esm/providers/pictograms/EstimatedCharge.js +1 -1
  651. package/dist/esm/providers/pictograms/EstimatedCharge2.js +1 -1
  652. package/dist/esm/providers/pictograms/EstimatedRange.js +1 -1
  653. package/dist/esm/providers/pictograms/EvCharger.js +1 -1
  654. package/dist/esm/providers/pictograms/ExitFees.js +1 -1
  655. package/dist/esm/providers/pictograms/ExternalDrains.js +1 -1
  656. package/dist/esm/providers/pictograms/Fairness.js +1 -1
  657. package/dist/esm/providers/pictograms/Filter.js +1 -1
  658. package/dist/esm/providers/pictograms/FinalStatement.js +1 -1
  659. package/dist/esm/providers/pictograms/FlagIssue.js +1 -1
  660. package/dist/esm/providers/pictograms/Flats.js +1 -1
  661. package/dist/esm/providers/pictograms/Food.js +1 -1
  662. package/dist/esm/providers/pictograms/FossilFuels.js +1 -1
  663. package/dist/esm/providers/pictograms/Gas.js +1 -1
  664. package/dist/esm/providers/pictograms/GasWarning.js +1 -1
  665. package/dist/esm/providers/pictograms/GetInTouch.js +1 -1
  666. package/dist/esm/providers/pictograms/Global.js +1 -1
  667. package/dist/esm/providers/pictograms/GreenerEnergy.js +1 -1
  668. package/dist/esm/providers/pictograms/GuitarMusic.js +1 -1
  669. package/dist/esm/providers/pictograms/Heart.js +1 -1
  670. package/dist/esm/providers/pictograms/HeatPump.js +1 -1
  671. package/dist/esm/providers/pictograms/Help.js +1 -1
  672. package/dist/esm/providers/pictograms/HistoryPayment.js +1 -1
  673. package/dist/esm/providers/pictograms/Home.js +1 -1
  674. package/dist/esm/providers/pictograms/HomeMove.js +1 -1
  675. package/dist/esm/providers/pictograms/HomeMoving.js +1 -1
  676. package/dist/esm/providers/pictograms/HouseProtected.js +1 -1
  677. package/dist/esm/providers/pictograms/Information.js +1 -1
  678. package/dist/esm/providers/pictograms/InternalDrains.js +1 -1
  679. package/dist/esm/providers/pictograms/Key.js +1 -1
  680. package/dist/esm/providers/pictograms/Laptop.js +1 -1
  681. package/dist/esm/providers/pictograms/Lasers.js +1 -1
  682. package/dist/esm/providers/pictograms/Leaf.js +1 -1
  683. package/dist/esm/providers/pictograms/Letter.js +1 -1
  684. package/dist/esm/providers/pictograms/Lifts.js +1 -1
  685. package/dist/esm/providers/pictograms/LightMembership.js +1 -1
  686. package/dist/esm/providers/pictograms/Lightbulb.js +1 -1
  687. package/dist/esm/providers/pictograms/Like.js +1 -1
  688. package/dist/esm/providers/pictograms/List.js +1 -1
  689. package/dist/esm/providers/pictograms/LoadingAndFlexibility.js +1 -1
  690. package/dist/esm/providers/pictograms/Location.js +1 -1
  691. package/dist/esm/providers/pictograms/LogIn.js +1 -1
  692. package/dist/esm/providers/pictograms/LogOut.js +1 -1
  693. package/dist/esm/providers/pictograms/Lpg.js +1 -1
  694. package/dist/esm/providers/pictograms/Magnify.js +1 -1
  695. package/dist/esm/providers/pictograms/ManageMyAccount.js +1 -1
  696. package/dist/esm/providers/pictograms/Map.js +1 -1
  697. package/dist/esm/providers/pictograms/MensToilet.js +1 -1
  698. package/dist/esm/providers/pictograms/Merch.js +1 -1
  699. package/dist/esm/providers/pictograms/MeterReading.js +1 -1
  700. package/dist/esm/providers/pictograms/MeterTopUp1.js +1 -1
  701. package/dist/esm/providers/pictograms/MeterTopUp2.js +1 -1
  702. package/dist/esm/providers/pictograms/Microphone.js +1 -1
  703. package/dist/esm/providers/pictograms/Mobile.js +1 -1
  704. package/dist/esm/providers/pictograms/Money.js +1 -1
  705. package/dist/esm/providers/pictograms/Msg.js +1 -1
  706. package/dist/esm/providers/pictograms/Music.js +1 -1
  707. package/dist/esm/providers/pictograms/MyPaymentCards.js +1 -1
  708. package/dist/esm/providers/pictograms/Navigation.js +1 -1
  709. package/dist/esm/providers/pictograms/News.js +1 -1
  710. package/dist/esm/providers/pictograms/NoEntry.js +1 -1
  711. package/dist/esm/providers/pictograms/NoSmoking.js +1 -1
  712. package/dist/esm/providers/pictograms/Notification.js +1 -1
  713. package/dist/esm/providers/pictograms/NumberOfSeats.js +1 -1
  714. package/dist/esm/providers/pictograms/Oil.js +1 -1
  715. package/dist/esm/providers/pictograms/OpenLetter.js +1 -1
  716. package/dist/esm/providers/pictograms/Padlock.js +1 -1
  717. package/dist/esm/providers/pictograms/Parking.js +1 -1
  718. package/dist/esm/providers/pictograms/PayAsYouGo.js +1 -1
  719. package/dist/esm/providers/pictograms/PayByBankTransfer.js +1 -1
  720. package/dist/esm/providers/pictograms/PaygDrive.js +1 -1
  721. package/dist/esm/providers/pictograms/PaymentSchedule.js +1 -1
  722. package/dist/esm/providers/pictograms/Person.js +1 -1
  723. package/dist/esm/providers/pictograms/PingDriver.js +1 -1
  724. package/dist/esm/providers/pictograms/Placeholder.js +1 -1
  725. package/dist/esm/providers/pictograms/Planet.js +1 -1
  726. package/dist/esm/providers/pictograms/Play.js +1 -1
  727. package/dist/esm/providers/pictograms/Plug.js +1 -1
  728. package/dist/esm/providers/pictograms/PlugAndSocket.js +1 -1
  729. package/dist/esm/providers/pictograms/Plumbing.js +1 -1
  730. package/dist/esm/providers/pictograms/PowerMove.js +1 -1
  731. package/dist/esm/providers/pictograms/Present.js +1 -1
  732. package/dist/esm/providers/pictograms/Price.js +1 -1
  733. package/dist/esm/providers/pictograms/PriceCut.js +1 -1
  734. package/dist/esm/providers/pictograms/Queue.js +1 -1
  735. package/dist/esm/providers/pictograms/Radio.js +1 -1
  736. package/dist/esm/providers/pictograms/RealCharge.js +1 -1
  737. package/dist/esm/providers/pictograms/RealCharge2.js +1 -1
  738. package/dist/esm/providers/pictograms/Refund.js +1 -1
  739. package/dist/esm/providers/pictograms/Repair.js +1 -1
  740. package/dist/esm/providers/pictograms/Rocket.js +1 -1
  741. package/dist/esm/providers/pictograms/ScheduledTopUps.js +1 -1
  742. package/dist/esm/providers/pictograms/Screen1.js +1 -1
  743. package/dist/esm/providers/pictograms/Screen2.js +1 -1
  744. package/dist/esm/providers/pictograms/Seats.js +1 -1
  745. package/dist/esm/providers/pictograms/SecurityDog.js +1 -1
  746. package/dist/esm/providers/pictograms/SellingPowerBackElectricity.js +1 -1
  747. package/dist/esm/providers/pictograms/SellingPowerBackGas.js +1 -1
  748. package/dist/esm/providers/pictograms/SemiDetached.js +1 -1
  749. package/dist/esm/providers/pictograms/Send.js +1 -1
  750. package/dist/esm/providers/pictograms/Shield.js +1 -1
  751. package/dist/esm/providers/pictograms/SmartHome.js +1 -1
  752. package/dist/esm/providers/pictograms/SmartMeter.js +1 -1
  753. package/dist/esm/providers/pictograms/SmartThermostatA.js +1 -1
  754. package/dist/esm/providers/pictograms/SmartThermostatB.js +1 -1
  755. package/dist/esm/providers/pictograms/Smoke.js +1 -1
  756. package/dist/esm/providers/pictograms/SolarPanel.js +1 -1
  757. package/dist/esm/providers/pictograms/SpecialEffects.js +1 -1
  758. package/dist/esm/providers/pictograms/Sport.js +1 -1
  759. package/dist/esm/providers/pictograms/Star.js +1 -1
  760. package/dist/esm/providers/pictograms/StoreLocator.js +1 -1
  761. package/dist/esm/providers/pictograms/StrobeLights.js +1 -1
  762. package/dist/esm/providers/pictograms/StrobeLights2.js +1 -1
  763. package/dist/esm/providers/pictograms/Sun.js +1 -1
  764. package/dist/esm/providers/pictograms/Tado.js +1 -1
  765. package/dist/esm/providers/pictograms/TapsAndToilets.js +1 -1
  766. package/dist/esm/providers/pictograms/TentFront.js +1 -1
  767. package/dist/esm/providers/pictograms/TentSide.js +1 -1
  768. package/dist/esm/providers/pictograms/Terraced.js +1 -1
  769. package/dist/esm/providers/pictograms/TheGrid.js +1 -1
  770. package/dist/esm/providers/pictograms/ThumbsDown.js +1 -1
  771. package/dist/esm/providers/pictograms/ThumbsUp.js +1 -1
  772. package/dist/esm/providers/pictograms/Ticket.js +1 -1
  773. package/dist/esm/providers/pictograms/TimeRunningOut.js +1 -1
  774. package/dist/esm/providers/pictograms/Toilet.js +1 -1
  775. package/dist/esm/providers/pictograms/TopUp.js +1 -1
  776. package/dist/esm/providers/pictograms/TopUpCardOrKey.js +1 -1
  777. package/dist/esm/providers/pictograms/TopUpInPaypointShop.js +1 -1
  778. package/dist/esm/providers/pictograms/TopUpInStore.js +1 -1
  779. package/dist/esm/providers/pictograms/TopUpOnline.js +1 -1
  780. package/dist/esm/providers/pictograms/Torch.js +1 -1
  781. package/dist/esm/providers/pictograms/Train.js +1 -1
  782. package/dist/esm/providers/pictograms/Trees.js +1 -1
  783. package/dist/esm/providers/pictograms/Turbine.js +1 -1
  784. package/dist/esm/providers/pictograms/UnavailableCharger.js +1 -1
  785. package/dist/esm/providers/pictograms/Underground.js +1 -1
  786. package/dist/esm/providers/pictograms/Underground1.js +1 -1
  787. package/dist/esm/providers/pictograms/Usage.js +1 -1
  788. package/dist/esm/providers/pictograms/Wallet.js +1 -1
  789. package/dist/esm/providers/pictograms/WarmHome.js +1 -1
  790. package/dist/esm/providers/pictograms/WaterSupplyPipe.js +1 -1
  791. package/dist/esm/providers/pictograms/WindEnergy.js +1 -1
  792. package/dist/esm/providers/pictograms/WomensToilet.js +1 -1
  793. package/dist/esm/providers/pictograms/Wrench.js +1 -1
  794. package/dist/esm/styled.native.js +1 -1
  795. package/dist/esm/test/utils.js +12 -0
  796. package/dist/esm/utils/utils.js +14 -3
  797. package/dist/hooks/index.js +18 -2
  798. package/dist/hooks/use-breakpoint.native.js +10 -6
  799. package/dist/hooks/use-font-scaling.d.ts +26 -0
  800. package/dist/hooks/use-font-scaling.js +35 -0
  801. package/dist/hooks/use-full-width.js +10 -6
  802. package/dist/hooks/use-layout.js +8 -4
  803. package/dist/index.d.ts +1 -0
  804. package/dist/index.js +20 -3
  805. package/dist/providers/IconsProvider.js +121 -119
  806. package/dist/providers/PictogramsProvider.js +217 -215
  807. package/dist/providers/icons/AI.js +40 -3
  808. package/dist/providers/icons/Address.js +40 -3
  809. package/dist/providers/icons/Advice.js +40 -3
  810. package/dist/providers/icons/Archive.js +40 -3
  811. package/dist/providers/icons/ArrowDown.js +40 -3
  812. package/dist/providers/icons/ArrowLeft.js +40 -3
  813. package/dist/providers/icons/ArrowRight.js +40 -3
  814. package/dist/providers/icons/ArrowUp.js +40 -3
  815. package/dist/providers/icons/Award.js +40 -3
  816. package/dist/providers/icons/Battery.js +40 -3
  817. package/dist/providers/icons/BritishSignLanguage.js +40 -3
  818. package/dist/providers/icons/Cal.js +40 -3
  819. package/dist/providers/icons/CalBook.js +40 -3
  820. package/dist/providers/icons/CaretArrowDown.js +40 -3
  821. package/dist/providers/icons/CaretArrowLeft.js +40 -3
  822. package/dist/providers/icons/CaretArrowRight.js +40 -3
  823. package/dist/providers/icons/CaretArrowUp.js +40 -3
  824. package/dist/providers/icons/CaretDown.js +40 -3
  825. package/dist/providers/icons/CaretLeft.js +40 -3
  826. package/dist/providers/icons/CaretRight.js +40 -3
  827. package/dist/providers/icons/CaretUp.js +40 -3
  828. package/dist/providers/icons/Chart.js +40 -3
  829. package/dist/providers/icons/ChartFilled.js +40 -3
  830. package/dist/providers/icons/Check.js +40 -3
  831. package/dist/providers/icons/CheckCircle.js +40 -3
  832. package/dist/providers/icons/ChevronDown.js +40 -3
  833. package/dist/providers/icons/ChevronDownSmall.js +40 -3
  834. package/dist/providers/icons/ChevronLeft.js +40 -3
  835. package/dist/providers/icons/ChevronLeftSmall.js +40 -3
  836. package/dist/providers/icons/ChevronLeftSmallFirst.js +40 -3
  837. package/dist/providers/icons/ChevronRight.js +40 -3
  838. package/dist/providers/icons/ChevronRightSmall.js +40 -3
  839. package/dist/providers/icons/ChevronRightSmallLast.js +40 -3
  840. package/dist/providers/icons/ChevronUp.js +40 -3
  841. package/dist/providers/icons/ChevronUpSmall.js +40 -3
  842. package/dist/providers/icons/Circle.js +40 -3
  843. package/dist/providers/icons/CloseCircle.js +40 -3
  844. package/dist/providers/icons/Copy.js +40 -3
  845. package/dist/providers/icons/Cross.js +40 -3
  846. package/dist/providers/icons/Doc.js +40 -3
  847. package/dist/providers/icons/Dollar.js +40 -3
  848. package/dist/providers/icons/Dots.js +40 -3
  849. package/dist/providers/icons/Download.js +40 -3
  850. package/dist/providers/icons/Eco.js +40 -3
  851. package/dist/providers/icons/EcoHome.js +40 -3
  852. package/dist/providers/icons/Edit.js +40 -3
  853. package/dist/providers/icons/ElectricCar.js +40 -3
  854. package/dist/providers/icons/ElectricHome.js +40 -3
  855. package/dist/providers/icons/Electricity.js +40 -3
  856. package/dist/providers/icons/Ellipsis.js +40 -3
  857. package/dist/providers/icons/EnergyAdvice.js +40 -3
  858. package/dist/providers/icons/Equals.js +40 -3
  859. package/dist/providers/icons/Euro.js +40 -3
  860. package/dist/providers/icons/Gas.js +40 -3
  861. package/dist/providers/icons/GlobeAddress.js +40 -3
  862. package/dist/providers/icons/HeatPump.js +40 -3
  863. package/dist/providers/icons/Help.js +40 -3
  864. package/dist/providers/icons/HelpFilled.js +40 -3
  865. package/dist/providers/icons/Hide.js +40 -3
  866. package/dist/providers/icons/Home.js +40 -3
  867. package/dist/providers/icons/HomeFilled.js +40 -3
  868. package/dist/providers/icons/HydroPower.js +40 -3
  869. package/dist/providers/icons/Info.js +40 -3
  870. package/dist/providers/icons/Link.js +40 -3
  871. package/dist/providers/icons/Logo.js +40 -3
  872. package/dist/providers/icons/Mail.js +40 -3
  873. package/dist/providers/icons/MailOpen.js +40 -3
  874. package/dist/providers/icons/Menu.js +40 -3
  875. package/dist/providers/icons/Message.js +40 -3
  876. package/dist/providers/icons/MessageFilled.js +40 -3
  877. package/dist/providers/icons/Minus.js +40 -3
  878. package/dist/providers/icons/Mobile.js +40 -3
  879. package/dist/providers/icons/NewWindow.js +40 -3
  880. package/dist/providers/icons/OvoLive.js +40 -3
  881. package/dist/providers/icons/OvoLiveFilled.js +40 -3
  882. package/dist/providers/icons/Pause.js +40 -3
  883. package/dist/providers/icons/PaymentCard.js +40 -3
  884. package/dist/providers/icons/PaymentCardFilled.js +40 -3
  885. package/dist/providers/icons/Paypoint.js +40 -3
  886. package/dist/providers/icons/Phone.js +40 -3
  887. package/dist/providers/icons/Plus.js +40 -3
  888. package/dist/providers/icons/PlusFilled.js +40 -3
  889. package/dist/providers/icons/Pound.js +40 -3
  890. package/dist/providers/icons/Pricing.js +40 -3
  891. package/dist/providers/icons/PricingFilled.js +40 -3
  892. package/dist/providers/icons/Search.js +40 -3
  893. package/dist/providers/icons/Security.js +40 -3
  894. package/dist/providers/icons/Send.js +40 -3
  895. package/dist/providers/icons/Share.js +40 -3
  896. package/dist/providers/icons/Shop.js +40 -3
  897. package/dist/providers/icons/ShopFilled.js +40 -3
  898. package/dist/providers/icons/Show.js +40 -3
  899. package/dist/providers/icons/SmartHome.js +40 -3
  900. package/dist/providers/icons/SmartMeter.js +40 -3
  901. package/dist/providers/icons/Solar.js +40 -3
  902. package/dist/providers/icons/Star.js +40 -3
  903. package/dist/providers/icons/StarFilled.js +40 -3
  904. package/dist/providers/icons/Sun.js +40 -3
  905. package/dist/providers/icons/Switch.js +40 -3
  906. package/dist/providers/icons/ThumbsDown.js +40 -3
  907. package/dist/providers/icons/ThumbsDownFilled.js +40 -3
  908. package/dist/providers/icons/ThumbsUp.js +40 -3
  909. package/dist/providers/icons/ThumbsUpFilled.js +40 -3
  910. package/dist/providers/icons/Torch.js +40 -3
  911. package/dist/providers/icons/Trees.js +40 -3
  912. package/dist/providers/icons/Tune.js +40 -3
  913. package/dist/providers/icons/User.js +40 -3
  914. package/dist/providers/icons/UserFilled.js +40 -3
  915. package/dist/providers/icons/Wallet.js +40 -3
  916. package/dist/providers/icons/WalletFilled.js +40 -3
  917. package/dist/providers/icons/WarmHome.js +40 -3
  918. package/dist/providers/icons/Warning.js +40 -3
  919. package/dist/providers/icons/WebAddress.js +40 -3
  920. package/dist/providers/icons/WindPower.js +40 -3
  921. package/dist/providers/icons/index.js +123 -107
  922. package/dist/providers/icons-types.js +2 -1
  923. package/dist/providers/index.d.ts +2 -2
  924. package/dist/providers/index.js +20 -4
  925. package/dist/providers/pictograms/AccountInCreditPositiveBalance.js +40 -3
  926. package/dist/providers/pictograms/AccountInDebtNegativeBalance.js +40 -3
  927. package/dist/providers/pictograms/AccousticGuitar.js +40 -3
  928. package/dist/providers/pictograms/AddYourCar.js +40 -3
  929. package/dist/providers/pictograms/Archive.js +40 -3
  930. package/dist/providers/pictograms/AssistanceDog.js +40 -3
  931. package/dist/providers/pictograms/Awards.js +40 -3
  932. package/dist/providers/pictograms/Bag.js +40 -3
  933. package/dist/providers/pictograms/Battery13.js +40 -3
  934. package/dist/providers/pictograms/Battery23.js +40 -3
  935. package/dist/providers/pictograms/Battery33.js +40 -3
  936. package/dist/providers/pictograms/BatteryEmpty.js +40 -3
  937. package/dist/providers/pictograms/Bicycle.js +40 -3
  938. package/dist/providers/pictograms/Bill.js +40 -3
  939. package/dist/providers/pictograms/Bin.js +40 -3
  940. package/dist/providers/pictograms/Boiler.js +40 -3
  941. package/dist/providers/pictograms/BoilerEngineer.js +40 -3
  942. package/dist/providers/pictograms/BoilerHeating.js +40 -3
  943. package/dist/providers/pictograms/BoilerReplacement.js +40 -3
  944. package/dist/providers/pictograms/BoilerService.js +40 -3
  945. package/dist/providers/pictograms/BoilerWorking.js +40 -3
  946. package/dist/providers/pictograms/BritishSignLanguage.js +40 -3
  947. package/dist/providers/pictograms/Bus.js +40 -3
  948. package/dist/providers/pictograms/CableLengthLong.js +40 -3
  949. package/dist/providers/pictograms/CableLengthMedium.js +40 -3
  950. package/dist/providers/pictograms/CableLengthShort.js +40 -3
  951. package/dist/providers/pictograms/Calendar.js +40 -3
  952. package/dist/providers/pictograms/Camera.js +40 -3
  953. package/dist/providers/pictograms/Car.js +40 -3
  954. package/dist/providers/pictograms/ChargerChademo.js +40 -3
  955. package/dist/providers/pictograms/ChargerCssCombo.js +40 -3
  956. package/dist/providers/pictograms/ChargerType1.js +40 -3
  957. package/dist/providers/pictograms/ChargerType2.js +40 -3
  958. package/dist/providers/pictograms/Cloakroom.js +40 -3
  959. package/dist/providers/pictograms/Clock.js +40 -3
  960. package/dist/providers/pictograms/Comedy.js +40 -3
  961. package/dist/providers/pictograms/Competition.js +40 -3
  962. package/dist/providers/pictograms/Confirmation.js +40 -3
  963. package/dist/providers/pictograms/ContactUs.js +40 -3
  964. package/dist/providers/pictograms/Copy.js +40 -3
  965. package/dist/providers/pictograms/CreatePaymentSchedule.js +40 -3
  966. package/dist/providers/pictograms/CreditCard.js +40 -3
  967. package/dist/providers/pictograms/Cursor.js +40 -3
  968. package/dist/providers/pictograms/Customer.js +40 -3
  969. package/dist/providers/pictograms/CustomerStar.js +40 -3
  970. package/dist/providers/pictograms/DisbaledToilet.js +40 -3
  971. package/dist/providers/pictograms/DownloadApp.js +40 -3
  972. package/dist/providers/pictograms/Drink1.js +40 -3
  973. package/dist/providers/pictograms/Drink2.js +40 -3
  974. package/dist/providers/pictograms/Drink3.js +40 -3
  975. package/dist/providers/pictograms/Drink4.js +40 -3
  976. package/dist/providers/pictograms/EcoHome.js +40 -3
  977. package/dist/providers/pictograms/Edit.js +40 -3
  978. package/dist/providers/pictograms/Electric.js +40 -3
  979. package/dist/providers/pictograms/ElectricCarEv.js +40 -3
  980. package/dist/providers/pictograms/ElectricityWarning.js +40 -3
  981. package/dist/providers/pictograms/Emergency.js +40 -3
  982. package/dist/providers/pictograms/EnergyAdvice.js +40 -3
  983. package/dist/providers/pictograms/EnergyExperts.js +40 -3
  984. package/dist/providers/pictograms/EstimatedCharge.js +40 -3
  985. package/dist/providers/pictograms/EstimatedCharge2.js +40 -3
  986. package/dist/providers/pictograms/EstimatedRange.js +40 -3
  987. package/dist/providers/pictograms/EvCharger.js +40 -3
  988. package/dist/providers/pictograms/ExitFees.js +40 -3
  989. package/dist/providers/pictograms/ExternalDrains.js +40 -3
  990. package/dist/providers/pictograms/Fairness.js +40 -3
  991. package/dist/providers/pictograms/Filter.js +40 -3
  992. package/dist/providers/pictograms/FinalStatement.js +40 -3
  993. package/dist/providers/pictograms/FlagIssue.js +40 -3
  994. package/dist/providers/pictograms/Flats.js +40 -3
  995. package/dist/providers/pictograms/Food.js +40 -3
  996. package/dist/providers/pictograms/FossilFuels.js +40 -3
  997. package/dist/providers/pictograms/Gas.js +40 -3
  998. package/dist/providers/pictograms/GasWarning.js +40 -3
  999. package/dist/providers/pictograms/GetInTouch.js +40 -3
  1000. package/dist/providers/pictograms/Global.js +40 -3
  1001. package/dist/providers/pictograms/GreenerEnergy.js +40 -3
  1002. package/dist/providers/pictograms/GuitarMusic.js +40 -3
  1003. package/dist/providers/pictograms/Heart.js +40 -3
  1004. package/dist/providers/pictograms/HeatPump.js +40 -3
  1005. package/dist/providers/pictograms/Help.js +40 -3
  1006. package/dist/providers/pictograms/HistoryPayment.js +40 -3
  1007. package/dist/providers/pictograms/Home.js +40 -3
  1008. package/dist/providers/pictograms/HomeMove.js +40 -3
  1009. package/dist/providers/pictograms/HomeMoving.js +40 -3
  1010. package/dist/providers/pictograms/HouseProtected.js +40 -3
  1011. package/dist/providers/pictograms/Information.js +40 -3
  1012. package/dist/providers/pictograms/InternalDrains.js +40 -3
  1013. package/dist/providers/pictograms/Key.js +40 -3
  1014. package/dist/providers/pictograms/Laptop.js +40 -3
  1015. package/dist/providers/pictograms/Lasers.js +40 -3
  1016. package/dist/providers/pictograms/Leaf.js +40 -3
  1017. package/dist/providers/pictograms/Letter.js +40 -3
  1018. package/dist/providers/pictograms/Lifts.js +40 -3
  1019. package/dist/providers/pictograms/LightMembership.js +40 -3
  1020. package/dist/providers/pictograms/Lightbulb.js +40 -3
  1021. package/dist/providers/pictograms/Like.js +40 -3
  1022. package/dist/providers/pictograms/List.js +40 -3
  1023. package/dist/providers/pictograms/LoadingAndFlexibility.js +40 -3
  1024. package/dist/providers/pictograms/Location.js +40 -3
  1025. package/dist/providers/pictograms/LogIn.js +40 -3
  1026. package/dist/providers/pictograms/LogOut.js +40 -3
  1027. package/dist/providers/pictograms/Lpg.js +40 -3
  1028. package/dist/providers/pictograms/Magnify.js +40 -3
  1029. package/dist/providers/pictograms/ManageMyAccount.js +40 -3
  1030. package/dist/providers/pictograms/Map.js +40 -3
  1031. package/dist/providers/pictograms/MensToilet.js +40 -3
  1032. package/dist/providers/pictograms/Merch.js +40 -3
  1033. package/dist/providers/pictograms/MeterReading.js +40 -3
  1034. package/dist/providers/pictograms/MeterTopUp1.js +40 -3
  1035. package/dist/providers/pictograms/MeterTopUp2.js +40 -3
  1036. package/dist/providers/pictograms/Microphone.js +40 -3
  1037. package/dist/providers/pictograms/Mobile.js +40 -3
  1038. package/dist/providers/pictograms/Money.js +40 -3
  1039. package/dist/providers/pictograms/Msg.js +40 -3
  1040. package/dist/providers/pictograms/Music.js +40 -3
  1041. package/dist/providers/pictograms/MyPaymentCards.js +40 -3
  1042. package/dist/providers/pictograms/Navigation.js +40 -3
  1043. package/dist/providers/pictograms/News.js +40 -3
  1044. package/dist/providers/pictograms/NoEntry.js +40 -3
  1045. package/dist/providers/pictograms/NoSmoking.js +40 -3
  1046. package/dist/providers/pictograms/Notification.js +40 -3
  1047. package/dist/providers/pictograms/NumberOfSeats.js +40 -3
  1048. package/dist/providers/pictograms/Oil.js +40 -3
  1049. package/dist/providers/pictograms/OpenLetter.js +40 -3
  1050. package/dist/providers/pictograms/Padlock.js +40 -3
  1051. package/dist/providers/pictograms/Parking.js +40 -3
  1052. package/dist/providers/pictograms/PayAsYouGo.js +40 -3
  1053. package/dist/providers/pictograms/PayByBankTransfer.js +40 -3
  1054. package/dist/providers/pictograms/PaygDrive.js +40 -3
  1055. package/dist/providers/pictograms/PaymentSchedule.js +40 -3
  1056. package/dist/providers/pictograms/Person.js +40 -3
  1057. package/dist/providers/pictograms/PingDriver.js +40 -3
  1058. package/dist/providers/pictograms/Placeholder.js +40 -3
  1059. package/dist/providers/pictograms/Planet.js +40 -3
  1060. package/dist/providers/pictograms/Play.js +40 -3
  1061. package/dist/providers/pictograms/Plug.js +40 -3
  1062. package/dist/providers/pictograms/PlugAndSocket.js +40 -3
  1063. package/dist/providers/pictograms/Plumbing.js +40 -3
  1064. package/dist/providers/pictograms/PowerMove.js +40 -3
  1065. package/dist/providers/pictograms/Present.js +40 -3
  1066. package/dist/providers/pictograms/Price.js +40 -3
  1067. package/dist/providers/pictograms/PriceCut.js +40 -3
  1068. package/dist/providers/pictograms/Queue.js +40 -3
  1069. package/dist/providers/pictograms/Radio.js +40 -3
  1070. package/dist/providers/pictograms/RealCharge.js +40 -3
  1071. package/dist/providers/pictograms/RealCharge2.js +40 -3
  1072. package/dist/providers/pictograms/Refund.js +40 -3
  1073. package/dist/providers/pictograms/Repair.js +40 -3
  1074. package/dist/providers/pictograms/Rocket.js +40 -3
  1075. package/dist/providers/pictograms/ScheduledTopUps.js +40 -3
  1076. package/dist/providers/pictograms/Screen1.js +40 -3
  1077. package/dist/providers/pictograms/Screen2.js +40 -3
  1078. package/dist/providers/pictograms/Seats.js +40 -3
  1079. package/dist/providers/pictograms/SecurityDog.js +40 -3
  1080. package/dist/providers/pictograms/SellingPowerBackElectricity.js +40 -3
  1081. package/dist/providers/pictograms/SellingPowerBackGas.js +40 -3
  1082. package/dist/providers/pictograms/SemiDetached.js +40 -3
  1083. package/dist/providers/pictograms/Send.js +40 -3
  1084. package/dist/providers/pictograms/Shield.js +40 -3
  1085. package/dist/providers/pictograms/SmartHome.js +40 -3
  1086. package/dist/providers/pictograms/SmartMeter.js +40 -3
  1087. package/dist/providers/pictograms/SmartThermostatA.js +40 -3
  1088. package/dist/providers/pictograms/SmartThermostatB.js +40 -3
  1089. package/dist/providers/pictograms/Smoke.js +40 -3
  1090. package/dist/providers/pictograms/SolarPanel.js +40 -3
  1091. package/dist/providers/pictograms/SpecialEffects.js +40 -3
  1092. package/dist/providers/pictograms/Sport.js +40 -3
  1093. package/dist/providers/pictograms/Star.js +40 -3
  1094. package/dist/providers/pictograms/StoreLocator.js +40 -3
  1095. package/dist/providers/pictograms/StrobeLights.js +40 -3
  1096. package/dist/providers/pictograms/StrobeLights2.js +40 -3
  1097. package/dist/providers/pictograms/Sun.js +40 -3
  1098. package/dist/providers/pictograms/Tado.js +40 -3
  1099. package/dist/providers/pictograms/TapsAndToilets.js +40 -3
  1100. package/dist/providers/pictograms/TentFront.js +40 -3
  1101. package/dist/providers/pictograms/TentSide.js +40 -3
  1102. package/dist/providers/pictograms/Terraced.js +40 -3
  1103. package/dist/providers/pictograms/TheGrid.js +40 -3
  1104. package/dist/providers/pictograms/ThumbsDown.js +40 -3
  1105. package/dist/providers/pictograms/ThumbsUp.js +40 -3
  1106. package/dist/providers/pictograms/Ticket.js +40 -3
  1107. package/dist/providers/pictograms/TimeRunningOut.js +40 -3
  1108. package/dist/providers/pictograms/Toilet.js +40 -3
  1109. package/dist/providers/pictograms/TopUp.js +40 -3
  1110. package/dist/providers/pictograms/TopUpCardOrKey.js +40 -3
  1111. package/dist/providers/pictograms/TopUpInPaypointShop.js +40 -3
  1112. package/dist/providers/pictograms/TopUpInStore.js +40 -3
  1113. package/dist/providers/pictograms/TopUpOnline.js +40 -3
  1114. package/dist/providers/pictograms/Torch.js +40 -3
  1115. package/dist/providers/pictograms/Train.js +40 -3
  1116. package/dist/providers/pictograms/Trees.js +40 -3
  1117. package/dist/providers/pictograms/Turbine.js +40 -3
  1118. package/dist/providers/pictograms/UnavailableCharger.js +40 -3
  1119. package/dist/providers/pictograms/Underground.js +40 -3
  1120. package/dist/providers/pictograms/Underground1.js +40 -3
  1121. package/dist/providers/pictograms/Usage.js +40 -3
  1122. package/dist/providers/pictograms/Wallet.js +40 -3
  1123. package/dist/providers/pictograms/WarmHome.js +40 -3
  1124. package/dist/providers/pictograms/WaterSupplyPipe.js +40 -3
  1125. package/dist/providers/pictograms/WindEnergy.js +40 -3
  1126. package/dist/providers/pictograms/WomensToilet.js +40 -3
  1127. package/dist/providers/pictograms/Wrench.js +40 -3
  1128. package/dist/providers/pictograms/index.js +219 -203
  1129. package/dist/providers/pictograms-types.js +2 -1
  1130. package/dist/styled.native.d.ts +19 -1
  1131. package/dist/styled.native.js +42 -3
  1132. package/dist/test/utils.d.ts +4 -0
  1133. package/dist/test/utils.js +28 -0
  1134. package/dist/theme/index.js +17 -1
  1135. package/dist/utils/index.js +17 -1
  1136. package/dist/utils/utils.d.ts +11 -1
  1137. package/dist/utils/utils.js +30 -9
  1138. package/package.json +6 -6
  1139. package/dist/components/Cards/shared.d.ts +0 -3
  1140. package/dist/components/Cards/shared.js +0 -12
  1141. package/dist/components/ErrorWrapper/styles.d.ts +0 -0
  1142. package/dist/components/ErrorWrapper/styles.js +0 -1
  1143. package/dist/esm/components/Cards/shared.js +0 -12
  1144. package/dist/esm/components/ErrorWrapper/styles.js +0 -1
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Play = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "M32.39 4.683c15.305 0 27.708 12.23 27.708 27.317S47.692 59.317 32.39 59.317C17.088 59.317 4.683 47.087 4.683 32c0-15.086 12.405-27.317 27.707-27.317Zm0 4.212c-3.165 0-6.233.61-9.12 1.814a23.38 23.38 0 0 0-7.45 4.953 23.038 23.038 0 0 0-5.025 7.346A22.68 22.68 0 0 0 8.955 32c0 3.12.62 6.145 1.84 8.992a23.016 23.016 0 0 0 5.025 7.345 23.403 23.403 0 0 0 7.45 4.953 23.574 23.574 0 0 0 9.12 1.815c3.164 0 6.233-.611 9.12-1.815a23.384 23.384 0 0 0 7.451-4.953l.001.001a23.044 23.044 0 0 0 5.025-7.346 22.675 22.675 0 0 0 1.84-8.99c0-3.122-.619-6.148-1.84-8.994a23.014 23.014 0 0 0-5.024-7.346 23.405 23.405 0 0 0-7.451-4.953 23.588 23.588 0 0 0-9.122-1.814Zm-8.756 9.348 24.228 13.792-24.228 13.791V18.243Zm4.273 20.287 11.412-6.497-11.413-6.496V38.53Z" }) }));
3
+ export const Play = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M32.39 4.683c15.305 0 27.708 12.23 27.708 27.317S47.692 59.317 32.39 59.317C17.088 59.317 4.683 47.087 4.683 32c0-15.086 12.405-27.317 27.707-27.317Zm0 4.212c-3.165 0-6.233.61-9.12 1.814a23.38 23.38 0 0 0-7.45 4.953 23.038 23.038 0 0 0-5.025 7.346A22.68 22.68 0 0 0 8.955 32c0 3.12.62 6.145 1.84 8.992a23.016 23.016 0 0 0 5.025 7.345 23.403 23.403 0 0 0 7.45 4.953 23.574 23.574 0 0 0 9.12 1.815c3.164 0 6.233-.611 9.12-1.815a23.384 23.384 0 0 0 7.451-4.953l.001.001a23.044 23.044 0 0 0 5.025-7.346 22.675 22.675 0 0 0 1.84-8.99c0-3.122-.619-6.148-1.84-8.994a23.014 23.014 0 0 0-5.024-7.346 23.405 23.405 0 0 0-7.451-4.953 23.588 23.588 0 0 0-9.122-1.814Zm-8.756 9.348 24.228 13.792-24.228 13.791V18.243Zm4.273 20.287 11.412-6.497-11.413-6.496V38.53Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Plug = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "M51.334 49.341c4.29-4.772 6.637-10.876 6.637-17.341 0-6.937-2.701-13.459-7.607-18.365-4.905-4.906-11.427-7.607-18.365-7.607-6.938 0-13.459 2.701-18.365 7.607C8.728 18.541 6.027 25.062 6.027 32c0 6.938 2.701 13.459 7.607 18.365 4.906 4.906 11.427 7.607 18.365 7.607.457 0 1.539-.012 1.993-.036l.006-10.626c5.414-.947 9.541-5.681 9.541-11.361V22.011h-3.661v-6.059l-3.996 1.097v4.962h-7.834v-6.059l-3.996 1.097v4.962h-3.581v13.938c0 5.677 4.122 10.409 9.53 11.359v6.579c-5.116-.458-9.866-2.67-13.542-6.346a21.833 21.833 0 0 1-6.437-15.539 21.83 21.83 0 0 1 6.437-15.539 21.833 21.833 0 0 1 15.539-6.437c5.87 0 11.388 2.285 15.539 6.437a21.833 21.833 0 0 1 6.437 15.539c0 5.87-2.285 11.388-6.437 15.539l3.796 1.802.001-.002ZM24.468 35.947v-9.943h15.076v9.943c0 4.156-3.381 7.539-7.539 7.539-4.158 0-7.539-3.381-7.539-7.539h.002Z" }) }));
3
+ export const Plug = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M51.334 49.341c4.29-4.772 6.637-10.876 6.637-17.341 0-6.937-2.701-13.459-7.607-18.365-4.905-4.906-11.427-7.607-18.365-7.607-6.938 0-13.459 2.701-18.365 7.607C8.728 18.541 6.027 25.062 6.027 32c0 6.938 2.701 13.459 7.607 18.365 4.906 4.906 11.427 7.607 18.365 7.607.457 0 1.539-.012 1.993-.036l.006-10.626c5.414-.947 9.541-5.681 9.541-11.361V22.011h-3.661v-6.059l-3.996 1.097v4.962h-7.834v-6.059l-3.996 1.097v4.962h-3.581v13.938c0 5.677 4.122 10.409 9.53 11.359v6.579c-5.116-.458-9.866-2.67-13.542-6.346a21.833 21.833 0 0 1-6.437-15.539 21.83 21.83 0 0 1 6.437-15.539 21.833 21.833 0 0 1 15.539-6.437c5.87 0 11.388 2.285 15.539 6.437a21.833 21.833 0 0 1 6.437 15.539c0 5.87-2.285 11.388-6.437 15.539l3.796 1.802.001-.002ZM24.468 35.947v-9.943h15.076v9.943c0 4.156-3.381 7.539-7.539 7.539-4.158 0-7.539-3.381-7.539-7.539h.002Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const PlugAndSocket = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "M47.129 37.358h5.038v-5.672h4.602v5.672h4.109v8.78c0 5.327-3.827 9.775-8.923 10.823v4.696h-4.602v-4.693c-5.101-1.044-8.935-5.494-8.935-10.826v-8.78h4.108v-5.672h4.603v5.672Zm-4.11 8.78c0 3.6 2.973 6.527 6.629 6.527 3.655 0 6.627-2.927 6.627-6.526V41.89H43.02v4.248Zm4.034-18.547-4.603-.026V7.653H7.725V41.6H34.19v4.53H7.146c-2.222 0-4.024-1.774-4.024-3.961V7.083c0-2.187 1.802-3.96 4.024-3.96h39.907V27.59ZM21.73 33.247h-9.128v-5.476h9.127v5.476Zm15.97 0h-9.127v-5.476h9.127v5.476Zm-22.796-2.266h4.524v-.944h-4.524v.944Zm15.971 0h4.523v-.944h-4.523v.944Zm-2.943-16.916v8.986H22.37v-8.986h5.562Zm-3.261 2.266v4.454h.96v-4.454h-.96Z" }) }));
3
+ export const PlugAndSocket = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M47.129 37.358h5.038v-5.672h4.602v5.672h4.109v8.78c0 5.327-3.827 9.775-8.923 10.823v4.696h-4.602v-4.693c-5.101-1.044-8.935-5.494-8.935-10.826v-8.78h4.108v-5.672h4.603v5.672Zm-4.11 8.78c0 3.6 2.973 6.527 6.629 6.527 3.655 0 6.627-2.927 6.627-6.526V41.89H43.02v4.248Zm4.034-18.547-4.603-.026V7.653H7.725V41.6H34.19v4.53H7.146c-2.222 0-4.024-1.774-4.024-3.961V7.083c0-2.187 1.802-3.96 4.024-3.96h39.907V27.59ZM21.73 33.247h-9.128v-5.476h9.127v5.476Zm15.97 0h-9.127v-5.476h9.127v5.476Zm-22.796-2.266h4.524v-.944h-4.524v.944Zm15.971 0h4.523v-.944h-4.523v.944Zm-2.943-16.916v8.986H22.37v-8.986h5.562Zm-3.261 2.266v4.454h.96v-4.454h-.96Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Plumbing = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "M47.896 18.794v3.233h-8.581c-5.521 0-9.996 4.475-9.996 9.996v8.872c0 1.838-1.503 3.38-3.341 3.35a3.288 3.288 0 0 1-3.228-3.285V16.039h3.077V6.12H6.086v9.918h3.03v24.757c0 9.353 7.518 17.057 16.87 17.083 9.352.026 16.968-7.573 16.968-16.919v-5.3h4.942v2.874h10.018V18.793H47.896Zm-37.815-8.678h11.75v1.927h-11.75v-1.927Zm28.877 25.046v5.656c0 7.131-5.716 13.025-12.848 13.066-7.16.04-12.999-5.772-12.999-12.924V16.039h5.644v24.828c0 4.008 3.2 7.334 7.208 7.373 4.046.039 7.352-3.242 7.352-7.28v-8.938a6 6 0 0 1 6-6h8.581v5.643h-5.442a3.496 3.496 0 0 0-3.496 3.496v.001Zm14.962-.624h-2.027v-11.75h2.027v11.75Z" }) }));
3
+ export const Plumbing = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M47.896 18.794v3.233h-8.581c-5.521 0-9.996 4.475-9.996 9.996v8.872c0 1.838-1.503 3.38-3.341 3.35a3.288 3.288 0 0 1-3.228-3.285V16.039h3.077V6.12H6.086v9.918h3.03v24.757c0 9.353 7.518 17.057 16.87 17.083 9.352.026 16.968-7.573 16.968-16.919v-5.3h4.942v2.874h10.018V18.793H47.896Zm-37.815-8.678h11.75v1.927h-11.75v-1.927Zm28.877 25.046v5.656c0 7.131-5.716 13.025-12.848 13.066-7.16.04-12.999-5.772-12.999-12.924V16.039h5.644v24.828c0 4.008 3.2 7.334 7.208 7.373 4.046.039 7.352-3.242 7.352-7.28v-8.938a6 6 0 0 1 6-6h8.581v5.643h-5.442a3.496 3.496 0 0 0-3.496 3.496v.001Zm14.962-.624h-2.027v-11.75h2.027v11.75Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const PowerMove = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "m20.52 31.35 9.34-9.34-9.35-9.36-3.35.89 6.96 6.97H6l.8 3h17.32l-6.94 6.95 3.34.89Z" }), _jsx(Path, { fill: "currentColor", d: "M41.93 20.09V6l-19.24 5.37V12l4 4v-1.59l11.24-3.14V25.3l5.03-1.35 2.49-.66-6.9 21.86-2.51-7.39-1.2-3.54-3.62.97-4.53 1.21v-8.39l-4 4v9.6l9.56-2.56L38.7 58l12.76-40.46-9.53 2.55Z" })] }));
3
+ export const PowerMove = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "m20.52 31.35 9.34-9.34-9.35-9.36-3.35.89 6.96 6.97H6l.8 3h17.32l-6.94 6.95 3.34.89Z" }), _jsx(Path, { fill: "currentColor", d: "M41.93 20.09V6l-19.24 5.37V12l4 4v-1.59l11.24-3.14V25.3l5.03-1.35 2.49-.66-6.9 21.86-2.51-7.39-1.2-3.54-3.62.97-4.53 1.21v-8.39l-4 4v9.6l9.56-2.56L38.7 58l12.76-40.46-9.53 2.55Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Present = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "M38.538 14.765c1.26-.452 2.395-1.063 3.12-1.888 1.907-2.168 2.025-5.386 0-7.441a5.1 5.1 0 0 0-3.65-1.534c-1.328 0-2.66.514-3.686 1.534-1.138 1.13-1.862 2.756-2.32 4.396-.461-1.64-1.184-3.264-2.322-4.396a5.224 5.224 0 0 0-3.688-1.534c-1.329 0-2.64.509-3.65 1.534-2.025 2.055-1.906 5.273 0 7.441.725.825 1.861 1.436 3.12 1.888H4.683v13.402h4.149v26.866c0 2.366 1.891 4.284 4.224 4.284H52.09l-1.125-4.263H36.819V28.167h14.148v26.887l4.202-1.14V28.167h4.15V14.765h-20.78ZM23.91 11.458c-.598-.68-.932-1.52-.941-2.369a2.955 2.955 0 0 1 .859-2.147 3.02 3.02 0 0 1 2.164-.91c.818 0 1.616.329 2.216.925 1.009 1.002 1.761 2.829 2.174 5.282.088.522.151 1.024.198 1.48a28.155 28.155 0 0 1-1.713-.26c-2.43-.454-4.236-1.183-4.957-2.002v.001ZM8.886 23.904v-4.877h17.387v4.877H8.886Zm18.295 31.15H13.045l-.01-.01V28.167h14.147v26.887h-.001Zm7.537 0h-5.435V28.167h5.435v26.887Zm.908-31.15h-7.252v-4.877h7.252v4.877Zm-.493-10.445c-.604.113-1.187.197-1.713.261.047-.456.11-.958.198-1.48.413-2.453 1.165-4.28 2.174-5.282a3.13 3.13 0 0 1 2.216-.924 3.02 3.02 0 0 1 2.164.909c.722.732.866 1.572.86 2.147-.01.847-.344 1.69-.942 2.37-.72.819-2.527 1.547-4.957 2Zm19.981 10.445H37.727v-4.877h17.388v4.877Z" }) }));
3
+ export const Present = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M38.538 14.765c1.26-.452 2.395-1.063 3.12-1.888 1.907-2.168 2.025-5.386 0-7.441a5.1 5.1 0 0 0-3.65-1.534c-1.328 0-2.66.514-3.686 1.534-1.138 1.13-1.862 2.756-2.32 4.396-.461-1.64-1.184-3.264-2.322-4.396a5.224 5.224 0 0 0-3.688-1.534c-1.329 0-2.64.509-3.65 1.534-2.025 2.055-1.906 5.273 0 7.441.725.825 1.861 1.436 3.12 1.888H4.683v13.402h4.149v26.866c0 2.366 1.891 4.284 4.224 4.284H52.09l-1.125-4.263H36.819V28.167h14.148v26.887l4.202-1.14V28.167h4.15V14.765h-20.78ZM23.91 11.458c-.598-.68-.932-1.52-.941-2.369a2.955 2.955 0 0 1 .859-2.147 3.02 3.02 0 0 1 2.164-.91c.818 0 1.616.329 2.216.925 1.009 1.002 1.761 2.829 2.174 5.282.088.522.151 1.024.198 1.48a28.155 28.155 0 0 1-1.713-.26c-2.43-.454-4.236-1.183-4.957-2.002v.001ZM8.886 23.904v-4.877h17.387v4.877H8.886Zm18.295 31.15H13.045l-.01-.01V28.167h14.147v26.887h-.001Zm7.537 0h-5.435V28.167h5.435v26.887Zm.908-31.15h-7.252v-4.877h7.252v4.877Zm-.493-10.445c-.604.113-1.187.197-1.713.261.047-.456.11-.958.198-1.48.413-2.453 1.165-4.28 2.174-5.282a3.13 3.13 0 0 1 2.216-.924 3.02 3.02 0 0 1 2.164.909c.722.732.866 1.572.86 2.147-.01.847-.344 1.69-.942 2.37-.72.819-2.527 1.547-4.957 2Zm19.981 10.445H37.727v-4.877h17.388v4.877Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Price = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "m36.92 43.2 4.07-4.07c1.35-1.35 1.25-3.28-.12-4.65l-1.71 1.51c.55.55.51 1.29 0 1.8l-1.6 1.6c.18-.91-.2-1.71-.77-2.28-.07-.07-.15-.15-.23-.21l1.72-1.72-1.34-1.34-2.14 2.14c-.44-.2-.8-.39-1.17-.76-.65-.65-.5-1.4-.01-1.89.63-.63 1.4-.55 2.16.18l1.17-2.02c-1.06-.94-2.99-1.52-4.86.35-1.71 1.71-1.47 3.89-.28 5.08.4.4.79.67 1.18.86l-.7.7 1.34 1.34 1.18-1.18c.16.11.32.22.45.35.72.72.72 1.72.22 2.75l1.44 1.46Z" }), _jsx(Path, { fill: "currentColor", d: "M38.08 51.6 14.5 28.02l1.96-8.73 3.62 3.62c-.35.76-.55 1.6-.55 2.48a5.92 5.92 0 1 0 11.84 0 5.92 5.92 0 0 0-8.48-5.34l-3.61-3.61 8.77-1.97 23.58 23.58 4.46-1.2L29.32 10.1l-13.39 3L8.83 6 6.01 8.83l7.11 7.11-2.52 11.21c-.3 1.34.11 2.74 1.08 3.7l26.4 26.4 14.74-14.74-1.2-4.46L38.08 51.6ZM21.65 24.48l2.08 2.08 4.46-1.19-3.74-3.74a3.926 3.926 0 0 1 4.93 3.79c0 2.16-1.76 3.92-3.92 3.92s-3.92-1.76-3.92-3.92c0-.34.04-.65.11-.94Z" })] }));
3
+ export const Price = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "m36.92 43.2 4.07-4.07c1.35-1.35 1.25-3.28-.12-4.65l-1.71 1.51c.55.55.51 1.29 0 1.8l-1.6 1.6c.18-.91-.2-1.71-.77-2.28-.07-.07-.15-.15-.23-.21l1.72-1.72-1.34-1.34-2.14 2.14c-.44-.2-.8-.39-1.17-.76-.65-.65-.5-1.4-.01-1.89.63-.63 1.4-.55 2.16.18l1.17-2.02c-1.06-.94-2.99-1.52-4.86.35-1.71 1.71-1.47 3.89-.28 5.08.4.4.79.67 1.18.86l-.7.7 1.34 1.34 1.18-1.18c.16.11.32.22.45.35.72.72.72 1.72.22 2.75l1.44 1.46Z" }), _jsx(Path, { fill: "currentColor", d: "M38.08 51.6 14.5 28.02l1.96-8.73 3.62 3.62c-.35.76-.55 1.6-.55 2.48a5.92 5.92 0 1 0 11.84 0 5.92 5.92 0 0 0-8.48-5.34l-3.61-3.61 8.77-1.97 23.58 23.58 4.46-1.2L29.32 10.1l-13.39 3L8.83 6 6.01 8.83l7.11 7.11-2.52 11.21c-.3 1.34.11 2.74 1.08 3.7l26.4 26.4 14.74-14.74-1.2-4.46L38.08 51.6ZM21.65 24.48l2.08 2.08 4.46-1.19-3.74-3.74a3.926 3.926 0 0 1 4.93 3.79c0 2.16-1.76 3.92-3.92 3.92s-3.92-1.76-3.92-3.92c0-.34.04-.65.11-.94Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const PriceCut = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "M20.64 50.34c.04-.13.37-1.08.89-2.57 4.89-1.76 18.89-7.36 21.1-14.51-3.77 1.4-16.7 5.87-23.95 8.37.31-.8.67-1.71 1.08-2.69l.15.15c1.31-.45 2.73-.94 4.2-1.45l-9.61-9.62 1.96-8.73 3.62 3.62c-.35.76-.55 1.6-.55 2.48a5.92 5.92 0 1 0 11.84 0 5.92 5.92 0 0 0-8.48-5.34l-3.61-3.61 8.77-1.97 23.58 23.58 4.46-1.2L29.32 10.1l-13.39 3L8.83 6 6.01 8.83l7.11 7.11-2.52 11.21c-.3 1.34.11 2.74 1.08 3.7l6.57 6.57c-.89 2.04-1.57 3.83-2.01 5.06.52-.18-2.4.82-2.57.89a4.429 4.429 0 0 0-4.64-1.15 4.43 4.43 0 0 0-2.76 5.61c0 .02.01.03.02.05.01.02.01.03.02.05a4.43 4.43 0 0 0 5.61 2.76 4.407 4.407 0 0 0 2.95-3.6l2.25-.75.33.25.25.33-.76 2.25a4.434 4.434 0 0 0-3.61 2.95c-.79 2.31.45 4.82 2.76 5.61.02 0 .03.01.05.02.02.01.03.01.05.02 2.31.79 4.82-.45 5.61-2.76.57-1.72.06-3.52-1.16-4.67Zm1.01-25.86 2.08 2.08 4.46-1.19-3.74-3.74a3.926 3.926 0 0 1 4.93 3.79c0 2.16-1.76 3.92-3.92 3.92s-3.92-1.76-3.92-3.92c0-.34.04-.65.11-.94Zm-10.42 24.2c-1.25.42-2.6-.23-3.05-1.46-.4-1.25.28-2.6 1.52-3.02.88-.3 1.88-.06 2.52.61l.25.26c.11.16.2.35.26.54.44 1.27-.24 2.64-1.5 3.07Zm8.57 5.62a2.41 2.41 0 0 1-3.02 1.52 2.414 2.414 0 0 1-1.46-3.05 2.425 2.425 0 0 1 3.61-1.25l.26.25c.67.65.91 1.65.61 2.53Zm-1.49-9.59-.76-.57c5.03-1.73 13.52-4.66 19.6-6.8-.14.12-.29.25-.45.37-1.88 1.52-4.35 3.05-7.32 4.54-3.81 1.91-7.49 3.28-9.18 3.87l-1.89-1.41Z" }), _jsx(Path, { fill: "currentColor", d: "m38.08 51.6-6.16-6.16a72.7 72.7 0 0 1-3.82 1.84l9.98 9.98 14.74-14.74-1.2-4.46L38.08 51.6Z" })] }));
3
+ export const PriceCut = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M20.64 50.34c.04-.13.37-1.08.89-2.57 4.89-1.76 18.89-7.36 21.1-14.51-3.77 1.4-16.7 5.87-23.95 8.37.31-.8.67-1.71 1.08-2.69l.15.15c1.31-.45 2.73-.94 4.2-1.45l-9.61-9.62 1.96-8.73 3.62 3.62c-.35.76-.55 1.6-.55 2.48a5.92 5.92 0 1 0 11.84 0 5.92 5.92 0 0 0-8.48-5.34l-3.61-3.61 8.77-1.97 23.58 23.58 4.46-1.2L29.32 10.1l-13.39 3L8.83 6 6.01 8.83l7.11 7.11-2.52 11.21c-.3 1.34.11 2.74 1.08 3.7l6.57 6.57c-.89 2.04-1.57 3.83-2.01 5.06.52-.18-2.4.82-2.57.89a4.429 4.429 0 0 0-4.64-1.15 4.43 4.43 0 0 0-2.76 5.61c0 .02.01.03.02.05.01.02.01.03.02.05a4.43 4.43 0 0 0 5.61 2.76 4.407 4.407 0 0 0 2.95-3.6l2.25-.75.33.25.25.33-.76 2.25a4.434 4.434 0 0 0-3.61 2.95c-.79 2.31.45 4.82 2.76 5.61.02 0 .03.01.05.02.02.01.03.01.05.02 2.31.79 4.82-.45 5.61-2.76.57-1.72.06-3.52-1.16-4.67Zm1.01-25.86 2.08 2.08 4.46-1.19-3.74-3.74a3.926 3.926 0 0 1 4.93 3.79c0 2.16-1.76 3.92-3.92 3.92s-3.92-1.76-3.92-3.92c0-.34.04-.65.11-.94Zm-10.42 24.2c-1.25.42-2.6-.23-3.05-1.46-.4-1.25.28-2.6 1.52-3.02.88-.3 1.88-.06 2.52.61l.25.26c.11.16.2.35.26.54.44 1.27-.24 2.64-1.5 3.07Zm8.57 5.62a2.41 2.41 0 0 1-3.02 1.52 2.414 2.414 0 0 1-1.46-3.05 2.425 2.425 0 0 1 3.61-1.25l.26.25c.67.65.91 1.65.61 2.53Zm-1.49-9.59-.76-.57c5.03-1.73 13.52-4.66 19.6-6.8-.14.12-.29.25-.45.37-1.88 1.52-4.35 3.05-7.32 4.54-3.81 1.91-7.49 3.28-9.18 3.87l-1.89-1.41Z" }), _jsx(Path, { fill: "currentColor", d: "m38.08 51.6-6.16-6.16a72.7 72.7 0 0 1-3.82 1.84l9.98 9.98 14.74-14.74-1.2-4.46L38.08 51.6Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Queue = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "M12.167 29.531a4.135 4.135 0 0 1-4.13-4.13 4.135 4.135 0 0 1 4.13-4.13 4.135 4.135 0 0 1 4.13 4.13 4.135 4.135 0 0 1-4.13 4.13Zm0-6.526a2.398 2.398 0 0 0-2.395 2.396 2.398 2.398 0 0 0 2.395 2.396 2.398 2.398 0 0 0 2.396-2.396 2.398 2.398 0 0 0-2.396-2.396ZM12.298 36.276H5.915v-2.639l6.252-1.657 1.316.35 3.385-.898-4.7-1.246-7.987 2.117v4.244c0 .807.655 1.464 1.46 1.464h6.657v-1.735ZM24.978 29.989a5.743 5.743 0 0 1-5.737-5.737 5.743 5.743 0 0 1 5.737-5.736 5.743 5.743 0 0 1 5.736 5.736 5.743 5.743 0 0 1-5.736 5.737Zm0-9.064a3.331 3.331 0 0 0-3.328 3.327 3.331 3.331 0 0 0 3.328 3.328 3.331 3.331 0 0 0 3.327-3.328 3.331 3.331 0 0 0-3.327-3.327Z" }), _jsx(Path, { fill: "currentColor", d: "M24.826 39.357h-8.531v-3.665l8.683-2.302 2.24.594 4.701-1.246-6.941-1.84-11.093 2.94v5.895c0 1.12.91 2.033 2.029 2.033h8.912v-2.41ZM41.399 31.1c-4.156 0-7.537-3.381-7.537-7.537 0-4.156 3.381-7.537 7.537-7.537 4.156 0 7.537 3.381 7.537 7.537 0 4.156-3.381 7.537-7.537 7.537Zm0-11.909a4.377 4.377 0 0 0-4.372 4.372 4.377 4.377 0 0 0 4.372 4.372 4.376 4.376 0 0 0 4.371-4.372 4.377 4.377 0 0 0-4.371-4.372Z" }), _jsx(Path, { fill: "currentColor", d: "m52.802 43.41 3.17-.848v-6.405L41.4 32.294l-14.574 3.863v7.744a2.671 2.671 0 0 0 2.666 2.672h24.158l-.847-3.162Zm-22.811-4.817 11.408-3.024 11.408 3.024v4.815H29.991v-4.815Z" })] }));
3
+ export const Queue = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M12.167 29.531a4.135 4.135 0 0 1-4.13-4.13 4.135 4.135 0 0 1 4.13-4.13 4.135 4.135 0 0 1 4.13 4.13 4.135 4.135 0 0 1-4.13 4.13Zm0-6.526a2.398 2.398 0 0 0-2.395 2.396 2.398 2.398 0 0 0 2.395 2.396 2.398 2.398 0 0 0 2.396-2.396 2.398 2.398 0 0 0-2.396-2.396ZM12.298 36.276H5.915v-2.639l6.252-1.657 1.316.35 3.385-.898-4.7-1.246-7.987 2.117v4.244c0 .807.655 1.464 1.46 1.464h6.657v-1.735ZM24.978 29.989a5.743 5.743 0 0 1-5.737-5.737 5.743 5.743 0 0 1 5.737-5.736 5.743 5.743 0 0 1 5.736 5.736 5.743 5.743 0 0 1-5.736 5.737Zm0-9.064a3.331 3.331 0 0 0-3.328 3.327 3.331 3.331 0 0 0 3.328 3.328 3.331 3.331 0 0 0 3.327-3.328 3.331 3.331 0 0 0-3.327-3.327Z" }), _jsx(Path, { fill: "currentColor", d: "M24.826 39.357h-8.531v-3.665l8.683-2.302 2.24.594 4.701-1.246-6.941-1.84-11.093 2.94v5.895c0 1.12.91 2.033 2.029 2.033h8.912v-2.41ZM41.399 31.1c-4.156 0-7.537-3.381-7.537-7.537 0-4.156 3.381-7.537 7.537-7.537 4.156 0 7.537 3.381 7.537 7.537 0 4.156-3.381 7.537-7.537 7.537Zm0-11.909a4.377 4.377 0 0 0-4.372 4.372 4.377 4.377 0 0 0 4.372 4.372 4.376 4.376 0 0 0 4.371-4.372 4.377 4.377 0 0 0-4.371-4.372Z" }), _jsx(Path, { fill: "currentColor", d: "m52.802 43.41 3.17-.848v-6.405L41.4 32.294l-14.574 3.863v7.744a2.671 2.671 0 0 0 2.666 2.672h24.158l-.847-3.162Zm-22.811-4.817 11.408-3.024 11.408 3.024v4.815H29.991v-4.815Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Radio = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "m53.097 8.458-35.342 9.47h40.228v34.928l-4 1.072v-32h-44v32h44.001l1.072 4H9.984a4 4 0 0 1-4-4v-32a4 4 0 0 1 4-4h.515l-.032-.118L52.579 6.526l.518 1.932ZM23.76 26.226c6.463 0 11.702 5.239 11.702 11.702S30.222 49.63 23.76 49.63c-6.463 0-11.702-5.24-11.702-11.702 0-6.463 5.239-11.702 11.702-11.702Zm28.064 21.373v2H39.007v-2h12.817ZM23.76 28.226c-5.35 0-9.702 4.352-9.702 9.702s4.352 9.702 9.702 9.702 9.702-4.352 9.702-9.702-4.352-9.702-9.702-9.702Zm28.064 17.788H39.007v-2h12.817v2Zm0-3.586H39.007v-2h12.817v2Zm0-3.586H39.007v-2h12.817v2Zm0-3.586H39.007v-2h12.817v2Zm0-3.586H39.007v-2h12.817v2Zm0-3.586H39.007v-2h12.817v2Z" }) }));
3
+ export const Radio = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m53.097 8.458-35.342 9.47h40.228v34.928l-4 1.072v-32h-44v32h44.001l1.072 4H9.984a4 4 0 0 1-4-4v-32a4 4 0 0 1 4-4h.515l-.032-.118L52.579 6.526l.518 1.932ZM23.76 26.226c6.463 0 11.702 5.239 11.702 11.702S30.222 49.63 23.76 49.63c-6.463 0-11.702-5.24-11.702-11.702 0-6.463 5.239-11.702 11.702-11.702Zm28.064 21.373v2H39.007v-2h12.817ZM23.76 28.226c-5.35 0-9.702 4.352-9.702 9.702s4.352 9.702 9.702 9.702 9.702-4.352 9.702-9.702-4.352-9.702-9.702-9.702Zm28.064 17.788H39.007v-2h12.817v2Zm0-3.586H39.007v-2h12.817v2Zm0-3.586H39.007v-2h12.817v2Zm0-3.586H39.007v-2h12.817v2Zm0-3.586H39.007v-2h12.817v2Zm0-3.586H39.007v-2h12.817v2Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const RealCharge = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "M37.346 32.844c0-.931-.238-1.806-.657-2.568l10.03-10.03-2.122-2.12-10.03 10.028a5.346 5.346 0 1 0 2.778 4.69ZM32 35.19a2.348 2.348 0 0 1-2.346-2.346A2.349 2.349 0 0 1 32 30.498a2.349 2.349 0 0 1 2.346 2.346A2.348 2.348 0 0 1 32 35.19Z" }), _jsx(Path, { fill: "currentColor", d: "M32 11.197a21.703 21.703 0 0 1 15.448 6.399 21.704 21.704 0 0 1 6.399 15.448c0 .895-.055 1.781-.16 2.656 1.35.832 2.539 1.9 3.508 3.15.43-1.883.652-3.828.652-5.806 0-6.904-2.689-13.395-7.57-18.276C45.394 9.885 38.903 7.197 32 7.197c-6.904 0-13.395 2.688-18.276 7.57-4.882 4.881-7.57 11.372-7.57 18.276 0 4.156.975 8.163 2.817 11.759h4.61a21.698 21.698 0 0 1-3.428-11.76 21.704 21.704 0 0 1 6.4-15.447A21.703 21.703 0 0 1 32 11.197ZM51.823 41.996 45.94 47.88l-3.032-3.032-2.122 2.122 5.154 5.153 6.78-6.781-.896-3.346Z" }), _jsx(Path, { fill: "currentColor", d: "M46.874 35.748c-6.145 0-11.126 4.981-11.126 11.126S40.729 58 46.874 58 58 53.02 58 46.874 53.02 35.748 46.874 35.748Zm0 19.252c-4.48 0-8.126-3.645-8.126-8.126 0-4.48 3.645-8.126 8.126-8.126 4.48 0 8.126 3.645 8.126 8.126C55 51.354 51.355 55 46.874 55Z" })] }));
3
+ export const RealCharge = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M37.346 32.844c0-.931-.238-1.806-.657-2.568l10.03-10.03-2.122-2.12-10.03 10.028a5.346 5.346 0 1 0 2.778 4.69ZM32 35.19a2.348 2.348 0 0 1-2.346-2.346A2.349 2.349 0 0 1 32 30.498a2.349 2.349 0 0 1 2.346 2.346A2.348 2.348 0 0 1 32 35.19Z" }), _jsx(Path, { fill: "currentColor", d: "M32 11.197a21.703 21.703 0 0 1 15.448 6.399 21.704 21.704 0 0 1 6.399 15.448c0 .895-.055 1.781-.16 2.656 1.35.832 2.539 1.9 3.508 3.15.43-1.883.652-3.828.652-5.806 0-6.904-2.689-13.395-7.57-18.276C45.394 9.885 38.903 7.197 32 7.197c-6.904 0-13.395 2.688-18.276 7.57-4.882 4.881-7.57 11.372-7.57 18.276 0 4.156.975 8.163 2.817 11.759h4.61a21.698 21.698 0 0 1-3.428-11.76 21.704 21.704 0 0 1 6.4-15.447A21.703 21.703 0 0 1 32 11.197ZM51.823 41.996 45.94 47.88l-3.032-3.032-2.122 2.122 5.154 5.153 6.78-6.781-.896-3.346Z" }), _jsx(Path, { fill: "currentColor", d: "M46.874 35.748c-6.145 0-11.126 4.981-11.126 11.126S40.729 58 46.874 58 58 53.02 58 46.874 53.02 35.748 46.874 35.748Zm0 19.252c-4.48 0-8.126-3.645-8.126-8.126 0-4.48 3.645-8.126 8.126-8.126 4.48 0 8.126 3.645 8.126 8.126C55 51.354 51.355 55 46.874 55Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const RealCharge2 = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "M35.722 53.837H17.892v-39.55h28.159v19.497a13.086 13.086 0 0 1 4.163.42v-24.08h-7.806V6.057H21.592v4.067h-3.7c-2.265 0-4.1 1.864-4.1 4.163v39.55c0 2.3 1.835 4.163 4.1 4.163H39.896a13.215 13.215 0 0 1-4.174-4.163Z" }), _jsx(Path, { fill: "currentColor", d: "M21.592 49.77h12.447a13.109 13.109 0 0 1 .89-8.403H21.593v8.404ZM21.592 38.309h15.316a13.163 13.163 0 0 1 5.5-3.78v-4.624H21.592v8.404ZM21.592 26.846h20.816v-8.403H21.592v8.403Zm2.082-6.322h16.652v4.24H23.674v-4.24ZM51.823 41.996l-5.885 5.884-3.031-3.032-2.122 2.122 5.154 5.153 6.78-6.781-.896-3.346Z" }), _jsx(Path, { fill: "currentColor", d: "M46.874 35.748c-6.145 0-11.126 4.981-11.126 11.126S40.729 58 46.874 58 58 53.02 58 46.874s-4.981-11.126-11.126-11.126Zm0 19.252c-4.48 0-8.126-3.645-8.126-8.126 0-4.48 3.645-8.126 8.126-8.126 4.48 0 8.126 3.645 8.126 8.126C55 51.354 51.355 55 46.874 55Z" })] }));
3
+ export const RealCharge2 = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M35.722 53.837H17.892v-39.55h28.159v19.497a13.086 13.086 0 0 1 4.163.42v-24.08h-7.806V6.057H21.592v4.067h-3.7c-2.265 0-4.1 1.864-4.1 4.163v39.55c0 2.3 1.835 4.163 4.1 4.163H39.896a13.215 13.215 0 0 1-4.174-4.163Z" }), _jsx(Path, { fill: "currentColor", d: "M21.592 49.77h12.447a13.109 13.109 0 0 1 .89-8.403H21.593v8.404ZM21.592 38.309h15.316a13.163 13.163 0 0 1 5.5-3.78v-4.624H21.592v8.404ZM21.592 26.846h20.816v-8.403H21.592v8.403Zm2.082-6.322h16.652v4.24H23.674v-4.24ZM51.823 41.996l-5.885 5.884-3.031-3.032-2.122 2.122 5.154 5.153 6.78-6.781-.896-3.346Z" }), _jsx(Path, { fill: "currentColor", d: "M46.874 35.748c-6.145 0-11.126 4.981-11.126 11.126S40.729 58 46.874 58 58 53.02 58 46.874s-4.981-11.126-11.126-11.126Zm0 19.252c-4.48 0-8.126-3.645-8.126-8.126 0-4.48 3.645-8.126 8.126-8.126 4.48 0 8.126 3.645 8.126 8.126C55 51.354 51.355 55 46.874 55Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Refund = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "M58.336 25.652a28.678 28.678 0 0 1-.235 13.731 27.918 27.918 0 0 1-6.923 12.248c-5.086 5.234-11.846 8.117-19.038 8.12-6.475.002-12.603-2.334-17.473-6.62l.738 5.439.001.001-4.256.612-1.787-13.15 12.78-1.839.594 4.38-5.697.82c4.158 3.837 9.472 5.937 15.1 5.935 6.043-.002 11.724-2.427 15.998-6.825a23.436 23.436 0 0 0 5.818-10.288 24.071 24.071 0 0 0 .197-11.547l4.183-1.017ZM32.204 19.82c6.405 0 11.595 5.342 11.596 11.932 0 6.59-5.192 11.932-11.596 11.932S20.608 38.34 20.608 31.751c0-6.59 5.192-11.932 11.596-11.932Zm-.078-15.482c7.192-.002 13.955 2.878 19.042 8.11.649.668 1.267 1.37 1.845 2.1l1.303-5.033 4.153 1.139-3.32 12.831-12.47-3.417 1.106-4.274 5.965 1.634a23.444 23.444 0 0 0-1.62-1.853c-4.275-4.396-9.957-6.818-16.002-6.815-6.044.002-11.725 2.426-15.998 6.825A23.404 23.404 0 0 0 9.983 27.27c-.876 4.32-.55 8.784.94 12.908l-4.029 1.54a28.515 28.515 0 0 1-.779-16.83 27.797 27.797 0 0 1 6.973-12.43c5.085-5.235 11.846-8.12 19.038-8.121Zm.078 18.7c-4.67 0-8.469 3.908-8.469 8.714 0 4.805 3.799 8.714 8.469 8.714s8.469-3.909 8.469-8.714c0-4.806-3.8-8.714-8.47-8.714Zm.295 2.408c2.664 0 3.616 1.834 3.703 3.294l-2.266.622c-.017-1.086-.502-1.709-1.401-1.709-.692 0-1.333.446-1.333 1.39 0 .533.122.943.295 1.406h3.045v1.958h-2.44c.018.107.019.214.019.321 0 .837-.295 1.691-1.073 2.226h2.266c.726 0 1.28-.517 1.28-1.318l2.284.143c0 2.012-1.298 3.49-3.218 3.49h-5.778v-2.101l-.002-.001c1.09-.392 1.8-1.122 1.8-2.172 0-.196-.035-.393-.07-.588h-1.678v-1.958h.987a4.745 4.745 0 0 1-.226-1.496c0-1.745 1.385-3.507 3.806-3.507Z" }) }));
3
+ export const Refund = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M58.336 25.652a28.678 28.678 0 0 1-.235 13.731 27.918 27.918 0 0 1-6.923 12.248c-5.086 5.234-11.846 8.117-19.038 8.12-6.475.002-12.603-2.334-17.473-6.62l.738 5.439.001.001-4.256.612-1.787-13.15 12.78-1.839.594 4.38-5.697.82c4.158 3.837 9.472 5.937 15.1 5.935 6.043-.002 11.724-2.427 15.998-6.825a23.436 23.436 0 0 0 5.818-10.288 24.071 24.071 0 0 0 .197-11.547l4.183-1.017ZM32.204 19.82c6.405 0 11.595 5.342 11.596 11.932 0 6.59-5.192 11.932-11.596 11.932S20.608 38.34 20.608 31.751c0-6.59 5.192-11.932 11.596-11.932Zm-.078-15.482c7.192-.002 13.955 2.878 19.042 8.11.649.668 1.267 1.37 1.845 2.1l1.303-5.033 4.153 1.139-3.32 12.831-12.47-3.417 1.106-4.274 5.965 1.634a23.444 23.444 0 0 0-1.62-1.853c-4.275-4.396-9.957-6.818-16.002-6.815-6.044.002-11.725 2.426-15.998 6.825A23.404 23.404 0 0 0 9.983 27.27c-.876 4.32-.55 8.784.94 12.908l-4.029 1.54a28.515 28.515 0 0 1-.779-16.83 27.797 27.797 0 0 1 6.973-12.43c5.085-5.235 11.846-8.12 19.038-8.121Zm.078 18.7c-4.67 0-8.469 3.908-8.469 8.714 0 4.805 3.799 8.714 8.469 8.714s8.469-3.909 8.469-8.714c0-4.806-3.8-8.714-8.47-8.714Zm.295 2.408c2.664 0 3.616 1.834 3.703 3.294l-2.266.622c-.017-1.086-.502-1.709-1.401-1.709-.692 0-1.333.446-1.333 1.39 0 .533.122.943.295 1.406h3.045v1.958h-2.44c.018.107.019.214.019.321 0 .837-.295 1.691-1.073 2.226h2.266c.726 0 1.28-.517 1.28-1.318l2.284.143c0 2.012-1.298 3.49-3.218 3.49h-5.778v-2.101l-.002-.001c1.09-.392 1.8-1.122 1.8-2.172 0-.196-.035-.393-.07-.588h-1.678v-1.958h.987a4.745 4.745 0 0 1-.226-1.496c0-1.745 1.385-3.507 3.806-3.507Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Repair = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "m56.582 20.987-4.449 4.448.006.017-6.298 6.298h-.002l10.748 10.748-12.833 12.831-4.448-4.448-.017.005-6.292-6.292-8.785 8.785a3.98 3.98 0 0 1-5.63 0l-7.213-7.213a3.98 3.98 0 0 1 0-5.63l8.785-8.785-8.791-8.791a3.98 3.98 0 0 1 0-5.63l7.213-7.213a3.98 3.98 0 0 1 5.63 0l8.79 8.791L43.752 8.154l12.83 12.833ZM14.233 43.344l7.186 7.186 6.073-6.073-7.186-7.187-6.073 6.074Zm21.593-1.58v.002l7.937 7.937 7.172-7.201-7.922-7.923-7.187 7.186Zm.264-20.292-.264.264L21.732 35.83l7.186 7.186L35 36.933l8.135-8.134.328-.33-7.186-7.185-.188.188Zm.04 8.6-1.82 1.82 1.82 1.82-1.414 1.415-1.82-1.82-1.822 1.82-1.414-1.414 1.821-1.821-1.821-1.82 1.414-1.415 1.821 1.82 1.82-1.82 1.415 1.415Zm-21.91-9.914 8.764 8.764 7.186-7.186-8.754-8.754-7.197 7.176Zm23.472-.288 7.186 7.186 6.065-6.065.004.01v-.023l-7.182-7.181-6.073 6.073Z" }) }));
3
+ export const Repair = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m56.582 20.987-4.449 4.448.006.017-6.298 6.298h-.002l10.748 10.748-12.833 12.831-4.448-4.448-.017.005-6.292-6.292-8.785 8.785a3.98 3.98 0 0 1-5.63 0l-7.213-7.213a3.98 3.98 0 0 1 0-5.63l8.785-8.785-8.791-8.791a3.98 3.98 0 0 1 0-5.63l7.213-7.213a3.98 3.98 0 0 1 5.63 0l8.79 8.791L43.752 8.154l12.83 12.833ZM14.233 43.344l7.186 7.186 6.073-6.073-7.186-7.187-6.073 6.074Zm21.593-1.58v.002l7.937 7.937 7.172-7.201-7.922-7.923-7.187 7.186Zm.264-20.292-.264.264L21.732 35.83l7.186 7.186L35 36.933l8.135-8.134.328-.33-7.186-7.185-.188.188Zm.04 8.6-1.82 1.82 1.82 1.82-1.414 1.415-1.82-1.82-1.822 1.82-1.414-1.414 1.821-1.821-1.821-1.82 1.414-1.415 1.821 1.82 1.82-1.82 1.415 1.415Zm-21.91-9.914 8.764 8.764 7.186-7.186-8.754-8.754-7.197 7.176Zm23.472-.288 7.186 7.186 6.065-6.065.004.01v-.023l-7.182-7.181-6.073 6.073Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Rocket = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "M18.236 47.487 6.93 58.537l-.637-2.324 11.307-11.05.637 2.324Zm3.658 3.483-6.215 6.073-.636-2.323 6.214-6.072.637 2.322Zm35.233-35.634c-1.125 7.868-4.528 14.937-9.82 20.433l-.446 7.956a11.852 11.852 0 0 1-3.575 7.824l-2.293 2.24-1.754 1.715-1.278-4.661-4.117 1.078-.84-2.274-3.713-3.63-2.476 2.418-1.506 1.473-1.507-1.473-7.529-7.356a2.849 2.849 0 0 1 0-4.089l1.892-1.847-3.714-3.63-2.672-.94-6.316-2.226 4.749-4.64 2.292-2.24a12.382 12.382 0 0 1 8.007-3.494l8.15-.436.091-.09c5.18-5.063 11.848-8.494 19.34-9.952l10.444-2.031-1.409 9.872ZM36.369 46.48l1.61 4.362 2.291-2.24a7.748 7.748 0 0 0 2.333-5.106l.185-3.289-6.419 6.273ZM14.6 43.982l-6.214 6.074-.637-2.325 6.215-6.073.637 2.324Zm3.182-5.52a.794.794 0 0 0 0 1.142l7.528 7.356 2.474-2.418-8.111-7.928-1.89 1.848Zm31.144-26.879c-6.652 1.294-12.585 4.341-17.158 8.81L20.434 31.47l12.634 12.346L43.53 33.59c4.923-4.81 8.118-11.073 9.269-18.147l.104-.685.581-4.063-4.56.887Zm-9.868 8.277c1.434 0 2.87.535 3.965 1.606a5.394 5.394 0 0 1 0 7.752 5.661 5.661 0 0 1-3.965 1.604 5.658 5.658 0 0 1-3.966-1.604 5.394 5.394 0 0 1 0-7.752 5.66 5.66 0 0 1 3.966-1.606Zm0 2.083c-.929 0-1.803.355-2.46.996a3.348 3.348 0 0 0 0 4.806c.657.643 1.531.995 2.46.995.928 0 1.802-.353 2.459-.995a3.348 3.348 0 0 0 0-4.806 3.493 3.493 0 0 0-2.46-.996Zm-18.314.19a8.092 8.092 0 0 0-5.224 2.28l-2.293 2.24 4.487 1.581 6.43-6.282-3.4.18Z" }) }));
3
+ export const Rocket = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M18.236 47.487 6.93 58.537l-.637-2.324 11.307-11.05.637 2.324Zm3.658 3.483-6.215 6.073-.636-2.323 6.214-6.072.637 2.322Zm35.233-35.634c-1.125 7.868-4.528 14.937-9.82 20.433l-.446 7.956a11.852 11.852 0 0 1-3.575 7.824l-2.293 2.24-1.754 1.715-1.278-4.661-4.117 1.078-.84-2.274-3.713-3.63-2.476 2.418-1.506 1.473-1.507-1.473-7.529-7.356a2.849 2.849 0 0 1 0-4.089l1.892-1.847-3.714-3.63-2.672-.94-6.316-2.226 4.749-4.64 2.292-2.24a12.382 12.382 0 0 1 8.007-3.494l8.15-.436.091-.09c5.18-5.063 11.848-8.494 19.34-9.952l10.444-2.031-1.409 9.872ZM36.369 46.48l1.61 4.362 2.291-2.24a7.748 7.748 0 0 0 2.333-5.106l.185-3.289-6.419 6.273ZM14.6 43.982l-6.214 6.074-.637-2.325 6.215-6.073.637 2.324Zm3.182-5.52a.794.794 0 0 0 0 1.142l7.528 7.356 2.474-2.418-8.111-7.928-1.89 1.848Zm31.144-26.879c-6.652 1.294-12.585 4.341-17.158 8.81L20.434 31.47l12.634 12.346L43.53 33.59c4.923-4.81 8.118-11.073 9.269-18.147l.104-.685.581-4.063-4.56.887Zm-9.868 8.277c1.434 0 2.87.535 3.965 1.606a5.394 5.394 0 0 1 0 7.752 5.661 5.661 0 0 1-3.965 1.604 5.658 5.658 0 0 1-3.966-1.604 5.394 5.394 0 0 1 0-7.752 5.66 5.66 0 0 1 3.966-1.606Zm0 2.083c-.929 0-1.803.355-2.46.996a3.348 3.348 0 0 0 0 4.806c.657.643 1.531.995 2.46.995.928 0 1.802-.353 2.459-.995a3.348 3.348 0 0 0 0-4.806 3.493 3.493 0 0 0-2.46-.996Zm-18.314.19a8.092 8.092 0 0 0-5.224 2.28l-2.293 2.24 4.487 1.581 6.43-6.282-3.4.18Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const ScheduledTopUps = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "m45.143 18.011-3.151.844.844 3.151 3.151-.844-.844-3.151ZM21.866 41.984l-3.151.844.844 3.151 3.151-.844-.844-3.151ZM21.19 18.837l-3.151.844.844 3.151 3.151-.844-.844-3.151ZM33.416 30.848l-2.656-9.913-3.86 1.035 3.69 13.772 10.281-2.755-1.035-3.859-6.42 1.72ZM33.001 46.979h-1.998v4.994h1.998v-4.994ZM51.98 30.997h-4.994v1.998h4.994v-1.998ZM33.001 12.018h-1.998v4.994h1.998v-4.994ZM17.019 30.997h-4.994v1.998h4.994v-1.998ZM46.86 35.739c-6.138 0-11.114 4.975-11.114 11.114 0 6.139 4.975 11.114 11.114 11.114 6.139 0 11.114-4.975 11.114-11.114 0-6.139-4.975-11.114-11.114-11.114Zm0 19.231c-4.476 0-8.117-3.641-8.117-8.117 0-4.476 3.641-8.117 8.117-8.117 4.476 0 8.117 3.641 8.117 8.117 0 4.476-3.641 8.117-8.117 8.117Z" }), _jsx(Path, { fill: "currentColor", d: "M35.664 53.671a22.122 22.122 0 0 1-3.667.305c-2.969 0-5.846-.58-8.553-1.725a21.929 21.929 0 0 1-6.986-4.711 21.896 21.896 0 0 1-6.436-15.538c0-2.968.58-5.845 1.725-8.552a21.929 21.929 0 0 1 4.711-6.986 21.896 21.896 0 0 1 15.539-6.436c2.969 0 5.845.58 8.552 1.725a21.918 21.918 0 0 1 6.986 4.711 21.896 21.896 0 0 1 6.436 15.538 22.16 22.16 0 0 1-.302 3.653 13.235 13.235 0 0 1 3.43 3.022c.565-2.131.868-4.367.868-6.676 0-14.343-11.628-25.971-25.971-25.971S6.026 17.656 6.026 31.999c0 14.343 11.628 25.971 25.971 25.971 2.313 0 4.556-.305 6.692-.872a13.18 13.18 0 0 1-3.024-3.428h-.001v.001Z" }), _jsx(Path, { fill: "currentColor", d: "M47.739 49.852h-2.133c.732-.489 1.009-1.27 1.009-2.035 0-.098 0-.196-.016-.293h2.295v-1.791h-2.865c-.163-.424-.277-.798-.277-1.286 0-.863.602-1.27 1.254-1.27.846 0 1.303.569 1.319 1.562l2.133-.569c-.082-1.335-.977-3.012-3.483-3.012-2.279 0-3.581 1.611-3.581 3.207 0 .537.081.977.212 1.367h-.928v1.791h1.579c.033.179.065.358.065.537 0 .96-.667 1.628-1.693 1.986v1.921h5.437c1.807 0 3.028-1.352 3.028-3.19l-2.149-.13c0 .732-.52 1.205-1.205 1.205h-.001Z" })] }));
3
+ export const ScheduledTopUps = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "m45.143 18.011-3.151.844.844 3.151 3.151-.844-.844-3.151ZM21.866 41.984l-3.151.844.844 3.151 3.151-.844-.844-3.151ZM21.19 18.837l-3.151.844.844 3.151 3.151-.844-.844-3.151ZM33.416 30.848l-2.656-9.913-3.86 1.035 3.69 13.772 10.281-2.755-1.035-3.859-6.42 1.72ZM33.001 46.979h-1.998v4.994h1.998v-4.994ZM51.98 30.997h-4.994v1.998h4.994v-1.998ZM33.001 12.018h-1.998v4.994h1.998v-4.994ZM17.019 30.997h-4.994v1.998h4.994v-1.998ZM46.86 35.739c-6.138 0-11.114 4.975-11.114 11.114 0 6.139 4.975 11.114 11.114 11.114 6.139 0 11.114-4.975 11.114-11.114 0-6.139-4.975-11.114-11.114-11.114Zm0 19.231c-4.476 0-8.117-3.641-8.117-8.117 0-4.476 3.641-8.117 8.117-8.117 4.476 0 8.117 3.641 8.117 8.117 0 4.476-3.641 8.117-8.117 8.117Z" }), _jsx(Path, { fill: "currentColor", d: "M35.664 53.671a22.122 22.122 0 0 1-3.667.305c-2.969 0-5.846-.58-8.553-1.725a21.929 21.929 0 0 1-6.986-4.711 21.896 21.896 0 0 1-6.436-15.538c0-2.968.58-5.845 1.725-8.552a21.929 21.929 0 0 1 4.711-6.986 21.896 21.896 0 0 1 15.539-6.436c2.969 0 5.845.58 8.552 1.725a21.918 21.918 0 0 1 6.986 4.711 21.896 21.896 0 0 1 6.436 15.538 22.16 22.16 0 0 1-.302 3.653 13.235 13.235 0 0 1 3.43 3.022c.565-2.131.868-4.367.868-6.676 0-14.343-11.628-25.971-25.971-25.971S6.026 17.656 6.026 31.999c0 14.343 11.628 25.971 25.971 25.971 2.313 0 4.556-.305 6.692-.872a13.18 13.18 0 0 1-3.024-3.428h-.001v.001Z" }), _jsx(Path, { fill: "currentColor", d: "M47.739 49.852h-2.133c.732-.489 1.009-1.27 1.009-2.035 0-.098 0-.196-.016-.293h2.295v-1.791h-2.865c-.163-.424-.277-.798-.277-1.286 0-.863.602-1.27 1.254-1.27.846 0 1.303.569 1.319 1.562l2.133-.569c-.082-1.335-.977-3.012-3.483-3.012-2.279 0-3.581 1.611-3.581 3.207 0 .537.081.977.212 1.367h-.928v1.791h1.579c.033.179.065.358.065.537 0 .96-.667 1.628-1.693 1.986v1.921h5.437c1.807 0 3.028-1.352 3.028-3.19l-2.149-.13c0 .732-.52 1.205-1.205 1.205h-.001Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Screen1 = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "M57.948 40.979V12.051h-48a4 4 0 0 0-4 4v26a4 4 0 0 0 4 4h20v1.883h-7.995v4h19.991v-4h-7.995v-1.883h21.072l-1.072-4H9.948v-26h44v26l4-1.072Z" }) }));
3
+ export const Screen1 = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M57.948 40.979V12.051h-48a4 4 0 0 0-4 4v26a4 4 0 0 0 4 4h20v1.883h-7.995v4h19.991v-4h-7.995v-1.883h21.072l-1.072-4H9.948v-26h44v26l4-1.072Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Screen2 = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "M53.94 37.578v2H34.13v18.399h-4V39.578H10.006v-2H53.94Zm4.047-31.61v24.927l-4 1.073v-22h-44v22h44l1.072 4H9.987a4 4 0 0 1-4-4v-22a4 4 0 0 1 4-4h48Z" }) }));
3
+ export const Screen2 = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M53.94 37.578v2H34.13v18.399h-4V39.578H10.006v-2H53.94Zm4.047-31.61v24.927l-4 1.073v-22h-44v22h44l1.072 4H9.987a4 4 0 0 1-4-4v-22a4 4 0 0 1 4-4h48Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Seats = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "M44.65 30.305a6.693 6.693 0 1 0 0-13.385 6.693 6.693 0 0 0 0 13.385Zm0-11.326a4.639 4.639 0 0 1 4.633 4.634 4.639 4.639 0 0 1-4.633 4.633 4.639 4.639 0 0 1-4.634-4.633 4.639 4.639 0 0 1 4.634-4.634ZM46.904 41.632v2.06h9.624l-.552-2.06h-9.072ZM44.65 31.078l-9.17 2.43 4.02 1.065 5.15-1.365 11.326 3.002v5.422l2.06-.552v-6.454L44.65 31.078ZM25.404 31.314c5.597 0 10.15-4.553 10.15-10.15S31 11.014 25.404 11.014c-5.597 0-10.15 4.553-10.15 10.15 0 5.596 4.553 10.15 10.15 10.15Zm0-16.331a6.188 6.188 0 0 1 6.18 6.18 6.188 6.188 0 0 1-6.18 6.182 6.188 6.188 0 0 1-6.181-6.181 6.188 6.188 0 0 1 6.18-6.181ZM5.603 37.844v10.478a3.478 3.478 0 0 0 3.47 3.478h33.051l-.905-3.38 3.985-1.067v-9.509l-19.8-5.248-19.8 5.248Zm35.632 10.572H9.573v-7.517l15.83-4.197L41.236 40.9v7.517Z" }) }));
3
+ export const Seats = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M44.65 30.305a6.693 6.693 0 1 0 0-13.385 6.693 6.693 0 0 0 0 13.385Zm0-11.326a4.639 4.639 0 0 1 4.633 4.634 4.639 4.639 0 0 1-4.633 4.633 4.639 4.639 0 0 1-4.634-4.633 4.639 4.639 0 0 1 4.634-4.634ZM46.904 41.632v2.06h9.624l-.552-2.06h-9.072ZM44.65 31.078l-9.17 2.43 4.02 1.065 5.15-1.365 11.326 3.002v5.422l2.06-.552v-6.454L44.65 31.078ZM25.404 31.314c5.597 0 10.15-4.553 10.15-10.15S31 11.014 25.404 11.014c-5.597 0-10.15 4.553-10.15 10.15 0 5.596 4.553 10.15 10.15 10.15Zm0-16.331a6.188 6.188 0 0 1 6.18 6.18 6.188 6.188 0 0 1-6.18 6.182 6.188 6.188 0 0 1-6.181-6.181 6.188 6.188 0 0 1 6.18-6.181ZM5.603 37.844v10.478a3.478 3.478 0 0 0 3.47 3.478h33.051l-.905-3.38 3.985-1.067v-9.509l-19.8-5.248-19.8 5.248Zm35.632 10.572H9.573v-7.517l15.83-4.197L41.236 40.9v7.517Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const SecurityDog = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "m48.108 56.095-.803-2.997.01-.003h-6.357v-2.51l-3.214-9.216-.405-1.153-1.211.16c-.08.011-8.057.999-14.112-4.252L19.88 34.27l-.336 2.808c-.54 4.518-2.627 5.7-5.042 7.068l-.233.132c-3.272 1.86-3.342 4.349-3.339 4.627l-.025 1.462 1.454.021c.092.008.816.09 1.495.587.64.468 1.067 1.178 1.277 2.118l2.898-.776c-.49-2.05-1.606-3.228-2.583-3.89a6.118 6.118 0 0 0-.973-.535c.27-.312.674-.663 1.278-1.005l.23-.13c2.2-1.247 4.857-2.752 6.052-6.858 5.175 3.442 10.81 3.652 13.259 3.548l2.666 7.645v5.002h10.15Z" }), _jsx(Path, { fill: "currentColor", d: "M18.29 56.074H6.668V45.081c0-1.393.9-2.459 1.771-3.49 1.133-1.34 2.304-2.725 2.304-5.132 0-5.841 4.752-10.594 10.594-10.594h9.625c2.702 0 4.916-.523 6.404-1.513 1.675-1.115 2.49-2.834 2.49-5.254v-.242c-.006-2.42-.019-8.088 4.125-12.037l2.385-2.273.148 3.292c.085 1.837.486 3.854.872 4.46 2.703.307 4.83 1.473 6.073 3.32l5.102 1.807.06.992c.128 2.132-.726 6.42-4.875 7.397-1.334.314-2.121.67-2.405 1.092-.267.394-.307 1.137-.362 2.165-.01.202-.022.413-.036.632-.222 3.556-1.293 5.373-2.534 7.478-.575.977-1.17 1.987-1.788 3.33-1.258 2.74-1.247 5.78-1.13 7.337 1.318.304 2.415.925 3.271 1.853 1.072 1.161 1.705 2.753 1.883 4.73l.147 1.634H37.966v-5.002L35.3 43.418c-2.45.104-8.084-.106-13.259-3.548-1.195 4.107-3.852 5.611-6.052 6.858l-.23.13c-.603.343-1.007.693-1.278 1.005.314.137.644.313.974.536 1.293.875 2.835 2.657 2.835 6.175v1.5Zm-8.622-3h5.473c-.209-.945-.636-1.658-1.278-2.127a3.229 3.229 0 0 0-1.495-.588l-1.455-.02.025-1.463c-.003-.278.067-2.768 3.34-4.627l.232-.132c2.416-1.368 4.502-2.55 5.042-7.068l.336-2.808 2.136 1.853c6.09 5.281 14.03 4.264 14.109 4.253l1.216-.166 3.617 10.374v2.51h6.363c-.521-1.502-1.6-2.28-3.315-2.414l-1.154-.09-.205-1.14c-.04-.219-.94-5.42 1.24-10.163.681-1.482 1.344-2.607 1.93-3.6 1.172-1.99 1.947-3.303 2.124-6.142.013-.21.024-.412.034-.606.075-1.395.14-2.6.871-3.683.757-1.12 2.014-1.818 4.205-2.334 1.132-.266 1.878-1.01 2.28-2.272.121-.38.192-.752.233-1.072l-4.153-1.472-.276-.5c-.97-1.764-3.107-2.21-4.295-2.32-1.77-.162-2.49-2.154-2.8-3.436-1.202 2.604-1.196 5.436-1.193 7.028v.249c0 6.207-4.334 9.767-11.893 9.767h-9.625c-4.188 0-7.594 3.407-7.594 7.594 0 3.505-1.741 5.565-3.012 7.069-.474.56-1.063 1.258-1.063 1.553v7.993Z" }), _jsx(Path, { fill: "currentColor", d: "m38.217 25.542-1.473 1.354L46.401 37.4l1.472-1.354-9.656-10.504ZM31.863 27.43l-1.98.29 2.034 13.892 1.979-.29-2.033-13.892Z" }), _jsx(Path, { fill: "currentColor", d: "m35.983 43.425-.458-2.964c4.563-.706 7.059-1.81 8.349-2.611.995-.62 1.364-1.118 1.365-1.122l2.699 1.312c-.311.639-2.347 3.9-11.955 5.385ZM7.842 39.064l-1.94-.487c.033-.13.822-3.214 3.093-6.324 3.051-4.179 7.319-6.388 12.342-6.388v2c-4.399 0-7.995 1.856-10.688 5.515-2.06 2.798-2.8 5.655-2.807 5.684Z" }), _jsx(Path, { fill: "#fff", d: "m53.517 51.42-6.189 1.659 1.658 6.188 6.189-1.658-1.658-6.188Z" })] }));
3
+ export const SecurityDog = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "m48.108 56.095-.803-2.997.01-.003h-6.357v-2.51l-3.214-9.216-.405-1.153-1.211.16c-.08.011-8.057.999-14.112-4.252L19.88 34.27l-.336 2.808c-.54 4.518-2.627 5.7-5.042 7.068l-.233.132c-3.272 1.86-3.342 4.349-3.339 4.627l-.025 1.462 1.454.021c.092.008.816.09 1.495.587.64.468 1.067 1.178 1.277 2.118l2.898-.776c-.49-2.05-1.606-3.228-2.583-3.89a6.118 6.118 0 0 0-.973-.535c.27-.312.674-.663 1.278-1.005l.23-.13c2.2-1.247 4.857-2.752 6.052-6.858 5.175 3.442 10.81 3.652 13.259 3.548l2.666 7.645v5.002h10.15Z" }), _jsx(Path, { fill: "currentColor", d: "M18.29 56.074H6.668V45.081c0-1.393.9-2.459 1.771-3.49 1.133-1.34 2.304-2.725 2.304-5.132 0-5.841 4.752-10.594 10.594-10.594h9.625c2.702 0 4.916-.523 6.404-1.513 1.675-1.115 2.49-2.834 2.49-5.254v-.242c-.006-2.42-.019-8.088 4.125-12.037l2.385-2.273.148 3.292c.085 1.837.486 3.854.872 4.46 2.703.307 4.83 1.473 6.073 3.32l5.102 1.807.06.992c.128 2.132-.726 6.42-4.875 7.397-1.334.314-2.121.67-2.405 1.092-.267.394-.307 1.137-.362 2.165-.01.202-.022.413-.036.632-.222 3.556-1.293 5.373-2.534 7.478-.575.977-1.17 1.987-1.788 3.33-1.258 2.74-1.247 5.78-1.13 7.337 1.318.304 2.415.925 3.271 1.853 1.072 1.161 1.705 2.753 1.883 4.73l.147 1.634H37.966v-5.002L35.3 43.418c-2.45.104-8.084-.106-13.259-3.548-1.195 4.107-3.852 5.611-6.052 6.858l-.23.13c-.603.343-1.007.693-1.278 1.005.314.137.644.313.974.536 1.293.875 2.835 2.657 2.835 6.175v1.5Zm-8.622-3h5.473c-.209-.945-.636-1.658-1.278-2.127a3.229 3.229 0 0 0-1.495-.588l-1.455-.02.025-1.463c-.003-.278.067-2.768 3.34-4.627l.232-.132c2.416-1.368 4.502-2.55 5.042-7.068l.336-2.808 2.136 1.853c6.09 5.281 14.03 4.264 14.109 4.253l1.216-.166 3.617 10.374v2.51h6.363c-.521-1.502-1.6-2.28-3.315-2.414l-1.154-.09-.205-1.14c-.04-.219-.94-5.42 1.24-10.163.681-1.482 1.344-2.607 1.93-3.6 1.172-1.99 1.947-3.303 2.124-6.142.013-.21.024-.412.034-.606.075-1.395.14-2.6.871-3.683.757-1.12 2.014-1.818 4.205-2.334 1.132-.266 1.878-1.01 2.28-2.272.121-.38.192-.752.233-1.072l-4.153-1.472-.276-.5c-.97-1.764-3.107-2.21-4.295-2.32-1.77-.162-2.49-2.154-2.8-3.436-1.202 2.604-1.196 5.436-1.193 7.028v.249c0 6.207-4.334 9.767-11.893 9.767h-9.625c-4.188 0-7.594 3.407-7.594 7.594 0 3.505-1.741 5.565-3.012 7.069-.474.56-1.063 1.258-1.063 1.553v7.993Z" }), _jsx(Path, { fill: "currentColor", d: "m38.217 25.542-1.473 1.354L46.401 37.4l1.472-1.354-9.656-10.504ZM31.863 27.43l-1.98.29 2.034 13.892 1.979-.29-2.033-13.892Z" }), _jsx(Path, { fill: "currentColor", d: "m35.983 43.425-.458-2.964c4.563-.706 7.059-1.81 8.349-2.611.995-.62 1.364-1.118 1.365-1.122l2.699 1.312c-.311.639-2.347 3.9-11.955 5.385ZM7.842 39.064l-1.94-.487c.033-.13.822-3.214 3.093-6.324 3.051-4.179 7.319-6.388 12.342-6.388v2c-4.399 0-7.995 1.856-10.688 5.515-2.06 2.798-2.8 5.655-2.807 5.684Z" }), _jsx(Path, { fill: "#fff", d: "m53.517 51.42-6.189 1.659 1.658 6.188 6.189-1.658-1.658-6.188Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const SellingPowerBackElectricity = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "m31.064 18.916 9.975-2.72-5.673 18.317a14.219 14.219 0 0 0-6.339 6.292l5.725-18.48-2.602.71-5.27 1.437V9.519l-11.765 3.343v23.439l4.74-1.293 3.785-1.033 1.262 3.778 2.631 7.876.058-.186c-.082.621-.124 1.254-.124 1.897 0 2.519.646 4.886 1.777 6.942l-1.56 5.035-6.747-20.192-10.01 2.73V9.629l20.137-5.726v15.014Zm10.404 16.61c6.41 0 11.605 5.29 11.605 11.814s-5.196 11.813-11.605 11.813c-6.41 0-11.605-5.289-11.605-11.813 0-6.525 5.196-11.814 11.605-11.814Zm0 3.186c-4.674 0-8.476 3.87-8.476 8.628 0 4.757 3.802 8.628 8.476 8.628 4.673 0 8.475-3.87 8.475-8.628s-3.801-8.628-8.475-8.628Zm.347 2.178c2.667 0 3.62 1.815 3.707 3.26l-2.268.618c-.018-1.076-.502-1.693-1.402-1.693-.693 0-1.334.441-1.334 1.375 0 .528.121.935.294 1.393h3.048v1.94H41.42c.018.105.018.21.018.317 0 .828-.295 1.673-1.074 2.203h2.269c.726 0 1.281-.511 1.281-1.304l2.285.142c0 1.991-1.299 3.453-3.22 3.454h-5.784v-2.08l-.002-.001c1.091-.388 1.801-1.111 1.801-2.15 0-.194-.034-.389-.068-.582h-1.68v-1.94h.987a4.65 4.65 0 0 1-.225-1.48c0-1.727 1.385-3.472 3.808-3.472Z" }) }));
3
+ export const SellingPowerBackElectricity = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m31.064 18.916 9.975-2.72-5.673 18.317a14.219 14.219 0 0 0-6.339 6.292l5.725-18.48-2.602.71-5.27 1.437V9.519l-11.765 3.343v23.439l4.74-1.293 3.785-1.033 1.262 3.778 2.631 7.876.058-.186c-.082.621-.124 1.254-.124 1.897 0 2.519.646 4.886 1.777 6.942l-1.56 5.035-6.747-20.192-10.01 2.73V9.629l20.137-5.726v15.014Zm10.404 16.61c6.41 0 11.605 5.29 11.605 11.814s-5.196 11.813-11.605 11.813c-6.41 0-11.605-5.289-11.605-11.813 0-6.525 5.196-11.814 11.605-11.814Zm0 3.186c-4.674 0-8.476 3.87-8.476 8.628 0 4.757 3.802 8.628 8.476 8.628 4.673 0 8.475-3.87 8.475-8.628s-3.801-8.628-8.475-8.628Zm.347 2.178c2.667 0 3.62 1.815 3.707 3.26l-2.268.618c-.018-1.076-.502-1.693-1.402-1.693-.693 0-1.334.441-1.334 1.375 0 .528.121.935.294 1.393h3.048v1.94H41.42c.018.105.018.21.018.317 0 .828-.295 1.673-1.074 2.203h2.269c.726 0 1.281-.511 1.281-1.304l2.285.142c0 1.991-1.299 3.453-3.22 3.454h-5.784v-2.08l-.002-.001c1.091-.388 1.801-1.111 1.801-2.15 0-.194-.034-.389-.068-.582h-1.68v-1.94h.987a4.65 4.65 0 0 1-.225-1.48c0-1.727 1.385-3.472 3.808-3.472Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const SellingPowerBackGas = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "m31.6 15.887 3.375-3.666c.02.021 11.331 11.756 14.494 21.882a14.04 14.04 0 0 0-4.867-.931 34.357 34.357 0 0 0-1.229-2.554c-1.214-2.29-2.816-4.783-4.76-7.413a91.397 91.397 0 0 0-3.69-4.654l-.211.23-5.236 5.689-1.975-7.491-1.123-4.265a143.915 143.915 0 0 0-4.448 5.644c-2.8 3.751-5.1 7.264-6.838 10.439-2.046 3.74-3.277 6.938-3.658 9.504-.301 2.021-.199 4.119.293 6.062.525 2.07 1.459 3.901 2.779 5.44a13.043 13.043 0 0 0 2.812 2.448c-.978-2.033-1.244-4.32-.931-6.422 1.148-7.735 12.133-19.35 12.177-19.395l1.813 6.882 1.94-2.105a53.91 53.91 0 0 1 3.871 4.62c-.576.414-1.12.872-1.628 1.367a53.778 53.778 0 0 0-2.264-2.827l-.362.393-2.619 2.844-.986-3.746-.802-3.039a82.833 82.833 0 0 0-2.95 3.717c-4.508 6.037-5.803 9.643-6.094 11.604a9.265 9.265 0 0 0 .175 3.606 7.946 7.946 0 0 0 1.664 3.254c.31.361.656.693 1.033.993a6.833 6.833 0 0 1-.182-1.589c0-5.244 7.495-10.159 7.555-10.198 0 0 .86.563 2 1.509-.213.79-.36 1.606-.435 2.442-.57-.52-1.116-.97-1.566-1.32a24.585 24.585 0 0 0-2.33 2.055c-2.001 2.017-3.103 3.975-3.103 5.512 0 .873.207 1.631.63 2.286 1.409.24 2.918.36 4.52.36 1.358 0 2.638-.065 3.844-.194a14.37 14.37 0 0 0 3.33 3.796c-1.999.405-4.244.636-6.763.659a2.663 2.663 0 0 1-.128.003h-.284c-17.036 0-22.642-11.96-21.203-21.646 2.005-13.494 21.203-33.77 21.203-33.77L31.6 15.887Zm12.829 19.73c6.499 0 11.766 5.302 11.766 11.843S50.927 59.304 44.43 59.304c-6.499 0-11.767-5.303-11.767-11.844 0-6.54 5.269-11.844 11.767-11.844Zm0 3.194c-4.739 0-8.594 3.88-8.594 8.65 0 4.769 3.855 8.65 8.594 8.65 4.738 0 8.593-3.881 8.593-8.65 0-4.77-3.855-8.65-8.593-8.65Zm.352 2.183c2.704 0 3.67 1.82 3.757 3.27l-2.299.617c-.018-1.078-.51-1.696-1.422-1.696-.702 0-1.352.442-1.352 1.379 0 .53.123.937.299 1.396h3.09v1.943H44.38c.018.107.018.213.018.32 0 .83-.299 1.678-1.088 2.209h2.3c.736 0 1.298-.513 1.298-1.308l2.318.142c0 1.997-1.318 3.463-3.266 3.463h-5.863v-2.085l-.003-.001c1.106-.39 1.826-1.114 1.826-2.157 0-.194-.034-.389-.07-.583h-1.701V45.96h1a4.617 4.617 0 0 1-.23-1.484c0-1.732 1.406-3.482 3.863-3.482Z" }) }));
3
+ export const SellingPowerBackGas = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m31.6 15.887 3.375-3.666c.02.021 11.331 11.756 14.494 21.882a14.04 14.04 0 0 0-4.867-.931 34.357 34.357 0 0 0-1.229-2.554c-1.214-2.29-2.816-4.783-4.76-7.413a91.397 91.397 0 0 0-3.69-4.654l-.211.23-5.236 5.689-1.975-7.491-1.123-4.265a143.915 143.915 0 0 0-4.448 5.644c-2.8 3.751-5.1 7.264-6.838 10.439-2.046 3.74-3.277 6.938-3.658 9.504-.301 2.021-.199 4.119.293 6.062.525 2.07 1.459 3.901 2.779 5.44a13.043 13.043 0 0 0 2.812 2.448c-.978-2.033-1.244-4.32-.931-6.422 1.148-7.735 12.133-19.35 12.177-19.395l1.813 6.882 1.94-2.105a53.91 53.91 0 0 1 3.871 4.62c-.576.414-1.12.872-1.628 1.367a53.778 53.778 0 0 0-2.264-2.827l-.362.393-2.619 2.844-.986-3.746-.802-3.039a82.833 82.833 0 0 0-2.95 3.717c-4.508 6.037-5.803 9.643-6.094 11.604a9.265 9.265 0 0 0 .175 3.606 7.946 7.946 0 0 0 1.664 3.254c.31.361.656.693 1.033.993a6.833 6.833 0 0 1-.182-1.589c0-5.244 7.495-10.159 7.555-10.198 0 0 .86.563 2 1.509-.213.79-.36 1.606-.435 2.442-.57-.52-1.116-.97-1.566-1.32a24.585 24.585 0 0 0-2.33 2.055c-2.001 2.017-3.103 3.975-3.103 5.512 0 .873.207 1.631.63 2.286 1.409.24 2.918.36 4.52.36 1.358 0 2.638-.065 3.844-.194a14.37 14.37 0 0 0 3.33 3.796c-1.999.405-4.244.636-6.763.659a2.663 2.663 0 0 1-.128.003h-.284c-17.036 0-22.642-11.96-21.203-21.646 2.005-13.494 21.203-33.77 21.203-33.77L31.6 15.887Zm12.829 19.73c6.499 0 11.766 5.302 11.766 11.843S50.927 59.304 44.43 59.304c-6.499 0-11.767-5.303-11.767-11.844 0-6.54 5.269-11.844 11.767-11.844Zm0 3.194c-4.739 0-8.594 3.88-8.594 8.65 0 4.769 3.855 8.65 8.594 8.65 4.738 0 8.593-3.881 8.593-8.65 0-4.77-3.855-8.65-8.593-8.65Zm.352 2.183c2.704 0 3.67 1.82 3.757 3.27l-2.299.617c-.018-1.078-.51-1.696-1.422-1.696-.702 0-1.352.442-1.352 1.379 0 .53.123.937.299 1.396h3.09v1.943H44.38c.018.107.018.213.018.32 0 .83-.299 1.678-1.088 2.209h2.3c.736 0 1.298-.513 1.298-1.308l2.318.142c0 1.997-1.318 3.463-3.266 3.463h-5.863v-2.085l-.003-.001c1.106-.39 1.826-1.114 1.826-2.157 0-.194-.034-.389-.07-.583h-1.701V45.96h1a4.617 4.617 0 0 1-.23-1.484c0-1.732 1.406-3.482 3.863-3.482Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const SemiDetached = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "m34.398 41.609-3.917 1.05 1.05 3.916 3.917-1.05-1.05-3.916Z" }), _jsx(Path, { fill: "currentColor", d: "m36.91 9.46-1.895-1.02-1.897 1.02-19.005 10.234-.098.052L-.03 12.184v4.543l12.04 6.483v27.782H-.03v4H28.472V35.302h13.085V54.992h13.464l-1.072-4h-8.392v-19.69l-21.085-.001v19.69H16.02V23.21l18.994-10.228L54.02 23.215V50.93l4-1.072V20.826l-2.103-1.132L36.91 9.46Z" })] }));
3
+ export const SemiDetached = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "m34.398 41.609-3.917 1.05 1.05 3.916 3.917-1.05-1.05-3.916Z" }), _jsx(Path, { fill: "currentColor", d: "m36.91 9.46-1.895-1.02-1.897 1.02-19.005 10.234-.098.052L-.03 12.184v4.543l12.04 6.483v27.782H-.03v4H28.472V35.302h13.085V54.992h13.464l-1.072-4h-8.392v-19.69l-21.085-.001v19.69H16.02V23.21l18.994-10.228L54.02 23.215V50.93l4-1.072V20.826l-2.103-1.132L36.91 9.46Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Send = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "m14.84 51.773 39.477-19.788L9.783 9.662V48.9l4-1.072 1.057 3.945Zm-1.057-17.72h13.7l-1.072-4H13.783V16.141L45.39 31.985 13.783 47.828V34.053Z" }) }));
3
+ export const Send = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m14.84 51.773 39.477-19.788L9.783 9.662V48.9l4-1.072 1.057 3.945Zm-1.057-17.72h13.7l-1.072-4H13.783V16.141L45.39 31.985 13.783 47.828V34.053Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Shield = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "M31.93 6.218c2.703 2.197 9.836 6.692 20.151 6.692h.056v20.057c-.604 9.64-7.019 17.56-14.978 22.422-.845.516-4.44 2.554-5.284 2.554a.538.538 0 0 1-.042-.002c-.97-.095-4.315-2.036-5.305-2.647-7.83-4.84-14.236-12.792-14.761-22.326-.088-1.599-.182-9.474-.182-20.032.174.004.348.005.521.005 10.27 0 17.022-4.347 19.824-6.723Zm.052 4.95c-3.307 2.203-8.82 4.951-16.393 5.621.02 9.104.109 14.824.172 15.96.208 3.77 1.528 7.422 3.925 10.85 2.224 3.184 5.318 6.05 8.945 8.293.949.586 2.34 1.361 3.259 1.811a44.39 44.39 0 0 0 3.184-1.727c3.681-2.25 6.816-5.122 9.063-8.31v.001c2.394-3.396 3.739-7.038 3.999-10.83V16.713a37.634 37.634 0 0 1-10.501-2.623 35.497 35.497 0 0 1-5.653-2.921Zm13.519 21.175c-.439 6.945-3.59 10.841-9.248 15.598-.041.035-2.897 2.332-4.342 2.816v-2.203c1.022-.583 2.573-1.738 3.055-2.143 6.064-5.097 8.154-8.534 8.531-14.068h2.004Z" }) }));
3
+ export const Shield = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M31.93 6.218c2.703 2.197 9.836 6.692 20.151 6.692h.056v20.057c-.604 9.64-7.019 17.56-14.978 22.422-.845.516-4.44 2.554-5.284 2.554a.538.538 0 0 1-.042-.002c-.97-.095-4.315-2.036-5.305-2.647-7.83-4.84-14.236-12.792-14.761-22.326-.088-1.599-.182-9.474-.182-20.032.174.004.348.005.521.005 10.27 0 17.022-4.347 19.824-6.723Zm.052 4.95c-3.307 2.203-8.82 4.951-16.393 5.621.02 9.104.109 14.824.172 15.96.208 3.77 1.528 7.422 3.925 10.85 2.224 3.184 5.318 6.05 8.945 8.293.949.586 2.34 1.361 3.259 1.811a44.39 44.39 0 0 0 3.184-1.727c3.681-2.25 6.816-5.122 9.063-8.31v.001c2.394-3.396 3.739-7.038 3.999-10.83V16.713a37.634 37.634 0 0 1-10.501-2.623 35.497 35.497 0 0 1-5.653-2.921Zm13.519 21.175c-.439 6.945-3.59 10.841-9.248 15.598-.041.035-2.897 2.332-4.342 2.816v-2.203c1.022-.583 2.573-1.738 3.055-2.143 6.064-5.097 8.154-8.534 8.531-14.068h2.004Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const SmartHome = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "M47.2 31.54c-4.06-4.06-9.46-6.3-15.21-6.3s-11.14 2.24-15.21 6.3l2.83 2.83c3.31-3.31 7.7-5.13 12.38-5.13 4.68 0 9.07 1.82 12.38 5.13l2.83-2.83ZM40.66 38.09c-2.32-2.31-5.39-3.59-8.66-3.59-3.27 0-6.35 1.27-8.66 3.59l2.83 2.83A8.193 8.193 0 0 1 32 38.5c2.2 0 4.27.86 5.83 2.41l2.83-2.82ZM33.618 43.055l-4.424 1.185 1.186 4.424 4.424-1.186-1.186-4.423Z" }), _jsx(Path, { fill: "currentColor", d: "M57.98 52.93V20.01l-26-14-26 14v34c0 2.21 1.79 4 4 4h45.07l-1.07-4h-44V22.4l22-11.85 22 11.85V54l4-1.07Z" })] }));
3
+ export const SmartHome = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M47.2 31.54c-4.06-4.06-9.46-6.3-15.21-6.3s-11.14 2.24-15.21 6.3l2.83 2.83c3.31-3.31 7.7-5.13 12.38-5.13 4.68 0 9.07 1.82 12.38 5.13l2.83-2.83ZM40.66 38.09c-2.32-2.31-5.39-3.59-8.66-3.59-3.27 0-6.35 1.27-8.66 3.59l2.83 2.83A8.193 8.193 0 0 1 32 38.5c2.2 0 4.27.86 5.83 2.41l2.83-2.82ZM33.618 43.055l-4.424 1.185 1.186 4.424 4.424-1.186-1.186-4.423Z" }), _jsx(Path, { fill: "currentColor", d: "M57.98 52.93V20.01l-26-14-26 14v34c0 2.21 1.79 4 4 4h45.07l-1.07-4h-44V22.4l22-11.85 22 11.85V54l4-1.07Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const SmartMeter = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "M14.48 33.54c.73 3.46 3.8 6.06 7.47 6.06v-3c-2 0-3.71-1.28-4.36-3.06h-3.11ZM26.59 31.96h3c0-4.21-3.43-7.64-7.64-7.64-3.72 0-6.83 2.68-7.5 6.21h3.09a4.64 4.64 0 0 1 4.41-3.21c2.56 0 4.64 2.08 4.64 4.64ZM35.23 22.51v14.31l4.53-1.21 3.05 8.97 6.04-19.15-4.51 1.21v-6.67l-9.11 2.54Zm9.62 6.06.99-.26-3.11 9.85-1.09-3.19-.6-1.77-1.81.49-2.01.54v-10.2l5.1-1.42v6.64l2.53-.68Z" }), _jsx(Path, { fill: "currentColor", d: "M58 46.92V12H9.51C7.57 12 6 13.57 6 15.51V48c0 2.21 1.79 4 4 4h45.07L54 48H10V16h44v32l4-1.08Z" })] }));
3
+ export const SmartMeter = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M14.48 33.54c.73 3.46 3.8 6.06 7.47 6.06v-3c-2 0-3.71-1.28-4.36-3.06h-3.11ZM26.59 31.96h3c0-4.21-3.43-7.64-7.64-7.64-3.72 0-6.83 2.68-7.5 6.21h3.09a4.64 4.64 0 0 1 4.41-3.21c2.56 0 4.64 2.08 4.64 4.64ZM35.23 22.51v14.31l4.53-1.21 3.05 8.97 6.04-19.15-4.51 1.21v-6.67l-9.11 2.54Zm9.62 6.06.99-.26-3.11 9.85-1.09-3.19-.6-1.77-1.81.49-2.01.54v-10.2l5.1-1.42v6.64l2.53-.68Z" }), _jsx(Path, { fill: "currentColor", d: "M58 46.92V12H9.51C7.57 12 6 13.57 6 15.51V48c0 2.21 1.79 4 4 4h45.07L54 48H10V16h44v32l4-1.08Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const SmartThermostatA = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "M35.34 29.43c.94 0 1.66-.69 1.66-1.66s-.72-1.65-1.66-1.65-1.66.68-1.66 1.65c0 .97.73 1.66 1.66 1.66Zm0-2.43c.36 0 .7.25.7.77s-.34.78-.7.78c-.36 0-.7-.26-.7-.78s.35-.77.7-.77ZM20.47 37.21h2.62V26.39h-2.25c-.18 1.1-1.33 2.02-2.95 2.04v1.75h2.59l-.01 7.03ZM24.81 34.28c0 1.9 1.72 3.19 4.17 3.19s4.19-1.28 4.19-3.19c0-1.12-.72-2.19-1.85-2.64 1.12-.4 1.65-1.52 1.65-2.37 0-1.82-1.63-3.14-3.99-3.14-2.36 0-3.97 1.32-3.97 3.14 0 .85.52 1.97 1.63 2.37-1.13.45-1.83 1.52-1.83 2.64Zm4.17-5.97c.9 0 1.38.6 1.38 1.17 0 .65-.43 1.25-1.38 1.27-.93-.02-1.38-.62-1.38-1.27 0-.57.48-1.17 1.38-1.17Zm0 4.28c1.12 0 1.62.72 1.62 1.38 0 .66-.55 1.35-1.62 1.35s-1.6-.7-1.6-1.35c0-.65.5-1.38 1.6-1.38ZM48.14 24.88l2.36 1.87 1.25-1.56-3.69-2.93-3.3 2.97 1.34 1.48 2.04-1.83ZM51.8 38.86l-1.34-1.49-2.05 1.84-2.36-1.88-1.24 1.57 3.68 2.93 3.31-2.97Z" }), _jsx(Path, { fill: "currentColor", d: "M12 23.47v17.06c0 1.92 1.55 3.47 3.47 3.47H42V20H15.47C13.55 20 12 21.55 12 23.47Zm2 0c0-.81.66-1.47 1.47-1.47H40v20H15.47c-.81 0-1.47-.66-1.47-1.47V23.47Z" }), _jsx(Path, { fill: "currentColor", d: "M58 46.93V12H9.51C7.57 12 6 13.57 6 15.51V48c0 2.21 1.79 4 4 4h45.07L54 48H10V16h44v32l4-1.07Z" })] }));
3
+ export const SmartThermostatA = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M35.34 29.43c.94 0 1.66-.69 1.66-1.66s-.72-1.65-1.66-1.65-1.66.68-1.66 1.65c0 .97.73 1.66 1.66 1.66Zm0-2.43c.36 0 .7.25.7.77s-.34.78-.7.78c-.36 0-.7-.26-.7-.78s.35-.77.7-.77ZM20.47 37.21h2.62V26.39h-2.25c-.18 1.1-1.33 2.02-2.95 2.04v1.75h2.59l-.01 7.03ZM24.81 34.28c0 1.9 1.72 3.19 4.17 3.19s4.19-1.28 4.19-3.19c0-1.12-.72-2.19-1.85-2.64 1.12-.4 1.65-1.52 1.65-2.37 0-1.82-1.63-3.14-3.99-3.14-2.36 0-3.97 1.32-3.97 3.14 0 .85.52 1.97 1.63 2.37-1.13.45-1.83 1.52-1.83 2.64Zm4.17-5.97c.9 0 1.38.6 1.38 1.17 0 .65-.43 1.25-1.38 1.27-.93-.02-1.38-.62-1.38-1.27 0-.57.48-1.17 1.38-1.17Zm0 4.28c1.12 0 1.62.72 1.62 1.38 0 .66-.55 1.35-1.62 1.35s-1.6-.7-1.6-1.35c0-.65.5-1.38 1.6-1.38ZM48.14 24.88l2.36 1.87 1.25-1.56-3.69-2.93-3.3 2.97 1.34 1.48 2.04-1.83ZM51.8 38.86l-1.34-1.49-2.05 1.84-2.36-1.88-1.24 1.57 3.68 2.93 3.31-2.97Z" }), _jsx(Path, { fill: "currentColor", d: "M12 23.47v17.06c0 1.92 1.55 3.47 3.47 3.47H42V20H15.47C13.55 20 12 21.55 12 23.47Zm2 0c0-.81.66-1.47 1.47-1.47H40v20H15.47c-.81 0-1.47-.66-1.47-1.47V23.47Z" }), _jsx(Path, { fill: "currentColor", d: "M58 46.93V12H9.51C7.57 12 6 13.57 6 15.51V48c0 2.21 1.79 4 4 4h45.07L54 48H10V16h44v32l4-1.07Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const SmartThermostatB = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "M20.11 28.75c1.09 0 1.93-.8 1.93-1.93s-.84-1.92-1.93-1.92c-1.09 0-1.93.8-1.93 1.92 0 1.12.85 1.93 1.93 1.93Zm0-2.83c.42 0 .82.29.82.9 0 .61-.39.91-.82.91-.43 0-.82-.3-.82-.91 0-.61.4-.9.82-.9ZM29.3 39.1c4.23 0 6.04-2.88 6.48-4.77l-2.92-.79c-.27.98-1.23 2.52-3.56 2.52-2.04 0-3.92-1.48-3.92-4.04 0-2.86 2.06-4.17 3.88-4.17 2.31 0 3.19 1.46 3.44 2.42l2.9-.79c-.44-1.96-2.25-4.59-6.35-4.59-3.81 0-7.04 2.88-7.04 7.13s3.17 7.09 7.09 7.08ZM48.14 24.88l2.36 1.87 1.25-1.56-3.69-2.93-3.3 2.97 1.34 1.48 2.04-1.83ZM51.8 38.86l-1.34-1.49-2.05 1.84-2.36-1.88-1.24 1.57 3.68 2.93 3.31-2.97Z" }), _jsx(Path, { fill: "currentColor", d: "M12 23.47v17.06c0 1.92 1.55 3.47 3.47 3.47H42V20H15.47C13.55 20 12 21.55 12 23.47Zm2 0c0-.81.66-1.47 1.47-1.47H40v20H15.47c-.81 0-1.47-.66-1.47-1.47V23.47Z" }), _jsx(Path, { fill: "currentColor", d: "M58 46.93V12H9.51C7.57 12 6 13.57 6 15.51V48c0 2.21 1.79 4 4 4h45.07L54 48H10V16h44v32l4-1.07Z" })] }));
3
+ export const SmartThermostatB = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M20.11 28.75c1.09 0 1.93-.8 1.93-1.93s-.84-1.92-1.93-1.92c-1.09 0-1.93.8-1.93 1.92 0 1.12.85 1.93 1.93 1.93Zm0-2.83c.42 0 .82.29.82.9 0 .61-.39.91-.82.91-.43 0-.82-.3-.82-.91 0-.61.4-.9.82-.9ZM29.3 39.1c4.23 0 6.04-2.88 6.48-4.77l-2.92-.79c-.27.98-1.23 2.52-3.56 2.52-2.04 0-3.92-1.48-3.92-4.04 0-2.86 2.06-4.17 3.88-4.17 2.31 0 3.19 1.46 3.44 2.42l2.9-.79c-.44-1.96-2.25-4.59-6.35-4.59-3.81 0-7.04 2.88-7.04 7.13s3.17 7.09 7.09 7.08ZM48.14 24.88l2.36 1.87 1.25-1.56-3.69-2.93-3.3 2.97 1.34 1.48 2.04-1.83ZM51.8 38.86l-1.34-1.49-2.05 1.84-2.36-1.88-1.24 1.57 3.68 2.93 3.31-2.97Z" }), _jsx(Path, { fill: "currentColor", d: "M12 23.47v17.06c0 1.92 1.55 3.47 3.47 3.47H42V20H15.47C13.55 20 12 21.55 12 23.47Zm2 0c0-.81.66-1.47 1.47-1.47H40v20H15.47c-.81 0-1.47-.66-1.47-1.47V23.47Z" }), _jsx(Path, { fill: "currentColor", d: "M58 46.93V12H9.51C7.57 12 6 13.57 6 15.51V48c0 2.21 1.79 4 4 4h45.07L54 48H10V16h44v32l4-1.07Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Smoke = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "M34.165 48.55v2c1.88 0 3.635-.849 4.807-2.296.365.194.748.363 1.148.502l.666-1.912a6.172 6.172 0 0 1-4.134-5.823h-2.025a8.197 8.197 0 0 0 2.701 6.077 4.243 4.243 0 0 1-3.163 1.451ZM49.547 30.919a5.482 5.482 0 0 0 .353-4.208 5.481 5.481 0 0 0-2.727-3.225l-.916 1.777a3.495 3.495 0 0 1 1.738 2.056 3.494 3.494 0 0 1-.225 2.683l1.777.917ZM34.97 15.062a5.485 5.485 0 0 0-4.076 1.102l1.22 1.584a3.522 3.522 0 0 1 4.934.638l1.584-1.22a5.48 5.48 0 0 0-3.661-2.104Z" }), _jsx(Path, { fill: "currentColor", d: "M53.707 19.387a14.808 14.808 0 0 0-6.9-4.26 13.972 13.972 0 0 0-3.948-5.085 13.923 13.923 0 0 0-8.694-3.058 13.794 13.794 0 0 0-9.818 4.067 13.788 13.788 0 0 0-4.063 9.513 8.714 8.714 0 0 0-2.139 1.361h-3.45l1.072 4h4.136a4.738 4.738 0 0 1 4.377-2.102V20.87c0-5.459 4.426-9.885 9.885-9.885 4.684 0 8.607 3.259 9.627 7.632 5.5.518 9.804 5.147 9.804 10.782 0 3.888-2.05 7.297-5.125 9.207a6.138 6.138 0 0 1-4.81 8.516c-1.194 4.118-4.993 7.128-9.496 7.128-5.202 0-9.466-4.019-9.856-9.122a4.743 4.743 0 0 1-5.068-5.819H9.876l1.072 4h4.66a8.787 8.787 0 0 0 5.348 5.347 13.856 13.856 0 0 0 3.751 5.875 13.838 13.838 0 0 0 9.458 3.72c3.07 0 5.979-.983 8.414-2.84a14.011 14.011 0 0 0 4.075-4.98 10.148 10.148 0 0 0 3.788-2.69 10.125 10.125 0 0 0 2.496-7.552 14.9 14.9 0 0 0 2.726-3.468 14.836 14.836 0 0 0 1.932-7.322c0-3.716-1.381-7.271-3.89-10.01Z" }), _jsx(Path, { fill: "currentColor", d: "M22.749 34.262H6.744l.536 2h16.005l-.536-2ZM27.203 29.35H10.166l.535 2H27.74l-.536-2Z" })] }));
3
+ export const Smoke = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M34.165 48.55v2c1.88 0 3.635-.849 4.807-2.296.365.194.748.363 1.148.502l.666-1.912a6.172 6.172 0 0 1-4.134-5.823h-2.025a8.197 8.197 0 0 0 2.701 6.077 4.243 4.243 0 0 1-3.163 1.451ZM49.547 30.919a5.482 5.482 0 0 0 .353-4.208 5.481 5.481 0 0 0-2.727-3.225l-.916 1.777a3.495 3.495 0 0 1 1.738 2.056 3.494 3.494 0 0 1-.225 2.683l1.777.917ZM34.97 15.062a5.485 5.485 0 0 0-4.076 1.102l1.22 1.584a3.522 3.522 0 0 1 4.934.638l1.584-1.22a5.48 5.48 0 0 0-3.661-2.104Z" }), _jsx(Path, { fill: "currentColor", d: "M53.707 19.387a14.808 14.808 0 0 0-6.9-4.26 13.972 13.972 0 0 0-3.948-5.085 13.923 13.923 0 0 0-8.694-3.058 13.794 13.794 0 0 0-9.818 4.067 13.788 13.788 0 0 0-4.063 9.513 8.714 8.714 0 0 0-2.139 1.361h-3.45l1.072 4h4.136a4.738 4.738 0 0 1 4.377-2.102V20.87c0-5.459 4.426-9.885 9.885-9.885 4.684 0 8.607 3.259 9.627 7.632 5.5.518 9.804 5.147 9.804 10.782 0 3.888-2.05 7.297-5.125 9.207a6.138 6.138 0 0 1-4.81 8.516c-1.194 4.118-4.993 7.128-9.496 7.128-5.202 0-9.466-4.019-9.856-9.122a4.743 4.743 0 0 1-5.068-5.819H9.876l1.072 4h4.66a8.787 8.787 0 0 0 5.348 5.347 13.856 13.856 0 0 0 3.751 5.875 13.838 13.838 0 0 0 9.458 3.72c3.07 0 5.979-.983 8.414-2.84a14.011 14.011 0 0 0 4.075-4.98 10.148 10.148 0 0 0 3.788-2.69 10.125 10.125 0 0 0 2.496-7.552 14.9 14.9 0 0 0 2.726-3.468 14.836 14.836 0 0 0 1.932-7.322c0-3.716-1.381-7.271-3.89-10.01Z" }), _jsx(Path, { fill: "currentColor", d: "M22.749 34.262H6.744l.536 2h16.005l-.536-2ZM27.203 29.35H10.166l.535 2H27.74l-.536-2Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const SolarPanel = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "M53.35 48h-13.3V33H51.1l2.25 15 3.89-1.04L52 12H15.54c-2.01 0-3.71 1.45-4.01 3.41l-4.86 32C6.3 49.82 8.2 52 10.68 52h43.75l-1.08-4ZM40.06 16h8.5l2.24 15H40.06V16Zm-24.52 0h8.52v15H13.21l2.28-14.98c0-.01.02-.02.05-.02Zm-4.91 31.99L12.91 33h11.15v15H10.68c-.02 0-.04 0-.05-.01Zm27.43.01h-12V33h12v15Zm0-17h-12V16h12v15Z" }) }));
3
+ export const SolarPanel = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M53.35 48h-13.3V33H51.1l2.25 15 3.89-1.04L52 12H15.54c-2.01 0-3.71 1.45-4.01 3.41l-4.86 32C6.3 49.82 8.2 52 10.68 52h43.75l-1.08-4ZM40.06 16h8.5l2.24 15H40.06V16Zm-24.52 0h8.52v15H13.21l2.28-14.98c0-.01.02-.02.05-.02Zm-4.91 31.99L12.91 33h11.15v15H10.68c-.02 0-.04 0-.05-.01Zm27.43.01h-12V33h12v15Zm0-17h-12V16h12v15Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const SpecialEffects = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "M22.147 33.022h2c0-4.342 3.533-7.875 7.875-7.875v-2c-5.445 0-9.875 4.43-9.875 9.875Z" }), _jsx(Path, { fill: "currentColor", d: "M32 18.522c-8.015 0-14.513 6.485-14.513 14.483 0 5.39 2.951 10.093 7.329 12.586l.756 5.306h.776l.726 6.326h9.852l.726-6.326h.776l.756-5.306c4.378-2.493 7.329-7.196 7.329-12.586 0-7.999-6.498-14.483-14.513-14.483Zm2.935 36.469h-5.87l-.109-.95h6.088l-.11.95Zm.338-2.95h-6.546l-.127-1.1h6.8l-.127 1.1Zm6.658-13.178a11.598 11.598 0 0 1-4.22 4.142l-1.268.722-.206 1.444-.392 2.75h-7.69l-.392-2.75-.206-1.444-1.267-.722a11.597 11.597 0 0 1-4.221-4.142 11.465 11.465 0 0 1-1.605-5.858c0-3.072 1.2-5.96 3.377-8.134A11.475 11.475 0 0 1 32 21.5c3.083 0 5.98 1.198 8.16 3.373a11.415 11.415 0 0 1 3.376 8.133c0 2.067-.555 4.092-1.605 5.858ZM33.1 7.327h-2v8.244h2V7.327ZM14.633 14.115l-1.414 1.414 5.83 5.83 1.414-1.414-5.83-5.83ZM14.62 31.973H6.375v2h8.245v-2ZM18.992 44.61l-5.83 5.83 1.415 1.414 5.83-5.83-1.415-1.414ZM45.072 44.666l-1.414 1.414 5.83 5.83 1.414-1.414-5.83-5.83ZM57.746 32.052h-8.244v2h8.244v-2ZM49.544 14.17 43.714 20l1.414 1.415 5.83-5.83-1.414-1.414Z" })] }));
3
+ export const SpecialEffects = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M22.147 33.022h2c0-4.342 3.533-7.875 7.875-7.875v-2c-5.445 0-9.875 4.43-9.875 9.875Z" }), _jsx(Path, { fill: "currentColor", d: "M32 18.522c-8.015 0-14.513 6.485-14.513 14.483 0 5.39 2.951 10.093 7.329 12.586l.756 5.306h.776l.726 6.326h9.852l.726-6.326h.776l.756-5.306c4.378-2.493 7.329-7.196 7.329-12.586 0-7.999-6.498-14.483-14.513-14.483Zm2.935 36.469h-5.87l-.109-.95h6.088l-.11.95Zm.338-2.95h-6.546l-.127-1.1h6.8l-.127 1.1Zm6.658-13.178a11.598 11.598 0 0 1-4.22 4.142l-1.268.722-.206 1.444-.392 2.75h-7.69l-.392-2.75-.206-1.444-1.267-.722a11.597 11.597 0 0 1-4.221-4.142 11.465 11.465 0 0 1-1.605-5.858c0-3.072 1.2-5.96 3.377-8.134A11.475 11.475 0 0 1 32 21.5c3.083 0 5.98 1.198 8.16 3.373a11.415 11.415 0 0 1 3.376 8.133c0 2.067-.555 4.092-1.605 5.858ZM33.1 7.327h-2v8.244h2V7.327ZM14.633 14.115l-1.414 1.414 5.83 5.83 1.414-1.414-5.83-5.83ZM14.62 31.973H6.375v2h8.245v-2ZM18.992 44.61l-5.83 5.83 1.415 1.414 5.83-5.83-1.415-1.414ZM45.072 44.666l-1.414 1.414 5.83 5.83 1.414-1.414-5.83-5.83ZM57.746 32.052h-8.244v2h8.244v-2ZM49.544 14.17 43.714 20l1.414 1.415 5.83-5.83-1.414-1.414Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Sport = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "M57.114 25.27C54.001 13.655 43.497 5.994 32.016 5.995c-2.227 0-4.492.288-6.745.892C11.4 10.602 3.169 24.859 6.886 38.729c3.113 11.617 13.617 19.277 25.098 19.277 2.227 0 4.492-.288 6.745-.892 13.87-3.716 22.102-17.973 18.385-31.843Zm-15.581-4.816a21.224 21.224 0 0 1 2.39-6.943 21.904 21.904 0 0 1 6.265 6.099 21.854 21.854 0 0 1 2.457 4.788l-11.072 2.966a21.082 21.082 0 0 1-.04-6.91Zm-9.516-10.46a21.837 21.837 0 0 1 8.361 1.663 25.197 25.197 0 0 0-2.795 8.167 25.055 25.055 0 0 0 .11 8.58l-4.279 1.146-5.153-19.23c1.244-.217 2.5-.326 3.756-.326Zm-13.534 4.64a21.773 21.773 0 0 1 5.915-3.28l5.152 19.232-4.07 1.09a25.057 25.057 0 0 0-4.194-7.486 25.199 25.199 0 0 0-6.618-5.744 21.883 21.883 0 0 1 3.815-3.812Zm-8.281 14.343a21.899 21.899 0 0 1 2.3-7.167 21.227 21.227 0 0 1 5.679 4.901 21.08 21.08 0 0 1 3.42 6.005l-11.282 3.023a21.77 21.77 0 0 1-.117-6.762ZM22.677 43.49a21.226 21.226 0 0 1-2.468 7.084 21.905 21.905 0 0 1-6.397-6.184 21.852 21.852 0 0 1-2.457-4.788l11.281-3.022c.393 2.29.408 4.607.04 6.91Zm9.307 10.517a21.84 21.84 0 0 1-8.216-1.604 25.199 25.199 0 0 0 2.858-8.283c.457-2.862.42-5.74-.11-8.58l4.07-1.09 5.153 19.23a21.94 21.94 0 0 1-3.755.327Zm13.533-4.641a21.771 21.771 0 0 1-5.915 3.28L34.45 33.413l4.28-1.147a25.058 25.058 0 0 0 4.194 7.487 25.198 25.198 0 0 0 6.505 5.675 21.888 21.888 0 0 1-3.91 3.937Zm8.281-14.343a21.896 21.896 0 0 1-2.227 7.028 21.221 21.221 0 0 1-8.962-10.823l11.072-2.967c.39 2.24.431 4.507.117 6.762Z" }) }));
3
+ export const Sport = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M57.114 25.27C54.001 13.655 43.497 5.994 32.016 5.995c-2.227 0-4.492.288-6.745.892C11.4 10.602 3.169 24.859 6.886 38.729c3.113 11.617 13.617 19.277 25.098 19.277 2.227 0 4.492-.288 6.745-.892 13.87-3.716 22.102-17.973 18.385-31.843Zm-15.581-4.816a21.224 21.224 0 0 1 2.39-6.943 21.904 21.904 0 0 1 6.265 6.099 21.854 21.854 0 0 1 2.457 4.788l-11.072 2.966a21.082 21.082 0 0 1-.04-6.91Zm-9.516-10.46a21.837 21.837 0 0 1 8.361 1.663 25.197 25.197 0 0 0-2.795 8.167 25.055 25.055 0 0 0 .11 8.58l-4.279 1.146-5.153-19.23c1.244-.217 2.5-.326 3.756-.326Zm-13.534 4.64a21.773 21.773 0 0 1 5.915-3.28l5.152 19.232-4.07 1.09a25.057 25.057 0 0 0-4.194-7.486 25.199 25.199 0 0 0-6.618-5.744 21.883 21.883 0 0 1 3.815-3.812Zm-8.281 14.343a21.899 21.899 0 0 1 2.3-7.167 21.227 21.227 0 0 1 5.679 4.901 21.08 21.08 0 0 1 3.42 6.005l-11.282 3.023a21.77 21.77 0 0 1-.117-6.762ZM22.677 43.49a21.226 21.226 0 0 1-2.468 7.084 21.905 21.905 0 0 1-6.397-6.184 21.852 21.852 0 0 1-2.457-4.788l11.281-3.022c.393 2.29.408 4.607.04 6.91Zm9.307 10.517a21.84 21.84 0 0 1-8.216-1.604 25.199 25.199 0 0 0 2.858-8.283c.457-2.862.42-5.74-.11-8.58l4.07-1.09 5.153 19.23a21.94 21.94 0 0 1-3.755.327Zm13.533-4.641a21.771 21.771 0 0 1-5.915 3.28L34.45 33.413l4.28-1.147a25.058 25.058 0 0 0 4.194 7.487 25.198 25.198 0 0 0 6.505 5.675 21.888 21.888 0 0 1-3.91 3.937Zm8.281-14.343a21.896 21.896 0 0 1-2.227 7.028 21.221 21.221 0 0 1-8.962-10.823l11.072-2.967c.39 2.24.431 4.507.117 6.762Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Star = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "m32 14.07 4.89 8.56.81 1.43 1.58.44 10.43 2.92-6.79 5.83-1.75 1.5.43 2.25 1.79 9.66-9.72-4.44-1.66-.76-1.66.76-9.72 4.44L22.42 37l.42-2.26-1.75-1.5-6.79-5.83 10.43-2.91 1.58-.44.81-1.43L32 14.07ZM32 6l-8.36 14.64L6 25.57l12.47 10.71-3.19 17.22L32 45.86l16.72 7.64-3.19-17.22L58 25.58l-17.64-4.93L32 6Z" }) }));
3
+ export const Star = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m32 14.07 4.89 8.56.81 1.43 1.58.44 10.43 2.92-6.79 5.83-1.75 1.5.43 2.25 1.79 9.66-9.72-4.44-1.66-.76-1.66.76-9.72 4.44L22.42 37l.42-2.26-1.75-1.5-6.79-5.83 10.43-2.91 1.58-.44.81-1.43L32 14.07ZM32 6l-8.36 14.64L6 25.57l12.47 10.71-3.19 17.22L32 45.86l16.72 7.64-3.19-17.22L58 25.58l-17.64-4.93L32 6Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const StoreLocator = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "M22.804 31.99h-1.998v16.189h1.998V31.99ZM32.998 31.99H31v16.104h1.998V31.99ZM48.979 39.942c1.369 0 2.841.481 3.938 1.287 1.283.942 1.961 2.285 1.961 3.885 0 1.6-1.177 3.712-3.314 6.169a35.57 35.57 0 0 1-2.595 2.667 33.308 33.308 0 0 1-2.578-2.61c-2.134-2.428-3.31-4.639-3.31-6.226 0-1.706.638-2.994 1.949-3.939 1.072-.772 2.548-1.233 3.949-1.233Zm0-3c-2.037 0-4.116.656-5.702 1.798-2.091 1.506-3.196 3.71-3.196 6.374 0 2.382 1.365 5.143 4.056 8.206a35.313 35.313 0 0 0 3.857 3.756l.999.809h.001l.987-.822c.078-.066 1.951-1.634 3.846-3.81 2.687-3.09 4.051-5.827 4.051-8.138 0-2.556-1.131-4.794-3.185-6.303a9.864 9.864 0 0 0-5.714-1.869v-.001Z" }), _jsx(Path, { fill: "currentColor", d: "m50.586 45.098-.477-1.782-.128-.478-.479.129-1.782.477-.478.128.128.477.477 1.782.128.477.479-.128 1.781-.478.479-.128-.128-.477v.001ZM42.107 37.117c.281-.203.577-.391.881-.567v-4.56H40.99v6.06c.344-.333.716-.644 1.117-.933Z" }), _jsx(Path, { fill: "currentColor", d: "M42.634 54.64a29.981 29.981 0 0 1-.567-.664H16.002V32.029h-5.977v-6.001h43.951v6.001h-4.053v2.954c1.339.115 2.678.469 3.911 1.027h4.139V22.033h-5.757L45.55 7.085h-6.715v-.999H25.166v.999h-6.502l-6.859 14.948h-1.776a4 4 0 0 0-4 4v6.015a4 4 0 0 0 4 4h1.977v17.924a4 4 0 0 0 4 4h29.959a38.207 38.207 0 0 1-3.331-3.333v.001ZM19.99 9.081h5.175v.999h13.669v-.999h5.375l5.847 12.951H13.973l6.016-12.951h.001Z" })] }));
3
+ export const StoreLocator = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M22.804 31.99h-1.998v16.189h1.998V31.99ZM32.998 31.99H31v16.104h1.998V31.99ZM48.979 39.942c1.369 0 2.841.481 3.938 1.287 1.283.942 1.961 2.285 1.961 3.885 0 1.6-1.177 3.712-3.314 6.169a35.57 35.57 0 0 1-2.595 2.667 33.308 33.308 0 0 1-2.578-2.61c-2.134-2.428-3.31-4.639-3.31-6.226 0-1.706.638-2.994 1.949-3.939 1.072-.772 2.548-1.233 3.949-1.233Zm0-3c-2.037 0-4.116.656-5.702 1.798-2.091 1.506-3.196 3.71-3.196 6.374 0 2.382 1.365 5.143 4.056 8.206a35.313 35.313 0 0 0 3.857 3.756l.999.809h.001l.987-.822c.078-.066 1.951-1.634 3.846-3.81 2.687-3.09 4.051-5.827 4.051-8.138 0-2.556-1.131-4.794-3.185-6.303a9.864 9.864 0 0 0-5.714-1.869v-.001Z" }), _jsx(Path, { fill: "currentColor", d: "m50.586 45.098-.477-1.782-.128-.478-.479.129-1.782.477-.478.128.128.477.477 1.782.128.477.479-.128 1.781-.478.479-.128-.128-.477v.001ZM42.107 37.117c.281-.203.577-.391.881-.567v-4.56H40.99v6.06c.344-.333.716-.644 1.117-.933Z" }), _jsx(Path, { fill: "currentColor", d: "M42.634 54.64a29.981 29.981 0 0 1-.567-.664H16.002V32.029h-5.977v-6.001h43.951v6.001h-4.053v2.954c1.339.115 2.678.469 3.911 1.027h4.139V22.033h-5.757L45.55 7.085h-6.715v-.999H25.166v.999h-6.502l-6.859 14.948h-1.776a4 4 0 0 0-4 4v6.015a4 4 0 0 0 4 4h1.977v17.924a4 4 0 0 0 4 4h29.959a38.207 38.207 0 0 1-3.331-3.333v.001ZM19.99 9.081h5.175v.999h13.669v-.999h5.375l5.847 12.951H13.973l6.016-12.951h.001Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const StrobeLights = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "M34.702 19.175h-5.41V17.53l1.471-1.65V9.371h2.474v6.508l1.471 1.65v1.642l3-.804v-1.98l-1.471-1.65V6.371h-8.474v8.365l-1.471 1.65v5.788h9.213l-.803-3ZM32.159 24.585l9.309 34.543h4.142l-9.309-34.543H32.16ZM22.612 59.128l9.31-34.543h-4.144L18.47 59.128h4.143ZM18.756 21.616l5.606 5.59-.603 2.223-6.797-6.777 1.794-1.036ZM15.977 23.22l4.69 17.602-1.046 3.848-5.438-20.414 1.794-1.036ZM51.196 20.417l-3.605-2.082.67-1.161 1.539-.508 2.414-4.182 1.74 1.005-2.414 4.182.33 1.586-.665 1.15 2 .535.777-1.345-.329-1.586 3.034-5.254-5.205-3.005-3.033 5.254-1.538.508-2.052 3.553 5.801 3.35.536-2ZM45.291 21.616l-5.606 5.59.603 2.223 6.797-6.777-1.794-1.036ZM48.07 23.22l-4.689 17.602 1.045 3.848 5.438-20.414-1.794-1.036ZM16.453 18.425l-3.604 2.082-.67-1.16.328-1.587-2.415-4.181 1.74-1.005 2.415 4.181 1.538.508.664 1.15 1.464-1.465-.777-1.346-1.538-.507-3.034-5.254-5.204 3.006 3.034 5.254-.329 1.585 2.052 3.553 5.8-3.35-1.464-1.464Z" }) }));
3
+ export const StrobeLights = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M34.702 19.175h-5.41V17.53l1.471-1.65V9.371h2.474v6.508l1.471 1.65v1.642l3-.804v-1.98l-1.471-1.65V6.371h-8.474v8.365l-1.471 1.65v5.788h9.213l-.803-3ZM32.159 24.585l9.309 34.543h4.142l-9.309-34.543H32.16ZM22.612 59.128l9.31-34.543h-4.144L18.47 59.128h4.143ZM18.756 21.616l5.606 5.59-.603 2.223-6.797-6.777 1.794-1.036ZM15.977 23.22l4.69 17.602-1.046 3.848-5.438-20.414 1.794-1.036ZM51.196 20.417l-3.605-2.082.67-1.161 1.539-.508 2.414-4.182 1.74 1.005-2.414 4.182.33 1.586-.665 1.15 2 .535.777-1.345-.329-1.586 3.034-5.254-5.205-3.005-3.033 5.254-1.538.508-2.052 3.553 5.801 3.35.536-2ZM45.291 21.616l-5.606 5.59.603 2.223 6.797-6.777-1.794-1.036ZM48.07 23.22l-4.689 17.602 1.045 3.848 5.438-20.414-1.794-1.036ZM16.453 18.425l-3.604 2.082-.67-1.16.328-1.587-2.415-4.181 1.74-1.005 2.415 4.181 1.538.508.664 1.15 1.464-1.465-.777-1.346-1.538-.507-3.034-5.254-5.204 3.006 3.034 5.254-.329 1.585 2.052 3.553 5.8-3.35-1.464-1.464Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const StrobeLights2 = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "m36.851 30.872-1.93.522 6.684 24.734 1.93-.522-6.684-24.734ZM27.15 30.866l-6.685 24.733 1.93.522 6.685-24.734-1.93-.521ZM36.614 24.438l.054-.014h-8.715V22.74c0-.282.23-.511.512-.511h7.695c.283 0 .512.23.512.511v1.683l4-1.072v-.61c0-1.654-.894-3.101-2.223-3.887V5.074H26.176v13.78a4.513 4.513 0 0 0-2.223 3.887v5.683h13.729l-1.068-3.986ZM30.176 9.075h4.273v9.154h-4.273V9.075Z" }) }));
3
+ export const StrobeLights2 = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m36.851 30.872-1.93.522 6.684 24.734 1.93-.522-6.684-24.734ZM27.15 30.866l-6.685 24.733 1.93.522 6.685-24.734-1.93-.521ZM36.614 24.438l.054-.014h-8.715V22.74c0-.282.23-.511.512-.511h7.695c.283 0 .512.23.512.511v1.683l4-1.072v-.61c0-1.654-.894-3.101-2.223-3.887V5.074H26.176v13.78a4.513 4.513 0 0 0-2.223 3.887v5.683h13.729l-1.068-3.986ZM30.176 9.075h4.273v9.154h-4.273V9.075Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Sun = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "M40.5 17.28C37.82 15.73 34.9 15 32.02 15c-5.88 0-11.59 3.05-14.74 8.5-4.69 8.13-1.91 18.53 6.22 23.22 2.68 1.55 5.6 2.28 8.48 2.28 5.88 0 11.59-3.05 14.74-8.5 4.7-8.13 1.91-18.53-6.22-23.22Zm2.76 21.22a12.942 12.942 0 0 1-4.85 4.81c-1.96 1.1-4.18 1.69-6.42 1.69s-4.51-.6-6.48-1.75a12.928 12.928 0 0 1-6.06-7.89c-.9-3.35-.44-6.86 1.3-9.86 1.16-2.01 2.84-3.68 4.85-4.81 1.96-1.11 4.18-1.69 6.42-1.69s4.51.6 6.48 1.74c3.01 1.74 5.16 4.54 6.06 7.89.9 3.35.44 6.86-1.3 9.87ZM44.132 8.983l-2.76 4.78 1.732 1 2.76-4.78-1.732-1ZM9.981 18.137l-1 1.732 4.78 2.76 1-1.732-4.78-2.76ZM20.895 49.238l-2.76 4.78 1.732 1 2.76-4.78-1.732-1ZM50.236 41.374l-1 1.732 4.78 2.76 1-1.732-4.78-2.76ZM56.727 23.827l-5.332 1.428.777 2.898 5.331-1.428-.776-2.898ZM26.714 6.497l-2.898.777 1.428 5.332 2.898-.777-1.428-5.332ZM11.825 35.847l-5.331 1.428.776 2.898 5.332-1.429-.777-2.897ZM38.753 51.394l-2.898.776 1.429 5.332 2.897-.776-1.428-5.332Z" }) }));
3
+ export const Sun = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M40.5 17.28C37.82 15.73 34.9 15 32.02 15c-5.88 0-11.59 3.05-14.74 8.5-4.69 8.13-1.91 18.53 6.22 23.22 2.68 1.55 5.6 2.28 8.48 2.28 5.88 0 11.59-3.05 14.74-8.5 4.7-8.13 1.91-18.53-6.22-23.22Zm2.76 21.22a12.942 12.942 0 0 1-4.85 4.81c-1.96 1.1-4.18 1.69-6.42 1.69s-4.51-.6-6.48-1.75a12.928 12.928 0 0 1-6.06-7.89c-.9-3.35-.44-6.86 1.3-9.86 1.16-2.01 2.84-3.68 4.85-4.81 1.96-1.11 4.18-1.69 6.42-1.69s4.51.6 6.48 1.74c3.01 1.74 5.16 4.54 6.06 7.89.9 3.35.44 6.86-1.3 9.87ZM44.132 8.983l-2.76 4.78 1.732 1 2.76-4.78-1.732-1ZM9.981 18.137l-1 1.732 4.78 2.76 1-1.732-4.78-2.76ZM20.895 49.238l-2.76 4.78 1.732 1 2.76-4.78-1.732-1ZM50.236 41.374l-1 1.732 4.78 2.76 1-1.732-4.78-2.76ZM56.727 23.827l-5.332 1.428.777 2.898 5.331-1.428-.776-2.898ZM26.714 6.497l-2.898.777 1.428 5.332 2.898-.777-1.428-5.332ZM11.825 35.847l-5.331 1.428.776 2.898 5.332-1.429-.777-2.897ZM38.753 51.394l-2.898.776 1.429 5.332 2.897-.776-1.428-5.332Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Tado = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "M46.054 23.309c-1.514 0-2.78 1.198-2.78 2.724 0 1.526 1.233 2.725 2.764 2.725 1.53 0 2.797-1.15 2.797-2.725 0-1.575-1.267-2.724-2.78-2.724h-.001Zm0 3.808c-.576 0-1.004-.427-1.004-1.083 0-.655.428-1.05 1.004-1.05.575 0 .986.427.986 1.05 0 .624-.41 1.083-.986 1.083Zm-26.77-3.779c2.443 0 3.951 1.587 3.951 3.485 0 1.373-.737 2.503-2.098 3.304l-2.017 1.195c-.311.196-.573.409-.722.72h4.92V34.2h-8.084c0-1.947.558-3.55 2.51-4.678l1.737-1.014c.836-.491 1.164-.932 1.164-1.636 0-.704-.475-1.26-1.426-1.26-1 0-1.492.688-1.492 1.57 0 .213.033.442.1.654L15.4 27.82c-.05-.132-.1-.557-.1-.884 0-1.898 1.427-3.599 3.985-3.599v.001Zm9.886.246V34.2h-2.574v-6.903h-2.541v-1.718c1.59-.017 2.72-.916 2.902-1.996h2.213Zm3.721 7.377.705 2.699-2.705.703-.705-2.7 2.706-.703Zm5.547-7.623c-1.722 0-2.902.753-3.607 1.816-.737 1.112-.934 2.437-.934 3.745 0 1.31.197 2.633.934 3.746.705 1.047 1.885 1.815 3.607 1.815 1.722 0 2.918-.769 3.624-1.815.737-1.113.934-2.437.934-3.746 0-1.308-.197-2.633-.934-3.745-.705-1.063-1.885-1.816-3.624-1.816Zm0 8.85c-.787 0-1.262-.393-1.558-.982-.295-.621-.393-1.456-.393-2.307 0-.85.099-1.684.393-2.306.296-.589.771-.982 1.558-.982s1.262.393 1.558.982c.311.621.41 1.455.41 2.306s-.099 1.685-.41 2.307c-.296.589-.754.981-1.558.981ZM24.066 49.895l-4.855-3.042 1.118-1.777 3.737 2.34 3.738-2.34 1.118 1.777-4.856 3.042Zm18.825-.35-3.738-2.341-3.737 2.34-1.118-1.778 4.855-3.04 4.856 3.04-1.118 1.778Zm14.085 2.89V6.243H10.45a4.203 4.203 0 0 0-4.207 4.198v43.116a4.203 4.203 0 0 0 4.207 4.198h43.444l-1.127-4.196 4.208-1.125Zm-4.208 1.122H10.451V10.442h42.317v43.116Z" }) }));
3
+ export const Tado = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M46.054 23.309c-1.514 0-2.78 1.198-2.78 2.724 0 1.526 1.233 2.725 2.764 2.725 1.53 0 2.797-1.15 2.797-2.725 0-1.575-1.267-2.724-2.78-2.724h-.001Zm0 3.808c-.576 0-1.004-.427-1.004-1.083 0-.655.428-1.05 1.004-1.05.575 0 .986.427.986 1.05 0 .624-.41 1.083-.986 1.083Zm-26.77-3.779c2.443 0 3.951 1.587 3.951 3.485 0 1.373-.737 2.503-2.098 3.304l-2.017 1.195c-.311.196-.573.409-.722.72h4.92V34.2h-8.084c0-1.947.558-3.55 2.51-4.678l1.737-1.014c.836-.491 1.164-.932 1.164-1.636 0-.704-.475-1.26-1.426-1.26-1 0-1.492.688-1.492 1.57 0 .213.033.442.1.654L15.4 27.82c-.05-.132-.1-.557-.1-.884 0-1.898 1.427-3.599 3.985-3.599v.001Zm9.886.246V34.2h-2.574v-6.903h-2.541v-1.718c1.59-.017 2.72-.916 2.902-1.996h2.213Zm3.721 7.377.705 2.699-2.705.703-.705-2.7 2.706-.703Zm5.547-7.623c-1.722 0-2.902.753-3.607 1.816-.737 1.112-.934 2.437-.934 3.745 0 1.31.197 2.633.934 3.746.705 1.047 1.885 1.815 3.607 1.815 1.722 0 2.918-.769 3.624-1.815.737-1.113.934-2.437.934-3.746 0-1.308-.197-2.633-.934-3.745-.705-1.063-1.885-1.816-3.624-1.816Zm0 8.85c-.787 0-1.262-.393-1.558-.982-.295-.621-.393-1.456-.393-2.307 0-.85.099-1.684.393-2.306.296-.589.771-.982 1.558-.982s1.262.393 1.558.982c.311.621.41 1.455.41 2.306s-.099 1.685-.41 2.307c-.296.589-.754.981-1.558.981ZM24.066 49.895l-4.855-3.042 1.118-1.777 3.737 2.34 3.738-2.34 1.118 1.777-4.856 3.042Zm18.825-.35-3.738-2.341-3.737 2.34-1.118-1.778 4.855-3.04 4.856 3.04-1.118 1.778Zm14.085 2.89V6.243H10.45a4.203 4.203 0 0 0-4.207 4.198v43.116a4.203 4.203 0 0 0 4.207 4.198h43.444l-1.127-4.196 4.208-1.125Zm-4.208 1.122H10.451V10.442h42.317v43.116Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const TapsAndToilets = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "m44.095 39.608-.637-.516-.63.525c-.539.449-5.263 4.484-5.263 7.95 0 3.736 3.452 5.416 5.902 5.416 1.351 0 2.73-.434 3.784-1.194 1.385-.997 2.117-2.458 2.117-4.222 0-3.582-4.733-7.521-5.272-7.959Zm1.988 10.56c-.71.512-1.688.816-2.616.816-1.51 0-3.904-.928-3.904-3.418 0-1.693 2.187-4.27 3.907-5.855.451.41 1.087 1.023 1.716 1.74 1.408 1.608 2.184 3.07 2.184 4.115 0 1.111-.433 1.986-1.287 2.601v.001Z" }), _jsx(Path, { fill: "currentColor", d: "M32 6.001c-10.017 0-18.167 8.15-18.167 18.167v30.808h-2.894v2.997h19.458v-2.997h-3.33V24.168a4.937 4.937 0 0 1 4.931-4.931 4.937 4.937 0 0 1 4.932 4.931v7.434h13.235v-7.434c0-10.017-8.15-18.167-18.166-18.167Zm14.17 21.605h-5.243v-3.438c0-4.922-4.005-8.927-8.927-8.927-4.923 0-8.928 4.005-8.928 8.927v30.808h-5.244V24.168c0-7.814 6.357-14.171 14.172-14.171 7.814 0 14.17 6.357 14.17 14.171v3.438Z" }), _jsx(Path, { fill: "currentColor", d: "M50.06 33.354H36.83v2.997h13.23v-2.997Z" })] }));
3
+ export const TapsAndToilets = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "m44.095 39.608-.637-.516-.63.525c-.539.449-5.263 4.484-5.263 7.95 0 3.736 3.452 5.416 5.902 5.416 1.351 0 2.73-.434 3.784-1.194 1.385-.997 2.117-2.458 2.117-4.222 0-3.582-4.733-7.521-5.272-7.959Zm1.988 10.56c-.71.512-1.688.816-2.616.816-1.51 0-3.904-.928-3.904-3.418 0-1.693 2.187-4.27 3.907-5.855.451.41 1.087 1.023 1.716 1.74 1.408 1.608 2.184 3.07 2.184 4.115 0 1.111-.433 1.986-1.287 2.601v.001Z" }), _jsx(Path, { fill: "currentColor", d: "M32 6.001c-10.017 0-18.167 8.15-18.167 18.167v30.808h-2.894v2.997h19.458v-2.997h-3.33V24.168a4.937 4.937 0 0 1 4.931-4.931 4.937 4.937 0 0 1 4.932 4.931v7.434h13.235v-7.434c0-10.017-8.15-18.167-18.166-18.167Zm14.17 21.605h-5.243v-3.438c0-4.922-4.005-8.927-8.927-8.927-4.923 0-8.928 4.005-8.928 8.927v30.808h-5.244V24.168c0-7.814 6.357-14.171 14.172-14.171 7.814 0 14.17 6.357 14.17 14.171v3.438Z" }), _jsx(Path, { fill: "currentColor", d: "M50.06 33.354H36.83v2.997h13.23v-2.997Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const TentFront = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "M32.059 6.032 6.042 57.973l51.914-.002L32.059 6.032Zm-.009 8.948 19.442 38.991h-9.916l-9.559-35.28-9.344 35.281H12.519L32.05 14.98Zm7.454 38.991H24.743L32.04 26.42l7.465 27.551h-.001Z" }) }));
3
+ export const TentFront = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M32.059 6.032 6.042 57.973l51.914-.002L32.059 6.032Zm-.009 8.948 19.442 38.991h-9.916l-9.559-35.28-9.344 35.281H12.519L32.05 14.98Zm7.454 38.991H24.743L32.04 26.42l7.465 27.551h-.001Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const TentSide = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "m57.936 47.87-9.554-35.753v-.101h-.027l-.014-.054-.206.055-32.441.207-.096-.026-9.523 35.63.093.025H6.11v4l51.877.017v-4h-.052Zm-47.728-.016 8.459-31.649 25.752-.164-8.506 31.822-25.706-.008.001-.001Zm34.701.011-6.925-.002 6.925-25.907v25.909Zm2 .001V22.099l6.886 25.769-6.886-.002Z" }) }));
3
+ export const TentSide = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m57.936 47.87-9.554-35.753v-.101h-.027l-.014-.054-.206.055-32.441.207-.096-.026-9.523 35.63.093.025H6.11v4l51.877.017v-4h-.052Zm-47.728-.016 8.459-31.649 25.752-.164-8.506 31.822-25.706-.008.001-.001Zm34.701.011-6.925-.002 6.925-25.907v25.909Zm2 .001V22.099l6.886 25.769-6.886-.002Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Terraced = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "m31.384 41.59-3.917 1.05 1.05 3.917 3.916-1.05-1.05-3.916Z" }), _jsx(Path, { fill: "currentColor", d: "M63.938 18.416v-4.543l-10.776 5.803-.13.07-.13-.07L33.895 9.442 32 8.422l-1.896 1.02-19.005 10.234-.13.07-.131-.07-11.107-5.98v4.542l9.21 4.96v27.776h-9.21v4h13.21v-.008c.083.005.166.008.25.008h12.266V35.284h13.086V54.974h25.396v-4h-8.88V23.198l8.88-4.782ZM51.005 50.974h-8.462v-19.69H21.457v19.69H13.19a.195.195 0 0 1-.195-.195V23.198L32 12.964l19.005 10.234v27.776Z" })] }));
3
+ export const Terraced = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "m31.384 41.59-3.917 1.05 1.05 3.917 3.916-1.05-1.05-3.916Z" }), _jsx(Path, { fill: "currentColor", d: "M63.938 18.416v-4.543l-10.776 5.803-.13.07-.13-.07L33.895 9.442 32 8.422l-1.896 1.02-19.005 10.234-.13.07-.131-.07-11.107-5.98v4.542l9.21 4.96v27.776h-9.21v4h13.21v-.008c.083.005.166.008.25.008h12.266V35.284h13.086V54.974h25.396v-4h-8.88V23.198l8.88-4.782ZM51.005 50.974h-8.462v-19.69H21.457v19.69H13.19a.195.195 0 0 1-.195-.195V23.198L32 12.964l19.005 10.234v27.776Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const TheGrid = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "M42 6H22L6 17.29v8.12h4v-4.49h11.91v9.88l-9.97 20.42V58h4v-5.3l32.19-.02V58h4v-6.79L42 30.79v-9.87h12v4.49h4v-8.12L42 6Zm-16.09 4.02H38v8.9H25.91v-8.9Zm0 10.9H38v8.34H25.91v-8.34Zm9.92 12.34-3.85 3.02-3.88-3.02h7.73ZM10.61 18.92l11.29-8v8H10.61Zm14.46 14.51 5.28 4.12-11.82 9.27 6.54-13.39ZM16.83 50.7l15.15-11.88 15.21 11.86-30.36.02Zm28.65-3.89L33.6 37.55l5.25-4.11 6.63 13.37ZM42 18.92V10.9l11.38 8.02H42Z" }) }));
3
+ export const TheGrid = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M42 6H22L6 17.29v8.12h4v-4.49h11.91v9.88l-9.97 20.42V58h4v-5.3l32.19-.02V58h4v-6.79L42 30.79v-9.87h12v4.49h4v-8.12L42 6Zm-16.09 4.02H38v8.9H25.91v-8.9Zm0 10.9H38v8.34H25.91v-8.34Zm9.92 12.34-3.85 3.02-3.88-3.02h7.73ZM10.61 18.92l11.29-8v8H10.61Zm14.46 14.51 5.28 4.12-11.82 9.27 6.54-13.39ZM16.83 50.7l15.15-11.88 15.21 11.86-30.36.02Zm28.65-3.89L33.6 37.55l5.25-4.11 6.63 13.37ZM42 18.92V10.9l11.38 8.02H42Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const ThumbsDown = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "m49.333 11.744-.005 4.082H39.003l.536 2h9.786l-.006 4.25H38.877l.536 2h9.904l-.006 4.251H38.899l.536 2h9.873l-.006 4.338H32.85l3.036 11.183c.21.769.206 1.58-.007 2.348a4.442 4.442 0 0 1-3.823 3.215L27.71 35.186a6.274 6.274 0 0 0-4.088-4.34l-3.06-1.019V15.07h1.506c2.013 0 3.905-.849 5.19-2.329a3.003 3.003 0 0 1 2.269-1.035h19.75l-1.073-4H29.526c-2.03 0-3.957.88-5.288 2.412a2.807 2.807 0 0 1-1.728.92V8.342h-9.126a3.96 3.96 0 0 0-3.955 3.955v22.974c0 2.25 1.83 4.08 4.081 4.08h9.017l.036-4.63c.63.28 1.102.827 1.282 1.5l5.148 19.212h2.623a8.452 8.452 0 0 0 8.116-6.163 8.429 8.429 0 0 0 .015-4.47l-1.666-6.135h11.391a3.835 3.835 0 0 0 3.83-3.825l.033-24.168-4.002 1.072ZM18.561 35.056l-.003.296H13.51a.081.081 0 0 1-.081-.081V12.34h5.081v2.728h.05v19.987Z" }) }));
3
+ export const ThumbsDown = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m49.333 11.744-.005 4.082H39.003l.536 2h9.786l-.006 4.25H38.877l.536 2h9.904l-.006 4.251H38.899l.536 2h9.873l-.006 4.338H32.85l3.036 11.183c.21.769.206 1.58-.007 2.348a4.442 4.442 0 0 1-3.823 3.215L27.71 35.186a6.274 6.274 0 0 0-4.088-4.34l-3.06-1.019V15.07h1.506c2.013 0 3.905-.849 5.19-2.329a3.003 3.003 0 0 1 2.269-1.035h19.75l-1.073-4H29.526c-2.03 0-3.957.88-5.288 2.412a2.807 2.807 0 0 1-1.728.92V8.342h-9.126a3.96 3.96 0 0 0-3.955 3.955v22.974c0 2.25 1.83 4.08 4.081 4.08h9.017l.036-4.63c.63.28 1.102.827 1.282 1.5l5.148 19.212h2.623a8.452 8.452 0 0 0 8.116-6.163 8.429 8.429 0 0 0 .015-4.47l-1.666-6.135h11.391a3.835 3.835 0 0 0 3.83-3.825l.033-24.168-4.002 1.072ZM18.561 35.056l-.003.296H13.51a.081.081 0 0 1-.081-.081V12.34h5.081v2.728h.05v19.987Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const ThumbsUp = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "m53.332 50.377-.03-22.083a3.835 3.835 0 0 0-3.83-3.825H38.081l1.666-6.135a8.43 8.43 0 0 0-.015-4.47 8.452 8.452 0 0 0-8.116-6.163h-2.623l-5.148 19.211a2.284 2.284 0 0 1-1.282 1.5l-.036-4.63H13.51a4.086 4.086 0 0 0-4.081 4.081v22.974a3.96 3.96 0 0 0 3.955 3.955h9.126v-2.727h1.032a7.034 7.034 0 0 0 5.984 3.363h20.899l-1.069-3.986 3.976-1.065ZM18.56 48.065h-.05v2.727h-5.082V27.863c0-.045.036-.081.081-.081h5.048l.003.296v19.987Zm10.965 3.363a3.016 3.016 0 0 1-2.584-1.471 3.86 3.86 0 0 0-3.302-1.892h-3.08V33.307l3.06-1.02a6.274 6.274 0 0 0 4.089-4.34l4.347-16.224a4.442 4.442 0 0 1 3.823 3.215c.214.767.216 1.58.008 2.348L32.85 28.469h16.452l.006 4.337H38.934l.536 2h9.84l.007 4.251H38.808l.536 2h9.975l.006 4.25H38.829l.536 2h9.963l.005 4.121H29.526Z" }) }));
3
+ export const ThumbsUp = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m53.332 50.377-.03-22.083a3.835 3.835 0 0 0-3.83-3.825H38.081l1.666-6.135a8.43 8.43 0 0 0-.015-4.47 8.452 8.452 0 0 0-8.116-6.163h-2.623l-5.148 19.211a2.284 2.284 0 0 1-1.282 1.5l-.036-4.63H13.51a4.086 4.086 0 0 0-4.081 4.081v22.974a3.96 3.96 0 0 0 3.955 3.955h9.126v-2.727h1.032a7.034 7.034 0 0 0 5.984 3.363h20.899l-1.069-3.986 3.976-1.065ZM18.56 48.065h-.05v2.727h-5.082V27.863c0-.045.036-.081.081-.081h5.048l.003.296v19.987Zm10.965 3.363a3.016 3.016 0 0 1-2.584-1.471 3.86 3.86 0 0 0-3.302-1.892h-3.08V33.307l3.06-1.02a6.274 6.274 0 0 0 4.089-4.34l4.347-16.224a4.442 4.442 0 0 1 3.823 3.215c.214.767.216 1.58.008 2.348L32.85 28.469h16.452l.006 4.337H38.934l.536 2h9.84l.007 4.251H38.808l.536 2h9.975l.006 4.25H38.829l.536 2h9.963l.005 4.121H29.526Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Ticket = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "M44.936 30.053h-2v4.487h2v-4.486ZM44.936 36.036h-2v4.487h2v-4.487ZM44.936 24.07h-2v4.488h2V24.07Z" }), _jsx(Path, { fill: "currentColor", d: "M57.527 26.872c.139 0 .276.007.412.019v-9.434H6v9.417l.087-.002a4.838 4.838 0 0 1 0 9.677L6 36.546v9.997h49.006l-1.068-3.987 4-1.072V36.53a4.838 4.838 0 1 1-.412-9.658Zm-3.588-3.239c-3.09 1.379-5.25 4.48-5.25 8.077 0 3.597 2.16 6.699 5.25 8.077v2.756h-9.003v-.524h-2v.524H10v-2.908c2.916-1.446 4.926-4.455 4.926-7.925 0-3.47-2.01-6.478-4.926-7.924v-2.329h32.936v1.118h2v-1.118h9.003v2.176Z" })] }));
3
+ export const Ticket = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M44.936 30.053h-2v4.487h2v-4.486ZM44.936 36.036h-2v4.487h2v-4.487ZM44.936 24.07h-2v4.488h2V24.07Z" }), _jsx(Path, { fill: "currentColor", d: "M57.527 26.872c.139 0 .276.007.412.019v-9.434H6v9.417l.087-.002a4.838 4.838 0 0 1 0 9.677L6 36.546v9.997h49.006l-1.068-3.987 4-1.072V36.53a4.838 4.838 0 1 1-.412-9.658Zm-3.588-3.239c-3.09 1.379-5.25 4.48-5.25 8.077 0 3.597 2.16 6.699 5.25 8.077v2.756h-9.003v-.524h-2v.524H10v-2.908c2.916-1.446 4.926-4.455 4.926-7.925 0-3.47-2.01-6.478-4.926-7.924v-2.329h32.936v1.118h2v-1.118h9.003v2.176Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const TimeRunningOut = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "M46.87 35.75c-6.15 0-11.13 4.98-11.13 11.13S40.73 58 46.87 58C53.01 58 58 53.02 58 46.87s-4.98-11.12-11.13-11.12Zm0 19.25c-4.48 0-8.13-3.65-8.13-8.13s3.65-8.13 8.13-8.13S55 42.39 55 46.87 51.35 55 46.87 55Z" }), _jsx(Path, { fill: "currentColor", d: "m48.114 49.801-2.938.78.78 2.939 2.938-.78-.78-2.939ZM48.15 49.28l.7-8.5h-3.64l.7 8.5h2.24ZM45.16 18.002l-3.158.846.846 3.158 3.159-.846-.846-3.159ZM21.851 42.002l-3.158.846.846 3.159 3.158-.846-.846-3.159ZM21.18 18.821l-3.159.846.846 3.159 3.159-.846-.846-3.159ZM39.84 29.13l-6.43 1.72-2.66-9.92-3.86 1.03 3.7 13.79 10.29-2.76-1.04-3.86ZM33 47h-2v5h2v-5ZM52 31h-5v2h5v-2ZM33 12h-2v5h2v-5ZM17 31h-5v2h5v-2Z" }), _jsx(Path, { fill: "currentColor", d: "M35.67 53.7c-1.2.2-2.43.3-3.67.3-2.97 0-5.85-.58-8.56-1.73a21.96 21.96 0 0 1-6.99-4.72 22.072 22.072 0 0 1-4.72-6.99C10.58 37.86 10 34.98 10 32c0-2.98.58-5.85 1.73-8.56 1.11-2.62 2.69-4.97 4.72-6.99 2.02-2.02 4.38-3.61 6.99-4.72C26.15 10.58 29.03 10 32 10c2.97 0 5.85.58 8.56 1.73 2.62 1.11 4.97 2.69 6.99 4.72 2.02 2.02 3.61 4.38 4.72 6.99C53.42 26.15 54 29.03 54 32c0 1.24-.1 2.46-.3 3.66 1.31.8 2.48 1.83 3.43 3.02.57-2.13.87-4.37.87-6.68C58 17.64 46.36 6 32 6S6 17.65 6 32s11.64 26 26 26c2.32 0 4.56-.3 6.7-.87-1.2-.96-2.23-2.12-3.03-3.43Z" })] }));
3
+ export const TimeRunningOut = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M46.87 35.75c-6.15 0-11.13 4.98-11.13 11.13S40.73 58 46.87 58C53.01 58 58 53.02 58 46.87s-4.98-11.12-11.13-11.12Zm0 19.25c-4.48 0-8.13-3.65-8.13-8.13s3.65-8.13 8.13-8.13S55 42.39 55 46.87 51.35 55 46.87 55Z" }), _jsx(Path, { fill: "currentColor", d: "m48.114 49.801-2.938.78.78 2.939 2.938-.78-.78-2.939ZM48.15 49.28l.7-8.5h-3.64l.7 8.5h2.24ZM45.16 18.002l-3.158.846.846 3.158 3.159-.846-.846-3.159ZM21.851 42.002l-3.158.846.846 3.159 3.158-.846-.846-3.159ZM21.18 18.821l-3.159.846.846 3.159 3.159-.846-.846-3.159ZM39.84 29.13l-6.43 1.72-2.66-9.92-3.86 1.03 3.7 13.79 10.29-2.76-1.04-3.86ZM33 47h-2v5h2v-5ZM52 31h-5v2h5v-2ZM33 12h-2v5h2v-5ZM17 31h-5v2h5v-2Z" }), _jsx(Path, { fill: "currentColor", d: "M35.67 53.7c-1.2.2-2.43.3-3.67.3-2.97 0-5.85-.58-8.56-1.73a21.96 21.96 0 0 1-6.99-4.72 22.072 22.072 0 0 1-4.72-6.99C10.58 37.86 10 34.98 10 32c0-2.98.58-5.85 1.73-8.56 1.11-2.62 2.69-4.97 4.72-6.99 2.02-2.02 4.38-3.61 6.99-4.72C26.15 10.58 29.03 10 32 10c2.97 0 5.85.58 8.56 1.73 2.62 1.11 4.97 2.69 6.99 4.72 2.02 2.02 3.61 4.38 4.72 6.99C53.42 26.15 54 29.03 54 32c0 1.24-.1 2.46-.3 3.66 1.31.8 2.48 1.83 3.43 3.02.57-2.13.87-4.37.87-6.68C58 17.64 46.36 6 32 6S6 17.65 6 32s11.64 26 26 26c2.32 0 4.56-.3 6.7-.87-1.2-.96-2.23-2.12-3.03-3.43Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const Toilet = (props) => (_jsx(Svg, { viewBox: "0 0 64 64", ...props, children: _jsx(Path, { fill: "currentColor", d: "M33 6.01h-2v52h2v-52ZM16.725 18.963a6.513 6.513 0 0 1-6.506-6.505 6.513 6.513 0 0 1 6.506-6.505 6.513 6.513 0 0 1 6.505 6.505 6.513 6.513 0 0 1-6.505 6.505Zm0-10.01a3.51 3.51 0 0 0-3.506 3.505 3.51 3.51 0 0 0 3.506 3.505 3.51 3.51 0 0 0 3.505-3.505 3.51 3.51 0 0 0-3.505-3.505ZM46.564 19.002a6.513 6.513 0 0 1-6.506-6.505 6.513 6.513 0 0 1 6.506-6.506 6.513 6.513 0 0 1 6.505 6.506 6.513 6.513 0 0 1-6.505 6.505Zm0-10.01a3.51 3.51 0 0 0-3.506 3.505 3.51 3.51 0 0 0 3.506 3.505 3.51 3.51 0 0 0 3.505-3.505 3.51 3.51 0 0 0-3.505-3.506ZM19.064 55.099h-4.451a.259.259 0 0 1-.259-.248l-.81-17.547h-2.99a.26.26 0 0 1-.26-.257l-.068-12.822 6.499-1.722 6.504 1.724v13.077h-3.324l-.82 17.784 3.04-.815.645-13.969h3.46V21.92l-9.505-2.52-9.51 2.521.079 15.143a3.267 3.267 0 0 0 3.26 3.241h.126l.677 14.685a3.254 3.254 0 0 0 3.256 3.11h5.255l-.804-3ZM48.448 55.172h-3.506a.29.29 0 0 1-.291-.29V44.63h-4.466l3.144-13.05-.02-8.184 3.222-.854 3.226.855v8.049L52.94 44.63h-4.465v10.45l3-.803V47.63h5.276l-3.995-16.541v-10l-6.226-1.65-6.229 1.65.026 10.139-3.952 16.402h5.275v7.252a3.294 3.294 0 0 0 3.29 3.29h4.311l-.804-3Z" }) }));
3
+ export const Toilet = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M33 6.01h-2v52h2v-52ZM16.725 18.963a6.513 6.513 0 0 1-6.506-6.505 6.513 6.513 0 0 1 6.506-6.505 6.513 6.513 0 0 1 6.505 6.505 6.513 6.513 0 0 1-6.505 6.505Zm0-10.01a3.51 3.51 0 0 0-3.506 3.505 3.51 3.51 0 0 0 3.506 3.505 3.51 3.51 0 0 0 3.505-3.505 3.51 3.51 0 0 0-3.505-3.505ZM46.564 19.002a6.513 6.513 0 0 1-6.506-6.505 6.513 6.513 0 0 1 6.506-6.506 6.513 6.513 0 0 1 6.505 6.506 6.513 6.513 0 0 1-6.505 6.505Zm0-10.01a3.51 3.51 0 0 0-3.506 3.505 3.51 3.51 0 0 0 3.506 3.505 3.51 3.51 0 0 0 3.505-3.505 3.51 3.51 0 0 0-3.505-3.506ZM19.064 55.099h-4.451a.259.259 0 0 1-.259-.248l-.81-17.547h-2.99a.26.26 0 0 1-.26-.257l-.068-12.822 6.499-1.722 6.504 1.724v13.077h-3.324l-.82 17.784 3.04-.815.645-13.969h3.46V21.92l-9.505-2.52-9.51 2.521.079 15.143a3.267 3.267 0 0 0 3.26 3.241h.126l.677 14.685a3.254 3.254 0 0 0 3.256 3.11h5.255l-.804-3ZM48.448 55.172h-3.506a.29.29 0 0 1-.291-.29V44.63h-4.466l3.144-13.05-.02-8.184 3.222-.854 3.226.855v8.049L52.94 44.63h-4.465v10.45l3-.803V47.63h5.276l-3.995-16.541v-10l-6.226-1.65-6.229 1.65.026 10.139-3.952 16.402h5.275v7.252a3.294 3.294 0 0 0 3.29 3.29h4.311l-.804-3Z" }) })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const TopUp = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "M46.857 35.743c-6.138 0-11.114 4.975-11.114 11.114 0 6.139 4.975 11.114 11.114 11.114 6.139 0 11.114-4.975 11.114-11.114 0-6.139-4.975-11.114-11.114-11.114Zm0 19.23c-4.476 0-8.117-3.641-8.117-8.117 0-4.476 3.641-8.117 8.117-8.117 4.476 0 8.117 3.641 8.117 8.117 0 4.476-3.641 8.117-8.117 8.117Z" }), _jsx(Path, { fill: "currentColor", d: "M51.893 45.85h-4.029v-4.03l-2.015.54v3.489h-4.03l.54 2.015h3.489v4.029h2.015v-4.029h4.029v-2.015l.001.001ZM38.763 36.549l-2.356-.143c0 1.549-1.102 2.547-2.547 2.547h-4.51c1.549-1.033 2.135-2.685 2.135-4.303 0-.207 0-.414-.034-.619h4.854v-3.787h-6.059c-.345-.895-.585-1.687-.585-2.72 0-1.825 1.274-2.685 2.651-2.685 1.79 0 2.754 1.205 2.789 3.304l4.51-1.205c-.172-2.823-2.066-6.369-7.367-6.369-4.82 0-7.574 3.408-7.574 6.783 0 1.137.172 2.066.448 2.892h-1.962v3.787h3.339c.069.379.138.757.138 1.136 0 2.031-1.411 3.442-3.58 4.2v4.062h11.153a13.144 13.144 0 0 1 4.562-6.88h-.005Z" }), _jsx(Path, { fill: "currentColor", d: "M35.66 53.672a22.145 22.145 0 0 1-3.66.304c-2.969 0-5.846-.58-8.553-1.725a21.929 21.929 0 0 1-6.986-4.711 21.885 21.885 0 0 1-6.436-15.538c0-2.968.58-5.846 1.725-8.553a21.918 21.918 0 0 1 4.711-6.986A21.885 21.885 0 0 1 32 10.027c2.969 0 5.845.58 8.552 1.725a21.918 21.918 0 0 1 6.986 4.711 21.896 21.896 0 0 1 6.436 15.539c0 1.238-.103 2.459-.303 3.66a13.201 13.201 0 0 1 3.429 3.024c.566-2.133.87-4.372.87-6.684 0-14.343-11.628-25.971-25.971-25.971S6.028 17.656 6.028 31.999 17.656 57.97 31.999 57.97c2.311 0 4.551-.304 6.684-.87a13.24 13.24 0 0 1-3.024-3.429h.001v.001Z" })] }));
3
+ export const TopUp = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M46.857 35.743c-6.138 0-11.114 4.975-11.114 11.114 0 6.139 4.975 11.114 11.114 11.114 6.139 0 11.114-4.975 11.114-11.114 0-6.139-4.975-11.114-11.114-11.114Zm0 19.23c-4.476 0-8.117-3.641-8.117-8.117 0-4.476 3.641-8.117 8.117-8.117 4.476 0 8.117 3.641 8.117 8.117 0 4.476-3.641 8.117-8.117 8.117Z" }), _jsx(Path, { fill: "currentColor", d: "M51.893 45.85h-4.029v-4.03l-2.015.54v3.489h-4.03l.54 2.015h3.489v4.029h2.015v-4.029h4.029v-2.015l.001.001ZM38.763 36.549l-2.356-.143c0 1.549-1.102 2.547-2.547 2.547h-4.51c1.549-1.033 2.135-2.685 2.135-4.303 0-.207 0-.414-.034-.619h4.854v-3.787h-6.059c-.345-.895-.585-1.687-.585-2.72 0-1.825 1.274-2.685 2.651-2.685 1.79 0 2.754 1.205 2.789 3.304l4.51-1.205c-.172-2.823-2.066-6.369-7.367-6.369-4.82 0-7.574 3.408-7.574 6.783 0 1.137.172 2.066.448 2.892h-1.962v3.787h3.339c.069.379.138.757.138 1.136 0 2.031-1.411 3.442-3.58 4.2v4.062h11.153a13.144 13.144 0 0 1 4.562-6.88h-.005Z" }), _jsx(Path, { fill: "currentColor", d: "M35.66 53.672a22.145 22.145 0 0 1-3.66.304c-2.969 0-5.846-.58-8.553-1.725a21.929 21.929 0 0 1-6.986-4.711 21.885 21.885 0 0 1-6.436-15.538c0-2.968.58-5.846 1.725-8.553a21.918 21.918 0 0 1 4.711-6.986A21.885 21.885 0 0 1 32 10.027c2.969 0 5.845.58 8.552 1.725a21.918 21.918 0 0 1 6.986 4.711 21.896 21.896 0 0 1 6.436 15.539c0 1.238-.103 2.459-.303 3.66a13.201 13.201 0 0 1 3.429 3.024c.566-2.133.87-4.372.87-6.684 0-14.343-11.628-25.971-25.971-25.971S6.028 17.656 6.028 31.999 17.656 57.97 31.999 57.97c2.311 0 4.551-.304 6.684-.87a13.24 13.24 0 0 1-3.024-3.429h.001v.001Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const TopUpCardOrKey = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "M46.857 35.74c-6.138 0-11.114 4.975-11.114 11.114 0 6.139 4.975 11.114 11.114 11.114 6.139 0 11.114-4.975 11.114-11.114 0-6.139-4.975-11.114-11.114-11.114Zm0 19.23c-4.476 0-8.117-3.641-8.117-8.117 0-4.476 3.641-8.117 8.117-8.117 4.476 0 8.117 3.641 8.117 8.117 0 4.476-3.641 8.117-8.117 8.117Z" }), _jsx(Path, { fill: "currentColor", d: "M33.795 47.978H10.024V31.996h43.951v3.852a13.201 13.201 0 0 1 3.996 4.058V12.018H10.029a4 4 0 0 0-4 4v31.956a4 4 0 0 0 4 4h24.759a13.02 13.02 0 0 1-.993-3.996ZM10.024 16.014h43.951v5.993H10.024v-5.993Zm0 7.991h43.951v5.993H10.024v-5.993Z" }), _jsx(Path, { fill: "currentColor", d: "M47.736 49.852h-2.133c.732-.489 1.009-1.27 1.009-2.035 0-.098 0-.196-.016-.293h2.295v-1.791h-2.865c-.163-.424-.277-.798-.277-1.286 0-.863.602-1.27 1.254-1.27.846 0 1.303.569 1.319 1.562l2.133-.569c-.082-1.335-.977-3.012-3.483-3.012-2.279 0-3.581 1.611-3.581 3.207 0 .537.081.977.212 1.367h-.928v1.791h1.579c.033.179.065.358.065.537 0 .96-.667 1.628-1.693 1.986v1.921h5.437c1.807 0 3.028-1.352 3.028-3.19l-2.149-.13c0 .732-.52 1.205-1.205 1.205h-.001Z" })] }));
3
+ export const TopUpCardOrKey = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M46.857 35.74c-6.138 0-11.114 4.975-11.114 11.114 0 6.139 4.975 11.114 11.114 11.114 6.139 0 11.114-4.975 11.114-11.114 0-6.139-4.975-11.114-11.114-11.114Zm0 19.23c-4.476 0-8.117-3.641-8.117-8.117 0-4.476 3.641-8.117 8.117-8.117 4.476 0 8.117 3.641 8.117 8.117 0 4.476-3.641 8.117-8.117 8.117Z" }), _jsx(Path, { fill: "currentColor", d: "M33.795 47.978H10.024V31.996h43.951v3.852a13.201 13.201 0 0 1 3.996 4.058V12.018H10.029a4 4 0 0 0-4 4v31.956a4 4 0 0 0 4 4h24.759a13.02 13.02 0 0 1-.993-3.996ZM10.024 16.014h43.951v5.993H10.024v-5.993Zm0 7.991h43.951v5.993H10.024v-5.993Z" }), _jsx(Path, { fill: "currentColor", d: "M47.736 49.852h-2.133c.732-.489 1.009-1.27 1.009-2.035 0-.098 0-.196-.016-.293h2.295v-1.791h-2.865c-.163-.424-.277-.798-.277-1.286 0-.863.602-1.27 1.254-1.27.846 0 1.303.569 1.319 1.562l2.133-.569c-.082-1.335-.977-3.012-3.483-3.012-2.279 0-3.581 1.611-3.581 3.207 0 .537.081.977.212 1.367h-.928v1.791h1.579c.033.179.065.358.065.537 0 .96-.667 1.628-1.693 1.986v1.921h5.437c1.807 0 3.028-1.352 3.028-3.19l-2.149-.13c0 .732-.52 1.205-1.205 1.205h-.001Z" })] })));
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import Svg, { Path } from 'react-native-svg';
3
- export const TopUpInPaypointShop = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64", ...props, children: [_jsx(Path, { fill: "currentColor", d: "m6.029 51.273 14.453 6.712c.005.002.011-.001.011-.007v-.923h.003v-15.96c0-.004.003-.008.008-.008h3.767c9.837 0 17.889-8.016 17.716-17.851-.168-9.526-7.969-17.225-17.535-17.225H6.036s-.008.003-.008.008v45.253l.001.001ZM24.45 37.015h-8.019s-.008.003-.008.008v13.543c0 .006-.006.009-.011.007l-6.309-3.034s-.004-.004-.004-.007l.058-37.442s.003-.008.008-.008h14.126c7.558 0 13.758 6.153 13.624 13.709-.13 7.315-6.12 13.225-13.465 13.225v-.001Z" }), _jsx(Path, { fill: "currentColor", d: "M24.465 16.376H16.38v14.422h8.085a7.218 7.218 0 0 0 7.211-7.211 7.218 7.218 0 0 0-7.211-7.211Zm0 10.351h-4.013v-6.279h4.013a3.144 3.144 0 0 1 3.14 3.14 3.143 3.143 0 0 1-3.14 3.139ZM46.857 35.761c-6.138 0-11.114 4.975-11.114 11.114 0 6.139 4.975 11.114 11.114 11.114 6.139 0 11.114-4.975 11.114-11.114 0-6.139-4.975-11.114-11.114-11.114Zm0 19.23c-4.476 0-8.117-3.641-8.117-8.117 0-4.476 3.641-8.117 8.117-8.117 4.476 0 8.117 3.641 8.117 8.117 0 4.476-3.641 8.117-8.117 8.117Z" }), _jsx(Path, { fill: "currentColor", d: "M47.736 49.856h-2.133c.732-.489 1.009-1.27 1.009-2.035 0-.098 0-.196-.016-.293h2.295v-1.791h-2.865c-.163-.424-.277-.798-.277-1.286 0-.863.602-1.27 1.254-1.27.846 0 1.303.569 1.319 1.562l2.133-.569c-.082-1.335-.977-3.012-3.483-3.012-2.279 0-3.581 1.611-3.581 3.207 0 .537.081.977.212 1.367h-.928v1.791h1.579c.033.179.065.358.065.537 0 .96-.667 1.628-1.693 1.986v1.921h5.437c1.807 0 3.028-1.352 3.028-3.19l-2.149-.13c0 .732-.52 1.205-1.205 1.205h-.001Z" })] }));
3
+ export const TopUpInPaypointShop = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "m6.029 51.273 14.453 6.712c.005.002.011-.001.011-.007v-.923h.003v-15.96c0-.004.003-.008.008-.008h3.767c9.837 0 17.889-8.016 17.716-17.851-.168-9.526-7.969-17.225-17.535-17.225H6.036s-.008.003-.008.008v45.253l.001.001ZM24.45 37.015h-8.019s-.008.003-.008.008v13.543c0 .006-.006.009-.011.007l-6.309-3.034s-.004-.004-.004-.007l.058-37.442s.003-.008.008-.008h14.126c7.558 0 13.758 6.153 13.624 13.709-.13 7.315-6.12 13.225-13.465 13.225v-.001Z" }), _jsx(Path, { fill: "currentColor", d: "M24.465 16.376H16.38v14.422h8.085a7.218 7.218 0 0 0 7.211-7.211 7.218 7.218 0 0 0-7.211-7.211Zm0 10.351h-4.013v-6.279h4.013a3.144 3.144 0 0 1 3.14 3.14 3.143 3.143 0 0 1-3.14 3.139ZM46.857 35.761c-6.138 0-11.114 4.975-11.114 11.114 0 6.139 4.975 11.114 11.114 11.114 6.139 0 11.114-4.975 11.114-11.114 0-6.139-4.975-11.114-11.114-11.114Zm0 19.23c-4.476 0-8.117-3.641-8.117-8.117 0-4.476 3.641-8.117 8.117-8.117 4.476 0 8.117 3.641 8.117 8.117 0 4.476-3.641 8.117-8.117 8.117Z" }), _jsx(Path, { fill: "currentColor", d: "M47.736 49.856h-2.133c.732-.489 1.009-1.27 1.009-2.035 0-.098 0-.196-.016-.293h2.295v-1.791h-2.865c-.163-.424-.277-.798-.277-1.286 0-.863.602-1.27 1.254-1.27.846 0 1.303.569 1.319 1.562l2.133-.569c-.082-1.335-.977-3.012-3.483-3.012-2.279 0-3.581 1.611-3.581 3.207 0 .537.081.977.212 1.367h-.928v1.791h1.579c.033.179.065.358.065.537 0 .96-.667 1.628-1.693 1.986v1.921h5.437c1.807 0 3.028-1.352 3.028-3.19l-2.149-.13c0 .732-.52 1.205-1.205 1.205h-.001Z" })] })));