@tactics/toddle-styleguide 1.0.0 → 1.0.2

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 (292) hide show
  1. package/App.tsx +27 -0
  2. package/index.d.ts +5 -1
  3. package/index.tsx +8 -0
  4. package/package.json +1 -1
  5. package/src/components/{templates/popover/components → atoms}/backdrop/backdrop.component.tsx +1 -1
  6. package/src/components/atoms/calendar/__snapshots__/calendar.test.js.snap +54 -54
  7. package/src/components/atoms/calendar/calendar.component.tsx +4 -2
  8. package/src/components/atoms/footer/__snapshots__/footer.test.js.snap +9 -9
  9. package/src/components/atoms/increment-input/__snapshots__/increment-input.test.js.snap +18 -18
  10. package/src/components/atoms/increment-input/increment-input.component.tsx +12 -2
  11. package/src/components/atoms/split-container/__snapshots__/split-container.test.js.snap +9 -9
  12. package/src/components/molecules/blocked-message/__snapshots__/blocked-message.test.js.snap +9 -9
  13. package/src/components/molecules/blocked-message/blocked-message.component.tsx +6 -1
  14. package/src/components/molecules/button/__snapshots__/button.test.js.snap +36 -30
  15. package/src/components/molecules/button/button.component.d.ts +6 -3
  16. package/src/components/molecules/button/button.component.tsx +27 -3
  17. package/src/components/molecules/button/button.preview.tsx +6 -3
  18. package/src/components/molecules/button/button.test.js +9 -6
  19. package/src/components/molecules/calendar-select/__snapshots__/calendar-select.test.js.snap +29 -29
  20. package/src/components/molecules/calendar-select/calendar-select.component.tsx +7 -4
  21. package/src/components/molecules/calendar-select/calendar-select.styles.js +2 -2
  22. package/src/components/molecules/date-input/__snapshots__/date-input.test.js.snap +9 -9
  23. package/src/components/molecules/date-input/date-input.component.tsx +5 -1
  24. package/src/components/molecules/default-select/__snapshots__/default-select.test.js.snap +9 -9
  25. package/src/components/molecules/default-select/default-select.component.tsx +5 -1
  26. package/src/components/molecules/failed-to-send/__snapshots__/failed-bubble.test.js.snap +27 -27
  27. package/src/components/molecules/failed-to-send/failed-bubble.component.tsx +14 -3
  28. package/src/components/molecules/language-button/__snapshots__/language-button.test.js.snap +95 -0
  29. package/src/components/molecules/language-button/language-button.component.d.ts +7 -0
  30. package/src/components/molecules/language-button/language-button.component.tsx +33 -0
  31. package/src/components/molecules/language-button/language-button.preview.d.ts +1 -0
  32. package/src/components/molecules/language-button/language-button.preview.tsx +29 -0
  33. package/src/components/molecules/language-button/language-button.styles.d.ts +8 -0
  34. package/src/components/molecules/language-button/language-button.styles.js +12 -0
  35. package/src/components/molecules/language-button/language-button.test.js +29 -0
  36. package/src/components/molecules/message-input/__snapshots__/message-input.test.js.snap +140 -72
  37. package/src/components/molecules/message-input/message-input.component.tsx +10 -2
  38. package/src/components/molecules/more-info-button/__snapshots__/more-info-button.test.js.snap +99 -0
  39. package/src/components/molecules/more-info-button/more-info-button.component.d.ts +7 -0
  40. package/src/components/molecules/more-info-button/more-info-button.component.tsx +33 -0
  41. package/src/components/molecules/more-info-button/more-info-button.preview.d.ts +1 -0
  42. package/src/components/molecules/more-info-button/more-info-button.preview.tsx +29 -0
  43. package/src/components/molecules/more-info-button/more-info-button.styles.d.ts +10 -0
  44. package/src/components/molecules/more-info-button/more-info-button.styles.js +15 -0
  45. package/src/components/molecules/more-info-button/more-info-button.test.js +29 -0
  46. package/src/components/molecules/password-input/__snapshots__/password-input.test.js.snap +30 -30
  47. package/src/components/molecules/password-input/password-input.component.tsx +10 -2
  48. package/src/components/molecules/pressable-icon/__snapshots__/pressable-icon.test.js.snap +36 -36
  49. package/src/components/molecules/pressable-icon/pressable-icon.preview.tsx +4 -4
  50. package/src/components/molecules/pressable-icon/pressable-icon.test.js +8 -4
  51. package/src/components/molecules/search-input/__snapshots__/search.test.js.snap +15 -18
  52. package/src/components/molecules/search-input/search.component.tsx +6 -2
  53. package/src/components/molecules/search-input/search.styles.js +5 -8
  54. package/src/components/molecules/select-list-item/__snapshots__/select-list-item.test.js.snap +431 -431
  55. package/src/components/molecules/select-list-item/select-list-item-preview.tsx +3 -4
  56. package/src/components/molecules/select-list-item/select-list-item.component.tsx +21 -18
  57. package/src/components/molecules/select-list-item/select-list-item.styles.js +10 -7
  58. package/src/components/molecules/select-picker/__snapshots__/select-picker.test.js.snap +18 -20
  59. package/src/components/molecules/select-picker/select-picker.component.tsx +6 -1
  60. package/src/components/molecules/select-picker/select-picker.styles.js +2 -2
  61. package/src/components/molecules/send-bubble/__snapshots__/send-text-bubble.test.js.snap +108 -108
  62. package/src/components/molecules/send-bubble/send-text-bubble.component.tsx +2 -2
  63. package/src/components/molecules/snackbar/__snapshots__/snackbar.test.js.snap +36 -36
  64. package/src/components/molecules/snackbar/snackbar.component.tsx +21 -2
  65. package/src/components/molecules/swipe/__snapshots__/swipe.test.js.snap +15 -11
  66. package/src/components/molecules/swipe/swipe.component.tsx +10 -2
  67. package/src/components/organisms/child-list-item/__snapshots__/child-list-item.test.js.snap +10 -10
  68. package/src/components/organisms/child-list-item/child-list-item.component.tsx +7 -2
  69. package/src/components/organisms/child-list-item/child-list-item.preview.tsx +7 -1
  70. package/src/components/organisms/contact-item/__snapshots__/contact-item.test.js.snap +18 -18
  71. package/src/components/organisms/contact-item/contact-item.component.tsx +6 -1
  72. package/src/components/organisms/loading-indicator/__snapshots__/loading-indicator.test.js.snap +474 -0
  73. package/src/components/organisms/loading-indicator/animation-style.animate.d.ts +3 -0
  74. package/src/components/organisms/loading-indicator/animation-style.animate.ts +164 -0
  75. package/src/components/organisms/loading-indicator/container.component.d.ts +1 -0
  76. package/src/components/organisms/loading-indicator/container.component.tsx +65 -0
  77. package/src/components/organisms/loading-indicator/dot.component.d.ts +6 -0
  78. package/src/components/organisms/loading-indicator/dot.component.tsx +27 -0
  79. package/src/components/organisms/loading-indicator/loading-indicator.component.d.ts +2 -0
  80. package/src/components/organisms/loading-indicator/loading-indicator.component.tsx +21 -0
  81. package/src/components/organisms/loading-indicator/loading-indicator.preview.d.ts +1 -0
  82. package/src/components/organisms/loading-indicator/loading-indicator.preview.tsx +100 -0
  83. package/src/components/organisms/loading-indicator/loading-indicator.test.js +40 -0
  84. package/src/components/organisms/my-child-list-item/__snapshots__/my-child-list-item.test.js.snap +18 -18
  85. package/src/components/organisms/my-child-list-item/my-child-list-item.component.tsx +12 -2
  86. package/src/components/organisms/text-bubble/__snapshots__/text-bubble.test.js.snap +135 -135
  87. package/src/components/organisms/text-bubble/text-bubble.test.js +0 -1
  88. package/src/components/templates/modal/components/fade-panel.component.d.ts +11 -0
  89. package/src/components/templates/modal/components/fade-panel.component.tsx +53 -0
  90. package/src/components/templates/modal/components/fade-panel.styles.d.ts +16 -0
  91. package/src/components/templates/modal/components/fade-panel.styles.js +17 -0
  92. package/src/components/templates/modal/modal-preview.styles.d.ts +13 -0
  93. package/src/components/templates/modal/modal-preview.styles.js +17 -0
  94. package/src/components/templates/modal/modal.component.d.ts +10 -0
  95. package/src/components/templates/modal/modal.component.tsx +56 -0
  96. package/src/components/templates/modal/modal.preview.d.ts +1 -0
  97. package/src/components/templates/modal/modal.preview.tsx +73 -0
  98. package/src/components/templates/modal/modal.styles.d.ts +21 -0
  99. package/src/components/templates/modal/modal.styles.js +23 -0
  100. package/src/components/templates/popover/components/index.js +1 -1
  101. package/src/components/templates/popover/components/modal/close/close.component.tsx +9 -4
  102. package/src/components/templates/popover/components/modal/close/close.styles.d.ts +4 -3
  103. package/src/components/templates/popover/components/modal/close/close.styles.js +8 -5
  104. package/src/components/templates/popover/components/modal/heading/heading.styles.js +1 -1
  105. package/src/components/templates/popover/components/modal/modal.component.tsx +1 -1
  106. package/src/components/templates/popover/components/modal/modal.styles.js +1 -1
  107. package/src/components/templates/popover/popover.component.tsx +2 -1
  108. package/src/context/loading-dots.context.d.ts +8 -0
  109. package/src/context/loading-dots.context.tsx +33 -0
  110. package/src/icons/__snapshots__/icons.test.js.snap +572 -482
  111. package/src/icons/icons.test.js +126 -51
  112. package/src/icons/index.d.ts +2 -56
  113. package/src/icons/index.tsx +11 -3
  114. package/src/icons/outline/calendar/calendar.icon.d.ts +2 -2
  115. package/src/icons/outline/calendar/calendar.icon.tsx +5 -4
  116. package/src/icons/outline/chat/chat.icon.d.ts +2 -2
  117. package/src/icons/outline/chat/chat.icon.tsx +5 -4
  118. package/src/icons/outline/chat-alt/chat-alt.icon.d.ts +2 -2
  119. package/src/icons/outline/chat-alt/chat-alt.icon.tsx +5 -4
  120. package/src/icons/outline/check-circle/check-circle.icon.d.ts +2 -2
  121. package/src/icons/outline/check-circle/check-circle.icon.tsx +5 -4
  122. package/src/icons/outline/chevron-left/chevron-left.icon.d.ts +2 -2
  123. package/src/icons/outline/chevron-left/chevron-left.icon.tsx +5 -4
  124. package/src/icons/outline/chevron-right/chevron-right.icon.d.ts +2 -2
  125. package/src/icons/outline/chevron-right/chevron-right.icon.tsx +5 -4
  126. package/src/icons/outline/clock/clock.icon.d.ts +2 -2
  127. package/src/icons/outline/clock/clock.icon.tsx +5 -4
  128. package/src/icons/outline/cloud-download/cloud-download.icon.d.ts +2 -2
  129. package/src/icons/outline/cloud-download/cloud-download.icon.tsx +5 -4
  130. package/src/icons/outline/currency-euro/currency-euro.icon.d.ts +2 -2
  131. package/src/icons/outline/currency-euro/currency-euro.icon.tsx +5 -4
  132. package/src/icons/outline/document-text/document-text.icon.d.ts +2 -2
  133. package/src/icons/outline/document-text/document-text.icon.tsx +5 -4
  134. package/src/icons/outline/exclamation/exclamation.icon.d.ts +2 -2
  135. package/src/icons/outline/exclamation/exclamation.icon.tsx +5 -4
  136. package/src/icons/outline/exclamation-circle/exclamation-circle.icon.d.ts +2 -2
  137. package/src/icons/outline/exclamation-circle/exclamation-circle.icon.tsx +8 -4
  138. package/src/icons/outline/eye/eye.icon.d.ts +2 -2
  139. package/src/icons/outline/eye/eye.icon.tsx +6 -5
  140. package/src/icons/outline/eye-off/eye-off.icon.d.ts +2 -2
  141. package/src/icons/outline/eye-off/eye-off.icon.tsx +4 -3
  142. package/src/icons/outline/filter/filter.icon.d.ts +2 -2
  143. package/src/icons/outline/filter/filter.icon.tsx +5 -42
  144. package/src/icons/outline/information-circle/information-circle.icon.d.ts +2 -2
  145. package/src/icons/outline/information-circle/information-circle.icon.tsx +8 -4
  146. package/src/icons/outline/logout/logout.icon.d.ts +2 -2
  147. package/src/icons/outline/logout/logout.icon.tsx +11 -4
  148. package/src/icons/outline/mail/mail.icon.d.ts +2 -2
  149. package/src/icons/outline/mail/mail.icon.tsx +5 -4
  150. package/src/icons/outline/mail-open/mail-open.icon.d.ts +2 -2
  151. package/src/icons/outline/mail-open/mail-open.icon.tsx +5 -4
  152. package/src/icons/outline/menu/menu.icon.d.ts +2 -2
  153. package/src/icons/outline/menu/menu.icon.tsx +5 -4
  154. package/src/icons/outline/minus-sm/minus-sm.icon.d.ts +2 -2
  155. package/src/icons/outline/minus-sm/minus-sm.icon.tsx +5 -9
  156. package/src/icons/outline/office-building/office-building.icon.d.ts +2 -2
  157. package/src/icons/outline/office-building/office-building.icon.tsx +5 -4
  158. package/src/icons/outline/outline-default.preview.tsx +49 -45
  159. package/src/icons/outline/outline-grey.preview.tsx +56 -40
  160. package/src/icons/outline/outline-white.preview.tsx +61 -41
  161. package/src/icons/outline/outline.d.ts +2 -42
  162. package/src/icons/outline/outline.tsx +99 -42
  163. package/src/icons/outline/paper-airplane/paper-airplane.icon.d.ts +2 -2
  164. package/src/icons/outline/paper-airplane/paper-airplane.icon.tsx +11 -4
  165. package/src/icons/outline/paperclip/paperclip.icon.d.ts +2 -2
  166. package/src/icons/outline/paperclip/paperclip.icon.tsx +5 -4
  167. package/src/icons/outline/pencil/pencil.icon.d.ts +2 -2
  168. package/src/icons/outline/pencil/pencil.icon.tsx +5 -4
  169. package/src/icons/outline/phone/phone.icon.d.ts +2 -2
  170. package/src/icons/outline/phone/phone.icon.tsx +5 -4
  171. package/src/icons/outline/plus/plus.icon.d.ts +2 -2
  172. package/src/icons/outline/plus/plus.icon.tsx +5 -4
  173. package/src/icons/outline/plus-sm/plus-sm.icon.d.ts +2 -2
  174. package/src/icons/outline/plus-sm/plus-sm.icon.tsx +5 -9
  175. package/src/icons/outline/qrcode/qrcode.icon.d.ts +2 -2
  176. package/src/icons/outline/qrcode/qrcode.icon.tsx +5 -4
  177. package/src/icons/outline/refresh/refresh.icon.d.ts +2 -2
  178. package/src/icons/outline/refresh/refresh.icon.tsx +5 -4
  179. package/src/icons/outline/search/search.icon.d.ts +2 -2
  180. package/src/icons/outline/search/search.icon.tsx +5 -4
  181. package/src/icons/outline/selector/selector.icon.d.ts +2 -2
  182. package/src/icons/outline/selector/selector.icon.tsx +5 -4
  183. package/src/icons/outline/sm-view-grid-add/sm-view-grid-add.icon.d.ts +2 -2
  184. package/src/icons/outline/sm-view-grid-add/sm-view-grid-add.icon.tsx +5 -4
  185. package/src/icons/outline/status-online/status-online.icon.d.ts +2 -2
  186. package/src/icons/outline/status-online/status-online.icon.tsx +5 -4
  187. package/src/icons/outline/thumb-up/thumb-up.icon.d.ts +2 -2
  188. package/src/icons/outline/thumb-up/thumb-up.icon.tsx +5 -4
  189. package/src/icons/outline/trash/trash.icon.d.ts +2 -2
  190. package/src/icons/outline/trash/trash.icon.tsx +5 -4
  191. package/src/icons/outline/user/user.icon.d.ts +2 -2
  192. package/src/icons/outline/user/user.icon.tsx +6 -5
  193. package/src/icons/outline/user-group/user-group.icon.d.ts +2 -2
  194. package/src/icons/outline/user-group/user-group.icon.tsx +5 -4
  195. package/src/icons/outline/users/users.icon.d.ts +2 -2
  196. package/src/icons/outline/users/users.icon.tsx +5 -4
  197. package/src/icons/outline/xmark/xmark.icon.d.ts +2 -0
  198. package/src/icons/outline/{cross/cross.icon.tsx → xmark/xmark.icon.tsx} +5 -4
  199. package/src/icons/solid/calendar/calendar.icon.d.ts +2 -0
  200. package/src/icons/solid/calendar/calendar.icon.tsx +21 -0
  201. package/src/icons/solid/chat/chat.icon.d.ts +2 -0
  202. package/src/icons/solid/chat/chat.icon.tsx +21 -0
  203. package/src/icons/solid/chat-alt/chat-alt-solid.icon.d.ts +2 -2
  204. package/src/icons/solid/chat-alt/chat-alt-solid.icon.tsx +5 -4
  205. package/src/icons/solid/check-circle/check-circle.icon.d.ts +2 -0
  206. package/src/icons/solid/check-circle/check-circle.icon.tsx +21 -0
  207. package/src/icons/solid/chevron-left/chevron-left.icon.d.ts +2 -0
  208. package/src/icons/solid/chevron-left/chevron-left.icon.tsx +21 -0
  209. package/src/icons/solid/chevron-right/chevron-right.icon.d.ts +2 -0
  210. package/src/icons/solid/chevron-right/chevron-right.icon.tsx +21 -0
  211. package/src/icons/solid/clock/clock-solid.icon.d.ts +2 -2
  212. package/src/icons/solid/clock/clock-solid.icon.tsx +5 -4
  213. package/src/icons/solid/cloud-download/cloud-download.icon.d.ts +2 -0
  214. package/src/icons/solid/cloud-download/cloud-download.icon.tsx +21 -0
  215. package/src/icons/solid/currency-euro/currency-euro.icon.d.ts +2 -0
  216. package/src/icons/solid/currency-euro/currency-euro.icon.tsx +21 -0
  217. package/src/icons/solid/document-text/document-text-solid.icon.d.ts +2 -2
  218. package/src/icons/solid/document-text/document-text-solid.icon.tsx +4 -3
  219. package/src/icons/solid/exclamation/exclamation.icon.d.ts +2 -0
  220. package/src/icons/solid/exclamation/exclamation.icon.tsx +20 -0
  221. package/src/icons/solid/exclamation-circle/exclamation-circle.icon.d.ts +2 -0
  222. package/src/icons/solid/exclamation-circle/exclamation-circle.icon.tsx +23 -0
  223. package/src/icons/solid/eye/eye.icon.d.ts +2 -0
  224. package/src/icons/solid/eye/eye.icon.tsx +24 -0
  225. package/src/icons/solid/eye-off/eye-off.icon.d.ts +2 -0
  226. package/src/icons/solid/eye-off/eye-off.icon.tsx +24 -0
  227. package/src/icons/solid/filter/filter.icon.d.ts +2 -0
  228. package/src/icons/solid/filter/filter.icon.tsx +21 -0
  229. package/src/icons/solid/information-circle/information-circle-solid.icon.d.ts +2 -2
  230. package/src/icons/solid/information-circle/information-circle-solid.icon.tsx +8 -4
  231. package/src/icons/solid/logout/logout.icon.d.ts +2 -0
  232. package/src/icons/solid/logout/logout.icon.tsx +26 -0
  233. package/src/icons/solid/mail/mail.icon.d.ts +2 -0
  234. package/src/icons/solid/mail/mail.icon.tsx +23 -0
  235. package/src/icons/solid/mail-open/mail-open.icon.d.ts +2 -0
  236. package/src/icons/solid/mail-open/mail-open.icon.tsx +21 -0
  237. package/src/icons/solid/menu/menu.icon.d.ts +2 -0
  238. package/src/icons/solid/menu/menu.icon.tsx +33 -0
  239. package/src/icons/solid/minus-sm/minus-sm.icon.d.ts +2 -0
  240. package/src/icons/solid/minus-sm/minus-sm.icon.tsx +21 -0
  241. package/src/icons/solid/office-building/office-building.icon.d.ts +2 -0
  242. package/src/icons/solid/office-building/office-building.icon.tsx +21 -0
  243. package/src/icons/solid/paper-airplane/paper-airplane.icon.d.ts +2 -0
  244. package/src/icons/solid/paper-airplane/paper-airplane.icon.tsx +25 -0
  245. package/src/icons/solid/paperclip/paperclip.icon.d.ts +2 -0
  246. package/src/icons/solid/paperclip/paperclip.icon.tsx +21 -0
  247. package/src/icons/solid/pencil/pencil-solid.icon.d.ts +2 -2
  248. package/src/icons/solid/pencil/pencil-solid.icon.tsx +6 -5
  249. package/src/icons/solid/phone/phone-solid.icon.d.ts +2 -2
  250. package/src/icons/solid/phone/phone-solid.icon.tsx +5 -4
  251. package/src/icons/solid/plus/plus.icon.d.ts +2 -0
  252. package/src/icons/solid/plus/plus.icon.tsx +21 -0
  253. package/src/icons/solid/plus-sm/plus-sm.icon.d.ts +2 -0
  254. package/src/icons/solid/plus-sm/plus-sm.icon.tsx +21 -0
  255. package/src/icons/solid/qrcode/qrcode.icon.d.ts +2 -0
  256. package/src/icons/solid/qrcode/qrcode.icon.tsx +60 -0
  257. package/src/icons/solid/refresh/refresh-solid.icon.d.ts +2 -2
  258. package/src/icons/solid/refresh/refresh-solid.icon.tsx +5 -4
  259. package/src/icons/solid/search/search.icon.d.ts +2 -0
  260. package/src/icons/solid/search/search.icon.tsx +21 -0
  261. package/src/icons/solid/selector/selector.icon.d.ts +2 -0
  262. package/src/icons/solid/selector/selector.icon.tsx +21 -0
  263. package/src/icons/solid/sm-view-grid-add/sm-view-grid-add.icon.d.ts +2 -0
  264. package/src/icons/solid/sm-view-grid-add/sm-view-grid-add.icon.tsx +31 -0
  265. package/src/icons/solid/solid.d.ts +2 -12
  266. package/src/icons/solid/solid.preview.tsx +95 -30
  267. package/src/icons/solid/solid.tsx +133 -21
  268. package/src/icons/solid/status-online/status-online-solid.icon.d.ts +2 -2
  269. package/src/icons/solid/status-online/status-online-solid.icon.tsx +5 -10
  270. package/src/icons/solid/thumb-up/thumb-up.icon.d.ts +2 -0
  271. package/src/icons/solid/thumb-up/thumb-up.icon.tsx +23 -0
  272. package/src/icons/solid/trash/trash-solid.icon.d.ts +2 -2
  273. package/src/icons/solid/trash/trash-solid.icon.tsx +5 -4
  274. package/src/icons/solid/user/user.icon.d.ts +2 -0
  275. package/src/icons/solid/user/user.icon.tsx +23 -0
  276. package/src/icons/solid/user-group/user-group.icon.d.ts +2 -0
  277. package/src/icons/solid/user-group/user-group.icon.tsx +72 -0
  278. package/src/icons/solid/users/users-solid.icon.d.ts +2 -2
  279. package/src/icons/solid/users/users-solid.icon.tsx +29 -3
  280. package/src/icons/solid/xmark/xmark.icon.d.ts +2 -0
  281. package/src/icons/solid/xmark/xmark.icon.tsx +21 -0
  282. package/src/interfaces/icon.interface.d.ts +11 -0
  283. package/src/interfaces/icon.interface.ts +12 -0
  284. package/src/theme/provider/parent.theme.ts +1 -1
  285. package/src/types/icontype.type.d.ts +2 -4
  286. package/src/types/icontype.type.ts +43 -4
  287. package/src/types/loading-dots.type.d.ts +8 -0
  288. package/src/types/loading-dots.type.ts +8 -0
  289. package/src/icons/outline/cross/cross.icon.d.ts +0 -2
  290. /package/src/components/{templates/popover/components → atoms}/backdrop/backdrop.component.d.ts +0 -0
  291. /package/src/components/{templates/popover/components → atoms}/backdrop/backdrop.styles.d.ts +0 -0
  292. /package/src/components/{templates/popover/components → atoms}/backdrop/backdrop.styles.js +0 -0
@@ -3,11 +3,11 @@
3
3
  exports[`test icons render a solid chat-alt icon in a coral color 1`] = `
4
4
  <RNSVGSvgView
5
5
  align="xMidYMid"
6
- bbHeight="28"
7
- bbWidth="28"
6
+ bbHeight={24}
7
+ bbWidth={24}
8
8
  fill="none"
9
9
  focusable={false}
10
- height="28"
10
+ height={24}
11
11
  meetOrSlice={0}
12
12
  minX={0}
13
13
  minY={0}
@@ -19,14 +19,14 @@ exports[`test icons render a solid chat-alt icon in a coral color 1`] = `
19
19
  },
20
20
  {
21
21
  "flex": 0,
22
- "height": 28,
23
- "width": 28,
22
+ "height": 24,
23
+ "width": 24,
24
24
  },
25
25
  ]
26
26
  }
27
- vbHeight={32}
28
- vbWidth={32}
29
- width="28"
27
+ vbHeight={19}
28
+ vbWidth={18}
29
+ width={24}
30
30
  >
31
31
  <RNSVGGroup
32
32
  fill={null}
@@ -38,7 +38,7 @@ exports[`test icons render a solid chat-alt icon in a coral color 1`] = `
38
38
  >
39
39
  <RNSVGPath
40
40
  clipRule={0}
41
- d="M28.2428 7.9998V20.7998C28.2428 22.5671 26.8724 23.9998 25.1819 23.9998H17.5298L9.8776 30.3998V23.9998H6.81673C5.12626 23.9998 3.75586 22.5671 3.75586 20.7998V7.9998C3.75586 6.23249 5.12626 4.7998 6.81673 4.7998H25.1819C26.8724 4.7998 28.2428 6.23249 28.2428 7.9998ZM11.408 12.7998H8.34716V15.9998H11.408V12.7998ZM14.4689 12.7998H17.5298V15.9998H14.4689V12.7998ZM23.6515 12.7998H20.5906V15.9998H23.6515V12.7998Z"
41
+ d="M17.7999 2.75001V11.95C17.7999 13.2203 16.815 14.25 15.5999 14.25H10.1L4.59995 18.85V14.25H2.39995C1.18492 14.25 0.199951 13.2203 0.199951 11.95V2.75001C0.199951 1.47976 1.18492 0.450012 2.39995 0.450012H15.5999C16.815 0.450012 17.7999 1.47976 17.7999 2.75001ZM5.69995 6.20001H3.49995V8.50001H5.69995V6.20001ZM7.89995 6.20001H10.1V8.50001H7.89995V6.20001ZM14.5 6.20001H12.2999V8.50001H14.5V6.20001Z"
42
42
  fill={4294934352}
43
43
  fillRule={0}
44
44
  propList={
@@ -55,11 +55,11 @@ exports[`test icons render a solid chat-alt icon in a coral color 1`] = `
55
55
  exports[`test icons render a solid clock icon in a darkcyan color 1`] = `
56
56
  <RNSVGSvgView
57
57
  align="xMidYMid"
58
- bbHeight="28"
59
- bbWidth="28"
58
+ bbHeight={24}
59
+ bbWidth={24}
60
60
  fill="none"
61
61
  focusable={false}
62
- height="28"
62
+ height={24}
63
63
  meetOrSlice={0}
64
64
  minX={0}
65
65
  minY={0}
@@ -71,14 +71,14 @@ exports[`test icons render a solid clock icon in a darkcyan color 1`] = `
71
71
  },
72
72
  {
73
73
  "flex": 0,
74
- "height": 28,
75
- "width": 28,
74
+ "height": 24,
75
+ "width": 24,
76
76
  },
77
77
  ]
78
78
  }
79
- vbHeight={22}
80
- vbWidth={22}
81
- width="28"
79
+ vbHeight={18}
80
+ vbWidth={18}
81
+ width={24}
82
82
  >
83
83
  <RNSVGGroup
84
84
  fill={null}
@@ -90,7 +90,7 @@ exports[`test icons render a solid clock icon in a darkcyan color 1`] = `
90
90
  >
91
91
  <RNSVGPath
92
92
  clipRule={0}
93
- d="M11 19.8C15.8601 19.8 19.7999 15.8601 19.7999 11C19.7999 6.13991 15.8601 2.20001 11 2.20001C6.13985 2.20001 2.19995 6.13991 2.19995 11C2.19995 15.8601 6.13985 19.8 11 19.8ZM12 6.60001C12 6.04773 11.5522 5.60001 11 5.60001C10.4477 5.60001 9.99995 6.04773 9.99995 6.60001V11C9.99995 11.2652 10.1053 11.5196 10.2928 11.7071L13.4041 14.8184C13.7946 15.2089 14.4278 15.2089 14.8183 14.8184C15.2089 14.4279 15.2089 13.7947 14.8183 13.4042L12 10.5858V6.60001Z"
93
+ d="M8.99995 17.8C13.8601 17.8 17.7999 13.8601 17.7999 9.00001C17.7999 4.13991 13.8601 0.200012 8.99995 0.200012C4.13985 0.200012 0.199951 4.13991 0.199951 9.00001C0.199951 13.8601 4.13985 17.8 8.99995 17.8ZM9.99995 4.60001C9.99995 4.04773 9.55224 3.60001 8.99995 3.60001C8.44767 3.60001 7.99995 4.04773 7.99995 4.60001V9.00001C7.99995 9.26523 8.10531 9.51958 8.29284 9.70712L11.4041 12.8184C11.7946 13.2089 12.4278 13.2089 12.8183 12.8184C13.2089 12.4279 13.2089 11.7947 12.8183 11.4042L9.99995 8.5858V4.60001Z"
94
94
  fill={4278225803}
95
95
  fillRule={0}
96
96
  propList={
@@ -104,14 +104,14 @@ exports[`test icons render a solid clock icon in a darkcyan color 1`] = `
104
104
  </RNSVGSvgView>
105
105
  `;
106
106
 
107
- exports[`test icons render a solid information-circle icon in a gold color 1`] = `
107
+ exports[`test icons render a solid document-text icon in a white color 1`] = `
108
108
  <RNSVGSvgView
109
109
  align="xMidYMid"
110
- bbHeight="28"
111
- bbWidth="28"
110
+ bbHeight={24}
111
+ bbWidth={24}
112
112
  fill="none"
113
113
  focusable={false}
114
- height="28"
114
+ height={24}
115
115
  meetOrSlice={0}
116
116
  minX={0}
117
117
  minY={0}
@@ -123,14 +123,14 @@ exports[`test icons render a solid information-circle icon in a gold color 1`] =
123
123
  },
124
124
  {
125
125
  "flex": 0,
126
- "height": 28,
127
- "width": 28,
126
+ "height": 24,
127
+ "width": 24,
128
128
  },
129
129
  ]
130
130
  }
131
- vbHeight={22}
132
- vbWidth={22}
133
- width="28"
131
+ vbHeight={18}
132
+ vbWidth={14}
133
+ width={24}
134
134
  >
135
135
  <RNSVGGroup
136
136
  fill={null}
@@ -142,8 +142,8 @@ exports[`test icons render a solid information-circle icon in a gold color 1`] =
142
142
  >
143
143
  <RNSVGPath
144
144
  clipRule={0}
145
- d="M11 19.8C15.8601 19.8 19.7999 15.8601 19.7999 11C19.7999 6.13991 15.8601 2.20001 11 2.20001C6.13985 2.20001 2.19995 6.13991 2.19995 11C2.19995 15.8601 6.13985 19.8 11 19.8ZM12 6.60001C12 6.04773 11.5522 5.60001 11 5.60001C10.4477 5.60001 9.99995 6.04773 9.99995 6.60001V11C9.99995 11.2652 10.1053 11.5196 10.2928 11.7071L13.4041 14.8184C13.7946 15.2089 14.4278 15.2089 14.8183 14.8184C15.2089 14.4279 15.2089 13.7947 14.8183 13.4042L12 10.5858V6.60001Z"
146
- fill={4294956800}
145
+ d="M0.400024 2.39995C0.400024 1.18493 1.385 0.199951 2.60002 0.199951H7.64439C8.22787 0.199951 8.78745 0.431736 9.20002 0.844316L12.9557 4.59995C13.3682 5.01253 13.6 5.57211 13.6 6.15559V15.5999C13.6 16.815 12.6151 17.7999 11.4 17.7999H2.60002C1.385 17.7999 0.400024 16.815 0.400024 15.5999V2.39995ZM2.60002 8.99995C2.60002 8.39244 3.09251 7.89995 3.70002 7.89995H10.3C10.9075 7.89995 11.4 8.39244 11.4 8.99995C11.4 9.60746 10.9075 10.1 10.3 10.1H3.70002C3.09251 10.1 2.60002 9.60746 2.60002 8.99995ZM3.70002 12.2999C3.09251 12.2999 2.60002 12.7924 2.60002 13.4C2.60002 14.0075 3.09251 14.5 3.70002 14.5H10.3C10.9075 14.5 11.4 14.0075 11.4 13.4C11.4 12.7924 10.9075 12.2999 10.3 12.2999H3.70002Z"
146
+ fill={4294967295}
147
147
  fillRule={0}
148
148
  propList={
149
149
  [
@@ -156,14 +156,14 @@ exports[`test icons render a solid information-circle icon in a gold color 1`] =
156
156
  </RNSVGSvgView>
157
157
  `;
158
158
 
159
- exports[`test icons render a solid pencil icon in a grey color 1`] = `
159
+ exports[`test icons render a solid eye off icon in a tomato color 1`] = `
160
160
  <RNSVGSvgView
161
161
  align="xMidYMid"
162
- bbHeight="28"
163
- bbWidth="28"
162
+ bbHeight={24}
163
+ bbWidth={24}
164
164
  fill="none"
165
165
  focusable={false}
166
- height="28"
166
+ height={24}
167
167
  meetOrSlice={0}
168
168
  minX={0}
169
169
  minY={0}
@@ -175,14 +175,14 @@ exports[`test icons render a solid pencil icon in a grey color 1`] = `
175
175
  },
176
176
  {
177
177
  "flex": 0,
178
- "height": 28,
179
- "width": 28,
178
+ "height": 24,
179
+ "width": 24,
180
180
  },
181
181
  ]
182
182
  }
183
- vbHeight={23}
184
- vbWidth={23}
185
- width="28"
183
+ vbHeight={18}
184
+ vbWidth={22}
185
+ width={24}
186
186
  >
187
187
  <RNSVGGroup
188
188
  fill={null}
@@ -193,17 +193,20 @@ exports[`test icons render a solid pencil icon in a grey color 1`] = `
193
193
  }
194
194
  >
195
195
  <RNSVGPath
196
- d="M15.4442 4.12385C16.3033 3.22564 17.6963 3.22564 18.5554 4.12385C19.4146 5.02206 19.4146 6.47833 18.5554 7.37654L17.6833 8.28837L14.572 5.03568L15.4442 4.12385Z"
197
- fill={4286611584}
196
+ clipRule={0}
197
+ d="M4.07779 0.522134C3.64822 0.092557 2.95174 0.092557 2.52216 0.522134C2.09258 0.95171 2.09258 1.64819 2.52216 2.07777L17.9222 17.4778C18.3517 17.9073 19.0482 17.9073 19.4778 17.4778C19.9074 17.0482 19.9074 16.3517 19.4778 15.9221L17.8573 14.3016C19.5486 12.9516 20.8329 11.1132 21.4966 8.99991C20.0949 4.53712 15.9256 1.29995 11.0002 1.29995C9.21429 1.29995 7.52776 1.72556 6.03654 2.48088L4.07779 0.522134ZM8.76492 5.20926L10.4302 6.87453C10.612 6.82588 10.8031 6.79995 11.0003 6.79995C12.2153 6.79995 13.2003 7.78492 13.2003 8.99995C13.2003 9.19711 13.1743 9.3882 13.1257 9.57002L14.791 11.2353C15.1781 10.5802 15.4003 9.81601 15.4003 8.99995C15.4003 6.5699 13.4303 4.59995 11.0003 4.59995C10.1842 4.59995 9.42002 4.82211 8.76492 5.20926Z"
198
+ fill={4294927175}
199
+ fillRule={0}
198
200
  propList={
199
201
  [
200
202
  "fill",
203
+ "fillRule",
201
204
  ]
202
205
  }
203
206
  />
204
207
  <RNSVGPath
205
- d="M13.0164 6.66202L3.7998 16.2975V19.5502H6.91107L16.1276 9.91471L13.0164 6.66202Z"
206
- fill={4286611584}
208
+ d="M13.6995 16.3663L10.7246 13.3915C8.51412 13.2548 6.74539 11.4861 6.60875 9.27561L2.56839 5.23525C1.65067 6.3294 0.941981 7.60481 0.503784 8.99999C1.90549 13.4628 6.0748 16.6999 11.0002 16.6999C11.9315 16.6999 12.8358 16.5842 13.6995 16.3663Z"
209
+ fill={4294927175}
207
210
  propList={
208
211
  [
209
212
  "fill",
@@ -214,14 +217,14 @@ exports[`test icons render a solid pencil icon in a grey color 1`] = `
214
217
  </RNSVGSvgView>
215
218
  `;
216
219
 
217
- exports[`test icons render a solid phone icon in an ivory color 1`] = `
220
+ exports[`test icons render a solid information-circle icon in a gold color 1`] = `
218
221
  <RNSVGSvgView
219
222
  align="xMidYMid"
220
- bbHeight="28"
221
- bbWidth="28"
223
+ bbHeight={24}
224
+ bbWidth={24}
222
225
  fill="none"
223
226
  focusable={false}
224
- height="28"
227
+ height={24}
225
228
  meetOrSlice={0}
226
229
  minX={0}
227
230
  minY={0}
@@ -233,14 +236,14 @@ exports[`test icons render a solid phone icon in an ivory color 1`] = `
233
236
  },
234
237
  {
235
238
  "flex": 0,
236
- "height": 28,
237
- "width": 28,
239
+ "height": 24,
240
+ "width": 24,
238
241
  },
239
242
  ]
240
243
  }
241
- vbHeight={22}
242
- vbWidth={22}
243
- width="28"
244
+ vbHeight={18}
245
+ vbWidth={18}
246
+ width={24}
244
247
  >
245
248
  <RNSVGGroup
246
249
  fill={null}
@@ -251,11 +254,14 @@ exports[`test icons render a solid phone icon in an ivory color 1`] = `
251
254
  }
252
255
  >
253
256
  <RNSVGPath
254
- d="M2.19995 3.30001C2.19995 2.6925 2.69244 2.20001 3.29995 2.20001H5.66811C6.20583 2.20001 6.66474 2.58877 6.75314 3.11917L7.56639 7.99863C7.64578 8.47497 7.40521 8.94738 6.97329 9.16334L5.27034 10.0148C6.49827 13.0662 8.9338 15.5017 11.9851 16.7296L12.8366 15.0267C13.0526 14.5947 13.525 14.3542 14.0013 14.4336L18.8808 15.2468C19.4112 15.3352 19.7999 15.7941 19.7999 16.3319V18.7C19.7999 19.3075 19.3075 19.8 18.6999 19.8H16.5C8.60228 19.8 2.19995 13.3977 2.19995 5.50001V3.30001Z"
255
- fill={4294967280}
257
+ clipRule={0}
258
+ d="M17.7999 9.00001C17.7999 13.8601 13.8601 17.8 8.99995 17.8C4.13985 17.8 0.199951 13.8601 0.199951 9.00001C0.199951 4.13991 4.13985 0.200012 8.99995 0.200012C13.8601 0.200012 17.7999 4.13991 17.7999 9.00001ZM10.1 4.60001C10.1 5.20752 9.60746 5.70001 8.99995 5.70001C8.39244 5.70001 7.89995 5.20752 7.89995 4.60001C7.89995 3.9925 8.39244 3.50001 8.99995 3.50001C9.60746 3.50001 10.1 3.9925 10.1 4.60001ZM7.89995 7.90001C7.29244 7.90001 6.79995 8.3925 6.79995 9.00001C6.79995 9.60752 7.29244 10.1 7.89995 10.1V13.4C7.89995 14.0075 8.39244 14.5 8.99995 14.5H10.1C10.7075 14.5 11.2 14.0075 11.2 13.4C11.2 12.7925 10.7075 12.3 10.1 12.3V9.00001C10.1 8.3925 9.60746 7.90001 8.99995 7.90001H7.89995Z"
259
+ fill={4294956800}
260
+ fillRule={0}
256
261
  propList={
257
262
  [
258
263
  "fill",
264
+ "fillRule",
259
265
  ]
260
266
  }
261
267
  />
@@ -263,14 +269,14 @@ exports[`test icons render a solid phone icon in an ivory color 1`] = `
263
269
  </RNSVGSvgView>
264
270
  `;
265
271
 
266
- exports[`test icons render a solid refresh icon in the main color 1`] = `
272
+ exports[`test icons render a solid pencil icon in a grey color 1`] = `
267
273
  <RNSVGSvgView
268
274
  align="xMidYMid"
269
- bbHeight="28"
270
- bbWidth="28"
275
+ bbHeight={24}
276
+ bbWidth={24}
271
277
  fill="none"
272
278
  focusable={false}
273
- height="28"
279
+ height={24}
274
280
  meetOrSlice={0}
275
281
  minX={0}
276
282
  minY={0}
@@ -282,14 +288,14 @@ exports[`test icons render a solid refresh icon in the main color 1`] = `
282
288
  },
283
289
  {
284
290
  "flex": 0,
285
- "height": 28,
286
- "width": 28,
291
+ "height": 24,
292
+ "width": 24,
287
293
  },
288
294
  ]
289
295
  }
290
- vbHeight={22}
291
- vbWidth={22}
292
- width="28"
296
+ vbHeight={17}
297
+ vbWidth={16}
298
+ width={24}
293
299
  >
294
300
  <RNSVGGroup
295
301
  fill={null}
@@ -300,8 +306,17 @@ exports[`test icons render a solid refresh icon in the main color 1`] = `
300
306
  }
301
307
  >
302
308
  <RNSVGPath
303
- d="M4.40005 2.20001C5.00756 2.20001 5.50005 2.6925 5.50005 3.30001V5.61139C6.89715 4.18539 8.84462 3.30001 11 3.30001C14.3544 3.30001 17.2051 5.44426 18.2616 8.43344C18.4641 9.00623 18.1639 9.63468 17.5911 9.83714C17.0183 10.0396 16.3898 9.73937 16.1874 9.16658C15.4318 7.02891 13.3931 5.50001 11 5.50001C9.20162 5.50001 7.60329 6.36353 6.59934 7.70001H9.90005C10.5076 7.70001 11 8.1925 11 8.80001C11 9.40752 10.5076 9.90001 9.90005 9.90001H4.40005C3.79254 9.90001 3.30005 9.40752 3.30005 8.80001V3.30001C3.30005 2.6925 3.79254 2.20001 4.40005 2.20001ZM4.40903 12.1629C4.98182 11.9604 5.61027 12.2607 5.81273 12.8334C6.56828 14.9711 8.60703 16.5 11 16.5C12.7985 16.5 14.3968 15.6365 15.4008 14.3L12.1 14.3C11.4925 14.3 11 13.8075 11 13.2C11 12.5925 11.4925 12.1 12.1 12.1H17.6C17.8918 12.1 18.1716 12.2159 18.3779 12.4222C18.5842 12.6285 18.7 12.9083 18.7 13.2V18.7C18.7 19.3075 18.2076 19.8 17.6 19.8C16.9925 19.8 16.5 19.3075 16.5 18.7V16.3886C15.1029 17.8146 13.1555 18.7 11 18.7C7.6457 18.7 4.795 16.5558 3.73848 13.5666C3.53603 12.9938 3.83624 12.3653 4.40903 12.1629Z"
304
- fill={4279837036}
309
+ d="M11.9444 1.12367C12.8036 0.225461 14.1965 0.225461 15.0557 1.12367C15.9148 2.02187 15.9148 3.47815 15.0557 4.37636L14.1835 5.28818L11.0722 2.03549L11.9444 1.12367Z"
310
+ fill={4286611584}
311
+ propList={
312
+ [
313
+ "fill",
314
+ ]
315
+ }
316
+ />
317
+ <RNSVGPath
318
+ d="M9.5166 3.66184L0.300049 13.2973V16.55H3.41132L12.6279 6.91453L9.5166 3.66184Z"
319
+ fill={4286611584}
305
320
  propList={
306
321
  [
307
322
  "fill",
@@ -312,14 +327,14 @@ exports[`test icons render a solid refresh icon in the main color 1`] = `
312
327
  </RNSVGSvgView>
313
328
  `;
314
329
 
315
- exports[`test icons render a solid status-online icon in a navy color 1`] = `
330
+ exports[`test icons render a solid phone icon in an ivory color 1`] = `
316
331
  <RNSVGSvgView
317
332
  align="xMidYMid"
318
- bbHeight="28"
319
- bbWidth="28"
333
+ bbHeight={24}
334
+ bbWidth={24}
320
335
  fill="none"
321
336
  focusable={false}
322
- height="28"
337
+ height={24}
323
338
  meetOrSlice={0}
324
339
  minX={0}
325
340
  minY={0}
@@ -331,14 +346,14 @@ exports[`test icons render a solid status-online icon in a navy color 1`] = `
331
346
  },
332
347
  {
333
348
  "flex": 0,
334
- "height": 28,
335
- "width": 28,
349
+ "height": 24,
350
+ "width": 24,
336
351
  },
337
352
  ]
338
353
  }
339
- vbHeight={62}
340
- vbWidth={62}
341
- width="28"
354
+ vbHeight={18}
355
+ vbWidth={18}
356
+ width={24}
342
357
  >
343
358
  <RNSVGGroup
344
359
  fill={null}
@@ -349,31 +364,26 @@ exports[`test icons render a solid status-online icon in a navy color 1`] = `
349
364
  }
350
365
  >
351
366
  <RNSVGPath
352
- clipRule={0}
353
- d="M15.6564 11.2713C16.867 12.4819 16.867 14.4447 15.6564 15.6553C7.18199 24.1297 7.18199 37.8694 15.6564 46.3438C16.867 47.5544 16.867 49.5172 15.6564 50.7278C14.4457 51.9384 12.4829 51.9384 11.2723 50.7278C0.376679 39.8322 0.37668 22.1669 11.2723 11.2712C12.4829 10.0606 14.4457 10.0606 15.6564 11.2713ZM46.3448 11.272C47.5555 10.0613 49.5183 10.0613 50.7289 11.272C61.6245 22.1676 61.6245 39.8329 50.7289 50.7285C49.5183 51.9392 47.5555 51.9392 46.3448 50.7285C45.1342 49.5179 45.1342 47.5551 46.3448 46.3445C54.8192 37.8701 54.8192 24.1304 46.3448 15.656C45.1342 14.4454 45.1342 12.4826 46.3448 11.272ZM24.4245 20.0394C25.6351 21.25 25.6351 23.2128 24.4245 24.4234C20.7926 28.0553 20.7926 33.9437 24.4245 37.5756C25.6351 38.7863 25.6351 40.7491 24.4245 41.9597C23.2139 43.1703 21.2511 43.1703 20.0404 41.9597C13.9873 35.9066 13.9873 26.0925 20.0404 20.0394C21.2511 18.8288 23.2139 18.8288 24.4245 20.0394ZM37.5767 20.0401C38.7873 18.8295 40.7501 18.8295 41.9608 20.0401C48.0139 26.0932 48.0139 35.9073 41.9608 41.9604C40.7501 43.171 38.7873 43.171 37.5767 41.9604C36.3661 40.7498 36.3661 38.787 37.5767 37.5763C41.2086 33.9445 41.2086 28.056 37.5767 24.4242C36.3661 23.2135 36.3661 21.2507 37.5767 20.0401ZM31.0006 27.9002C32.7127 27.9002 34.1006 29.2882 34.1006 31.0002V31.0312C34.1006 32.7433 32.7127 34.1312 31.0006 34.1312C29.2885 34.1312 27.9006 32.7433 27.9006 31.0312V31.0002C27.9006 29.2882 29.2885 27.9002 31.0006 27.9002Z"
354
- fill={4278190208}
355
- fillRule={0}
367
+ d="M0.199951 1.30001C0.199951 0.692499 0.692438 0.200012 1.29995 0.200012H3.66811C4.20583 0.200012 4.66474 0.588767 4.75314 1.11917L5.56639 5.99863C5.64578 6.47497 5.40521 6.94738 4.97329 7.16334L3.27034 8.01482C4.49827 11.0662 6.9338 13.5017 9.98514 14.7296L10.8366 13.0267C11.0526 12.5947 11.525 12.3542 12.0013 12.4336L16.8808 13.2468C17.4112 13.3352 17.7999 13.7941 17.7999 14.3319V16.7C17.7999 17.3075 17.3075 17.8 16.6999 17.8H14.5C6.60228 17.8 0.199951 11.3977 0.199951 3.50001V1.30001Z"
368
+ fill={4294967280}
356
369
  propList={
357
370
  [
358
371
  "fill",
359
- "fillRule",
360
- "stroke",
361
372
  ]
362
373
  }
363
- stroke={4278190208}
364
374
  />
365
375
  </RNSVGGroup>
366
376
  </RNSVGSvgView>
367
377
  `;
368
378
 
369
- exports[`test icons render a solid trash icon in a tomato color 1`] = `
379
+ exports[`test icons render a solid refresh icon in the main color 1`] = `
370
380
  <RNSVGSvgView
371
381
  align="xMidYMid"
372
- bbHeight="28"
373
- bbWidth="28"
382
+ bbHeight={24}
383
+ bbWidth={24}
374
384
  fill="none"
375
385
  focusable={false}
376
- height="28"
386
+ height={24}
377
387
  meetOrSlice={0}
378
388
  minX={0}
379
389
  minY={0}
@@ -385,14 +395,14 @@ exports[`test icons render a solid trash icon in a tomato color 1`] = `
385
395
  },
386
396
  {
387
397
  "flex": 0,
388
- "height": 28,
389
- "width": 28,
398
+ "height": 24,
399
+ "width": 24,
390
400
  },
391
401
  ]
392
402
  }
393
- vbHeight={22}
394
- vbWidth={24}
395
- width="28"
403
+ vbHeight={18}
404
+ vbWidth={16}
405
+ width={24}
396
406
  >
397
407
  <RNSVGGroup
398
408
  fill={null}
@@ -403,14 +413,11 @@ exports[`test icons render a solid trash icon in a tomato color 1`] = `
403
413
  }
404
414
  >
405
415
  <RNSVGPath
406
- clipRule={0}
407
- d="M10.8502 2.2002C10.4146 2.2002 10.0164 2.4356 9.8216 2.80826L8.98946 4.4002H5.1002C4.46507 4.4002 3.9502 4.89268 3.9502 5.5002C3.9502 6.10771 4.46507 6.6002 5.1002 6.6002L5.1002 17.6002C5.1002 18.8152 6.12994 19.8002 7.4002 19.8002H16.6002C17.8705 19.8002 18.9002 18.8152 18.9002 17.6002V6.6002C19.5353 6.6002 20.0502 6.10771 20.0502 5.5002C20.0502 4.89268 19.5353 4.4002 18.9002 4.4002H15.0109L14.1788 2.80826C13.984 2.4356 13.5858 2.2002 13.1502 2.2002H10.8502ZM8.5502 8.8002C8.5502 8.19268 9.06507 7.7002 9.7002 7.7002C10.3353 7.7002 10.8502 8.19268 10.8502 8.8002V15.4002C10.8502 16.0077 10.3353 16.5002 9.7002 16.5002C9.06507 16.5002 8.5502 16.0077 8.5502 15.4002V8.8002ZM14.3002 7.7002C13.6651 7.7002 13.1502 8.19268 13.1502 8.8002V15.4002C13.1502 16.0077 13.6651 16.5002 14.3002 16.5002C14.9353 16.5002 15.4502 16.0077 15.4502 15.4002V8.8002C15.4502 8.19268 14.9353 7.7002 14.3002 7.7002Z"
408
- fill={4294927175}
409
- fillRule={0}
416
+ d="M1.40005 0.200012C2.00756 0.200012 2.50005 0.692499 2.50005 1.30001V3.61139C3.89715 2.18539 5.84462 1.30001 8.00005 1.30001C11.3544 1.30001 14.2051 3.44426 15.2616 6.43344C15.4641 7.00623 15.1639 7.63468 14.5911 7.83714C14.0183 8.03959 13.3898 7.73937 13.1874 7.16658C12.4318 5.02891 10.3931 3.50001 8.00005 3.50001C6.20162 3.50001 4.60329 4.36353 3.59934 5.70001H6.90005C7.50756 5.70001 8.00005 6.1925 8.00005 6.80001C8.00005 7.40752 7.50756 7.90001 6.90005 7.90001H1.40005C0.792536 7.90001 0.300049 7.40752 0.300049 6.80001V1.30001C0.300049 0.692499 0.792536 0.200012 1.40005 0.200012ZM1.40903 10.1629C1.98182 9.96044 2.61027 10.2607 2.81273 10.8334C3.56828 12.9711 5.60703 14.5 8.00005 14.5C9.79847 14.5 11.3968 13.6365 12.4008 12.3L9.10005 12.3C8.49254 12.3 8.00005 11.8075 8.00005 11.2C8.00005 10.5925 8.49254 10.1 9.10005 10.1H14.6C14.8918 10.1 15.1716 10.2159 15.3779 10.4222C15.5842 10.6285 15.7 10.9083 15.7 11.2V16.7C15.7 17.3075 15.2076 17.8 14.6 17.8C13.9925 17.8 13.5 17.3075 13.5 16.7V14.3886C12.1029 15.8146 10.1555 16.7 8.00005 16.7C4.6457 16.7 1.795 14.5558 0.738478 11.5666C0.536026 10.9938 0.836243 10.3653 1.40903 10.1629Z"
417
+ fill={4279837036}
410
418
  propList={
411
419
  [
412
420
  "fill",
413
- "fillRule",
414
421
  ]
415
422
  }
416
423
  />
@@ -418,14 +425,14 @@ exports[`test icons render a solid trash icon in a tomato color 1`] = `
418
425
  </RNSVGSvgView>
419
426
  `;
420
427
 
421
- exports[`test icons render an outlined calendar icon in the main color 1`] = `
428
+ exports[`test icons render a solid status-online icon in a navy color 1`] = `
422
429
  <RNSVGSvgView
423
430
  align="xMidYMid"
424
- bbHeight="28"
425
- bbWidth="28"
431
+ bbHeight={24}
432
+ bbWidth={24}
426
433
  fill="none"
427
434
  focusable={false}
428
- height="28"
435
+ height={24}
429
436
  meetOrSlice={0}
430
437
  minX={0}
431
438
  minY={0}
@@ -437,14 +444,14 @@ exports[`test icons render an outlined calendar icon in the main color 1`] = `
437
444
  },
438
445
  {
439
446
  "flex": 0,
440
- "height": 28,
441
- "width": 28,
447
+ "height": 24,
448
+ "width": 24,
442
449
  },
443
450
  ]
444
451
  }
445
- vbHeight={27}
446
- vbWidth={27}
447
- width="28"
452
+ vbHeight={17}
453
+ vbWidth={20}
454
+ width={24}
448
455
  >
449
456
  <RNSVGGroup
450
457
  fill={null}
@@ -455,32 +462,29 @@ exports[`test icons render an outlined calendar icon in the main color 1`] = `
455
462
  }
456
463
  >
457
464
  <RNSVGPath
458
- d="M9.16667 7.875V3.375M17.8333 7.875V3.375M8.08333 12.375H18.9167M5.91667 23.625H21.0833C22.28 23.625 23.25 22.6176 23.25 21.375V7.875C23.25 6.63236 22.28 5.625 21.0833 5.625H5.91667C4.72005 5.625 3.75 6.63236 3.75 7.875V21.375C3.75 22.6176 4.72005 23.625 5.91667 23.625Z"
465
+ clipRule={0}
466
+ d="M4.55538 1.18119C4.98495 1.63029 4.98495 2.35843 4.55538 2.80753C1.54834 5.95125 1.54834 11.0482 4.55537 14.192C4.98495 14.6411 4.98495 15.3692 4.55537 15.8183C4.1258 16.2674 3.42932 16.2674 2.99974 15.8183C-0.86645 11.7764 -0.86645 5.22311 2.99974 1.18119C3.42932 0.732085 4.1258 0.732085 4.55538 1.18119ZM15.4448 1.18145C15.8744 0.732352 16.5709 0.732352 17.0005 1.18145C20.8667 5.22338 20.8667 11.7766 17.0005 15.8186C16.5709 16.2677 15.8744 16.2677 15.4448 15.8186C15.0153 15.3695 15.0153 14.6413 15.4448 14.1922C18.4519 11.0485 18.4519 5.95152 15.4448 2.8078C15.0153 2.3587 15.0153 1.63056 15.4448 1.18145ZM7.66665 4.43388C8.09623 4.88298 8.09623 5.61112 7.66665 6.06023C6.37792 7.40753 6.37792 9.59195 7.66665 10.9393C8.09623 11.3884 8.09623 12.1165 7.66665 12.5656C7.23707 13.0147 6.54059 13.0147 6.11102 12.5656C3.96313 10.3201 3.96313 6.67939 6.11102 4.43388C6.54059 3.98478 7.23708 3.98478 7.66665 4.43388ZM12.3336 4.43415C12.7631 3.98504 13.4596 3.98504 13.8892 4.43415C16.0371 6.67966 16.0371 10.3204 13.8892 12.5659C13.4596 13.015 12.7631 13.015 12.3336 12.5659C11.904 12.1168 11.904 11.3886 12.3336 10.9395C13.6223 9.59222 13.6223 7.4078 12.3336 6.06049C11.904 5.61139 11.904 4.88325 12.3336 4.43415ZM10.0001 7.35001C10.6076 7.35001 11.1001 7.86488 11.1001 8.50001V8.51151C11.1001 9.14664 10.6076 9.66151 10.0001 9.66151C9.39259 9.66151 8.9001 9.14664 8.9001 8.51151V8.50001C8.9001 7.86488 9.39259 7.35001 10.0001 7.35001Z"
467
+ fill={4278190208}
468
+ fillRule={0}
459
469
  propList={
460
470
  [
461
- "stroke",
462
- "strokeWidth",
463
- "strokeLinecap",
464
- "strokeLinejoin",
471
+ "fill",
472
+ "fillRule",
465
473
  ]
466
474
  }
467
- stroke={4279837036}
468
- strokeLinecap={1}
469
- strokeLinejoin={1}
470
- strokeWidth="2"
471
475
  />
472
476
  </RNSVGGroup>
473
477
  </RNSVGSvgView>
474
478
  `;
475
479
 
476
- exports[`test icons render an outlined chat icon in the main color 1`] = `
480
+ exports[`test icons render a solid trash icon in a tomato color 1`] = `
477
481
  <RNSVGSvgView
478
482
  align="xMidYMid"
479
- bbHeight="28"
480
- bbWidth="28"
483
+ bbHeight={24}
484
+ bbWidth={24}
481
485
  fill="none"
482
486
  focusable={false}
483
- height="28"
487
+ height={24}
484
488
  meetOrSlice={0}
485
489
  minX={0}
486
490
  minY={0}
@@ -492,14 +496,14 @@ exports[`test icons render an outlined chat icon in the main color 1`] = `
492
496
  },
493
497
  {
494
498
  "flex": 0,
495
- "height": 28,
496
- "width": 28,
499
+ "height": 24,
500
+ "width": 24,
497
501
  },
498
502
  ]
499
503
  }
500
- vbHeight={28}
501
- vbWidth={28}
502
- width="28"
504
+ vbHeight={18}
505
+ vbWidth={17}
506
+ width={24}
503
507
  >
504
508
  <RNSVGGroup
505
509
  fill={null}
@@ -510,32 +514,29 @@ exports[`test icons render an outlined chat icon in the main color 1`] = `
510
514
  }
511
515
  >
512
516
  <RNSVGPath
513
- d="M9.5 14H9.51125M14 14H14.0113M18.5 14H18.5113M24.125 14C24.125 18.9706 19.5919 23 14 23C12.2683 23 10.6382 22.6136 9.21275 21.9324L3.875 23L5.44436 18.815C4.45051 17.4226 3.875 15.7711 3.875 14C3.875 9.02944 8.40812 5 14 5C19.5919 5 24.125 9.02944 24.125 14Z"
517
+ clipRule={0}
518
+ d="M7.34995 0.200012C6.91436 0.200012 6.51616 0.435415 6.32136 0.808077L5.48921 2.40001H1.59995C0.964824 2.40001 0.449951 2.8925 0.449951 3.50001C0.449951 4.10753 0.964824 4.60001 1.59995 4.60001L1.59995 15.6C1.59995 16.815 2.6297 17.8 3.89995 17.8H13.1C14.3702 17.8 15.4 16.815 15.4 15.6V4.60001C16.0351 4.60001 16.55 4.10753 16.55 3.50001C16.55 2.8925 16.0351 2.40001 15.4 2.40001H11.5107L10.6785 0.808077C10.4837 0.435415 10.0855 0.200012 9.64995 0.200012H7.34995ZM5.04995 6.80001C5.04995 6.1925 5.56482 5.70001 6.19995 5.70001C6.83508 5.70001 7.34995 6.1925 7.34995 6.80001V13.4C7.34995 14.0075 6.83508 14.5 6.19995 14.5C5.56482 14.5 5.04995 14.0075 5.04995 13.4V6.80001ZM10.8 5.70001C10.1648 5.70001 9.64995 6.1925 9.64995 6.80001V13.4C9.64995 14.0075 10.1648 14.5 10.8 14.5C11.4351 14.5 11.95 14.0075 11.95 13.4V6.80001C11.95 6.1925 11.4351 5.70001 10.8 5.70001Z"
519
+ fill={4294927175}
520
+ fillRule={0}
514
521
  propList={
515
522
  [
516
- "stroke",
517
- "strokeWidth",
518
- "strokeLinecap",
519
- "strokeLinejoin",
523
+ "fill",
524
+ "fillRule",
520
525
  ]
521
526
  }
522
- stroke={4279837036}
523
- strokeLinecap={1}
524
- strokeLinejoin={1}
525
- strokeWidth="2"
526
527
  />
527
528
  </RNSVGGroup>
528
529
  </RNSVGSvgView>
529
530
  `;
530
531
 
531
- exports[`test icons render an outlined chat-alt icon in a grey color 1`] = `
532
+ exports[`test icons render an outlined calendar icon in the main color 1`] = `
532
533
  <RNSVGSvgView
533
534
  align="xMidYMid"
534
- bbHeight="28"
535
- bbWidth="28"
535
+ bbHeight={24}
536
+ bbWidth={24}
536
537
  fill="none"
537
538
  focusable={false}
538
- height="28"
539
+ height={24}
539
540
  meetOrSlice={0}
540
541
  minX={0}
541
542
  minY={0}
@@ -547,14 +548,14 @@ exports[`test icons render an outlined chat-alt icon in a grey color 1`] = `
547
548
  },
548
549
  {
549
550
  "flex": 0,
550
- "height": 28,
551
- "width": 28,
551
+ "height": 24,
552
+ "width": 24,
552
553
  },
553
554
  ]
554
555
  }
555
- vbHeight={27}
556
- vbWidth={27}
557
- width="28"
556
+ vbHeight={24}
557
+ vbWidth={24}
558
+ width={24}
558
559
  >
559
560
  <RNSVGGroup
560
561
  fill={null}
@@ -565,7 +566,7 @@ exports[`test icons render an outlined chat-alt icon in a grey color 1`] = `
565
566
  }
566
567
  >
567
568
  <RNSVGPath
568
- d="M9 11.25H9.01125M13.5 11.25H13.5113M18 11.25H18.0113M10.125 18H5.625C4.38236 18 3.375 16.9926 3.375 15.75V6.75C3.375 5.50736 4.38236 4.5 5.625 4.5H21.375C22.6176 4.5 23.625 5.50736 23.625 6.75V15.75C23.625 16.9926 22.6176 18 21.375 18H15.75L10.125 23.625V18Z"
569
+ d="M7.33333 6.16667V1.5M16.6667 6.16667V1.5M6.16667 10.8333H17.8333M3.83333 22.5H20.1667C21.4553 22.5 22.5 21.4553 22.5 20.1667V6.16667C22.5 4.878 21.4553 3.83333 20.1667 3.83333H3.83333C2.54467 3.83333 1.5 4.878 1.5 6.16667V20.1667C1.5 21.4553 2.54467 22.5 3.83333 22.5Z"
569
570
  propList={
570
571
  [
571
572
  "stroke",
@@ -574,7 +575,7 @@ exports[`test icons render an outlined chat-alt icon in a grey color 1`] = `
574
575
  "strokeLinejoin",
575
576
  ]
576
577
  }
577
- stroke={4286611584}
578
+ stroke={4279837036}
578
579
  strokeLinecap={1}
579
580
  strokeLinejoin={1}
580
581
  strokeWidth="2"
@@ -583,14 +584,14 @@ exports[`test icons render an outlined chat-alt icon in a grey color 1`] = `
583
584
  </RNSVGSvgView>
584
585
  `;
585
586
 
586
- exports[`test icons render an outlined check-circle icon in a grey color 1`] = `
587
+ exports[`test icons render an outlined chat icon in the main color 1`] = `
587
588
  <RNSVGSvgView
588
589
  align="xMidYMid"
589
- bbHeight="28"
590
- bbWidth="28"
590
+ bbHeight={24}
591
+ bbWidth={24}
591
592
  fill="none"
592
593
  focusable={false}
593
- height="28"
594
+ height={24}
594
595
  meetOrSlice={0}
595
596
  minX={0}
596
597
  minY={0}
@@ -602,14 +603,14 @@ exports[`test icons render an outlined check-circle icon in a grey color 1`] = `
602
603
  },
603
604
  {
604
605
  "flex": 0,
605
- "height": 28,
606
- "width": 28,
606
+ "height": 24,
607
+ "width": 24,
607
608
  },
608
609
  ]
609
610
  }
610
- vbHeight={27}
611
- vbWidth={27}
612
- width="28"
611
+ vbHeight={21}
612
+ vbWidth={23}
613
+ width={24}
613
614
  >
614
615
  <RNSVGGroup
615
616
  fill={null}
@@ -620,7 +621,7 @@ exports[`test icons render an outlined check-circle icon in a grey color 1`] = `
620
621
  }
621
622
  >
622
623
  <RNSVGPath
623
- d="M10.125 13.5L12.375 15.75L16.875 11.25M23.625 13.5C23.625 19.0919 19.0919 23.625 13.5 23.625C7.90812 23.625 3.375 19.0919 3.375 13.5C3.375 7.90812 7.90812 3.375 13.5 3.375C19.0919 3.375 23.625 7.90812 23.625 13.5Z"
624
+ d="M7 10.5H7.01125M11.5 10.5H11.5113M16 10.5H16.0113M21.625 10.5C21.625 15.4706 17.0919 19.5 11.5 19.5C9.76832 19.5 8.13818 19.1136 6.71275 18.4324L1.375 19.5L2.94436 15.315C1.95051 13.9226 1.375 12.2711 1.375 10.5C1.375 5.52944 5.90812 1.5 11.5 1.5C17.0919 1.5 21.625 5.52944 21.625 10.5Z"
624
625
  propList={
625
626
  [
626
627
  "stroke",
@@ -629,7 +630,7 @@ exports[`test icons render an outlined check-circle icon in a grey color 1`] = `
629
630
  "strokeLinejoin",
630
631
  ]
631
632
  }
632
- stroke={4286611584}
633
+ stroke={4279837036}
633
634
  strokeLinecap={1}
634
635
  strokeLinejoin={1}
635
636
  strokeWidth="2"
@@ -638,14 +639,14 @@ exports[`test icons render an outlined check-circle icon in a grey color 1`] = `
638
639
  </RNSVGSvgView>
639
640
  `;
640
641
 
641
- exports[`test icons render an outlined chevron-left icon in a white color 1`] = `
642
+ exports[`test icons render an outlined chat-alt icon in a grey color and a size of 20px 1`] = `
642
643
  <RNSVGSvgView
643
644
  align="xMidYMid"
644
- bbHeight="28"
645
- bbWidth="28"
645
+ bbHeight={20}
646
+ bbWidth={20}
646
647
  fill="none"
647
648
  focusable={false}
648
- height="28"
649
+ height={20}
649
650
  meetOrSlice={0}
650
651
  minX={0}
651
652
  minY={0}
@@ -657,14 +658,14 @@ exports[`test icons render an outlined chevron-left icon in a white color 1`] =
657
658
  },
658
659
  {
659
660
  "flex": 0,
660
- "height": 28,
661
- "width": 28,
661
+ "height": 20,
662
+ "width": 20,
662
663
  },
663
664
  ]
664
665
  }
665
- vbHeight={27}
666
- vbWidth={27}
667
- width="28"
666
+ vbHeight={22}
667
+ vbWidth={23}
668
+ width={20}
668
669
  >
669
670
  <RNSVGGroup
670
671
  fill={null}
@@ -675,7 +676,7 @@ exports[`test icons render an outlined chevron-left icon in a white color 1`] =
675
676
  }
676
677
  >
677
678
  <RNSVGPath
678
- d="M16.875 21.375L9 13.5L16.875 5.625"
679
+ d="M7 8.25H7.01125M11.5 8.25H11.5113M16 8.25H16.0113M8.125 15H3.625C2.38236 15 1.375 13.9926 1.375 12.75V3.75C1.375 2.50736 2.38236 1.5 3.625 1.5H19.375C20.6176 1.5 21.625 2.50736 21.625 3.75V12.75C21.625 13.9926 20.6176 15 19.375 15H13.75L8.125 20.625V15Z"
679
680
  propList={
680
681
  [
681
682
  "stroke",
@@ -684,7 +685,7 @@ exports[`test icons render an outlined chevron-left icon in a white color 1`] =
684
685
  "strokeLinejoin",
685
686
  ]
686
687
  }
687
- stroke={4294967295}
688
+ stroke={4286611584}
688
689
  strokeLinecap={1}
689
690
  strokeLinejoin={1}
690
691
  strokeWidth="2"
@@ -693,14 +694,14 @@ exports[`test icons render an outlined chevron-left icon in a white color 1`] =
693
694
  </RNSVGSvgView>
694
695
  `;
695
696
 
696
- exports[`test icons render an outlined chevron-right icon in a white color 1`] = `
697
+ exports[`test icons render an outlined check-circle icon in a grey color 1`] = `
697
698
  <RNSVGSvgView
698
699
  align="xMidYMid"
699
- bbHeight="28"
700
- bbWidth="28"
700
+ bbHeight={24}
701
+ bbWidth={24}
701
702
  fill="none"
702
703
  focusable={false}
703
- height="28"
704
+ height={24}
704
705
  meetOrSlice={0}
705
706
  minX={0}
706
707
  minY={0}
@@ -712,14 +713,14 @@ exports[`test icons render an outlined chevron-right icon in a white color 1`] =
712
713
  },
713
714
  {
714
715
  "flex": 0,
715
- "height": 28,
716
- "width": 28,
716
+ "height": 24,
717
+ "width": 24,
717
718
  },
718
719
  ]
719
720
  }
720
- vbHeight={27}
721
- vbWidth={26}
722
- width="28"
721
+ vbHeight={23}
722
+ vbWidth={23}
723
+ width={24}
723
724
  >
724
725
  <RNSVGGroup
725
726
  fill={null}
@@ -730,7 +731,7 @@ exports[`test icons render an outlined chevron-right icon in a white color 1`] =
730
731
  }
731
732
  >
732
733
  <RNSVGPath
733
- d="M9.75 5.625L17.3333 13.5L9.75 21.375"
734
+ d="M8.125 11.5L10.375 13.75L14.875 9.25M21.625 11.5C21.625 17.0919 17.0919 21.625 11.5 21.625C5.90812 21.625 1.375 17.0919 1.375 11.5C1.375 5.90812 5.90812 1.375 11.5 1.375C17.0919 1.375 21.625 5.90812 21.625 11.5Z"
734
735
  propList={
735
736
  [
736
737
  "stroke",
@@ -739,7 +740,7 @@ exports[`test icons render an outlined chevron-right icon in a white color 1`] =
739
740
  "strokeLinejoin",
740
741
  ]
741
742
  }
742
- stroke={4294967295}
743
+ stroke={4286611584}
743
744
  strokeLinecap={1}
744
745
  strokeLinejoin={1}
745
746
  strokeWidth="2"
@@ -748,14 +749,14 @@ exports[`test icons render an outlined chevron-right icon in a white color 1`] =
748
749
  </RNSVGSvgView>
749
750
  `;
750
751
 
751
- exports[`test icons render an outlined clock icon in the main color 1`] = `
752
+ exports[`test icons render an outlined chevron-left icon in a white color 1`] = `
752
753
  <RNSVGSvgView
753
754
  align="xMidYMid"
754
- bbHeight="28"
755
- bbWidth="28"
755
+ bbHeight={24}
756
+ bbWidth={24}
756
757
  fill="none"
757
758
  focusable={false}
758
- height="28"
759
+ height={24}
759
760
  meetOrSlice={0}
760
761
  minX={0}
761
762
  minY={0}
@@ -767,14 +768,14 @@ exports[`test icons render an outlined clock icon in the main color 1`] = `
767
768
  },
768
769
  {
769
770
  "flex": 0,
770
- "height": 28,
771
- "width": 28,
771
+ "height": 24,
772
+ "width": 24,
772
773
  },
773
774
  ]
774
775
  }
775
- vbHeight={26}
776
- vbWidth={27}
777
- width="28"
776
+ vbHeight={19}
777
+ vbWidth={10}
778
+ width={24}
778
779
  >
779
780
  <RNSVGGroup
780
781
  fill={null}
@@ -785,7 +786,7 @@ exports[`test icons render an outlined clock icon in the main color 1`] = `
785
786
  }
786
787
  >
787
788
  <RNSVGPath
788
- d="M13.5 8.66667V13L16.875 16.25M23.625 13C23.625 18.3848 19.0919 22.75 13.5 22.75C7.90812 22.75 3.375 18.3848 3.375 13C3.375 7.61522 7.90812 3.25 13.5 3.25C19.0919 3.25 23.625 7.61522 23.625 13Z"
789
+ d="M8.875 17.375L1 9.5L8.875 1.625"
789
790
  propList={
790
791
  [
791
792
  "stroke",
@@ -794,7 +795,7 @@ exports[`test icons render an outlined clock icon in the main color 1`] = `
794
795
  "strokeLinejoin",
795
796
  ]
796
797
  }
797
- stroke={4279837036}
798
+ stroke={4294967295}
798
799
  strokeLinecap={1}
799
800
  strokeLinejoin={1}
800
801
  strokeWidth="2"
@@ -803,14 +804,14 @@ exports[`test icons render an outlined clock icon in the main color 1`] = `
803
804
  </RNSVGSvgView>
804
805
  `;
805
806
 
806
- exports[`test icons render an outlined cloud-download icon in a grey color 1`] = `
807
+ exports[`test icons render an outlined chevron-right icon in a white color 1`] = `
807
808
  <RNSVGSvgView
808
809
  align="xMidYMid"
809
- bbHeight="28"
810
- bbWidth="28"
810
+ bbHeight={24}
811
+ bbWidth={24}
811
812
  fill="none"
812
813
  focusable={false}
813
- height="28"
814
+ height={24}
814
815
  meetOrSlice={0}
815
816
  minX={0}
816
817
  minY={0}
@@ -822,14 +823,14 @@ exports[`test icons render an outlined cloud-download icon in a grey color 1`] =
822
823
  },
823
824
  {
824
825
  "flex": 0,
825
- "height": 28,
826
- "width": 28,
826
+ "height": 24,
827
+ "width": 24,
827
828
  },
828
829
  ]
829
830
  }
830
- vbHeight={27}
831
- vbWidth={27}
832
- width="28"
831
+ vbHeight={19}
832
+ vbWidth={11}
833
+ width={24}
833
834
  >
834
835
  <RNSVGGroup
835
836
  fill={null}
@@ -840,7 +841,7 @@ exports[`test icons render an outlined cloud-download icon in a grey color 1`] =
840
841
  }
841
842
  >
842
843
  <RNSVGPath
843
- d="M7.875 18C5.38972 18 3.375 15.9853 3.375 13.5C3.375 11.3546 4.87639 9.5598 6.8858 9.10907C6.7969 8.71194 6.75 8.29895 6.75 7.875C6.75 4.7684 9.2684 2.25 12.375 2.25C15.0967 2.25 17.3669 4.18303 17.8877 6.7511C17.925 6.75037 17.9625 6.75 18 6.75C21.1066 6.75 23.625 9.2684 23.625 12.375C23.625 15.0963 21.6925 17.3663 19.125 17.8875M10.125 21.375L13.5 24.75M13.5 24.75L16.875 21.375M13.5 24.75V11.25"
844
+ d="M1.75 1.625L9.33333 9.5L1.75 17.375"
844
845
  propList={
845
846
  [
846
847
  "stroke",
@@ -849,7 +850,7 @@ exports[`test icons render an outlined cloud-download icon in a grey color 1`] =
849
850
  "strokeLinejoin",
850
851
  ]
851
852
  }
852
- stroke={4286611584}
853
+ stroke={4294967295}
853
854
  strokeLinecap={1}
854
855
  strokeLinejoin={1}
855
856
  strokeWidth="2"
@@ -858,14 +859,14 @@ exports[`test icons render an outlined cloud-download icon in a grey color 1`] =
858
859
  </RNSVGSvgView>
859
860
  `;
860
861
 
861
- exports[`test icons render an outlined cross icon in the main color 1`] = `
862
+ exports[`test icons render an outlined clock icon in the main color 1`] = `
862
863
  <RNSVGSvgView
863
864
  align="xMidYMid"
864
- bbHeight="28"
865
- bbWidth="28"
865
+ bbHeight={24}
866
+ bbWidth={24}
866
867
  fill="none"
867
868
  focusable={false}
868
- height="28"
869
+ height={24}
869
870
  meetOrSlice={0}
870
871
  minX={0}
871
872
  minY={0}
@@ -877,14 +878,14 @@ exports[`test icons render an outlined cross icon in the main color 1`] = `
877
878
  },
878
879
  {
879
880
  "flex": 0,
880
- "height": 28,
881
- "width": 28,
881
+ "height": 24,
882
+ "width": 24,
882
883
  },
883
884
  ]
884
885
  }
885
- vbHeight={27}
886
- vbWidth={27}
887
- width="28"
886
+ vbHeight={22}
887
+ vbWidth={23}
888
+ width={24}
888
889
  >
889
890
  <RNSVGGroup
890
891
  fill={null}
@@ -895,7 +896,7 @@ exports[`test icons render an outlined cross icon in the main color 1`] = `
895
896
  }
896
897
  >
897
898
  <RNSVGPath
898
- d="M6.75 20.25L20.25 6.75M6.75 6.75L20.25 20.25"
899
+ d="M11.5 6.66667V11L14.875 14.25M21.625 11C21.625 16.3848 17.0919 20.75 11.5 20.75C5.90812 20.75 1.375 16.3848 1.375 11C1.375 5.61522 5.90812 1.25 11.5 1.25C17.0919 1.25 21.625 5.61522 21.625 11Z"
899
900
  propList={
900
901
  [
901
902
  "stroke",
@@ -913,14 +914,14 @@ exports[`test icons render an outlined cross icon in the main color 1`] = `
913
914
  </RNSVGSvgView>
914
915
  `;
915
916
 
916
- exports[`test icons render an outlined currency-euro icon in a red color 1`] = `
917
+ exports[`test icons render an outlined cloud-download icon in a grey color with a size of 16px 1`] = `
917
918
  <RNSVGSvgView
918
919
  align="xMidYMid"
919
- bbHeight="28"
920
- bbWidth="28"
920
+ bbHeight={16}
921
+ bbWidth={16}
921
922
  fill="none"
922
923
  focusable={false}
923
- height="28"
924
+ height={16}
924
925
  meetOrSlice={0}
925
926
  minX={0}
926
927
  minY={0}
@@ -932,14 +933,14 @@ exports[`test icons render an outlined currency-euro icon in a red color 1`] = `
932
933
  },
933
934
  {
934
935
  "flex": 0,
935
- "height": 28,
936
- "width": 28,
936
+ "height": 16,
937
+ "width": 16,
937
938
  },
938
939
  ]
939
940
  }
940
- vbHeight={27}
941
- vbWidth={26}
942
- width="28"
941
+ vbHeight={25}
942
+ vbWidth={23}
943
+ width={16}
943
944
  >
944
945
  <RNSVGGroup
945
946
  fill={null}
@@ -950,7 +951,7 @@ exports[`test icons render an outlined currency-euro icon in a red color 1`] = `
950
951
  }
951
952
  >
952
953
  <RNSVGPath
953
- d="M15.2981 17.4775C14.0289 19.6742 11.9711 19.6742 10.7019 17.4775C9.4327 15.2808 9.4327 11.7192 10.7019 9.52252C11.9711 7.32583 14.0289 7.32583 15.2981 9.52252M8.66667 11.8125H13M8.66667 15.1875H13M22.75 13.5C22.75 19.0919 18.3848 23.625 13 23.625C7.61522 23.625 3.25 19.0919 3.25 13.5C3.25 7.90812 7.61522 3.375 13 3.375C18.3848 3.375 22.75 7.90812 22.75 13.5Z"
954
+ d="M5.875 17C3.38972 17 1.375 14.9853 1.375 12.5C1.375 10.3546 2.87639 8.5598 4.8858 8.10907C4.7969 7.71194 4.75 7.29895 4.75 6.875C4.75 3.7684 7.2684 1.25 10.375 1.25C13.0967 1.25 15.3669 3.18303 15.8877 5.7511C15.925 5.75037 15.9625 5.75 16 5.75C19.1066 5.75 21.625 8.2684 21.625 11.375C21.625 14.0963 19.6925 16.3663 17.125 16.8875M8.125 20.375L11.5 23.75M11.5 23.75L14.875 20.375M11.5 23.75V10.25"
954
955
  propList={
955
956
  [
956
957
  "stroke",
@@ -959,7 +960,7 @@ exports[`test icons render an outlined currency-euro icon in a red color 1`] = `
959
960
  "strokeLinejoin",
960
961
  ]
961
962
  }
962
- stroke={4294901760}
963
+ stroke={4286611584}
963
964
  strokeLinecap={1}
964
965
  strokeLinejoin={1}
965
966
  strokeWidth="2"
@@ -968,14 +969,14 @@ exports[`test icons render an outlined currency-euro icon in a red color 1`] = `
968
969
  </RNSVGSvgView>
969
970
  `;
970
971
 
971
- exports[`test icons render an outlined document-text icon in a white color 1`] = `
972
+ exports[`test icons render an outlined currency-euro icon in a red color 1`] = `
972
973
  <RNSVGSvgView
973
974
  align="xMidYMid"
974
- bbHeight="28"
975
- bbWidth="28"
975
+ bbHeight={24}
976
+ bbWidth={24}
976
977
  fill="none"
977
978
  focusable={false}
978
- height="28"
979
+ height={24}
979
980
  meetOrSlice={0}
980
981
  minX={0}
981
982
  minY={0}
@@ -987,14 +988,14 @@ exports[`test icons render an outlined document-text icon in a white color 1`] =
987
988
  },
988
989
  {
989
990
  "flex": 0,
990
- "height": 28,
991
- "width": 28,
991
+ "height": 24,
992
+ "width": 24,
992
993
  },
993
994
  ]
994
995
  }
995
- vbHeight={32}
996
- vbWidth={32}
997
- width="28"
996
+ vbHeight={23}
997
+ vbWidth={22}
998
+ width={24}
998
999
  >
999
1000
  <RNSVGGroup
1000
1001
  fill={null}
@@ -1005,7 +1006,7 @@ exports[`test icons render an outlined document-text icon in a white color 1`] =
1005
1006
  }
1006
1007
  >
1007
1008
  <RNSVGPath
1008
- d="M12 16H20M12 21.3333H20M22.6667 28H9.33332C7.86056 28 6.66666 26.8061 6.66666 25.3333V6.66667C6.66666 5.19391 7.86056 4 9.33332 4H16.781C17.1347 4 17.4738 4.14048 17.7238 4.39052L24.9428 11.6095C25.1928 11.8595 25.3333 12.1987 25.3333 12.5523V25.3333C25.3333 26.8061 24.1394 28 22.6667 28Z"
1009
+ d="M13.2981 15.4775C12.0289 17.6742 9.97111 17.6742 8.7019 15.4775C7.4327 13.2808 7.4327 9.71922 8.7019 7.52252C9.97111 5.32583 12.0289 5.32583 13.2981 7.52252M6.66667 9.8125H11M6.66667 13.1875H11M20.75 11.5C20.75 17.0919 16.3848 21.625 11 21.625C5.61522 21.625 1.25 17.0919 1.25 11.5C1.25 5.90812 5.61522 1.375 11 1.375C16.3848 1.375 20.75 5.90812 20.75 11.5Z"
1009
1010
  propList={
1010
1011
  [
1011
1012
  "stroke",
@@ -1014,7 +1015,7 @@ exports[`test icons render an outlined document-text icon in a white color 1`] =
1014
1015
  "strokeLinejoin",
1015
1016
  ]
1016
1017
  }
1017
- stroke={4294967295}
1018
+ stroke={4294901760}
1018
1019
  strokeLinecap={1}
1019
1020
  strokeLinejoin={1}
1020
1021
  strokeWidth="2"
@@ -1026,11 +1027,11 @@ exports[`test icons render an outlined document-text icon in a white color 1`] =
1026
1027
  exports[`test icons render an outlined exclamation icon in a blue color 1`] = `
1027
1028
  <RNSVGSvgView
1028
1029
  align="xMidYMid"
1029
- bbHeight="28"
1030
- bbWidth="28"
1030
+ bbHeight={24}
1031
+ bbWidth={24}
1031
1032
  fill="none"
1032
1033
  focusable={false}
1033
- height="28"
1034
+ height={24}
1034
1035
  meetOrSlice={0}
1035
1036
  minX={0}
1036
1037
  minY={0}
@@ -1042,14 +1043,14 @@ exports[`test icons render an outlined exclamation icon in a blue color 1`] = `
1042
1043
  },
1043
1044
  {
1044
1045
  "flex": 0,
1045
- "height": 28,
1046
- "width": 28,
1046
+ "height": 24,
1047
+ "width": 24,
1047
1048
  },
1048
1049
  ]
1049
1050
  }
1050
- vbHeight={27}
1051
- vbWidth={27}
1052
- width="28"
1051
+ vbHeight={21}
1052
+ vbWidth={23}
1053
+ width={24}
1053
1054
  >
1054
1055
  <RNSVGGroup
1055
1056
  fill={null}
@@ -1060,7 +1061,7 @@ exports[`test icons render an outlined exclamation icon in a blue color 1`] = `
1060
1061
  }
1061
1062
  >
1062
1063
  <RNSVGPath
1063
- d="M13.4997 10.125V12.375M13.4997 16.875H13.511M5.70551 21.375H21.294C23.026 21.375 24.1085 19.5 23.2425 18L15.4483 4.5C14.5823 3 12.4172 3 11.5512 4.5L3.75695 18C2.89092 19.5 3.97345 21.375 5.70551 21.375Z"
1064
+ d="M11.5 8.125V10.375M11.5 14.875H11.5113M3.70581 19.375H19.2943C21.0263 19.375 22.1088 17.5 21.2428 16L13.4486 2.5C12.5826 1 10.4175 1 9.55148 2.5L1.75725 16C0.891228 17.5 1.97376 19.375 3.70581 19.375Z"
1064
1065
  propList={
1065
1066
  [
1066
1067
  "stroke",
@@ -1081,11 +1082,11 @@ exports[`test icons render an outlined exclamation icon in a blue color 1`] = `
1081
1082
  exports[`test icons render an outlined exclamation-circle icon in a pink color 1`] = `
1082
1083
  <RNSVGSvgView
1083
1084
  align="xMidYMid"
1084
- bbHeight="28"
1085
- bbWidth="28"
1085
+ bbHeight={24}
1086
+ bbWidth={24}
1086
1087
  fill="none"
1087
1088
  focusable={false}
1088
- height="28"
1089
+ height={24}
1089
1090
  meetOrSlice={0}
1090
1091
  minX={0}
1091
1092
  minY={0}
@@ -1097,14 +1098,14 @@ exports[`test icons render an outlined exclamation-circle icon in a pink color 1
1097
1098
  },
1098
1099
  {
1099
1100
  "flex": 0,
1100
- "height": 28,
1101
- "width": 28,
1101
+ "height": 24,
1102
+ "width": 24,
1102
1103
  },
1103
1104
  ]
1104
1105
  }
1105
- vbHeight={27}
1106
- vbWidth={26}
1107
- width="28"
1106
+ vbHeight={23}
1107
+ vbWidth={22}
1108
+ width={24}
1108
1109
  >
1109
1110
  <RNSVGGroup
1110
1111
  fill={null}
@@ -1115,7 +1116,7 @@ exports[`test icons render an outlined exclamation-circle icon in a pink color 1
1115
1116
  }
1116
1117
  >
1117
1118
  <RNSVGPath
1118
- d="M13 9V13.5M13 18H13.0108M22.75 13.5C22.75 19.0919 18.3848 23.625 13 23.625C7.61522 23.625 3.25 19.0919 3.25 13.5C3.25 7.90812 7.61522 3.375 13 3.375C18.3848 3.375 22.75 7.90812 22.75 13.5Z"
1119
+ d="M11 7V11.5M11 16H11.0108M20.75 11.5C20.75 17.0919 16.3848 21.625 11 21.625C5.61522 21.625 1.25 17.0919 1.25 11.5C1.25 5.90812 5.61522 1.375 11 1.375C16.3848 1.375 20.75 5.90812 20.75 11.5Z"
1119
1120
  propList={
1120
1121
  [
1121
1122
  "stroke",
@@ -1136,11 +1137,11 @@ exports[`test icons render an outlined exclamation-circle icon in a pink color 1
1136
1137
  exports[`test icons render an outlined eye icon in a purple color 1`] = `
1137
1138
  <RNSVGSvgView
1138
1139
  align="xMidYMid"
1139
- bbHeight="28"
1140
- bbWidth="28"
1140
+ bbHeight={24}
1141
+ bbWidth={24}
1141
1142
  fill="none"
1142
1143
  focusable={false}
1143
- height="28"
1144
+ height={24}
1144
1145
  meetOrSlice={0}
1145
1146
  minX={0}
1146
1147
  minY={0}
@@ -1152,14 +1153,14 @@ exports[`test icons render an outlined eye icon in a purple color 1`] = `
1152
1153
  },
1153
1154
  {
1154
1155
  "flex": 0,
1155
- "height": 28,
1156
- "width": 28,
1156
+ "height": 24,
1157
+ "width": 24,
1157
1158
  },
1158
1159
  ]
1159
1160
  }
1160
- vbHeight={27}
1161
- vbWidth={27}
1162
- width="28"
1161
+ vbHeight={19}
1162
+ vbWidth={25}
1163
+ width={24}
1163
1164
  >
1164
1165
  <RNSVGGroup
1165
1166
  fill={null}
@@ -1170,7 +1171,7 @@ exports[`test icons render an outlined eye icon in a purple color 1`] = `
1170
1171
  }
1171
1172
  >
1172
1173
  <RNSVGPath
1173
- d="M16.875 13.5C16.875 15.364 15.3639 16.875 13.5 16.875C11.636 16.875 10.125 15.364 10.125 13.5C10.125 11.636 11.636 10.125 13.5 10.125C15.3639 10.125 16.875 11.636 16.875 13.5Z"
1174
+ d="M15.875 9.5C15.875 11.364 14.3639 12.875 12.5 12.875C10.636 12.875 9.12497 11.364 9.12497 9.5C9.12497 7.63604 10.636 6.125 12.5 6.125C14.3639 6.125 15.875 7.63604 15.875 9.5Z"
1174
1175
  propList={
1175
1176
  [
1176
1177
  "stroke",
@@ -1185,7 +1186,7 @@ exports[`test icons render an outlined eye icon in a purple color 1`] = `
1185
1186
  strokeWidth="2"
1186
1187
  />
1187
1188
  <RNSVGPath
1188
- d="M2.7655 13.5C4.19906 8.93574 8.46313 5.625 13.5005 5.625C18.5378 5.625 22.8019 8.93578 24.2354 13.5C22.8019 18.0643 18.5378 21.375 13.5005 21.375C8.46313 21.375 4.19904 18.0642 2.7655 13.5Z"
1189
+ d="M1.7655 9.49996C3.19906 4.93574 7.46313 1.625 12.5005 1.625C17.5378 1.625 21.8019 4.93578 23.2354 9.50004C21.8019 14.0643 17.5378 17.375 12.5005 17.375C7.46313 17.375 3.19904 14.0642 1.7655 9.49996Z"
1189
1190
  propList={
1190
1191
  [
1191
1192
  "stroke",
@@ -1206,11 +1207,11 @@ exports[`test icons render an outlined eye icon in a purple color 1`] = `
1206
1207
  exports[`test icons render an outlined filter icon in the main color 1`] = `
1207
1208
  <RNSVGSvgView
1208
1209
  align="xMidYMid"
1209
- bbHeight="28"
1210
- bbWidth="28"
1210
+ bbHeight={24}
1211
+ bbWidth={24}
1211
1212
  fill="none"
1212
1213
  focusable={false}
1213
- height="28"
1214
+ height={24}
1214
1215
  meetOrSlice={0}
1215
1216
  minX={0}
1216
1217
  minY={0}
@@ -1222,14 +1223,14 @@ exports[`test icons render an outlined filter icon in the main color 1`] = `
1222
1223
  },
1223
1224
  {
1224
1225
  "flex": 0,
1225
- "height": 28,
1226
- "width": 28,
1226
+ "height": 24,
1227
+ "width": 24,
1227
1228
  },
1228
1229
  ]
1229
1230
  }
1230
- vbHeight={26}
1231
- vbWidth={26}
1232
- width="28"
1231
+ vbHeight={22}
1232
+ vbWidth={22}
1233
+ width={24}
1233
1234
  >
1234
1235
  <RNSVGGroup
1235
1236
  fill={null}
@@ -1240,7 +1241,7 @@ exports[`test icons render an outlined filter icon in the main color 1`] = `
1240
1241
  }
1241
1242
  >
1242
1243
  <RNSVGPath
1243
- d="M3.25 4.25C3.25 3.69772 3.69772 3.25 4.25 3.25H21.75C22.3023 3.25 22.75 3.69772 22.75 4.25V7.16912C22.75 7.43434 22.6446 7.68869 22.4571 7.87623L15.4596 14.8738C15.272 15.0613 15.1667 15.3157 15.1667 15.5809V18.4167L10.8333 22.75V15.5809C10.8333 15.3157 10.728 15.0613 10.5404 14.8738L3.54289 7.87623C3.35536 7.68869 3.25 7.43434 3.25 7.16912V4.25Z"
1244
+ d="M1.25 2.25C1.25 1.69772 1.69772 1.25 2.25 1.25H19.75C20.3023 1.25 20.75 1.69772 20.75 2.25V5.16912C20.75 5.43434 20.6446 5.68869 20.4571 5.87623L13.4596 12.8738C13.272 13.0613 13.1667 13.3157 13.1667 13.5809V16.4167L8.83333 20.75V13.5809C8.83333 13.3157 8.72798 13.0613 8.54044 12.8738L1.54289 5.87623C1.35536 5.68869 1.25 5.43434 1.25 5.16912V2.25Z"
1244
1245
  propList={
1245
1246
  [
1246
1247
  "stroke",
@@ -1261,11 +1262,11 @@ exports[`test icons render an outlined filter icon in the main color 1`] = `
1261
1262
  exports[`test icons render an outlined information-circle icon in the main color 1`] = `
1262
1263
  <RNSVGSvgView
1263
1264
  align="xMidYMid"
1264
- bbHeight="28"
1265
- bbWidth="28"
1265
+ bbHeight={24}
1266
+ bbWidth={24}
1266
1267
  fill="none"
1267
1268
  focusable={false}
1268
- height="28"
1269
+ height={24}
1269
1270
  meetOrSlice={0}
1270
1271
  minX={0}
1271
1272
  minY={0}
@@ -1277,14 +1278,14 @@ exports[`test icons render an outlined information-circle icon in the main color
1277
1278
  },
1278
1279
  {
1279
1280
  "flex": 0,
1280
- "height": 28,
1281
- "width": 28,
1281
+ "height": 24,
1282
+ "width": 24,
1282
1283
  },
1283
1284
  ]
1284
1285
  }
1285
- vbHeight={26}
1286
- vbWidth={26}
1287
- width="28"
1286
+ vbHeight={22}
1287
+ vbWidth={22}
1288
+ width={24}
1288
1289
  >
1289
1290
  <RNSVGGroup
1290
1291
  fill={null}
@@ -1295,7 +1296,7 @@ exports[`test icons render an outlined information-circle icon in the main color
1295
1296
  }
1296
1297
  >
1297
1298
  <RNSVGPath
1298
- d="M14.0833 17.3333H13V13H11.9167M13 8.66667H13.0108M22.75 13C22.75 18.3848 18.3848 22.75 13 22.75C7.61522 22.75 3.25 18.3848 3.25 13C3.25 7.61522 7.61522 3.25 13 3.25C18.3848 3.25 22.75 7.61522 22.75 13Z"
1299
+ d="M12.0833 15.3333H11V11H9.91667M11 6.66667H11.0108M20.75 11C20.75 16.3848 16.3848 20.75 11 20.75C5.61522 20.75 1.25 16.3848 1.25 11C1.25 5.61522 5.61522 1.25 11 1.25C16.3848 1.25 20.75 5.61522 20.75 11Z"
1299
1300
  propList={
1300
1301
  [
1301
1302
  "stroke",
@@ -1316,11 +1317,11 @@ exports[`test icons render an outlined information-circle icon in the main color
1316
1317
  exports[`test icons render an outlined logout icon in a red color 1`] = `
1317
1318
  <RNSVGSvgView
1318
1319
  align="xMidYMid"
1319
- bbHeight="28"
1320
- bbWidth="28"
1320
+ bbHeight={24}
1321
+ bbWidth={24}
1321
1322
  fill="none"
1322
1323
  focusable={false}
1323
- height="28"
1324
+ height={24}
1324
1325
  meetOrSlice={0}
1325
1326
  minX={0}
1326
1327
  minY={0}
@@ -1330,19 +1331,36 @@ exports[`test icons render an outlined logout icon in a red color 1`] = `
1330
1331
  "backgroundColor": "transparent",
1331
1332
  "borderWidth": 0,
1332
1333
  },
1334
+ {
1335
+ "transform": [
1336
+ {
1337
+ "scaleX": -1,
1338
+ },
1339
+ ],
1340
+ },
1333
1341
  {
1334
1342
  "flex": 0,
1335
- "height": 28,
1336
- "width": 28,
1343
+ "height": 24,
1344
+ "width": 24,
1337
1345
  },
1338
1346
  ]
1339
1347
  }
1340
- vbHeight={34}
1341
- vbWidth={32}
1342
- width="28"
1348
+ vbHeight={21}
1349
+ vbWidth={22}
1350
+ width={24}
1343
1351
  >
1344
1352
  <RNSVGGroup
1345
1353
  fill={null}
1354
+ matrix={
1355
+ [
1356
+ 1,
1357
+ 0,
1358
+ 0,
1359
+ 1,
1360
+ 0,
1361
+ 0,
1362
+ ]
1363
+ }
1346
1364
  propList={
1347
1365
  [
1348
1366
  "fill",
@@ -1350,7 +1368,7 @@ exports[`test icons render an outlined logout icon in a red color 1`] = `
1350
1368
  }
1351
1369
  >
1352
1370
  <RNSVGPath
1353
- d="M17.3333 11.077L22.6667 16.6155M22.6667 16.6155L17.3333 22.1539M22.6667 16.6155L4 16.6155M10.6667 11.077V9.69238C10.6667 7.39828 12.4575 5.53854 14.6667 5.53854H24C26.2091 5.53854 28 7.39828 28 9.69238L28 23.5385C28 25.8326 26.2091 27.6924 24 27.6924H14.6667C12.4575 27.6924 10.6667 25.8326 10.6667 23.5385V22.1539"
1371
+ d="M9.91667 15L5.58333 10.5M5.58333 10.5L9.91667 6M5.58333 10.5L20.75 10.5M15.3333 15V16.125C15.3333 17.989 13.8783 19.5 12.0833 19.5H4.5C2.70507 19.5 1.25 17.989 1.25 16.125V4.875C1.25 3.01104 2.70507 1.5 4.5 1.5H12.0833C13.8783 1.5 15.3333 3.01104 15.3333 4.875V6"
1354
1372
  propList={
1355
1373
  [
1356
1374
  "stroke",
@@ -1371,11 +1389,11 @@ exports[`test icons render an outlined logout icon in a red color 1`] = `
1371
1389
  exports[`test icons render an outlined mail icon in a brown color 1`] = `
1372
1390
  <RNSVGSvgView
1373
1391
  align="xMidYMid"
1374
- bbHeight="28"
1375
- bbWidth="28"
1392
+ bbHeight={24}
1393
+ bbWidth={24}
1376
1394
  fill="none"
1377
1395
  focusable={false}
1378
- height="28"
1396
+ height={24}
1379
1397
  meetOrSlice={0}
1380
1398
  minX={0}
1381
1399
  minY={0}
@@ -1387,14 +1405,14 @@ exports[`test icons render an outlined mail icon in a brown color 1`] = `
1387
1405
  },
1388
1406
  {
1389
1407
  "flex": 0,
1390
- "height": 28,
1391
- "width": 28,
1408
+ "height": 24,
1409
+ "width": 24,
1392
1410
  },
1393
1411
  ]
1394
1412
  }
1395
- vbHeight={28}
1396
- vbWidth={28}
1397
- width="28"
1413
+ vbHeight={19}
1414
+ vbWidth={23}
1415
+ width={24}
1398
1416
  >
1399
1417
  <RNSVGGroup
1400
1418
  fill={null}
@@ -1405,7 +1423,7 @@ exports[`test icons render an outlined mail icon in a brown color 1`] = `
1405
1423
  }
1406
1424
  >
1407
1425
  <RNSVGPath
1408
- d="M3.875 9.5L12.7519 15.4179C13.5077 15.9218 14.4923 15.9218 15.2481 15.4179L24.125 9.5M6.125 21.875H21.875C23.1176 21.875 24.125 20.8676 24.125 19.625V8.375C24.125 7.13236 23.1176 6.125 21.875 6.125H6.125C4.88236 6.125 3.875 7.13236 3.875 8.375V19.625C3.875 20.8676 4.88236 21.875 6.125 21.875Z"
1426
+ d="M1.375 5L10.2519 10.9179C11.0077 11.4218 11.9923 11.4218 12.7481 10.9179L21.625 5M3.625 17.375H19.375C20.6176 17.375 21.625 16.3676 21.625 15.125V3.875C21.625 2.63236 20.6176 1.625 19.375 1.625H3.625C2.38236 1.625 1.375 2.63236 1.375 3.875V15.125C1.375 16.3676 2.38236 17.375 3.625 17.375Z"
1409
1427
  propList={
1410
1428
  [
1411
1429
  "stroke",
@@ -1426,11 +1444,11 @@ exports[`test icons render an outlined mail icon in a brown color 1`] = `
1426
1444
  exports[`test icons render an outlined mail-open icon in a grey color 1`] = `
1427
1445
  <RNSVGSvgView
1428
1446
  align="xMidYMid"
1429
- bbHeight="28"
1430
- bbWidth="28"
1447
+ bbHeight={24}
1448
+ bbWidth={24}
1431
1449
  fill="none"
1432
1450
  focusable={false}
1433
- height="28"
1451
+ height={24}
1434
1452
  meetOrSlice={0}
1435
1453
  minX={0}
1436
1454
  minY={0}
@@ -1442,14 +1460,14 @@ exports[`test icons render an outlined mail-open icon in a grey color 1`] = `
1442
1460
  },
1443
1461
  {
1444
1462
  "flex": 0,
1445
- "height": 28,
1446
- "width": 28,
1463
+ "height": 24,
1464
+ "width": 24,
1447
1465
  },
1448
1466
  ]
1449
1467
  }
1450
- vbHeight={26}
1451
- vbWidth={27}
1452
- width="28"
1468
+ vbHeight={22}
1469
+ vbWidth={23}
1470
+ width={24}
1453
1471
  >
1454
1472
  <RNSVGGroup
1455
1473
  fill={null}
@@ -1460,7 +1478,7 @@ exports[`test icons render an outlined mail-open icon in a grey color 1`] = `
1460
1478
  }
1461
1479
  >
1462
1480
  <RNSVGPath
1463
- d="M3.375 20.5833V10.9095C3.375 10.1851 3.75098 9.50861 4.37692 9.10676L12.2519 4.05121C13.0077 3.56602 13.9923 3.56602 14.7481 4.05121L22.6231 9.10676C23.249 9.50861 23.625 10.1851 23.625 10.9095V20.5833M3.375 20.5833C3.375 21.7799 4.38236 22.75 5.625 22.75H21.375C22.6176 22.75 23.625 21.7799 23.625 20.5833M3.375 20.5833L10.9688 15.7083M23.625 20.5833L16.0312 15.7083M3.375 10.8333L10.9688 15.7083M23.625 10.8333L16.0312 15.7083M16.0312 15.7083L14.7481 16.5321C13.9923 17.0173 13.0077 17.0173 12.2519 16.5321L10.9688 15.7083"
1481
+ d="M1.375 18.5833V8.90954C1.375 8.18511 1.75098 7.50861 2.37692 7.10676L10.2519 2.05121C11.0077 1.56602 11.9923 1.56602 12.7481 2.05121L20.6231 7.10676C21.249 7.50861 21.625 8.18511 21.625 8.90954V18.5833M1.375 18.5833C1.375 19.7799 2.38236 20.75 3.625 20.75H19.375C20.6176 20.75 21.625 19.7799 21.625 18.5833M1.375 18.5833L8.96875 13.7083M21.625 18.5833L14.0312 13.7083M1.375 8.83331L8.96875 13.7083M21.625 8.83331L14.0312 13.7083M14.0312 13.7083L12.7481 14.5321C11.9923 15.0173 11.0077 15.0173 10.2519 14.5321L8.96875 13.7083"
1464
1482
  propList={
1465
1483
  [
1466
1484
  "stroke",
@@ -1481,11 +1499,11 @@ exports[`test icons render an outlined mail-open icon in a grey color 1`] = `
1481
1499
  exports[`test icons render an outlined menu icon in the main color 1`] = `
1482
1500
  <RNSVGSvgView
1483
1501
  align="xMidYMid"
1484
- bbHeight="28"
1485
- bbWidth="28"
1502
+ bbHeight={24}
1503
+ bbWidth={24}
1486
1504
  fill="none"
1487
1505
  focusable={false}
1488
- height="28"
1506
+ height={24}
1489
1507
  meetOrSlice={0}
1490
1508
  minX={0}
1491
1509
  minY={0}
@@ -1497,14 +1515,14 @@ exports[`test icons render an outlined menu icon in the main color 1`] = `
1497
1515
  },
1498
1516
  {
1499
1517
  "flex": 0,
1500
- "height": 28,
1501
- "width": 28,
1518
+ "height": 24,
1519
+ "width": 24,
1502
1520
  },
1503
1521
  ]
1504
1522
  }
1505
- vbHeight={27}
1506
- vbWidth={27}
1507
- width="28"
1523
+ vbHeight={17}
1524
+ vbWidth={21}
1525
+ width={24}
1508
1526
  >
1509
1527
  <RNSVGGroup
1510
1528
  fill={null}
@@ -1515,7 +1533,7 @@ exports[`test icons render an outlined menu icon in the main color 1`] = `
1515
1533
  }
1516
1534
  >
1517
1535
  <RNSVGPath
1518
- d="M4.5 6.75H22.5M4.5 13.5H22.5M4.5 20.25H22.5"
1536
+ d="M1.5 1.75H19.5M1.5 8.5H19.5M1.5 15.25H19.5"
1519
1537
  propList={
1520
1538
  [
1521
1539
  "stroke",
@@ -1536,11 +1554,11 @@ exports[`test icons render an outlined menu icon in the main color 1`] = `
1536
1554
  exports[`test icons render an outlined minus-sm icon in the main color 1`] = `
1537
1555
  <RNSVGSvgView
1538
1556
  align="xMidYMid"
1539
- bbHeight={28}
1540
- bbWidth={28}
1557
+ bbHeight={24}
1558
+ bbWidth={24}
1541
1559
  fill="none"
1542
1560
  focusable={false}
1543
- height={28}
1561
+ height={24}
1544
1562
  meetOrSlice={0}
1545
1563
  minX={0}
1546
1564
  minY={0}
@@ -1552,14 +1570,14 @@ exports[`test icons render an outlined minus-sm icon in the main color 1`] = `
1552
1570
  },
1553
1571
  {
1554
1572
  "flex": 0,
1555
- "height": 28,
1556
- "width": 28,
1573
+ "height": 24,
1574
+ "width": 24,
1557
1575
  },
1558
1576
  ]
1559
1577
  }
1560
- vbHeight={26}
1561
- vbWidth={26}
1562
- width={28}
1578
+ vbHeight={3}
1579
+ vbWidth={16}
1580
+ width={24}
1563
1581
  >
1564
1582
  <RNSVGGroup
1565
1583
  fill={null}
@@ -1570,7 +1588,7 @@ exports[`test icons render an outlined minus-sm icon in the main color 1`] = `
1570
1588
  }
1571
1589
  >
1572
1590
  <RNSVGPath
1573
- d="M19.4006 13H6.60059"
1591
+ d="M14.5 1.5H1.5"
1574
1592
  propList={
1575
1593
  [
1576
1594
  "stroke",
@@ -1591,11 +1609,11 @@ exports[`test icons render an outlined minus-sm icon in the main color 1`] = `
1591
1609
  exports[`test icons render an outlined office-building icon in a green color 1`] = `
1592
1610
  <RNSVGSvgView
1593
1611
  align="xMidYMid"
1594
- bbHeight="28"
1595
- bbWidth="28"
1612
+ bbHeight={24}
1613
+ bbWidth={24}
1596
1614
  fill="none"
1597
1615
  focusable={false}
1598
- height="28"
1616
+ height={24}
1599
1617
  meetOrSlice={0}
1600
1618
  minX={0}
1601
1619
  minY={0}
@@ -1607,14 +1625,14 @@ exports[`test icons render an outlined office-building icon in a green color 1`]
1607
1625
  },
1608
1626
  {
1609
1627
  "flex": 0,
1610
- "height": 28,
1611
- "width": 28,
1628
+ "height": 24,
1629
+ "width": 24,
1612
1630
  },
1613
1631
  ]
1614
1632
  }
1615
- vbHeight={27}
1616
- vbWidth={27}
1617
- width="28"
1633
+ vbHeight={23}
1634
+ vbWidth={23}
1635
+ width={24}
1618
1636
  >
1619
1637
  <RNSVGGroup
1620
1638
  fill={null}
@@ -1625,7 +1643,7 @@ exports[`test icons render an outlined office-building icon in a green color 1`]
1625
1643
  }
1626
1644
  >
1627
1645
  <RNSVGPath
1628
- d="M21.375 23.625V5.625C21.375 4.38236 20.3676 3.375 19.125 3.375H7.875C6.63236 3.375 5.625 4.38236 5.625 5.625V23.625M21.375 23.625L23.625 23.625M21.375 23.625H15.75M5.625 23.625L3.375 23.625M5.625 23.625H11.25M10.125 7.87497H11.25M10.125 12.375H11.25M15.75 7.87497H16.875M15.75 12.375H16.875M11.25 23.625V18C11.25 17.3787 11.7537 16.875 12.375 16.875H14.625C15.2463 16.875 15.75 17.3787 15.75 18V23.625M11.25 23.625H15.75"
1646
+ d="M19.375 21.625V3.625C19.375 2.38236 18.3676 1.375 17.125 1.375H5.875C4.63236 1.375 3.625 2.38236 3.625 3.625V21.625M19.375 21.625L21.625 21.625M19.375 21.625H13.75M3.625 21.625L1.375 21.625M3.625 21.625H9.25M8.125 5.87497H9.25M8.125 10.375H9.25M13.75 5.87497H14.875M13.75 10.375H14.875M9.25 21.625V16C9.25 15.3787 9.75368 14.875 10.375 14.875H12.625C13.2463 14.875 13.75 15.3787 13.75 16V21.625M9.25 21.625H13.75"
1629
1647
  propList={
1630
1648
  [
1631
1649
  "stroke",
@@ -1646,11 +1664,11 @@ exports[`test icons render an outlined office-building icon in a green color 1`]
1646
1664
  exports[`test icons render an outlined paper-airplane icon in a white color 1`] = `
1647
1665
  <RNSVGSvgView
1648
1666
  align="xMidYMid"
1649
- bbHeight="28"
1650
- bbWidth="28"
1667
+ bbHeight={24}
1668
+ bbWidth={24}
1651
1669
  fill="none"
1652
1670
  focusable={false}
1653
- height="28"
1671
+ height={24}
1654
1672
  meetOrSlice={0}
1655
1673
  minX={0}
1656
1674
  minY={0}
@@ -1660,19 +1678,36 @@ exports[`test icons render an outlined paper-airplane icon in a white color 1`]
1660
1678
  "backgroundColor": "transparent",
1661
1679
  "borderWidth": 0,
1662
1680
  },
1681
+ {
1682
+ "transform": [
1683
+ {
1684
+ "rotate": "90deg",
1685
+ },
1686
+ ],
1687
+ },
1663
1688
  {
1664
1689
  "flex": 0,
1665
- "height": 28,
1666
- "width": 28,
1690
+ "height": 24,
1691
+ "width": 24,
1667
1692
  },
1668
1693
  ]
1669
1694
  }
1670
- vbHeight={28}
1671
- vbWidth={27}
1672
- width="28"
1695
+ vbHeight={22}
1696
+ vbWidth={23}
1697
+ width={24}
1673
1698
  >
1674
1699
  <RNSVGGroup
1675
1700
  fill={null}
1701
+ matrix={
1702
+ [
1703
+ 1,
1704
+ 0,
1705
+ 0,
1706
+ 1,
1707
+ 0,
1708
+ 0,
1709
+ ]
1710
+ }
1676
1711
  propList={
1677
1712
  [
1678
1713
  "fill",
@@ -1680,7 +1715,7 @@ exports[`test icons render an outlined paper-airplane icon in a white color 1`]
1680
1715
  }
1681
1716
  >
1682
1717
  <RNSVGPath
1683
- d="M6.29167 14L4.125 24.125L23.625 14L4.125 3.875L6.29167 14ZM6.29167 14L14.9583 14"
1718
+ d="M11.5 18.5833L21.625 20.75L11.5 1.25L1.375 20.75L11.5 18.5833ZM11.5 18.5833V9.91667"
1684
1719
  propList={
1685
1720
  [
1686
1721
  "stroke",
@@ -1701,11 +1736,11 @@ exports[`test icons render an outlined paper-airplane icon in a white color 1`]
1701
1736
  exports[`test icons render an outlined paperclip icon in the main color 1`] = `
1702
1737
  <RNSVGSvgView
1703
1738
  align="xMidYMid"
1704
- bbHeight="28"
1705
- bbWidth="28"
1739
+ bbHeight={24}
1740
+ bbWidth={24}
1706
1741
  fill="none"
1707
1742
  focusable={false}
1708
- height="28"
1743
+ height={24}
1709
1744
  meetOrSlice={0}
1710
1745
  minX={0}
1711
1746
  minY={0}
@@ -1717,14 +1752,14 @@ exports[`test icons render an outlined paperclip icon in the main color 1`] = `
1717
1752
  },
1718
1753
  {
1719
1754
  "flex": 0,
1720
- "height": 28,
1721
- "width": 28,
1755
+ "height": 24,
1756
+ "width": 24,
1722
1757
  },
1723
1758
  ]
1724
1759
  }
1725
- vbHeight={26}
1726
- vbWidth={26}
1727
- width="28"
1760
+ vbHeight={22}
1761
+ vbWidth={21}
1762
+ width={24}
1728
1763
  >
1729
1764
  <RNSVGGroup
1730
1765
  fill={null}
@@ -1735,7 +1770,7 @@ exports[`test icons render an outlined paperclip icon in the main color 1`] = `
1735
1770
  }
1736
1771
  >
1737
1772
  <RNSVGPath
1738
- d="M16.4359 7.58333L9.30125 14.7179C8.45511 15.5641 8.45511 16.9359 9.30125 17.7821C10.1474 18.6282 11.5192 18.6282 12.3654 17.7821L19.3141 10.6475C21.0064 8.95519 21.0064 6.21148 19.3141 4.5192C17.6218 2.82693 14.8781 2.82693 13.1859 4.5192L6.23712 11.6538C3.69871 14.1922 3.69871 18.3078 6.23712 20.8462C8.77553 23.3846 12.8911 23.3846 15.4295 20.8462L22.2083 14.0833"
1773
+ d="M13.4359 5.58333L6.30125 12.7179C5.45511 13.5641 5.45511 14.9359 6.30125 15.7821C7.14739 16.6282 8.51924 16.6282 9.36538 15.7821L16.3141 8.64746C18.0064 6.95519 18.0064 4.21148 16.3141 2.5192C14.6218 0.826932 11.8781 0.826932 10.1859 2.5192L3.23712 9.65381C0.698711 12.1922 0.698711 16.3078 3.23712 18.8462C5.77553 21.3846 9.8911 21.3846 12.4295 18.8462L19.2083 12.0833"
1739
1774
  propList={
1740
1775
  [
1741
1776
  "stroke",
@@ -1756,11 +1791,11 @@ exports[`test icons render an outlined paperclip icon in the main color 1`] = `
1756
1791
  exports[`test icons render an outlined pencil icon in the main color 1`] = `
1757
1792
  <RNSVGSvgView
1758
1793
  align="xMidYMid"
1759
- bbHeight="28"
1760
- bbWidth="28"
1794
+ bbHeight={24}
1795
+ bbWidth={24}
1761
1796
  fill="none"
1762
1797
  focusable={false}
1763
- height="28"
1798
+ height={24}
1764
1799
  meetOrSlice={0}
1765
1800
  minX={0}
1766
1801
  minY={0}
@@ -1772,14 +1807,14 @@ exports[`test icons render an outlined pencil icon in the main color 1`] = `
1772
1807
  },
1773
1808
  {
1774
1809
  "flex": 0,
1775
- "height": 28,
1776
- "width": 28,
1810
+ "height": 24,
1811
+ "width": 24,
1777
1812
  },
1778
1813
  ]
1779
1814
  }
1780
- vbHeight={28}
1781
- vbWidth={28}
1782
- width="28"
1815
+ vbHeight={23}
1816
+ vbWidth={23}
1817
+ width={24}
1783
1818
  >
1784
1819
  <RNSVGGroup
1785
1820
  fill={null}
@@ -1790,7 +1825,7 @@ exports[`test icons render an outlined pencil icon in the main color 1`] = `
1790
1825
  }
1791
1826
  >
1792
1827
  <RNSVGPath
1793
- d="M17.6362 6.38626L21.6137 10.3637M19.3237 4.69876C20.422 3.60041 22.2028 3.60041 23.3012 4.69876C24.3995 5.79711 24.3995 7.57789 23.3012 8.67624L7.8125 24.1649H3.875V20.1475L19.3237 4.69876Z"
1828
+ d="M15.1363 3.88626L19.1137 7.86374M16.8238 2.19876C17.9221 1.10041 19.7029 1.10041 20.8012 2.19876C21.8996 3.29711 21.8996 5.07789 20.8012 6.17624L5.31256 21.6649H1.37506V17.6475L16.8238 2.19876Z"
1794
1829
  propList={
1795
1830
  [
1796
1831
  "stroke",
@@ -1811,11 +1846,11 @@ exports[`test icons render an outlined pencil icon in the main color 1`] = `
1811
1846
  exports[`test icons render an outlined phone icon in the main color 1`] = `
1812
1847
  <RNSVGSvgView
1813
1848
  align="xMidYMid"
1814
- bbHeight="28"
1815
- bbWidth="28"
1849
+ bbHeight={24}
1850
+ bbWidth={24}
1816
1851
  fill="none"
1817
1852
  focusable={false}
1818
- height="28"
1853
+ height={24}
1819
1854
  meetOrSlice={0}
1820
1855
  minX={0}
1821
1856
  minY={0}
@@ -1827,14 +1862,14 @@ exports[`test icons render an outlined phone icon in the main color 1`] = `
1827
1862
  },
1828
1863
  {
1829
1864
  "flex": 0,
1830
- "height": 28,
1831
- "width": 28,
1865
+ "height": 24,
1866
+ "width": 24,
1832
1867
  },
1833
1868
  ]
1834
1869
  }
1835
- vbHeight={26}
1836
- vbWidth={27}
1837
- width="28"
1870
+ vbHeight={22}
1871
+ vbWidth={23}
1872
+ width={24}
1838
1873
  >
1839
1874
  <RNSVGGroup
1840
1875
  fill={null}
@@ -1845,7 +1880,7 @@ exports[`test icons render an outlined phone icon in the main color 1`] = `
1845
1880
  }
1846
1881
  >
1847
1882
  <RNSVGPath
1848
- d="M3.375 5.41667C3.375 4.22005 4.38236 3.25 5.625 3.25H9.31415C9.79838 3.25 10.2283 3.54838 10.3814 3.99075L12.0665 8.85865C12.2435 9.3701 12.0031 9.92909 11.5023 10.1702L8.96288 11.3929C10.2029 14.0413 12.4186 16.175 15.1689 17.3691L16.4387 14.9237C16.689 14.4415 17.2695 14.21 17.8006 14.3805L22.8558 16.0031C23.3151 16.1505 23.625 16.5645 23.625 17.0308V20.5833C23.625 21.7799 22.6176 22.75 21.375 22.75H20.25C10.9302 22.75 3.375 15.4746 3.375 6.5V5.41667Z"
1883
+ d="M1.375 3.41667C1.375 2.22005 2.38236 1.25 3.625 1.25H7.31415C7.79838 1.25 8.22829 1.54838 8.38141 1.99075L10.0665 6.85865C10.2435 7.3701 10.0031 7.92909 9.5023 8.17019L6.96288 9.39287C8.20291 12.0413 10.4186 14.175 13.1689 15.3691L14.4387 12.9237C14.689 12.4415 15.2695 12.21 15.8006 12.3805L20.8558 14.0031C21.3151 14.1505 21.625 14.5645 21.625 15.0308V18.5833C21.625 19.7799 20.6176 20.75 19.375 20.75H18.25C8.93019 20.75 1.375 13.4746 1.375 4.5V3.41667Z"
1849
1884
  propList={
1850
1885
  [
1851
1886
  "stroke",
@@ -1866,11 +1901,11 @@ exports[`test icons render an outlined phone icon in the main color 1`] = `
1866
1901
  exports[`test icons render an outlined plus icon in a grey color 1`] = `
1867
1902
  <RNSVGSvgView
1868
1903
  align="xMidYMid"
1869
- bbHeight="28"
1870
- bbWidth="28"
1904
+ bbHeight={24}
1905
+ bbWidth={24}
1871
1906
  fill="none"
1872
1907
  focusable={false}
1873
- height="28"
1908
+ height={24}
1874
1909
  meetOrSlice={0}
1875
1910
  minX={0}
1876
1911
  minY={0}
@@ -1882,14 +1917,14 @@ exports[`test icons render an outlined plus icon in a grey color 1`] = `
1882
1917
  },
1883
1918
  {
1884
1919
  "flex": 0,
1885
- "height": 28,
1886
- "width": 28,
1920
+ "height": 24,
1921
+ "width": 24,
1887
1922
  },
1888
1923
  ]
1889
1924
  }
1890
- vbHeight={28}
1891
- vbWidth={28}
1892
- width="28"
1925
+ vbHeight={21}
1926
+ vbWidth={21}
1927
+ width={24}
1893
1928
  >
1894
1929
  <RNSVGGroup
1895
1930
  fill={null}
@@ -1900,7 +1935,7 @@ exports[`test icons render an outlined plus icon in a grey color 1`] = `
1900
1935
  }
1901
1936
  >
1902
1937
  <RNSVGPath
1903
- d="M14 5V23M23 14L5 14"
1938
+ d="M10.5 1.5V19.5M19.5 10.5L1.5 10.5"
1904
1939
  propList={
1905
1940
  [
1906
1941
  "stroke",
@@ -1921,11 +1956,11 @@ exports[`test icons render an outlined plus icon in a grey color 1`] = `
1921
1956
  exports[`test icons render an outlined plus-sm icon in a red color 1`] = `
1922
1957
  <RNSVGSvgView
1923
1958
  align="xMidYMid"
1924
- bbHeight={28}
1925
- bbWidth={28}
1959
+ bbHeight={24}
1960
+ bbWidth={24}
1926
1961
  fill="none"
1927
1962
  focusable={false}
1928
- height={28}
1963
+ height={24}
1929
1964
  meetOrSlice={0}
1930
1965
  minX={0}
1931
1966
  minY={0}
@@ -1937,14 +1972,14 @@ exports[`test icons render an outlined plus-sm icon in a red color 1`] = `
1937
1972
  },
1938
1973
  {
1939
1974
  "flex": 0,
1940
- "height": 28,
1941
- "width": 28,
1975
+ "height": 24,
1976
+ "width": 24,
1942
1977
  },
1943
1978
  ]
1944
1979
  }
1945
- vbHeight={27}
1946
- vbWidth={27}
1947
- width={28}
1980
+ vbHeight={17}
1981
+ vbWidth={17}
1982
+ width={24}
1948
1983
  >
1949
1984
  <RNSVGGroup
1950
1985
  fill={null}
@@ -1955,7 +1990,7 @@ exports[`test icons render an outlined plus-sm icon in a red color 1`] = `
1955
1990
  }
1956
1991
  >
1957
1992
  <RNSVGPath
1958
- d="M13.5 6.75V13.5M13.5 13.5V20.25M13.5 13.5H20.25M13.5 13.5L6.75 13.5"
1993
+ d="M8.5 1.75V8.5M8.5 8.5V15.25M8.5 8.5H15.25M8.5 8.5L1.75 8.5"
1959
1994
  propList={
1960
1995
  [
1961
1996
  "stroke",
@@ -1976,11 +2011,11 @@ exports[`test icons render an outlined plus-sm icon in a red color 1`] = `
1976
2011
  exports[`test icons render an outlined qrcode icon in a purple color 1`] = `
1977
2012
  <RNSVGSvgView
1978
2013
  align="xMidYMid"
1979
- bbHeight="28"
1980
- bbWidth="28"
2014
+ bbHeight={24}
2015
+ bbWidth={24}
1981
2016
  fill="none"
1982
2017
  focusable={false}
1983
- height="28"
2018
+ height={24}
1984
2019
  meetOrSlice={0}
1985
2020
  minX={0}
1986
2021
  minY={0}
@@ -1992,14 +2027,14 @@ exports[`test icons render an outlined qrcode icon in a purple color 1`] = `
1992
2027
  },
1993
2028
  {
1994
2029
  "flex": 0,
1995
- "height": 28,
1996
- "width": 28,
2030
+ "height": 24,
2031
+ "width": 24,
1997
2032
  },
1998
2033
  ]
1999
2034
  }
2000
- vbHeight={27}
2001
- vbWidth={26}
2002
- width="28"
2035
+ vbHeight={21}
2036
+ vbWidth={20}
2037
+ width={24}
2003
2038
  >
2004
2039
  <RNSVGGroup
2005
2040
  fill={null}
@@ -2010,7 +2045,7 @@ exports[`test icons render an outlined qrcode icon in a purple color 1`] = `
2010
2045
  }
2011
2046
  >
2012
2047
  <RNSVGPath
2013
- d="M14 4.5C14 3.94772 13.5523 3.5 13 3.5C12.4477 3.5 12 3.94772 12 4.5H14ZM12 5.625C12 6.17728 12.4477 6.625 13 6.625C13.5523 6.625 14 6.17728 14 5.625H12ZM19.5 17C18.9477 17 18.5 17.4477 18.5 18C18.5 18.5523 18.9477 19 19.5 19V17ZM21.6666 19C22.2189 19 22.6666 18.5523 22.6666 18C22.6666 17.4477 22.2189 17 21.6666 17V19ZM13 18V17C12.4477 17 12 17.4477 12 18H13ZM15.1666 19C15.7189 19 16.1666 18.5523 16.1666 18C16.1666 17.4477 15.7189 17 15.1666 17V19ZM12 22.5C12 23.0523 12.4477 23.5 13 23.5C13.5523 23.5 14 23.0523 14 22.5H12ZM14 10.125C14 9.57272 13.5523 9.125 13 9.125C12.4477 9.125 12 9.57272 12 10.125H14ZM13 13.5H12C12 14.0523 12.4477 14.5 13 14.5V13.5ZM17.3333 21.5C16.781 21.5 16.3333 21.9477 16.3333 22.5C16.3333 23.0523 16.781 23.5 17.3333 23.5V21.5ZM21.6666 23.5C22.2189 23.5 22.6666 23.0523 22.6666 22.5C22.6666 21.9477 22.2189 21.5 21.6666 21.5V23.5ZM4.33331 12.5C3.78103 12.5 3.33331 12.9477 3.33331 13.5C3.33331 14.0523 3.78103 14.5 4.33331 14.5V12.5ZM8.66665 14.5C9.21893 14.5 9.66665 14.0523 9.66665 13.5C9.66665 12.9477 9.21893 12.5 8.66665 12.5V14.5ZM13.0108 14.5C13.5631 14.5 14.0108 14.0523 14.0108 13.5C14.0108 12.9477 13.5631 12.5 13.0108 12.5V14.5ZM17.3441 14.5C17.8964 14.5 18.3441 14.0523 18.3441 13.5C18.3441 12.9477 17.8964 12.5 17.3441 12.5V14.5ZM21.6666 12.5C21.1144 12.5 20.6666 12.9477 20.6666 13.5C20.6666 14.0523 21.1144 14.5 21.6666 14.5V12.5ZM21.6775 14.5C22.2298 14.5 22.6775 14.0523 22.6775 13.5C22.6775 12.9477 22.2298 12.5 21.6775 12.5V14.5ZM5.41665 5.5H7.58331V3.5H5.41665V5.5ZM7.66665 5.625V7.875H9.66665V5.625H7.66665ZM7.58331 8H5.41665V10H7.58331V8ZM5.33331 7.875V5.625H3.33331V7.875H5.33331ZM5.41665 8C5.40602 8 5.39043 7.9971 5.37093 7.97685C5.3508 7.95595 5.33331 7.92194 5.33331 7.875H3.33331C3.33331 9.0127 4.23082 10 5.41665 10V8ZM7.66665 7.875C7.66665 7.92194 7.64916 7.95595 7.62902 7.97685C7.60953 7.9971 7.59394 8 7.58331 8V10C8.76914 10 9.66665 9.0127 9.66665 7.875H7.66665ZM7.58331 5.5C7.59394 5.5 7.60953 5.5029 7.62902 5.52315C7.64916 5.54405 7.66665 5.57806 7.66665 5.625H9.66665C9.66665 4.4873 8.76914 3.5 7.58331 3.5V5.5ZM5.41665 3.5C4.23082 3.5 3.33331 4.4873 3.33331 5.625H5.33331C5.33331 5.57806 5.3508 5.54405 5.37093 5.52315C5.39043 5.5029 5.40602 5.5 5.41665 5.5V3.5ZM18.4166 5.5H20.5833V3.5H18.4166V5.5ZM20.6666 5.625V7.875H22.6666V5.625H20.6666ZM20.5833 8H18.4166V10H20.5833V8ZM18.3333 7.875V5.625H16.3333V7.875H18.3333ZM18.4166 8C18.406 8 18.3904 7.9971 18.3709 7.97685C18.3508 7.95595 18.3333 7.92194 18.3333 7.875H16.3333C16.3333 9.0127 17.2308 10 18.4166 10V8ZM20.6666 7.875C20.6666 7.92194 20.6492 7.95595 20.629 7.97685C20.6095 7.9971 20.5939 8 20.5833 8V10C21.7691 10 22.6666 9.0127 22.6666 7.875H20.6666ZM20.5833 5.5C20.5939 5.5 20.6095 5.5029 20.629 5.52315C20.6492 5.54405 20.6666 5.57806 20.6666 5.625H22.6666C22.6666 4.4873 21.7691 3.5 20.5833 3.5V5.5ZM18.4166 3.5C17.2308 3.5 16.3333 4.4873 16.3333 5.625H18.3333C18.3333 5.57806 18.3508 5.54405 18.3709 5.52315C18.3904 5.5029 18.406 5.5 18.4166 5.5V3.5ZM5.41665 19H7.58331V17H5.41665V19ZM7.66665 19.125V21.375H9.66665V19.125H7.66665ZM7.58331 21.5H5.41665V23.5H7.58331V21.5ZM5.33331 21.375V19.125H3.33331V21.375H5.33331ZM5.41665 21.5C5.40602 21.5 5.39043 21.4971 5.37093 21.4769C5.3508 21.4559 5.33331 21.4219 5.33331 21.375H3.33331C3.33331 22.5127 4.23082 23.5 5.41665 23.5V21.5ZM7.66665 21.375C7.66665 21.4219 7.64916 21.4559 7.62902 21.4769C7.60953 21.4971 7.59394 21.5 7.58331 21.5V23.5C8.76914 23.5 9.66665 22.5127 9.66665 21.375H7.66665ZM7.58331 19C7.59394 19 7.60953 19.0029 7.62902 19.0231C7.64916 19.0441 7.66665 19.0781 7.66665 19.125H9.66665C9.66665 17.9873 8.76914 17 7.58331 17V19ZM5.41665 17C4.23082 17 3.33331 17.9873 3.33331 19.125H5.33331C5.33331 19.0781 5.3508 19.0441 5.37093 19.0231C5.39043 19.0029 5.40602 19 5.41665 19V17ZM12 4.5V5.625H14V4.5H12ZM19.5 19H21.6666V17H19.5V19ZM13 19H15.1666V17H13V19ZM12 18V22.5H14V18H12ZM12 10.125V13.5H14V10.125H12ZM17.3333 23.5H21.6666V21.5H17.3333V23.5ZM4.33331 14.5H8.66665V12.5H4.33331V14.5ZM13 14.5H13.0108V12.5H13V14.5ZM21.6666 14.5H21.6775V12.5H21.6666V14.5ZM13 14.5H17.3441V12.5H13V14.5Z"
2048
+ d="M11 1.5C11 0.947715 10.5523 0.5 9.99998 0.5C9.44769 0.5 8.99998 0.947715 8.99998 1.5H11ZM8.99998 2.625C8.99998 3.17728 9.44769 3.625 9.99998 3.625C10.5523 3.625 11 3.17728 11 2.625H8.99998ZM16.5 14C15.9477 14 15.5 14.4477 15.5 15C15.5 15.5523 15.9477 16 16.5 16V14ZM18.6666 16C19.2189 16 19.6666 15.5523 19.6666 15C19.6666 14.4477 19.2189 14 18.6666 14V16ZM9.99998 15V14C9.44769 14 8.99998 14.4477 8.99998 15H9.99998ZM12.1666 16C12.7189 16 13.1666 15.5523 13.1666 15C13.1666 14.4477 12.7189 14 12.1666 14V16ZM8.99998 19.5C8.99998 20.0523 9.44769 20.5 9.99998 20.5C10.5523 20.5 11 20.0523 11 19.5H8.99998ZM11 7.125C11 6.57272 10.5523 6.125 9.99998 6.125C9.44769 6.125 8.99998 6.57272 8.99998 7.125H11ZM9.99998 10.5H8.99998C8.99998 11.0523 9.44769 11.5 9.99998 11.5V10.5ZM14.3333 18.5C13.781 18.5 13.3333 18.9477 13.3333 19.5C13.3333 20.0523 13.781 20.5 14.3333 20.5V18.5ZM18.6666 20.5C19.2189 20.5 19.6666 20.0523 19.6666 19.5C19.6666 18.9477 19.2189 18.5 18.6666 18.5V20.5ZM1.33331 9.5C0.781028 9.5 0.333313 9.94771 0.333313 10.5C0.333313 11.0523 0.781028 11.5 1.33331 11.5V9.5ZM5.66665 11.5C6.21893 11.5 6.66665 11.0523 6.66665 10.5C6.66665 9.94771 6.21893 9.5 5.66665 9.5V11.5ZM10.0108 11.5C10.5631 11.5 11.0108 11.0523 11.0108 10.5C11.0108 9.94771 10.5631 9.5 10.0108 9.5V11.5ZM14.3441 11.5C14.8964 11.5 15.3441 11.0523 15.3441 10.5C15.3441 9.94771 14.8964 9.5 14.3441 9.5V11.5ZM18.6666 9.5C18.1144 9.5 17.6666 9.94771 17.6666 10.5C17.6666 11.0523 18.1144 11.5 18.6666 11.5V9.5ZM18.6775 11.5C19.2298 11.5 19.6775 11.0523 19.6775 10.5C19.6775 9.94771 19.2298 9.5 18.6775 9.5V11.5ZM2.41665 2.5H4.58331V0.5H2.41665V2.5ZM4.66665 2.625V4.875H6.66665V2.625H4.66665ZM4.58331 5H2.41665V7H4.58331V5ZM2.33331 4.875V2.625H0.333313V4.875H2.33331ZM2.41665 5C2.40602 5 2.39043 4.9971 2.37093 4.97685C2.3508 4.95595 2.33331 4.92194 2.33331 4.875H0.333313C0.333313 6.0127 1.23082 7 2.41665 7V5ZM4.66665 4.875C4.66665 4.92194 4.64916 4.95595 4.62902 4.97685C4.60953 4.9971 4.59394 5 4.58331 5V7C5.76914 7 6.66665 6.0127 6.66665 4.875H4.66665ZM4.58331 2.5C4.59394 2.5 4.60953 2.5029 4.62902 2.52315C4.64916 2.54405 4.66665 2.57806 4.66665 2.625H6.66665C6.66665 1.4873 5.76914 0.5 4.58331 0.5V2.5ZM2.41665 0.5C1.23082 0.5 0.333313 1.4873 0.333313 2.625H2.33331C2.33331 2.57806 2.3508 2.54405 2.37093 2.52315C2.39043 2.5029 2.40602 2.5 2.41665 2.5V0.5ZM15.4166 2.5H17.5833V0.5H15.4166V2.5ZM17.6666 2.625V4.875H19.6666V2.625H17.6666ZM17.5833 5H15.4166V7H17.5833V5ZM15.3333 4.875V2.625H13.3333V4.875H15.3333ZM15.4166 5C15.406 5 15.3904 4.9971 15.3709 4.97685C15.3508 4.95595 15.3333 4.92194 15.3333 4.875H13.3333C13.3333 6.0127 14.2308 7 15.4166 7V5ZM17.6666 4.875C17.6666 4.92194 17.6492 4.95595 17.629 4.97685C17.6095 4.9971 17.5939 5 17.5833 5V7C18.7691 7 19.6666 6.0127 19.6666 4.875H17.6666ZM17.5833 2.5C17.5939 2.5 17.6095 2.5029 17.629 2.52315C17.6492 2.54405 17.6666 2.57806 17.6666 2.625H19.6666C19.6666 1.4873 18.7691 0.5 17.5833 0.5V2.5ZM15.4166 0.5C14.2308 0.5 13.3333 1.4873 13.3333 2.625H15.3333C15.3333 2.57806 15.3508 2.54405 15.3709 2.52315C15.3904 2.5029 15.406 2.5 15.4166 2.5V0.5ZM2.41665 16H4.58331V14H2.41665V16ZM4.66665 16.125V18.375H6.66665V16.125H4.66665ZM4.58331 18.5H2.41665V20.5H4.58331V18.5ZM2.33331 18.375V16.125H0.333313V18.375H2.33331ZM2.41665 18.5C2.40602 18.5 2.39043 18.4971 2.37093 18.4769C2.3508 18.4559 2.33331 18.4219 2.33331 18.375H0.333313C0.333313 19.5127 1.23082 20.5 2.41665 20.5V18.5ZM4.66665 18.375C4.66665 18.4219 4.64916 18.4559 4.62902 18.4769C4.60953 18.4971 4.59394 18.5 4.58331 18.5V20.5C5.76914 20.5 6.66665 19.5127 6.66665 18.375H4.66665ZM4.58331 16C4.59394 16 4.60953 16.0029 4.62902 16.0231C4.64916 16.0441 4.66665 16.0781 4.66665 16.125H6.66665C6.66665 14.9873 5.76914 14 4.58331 14V16ZM2.41665 14C1.23082 14 0.333313 14.9873 0.333313 16.125H2.33331C2.33331 16.0781 2.3508 16.0441 2.37093 16.0231C2.39043 16.0029 2.40602 16 2.41665 16V14ZM8.99998 1.5V2.625H11V1.5H8.99998ZM16.5 16H18.6666V14H16.5V16ZM9.99998 16H12.1666V14H9.99998V16ZM8.99998 15V19.5H11V15H8.99998ZM8.99998 7.125V10.5H11V7.125H8.99998ZM14.3333 20.5H18.6666V18.5H14.3333V20.5ZM1.33331 11.5H5.66665V9.5H1.33331V11.5ZM9.99998 11.5H10.0108V9.5H9.99998V11.5ZM18.6666 11.5H18.6775V9.5H18.6666V11.5ZM9.99998 11.5H14.3441V9.5H9.99998V11.5Z"
2014
2049
  fill={4288684272}
2015
2050
  propList={
2016
2051
  [
@@ -2025,11 +2060,11 @@ exports[`test icons render an outlined qrcode icon in a purple color 1`] = `
2025
2060
  exports[`test icons render an outlined refresh icon in a purple color 1`] = `
2026
2061
  <RNSVGSvgView
2027
2062
  align="xMidYMid"
2028
- bbHeight="28"
2029
- bbWidth="28"
2063
+ bbHeight={24}
2064
+ bbWidth={24}
2030
2065
  fill="none"
2031
2066
  focusable={false}
2032
- height="28"
2067
+ height={24}
2033
2068
  meetOrSlice={0}
2034
2069
  minX={0}
2035
2070
  minY={0}
@@ -2041,14 +2076,14 @@ exports[`test icons render an outlined refresh icon in a purple color 1`] = `
2041
2076
  },
2042
2077
  {
2043
2078
  "flex": 0,
2044
- "height": 28,
2045
- "width": 28,
2079
+ "height": 24,
2080
+ "width": 24,
2046
2081
  },
2047
2082
  ]
2048
2083
  }
2049
- vbHeight={27}
2050
- vbWidth={26}
2051
- width="28"
2084
+ vbHeight={21}
2085
+ vbWidth={20}
2086
+ width={24}
2052
2087
  >
2053
2088
  <RNSVGGroup
2054
2089
  fill={null}
@@ -2059,7 +2094,7 @@ exports[`test icons render an outlined refresh icon in a purple color 1`] = `
2059
2094
  }
2060
2095
  >
2061
2096
  <RNSVGPath
2062
- d="M4.33301 4.5V10.125H4.96298M21.5993 12.375C21.0662 7.9354 17.4193 4.5 12.9997 4.5C9.36251 4.5 6.24866 6.82669 4.96298 10.125M4.96298 10.125H9.74967M21.6663 22.5V16.875H21.0364M21.0364 16.875C19.7507 20.1733 16.6368 22.5 12.9997 22.5C8.58009 22.5 4.93317 19.0646 4.40006 14.625M21.0364 16.875H16.2497"
2097
+ d="M1.33337 1.5V7.125H1.96335M18.5997 9.375C18.0665 4.9354 14.4196 1.5 10 1.5C6.36288 1.5 3.24902 3.82669 1.96335 7.125M1.96335 7.125H6.75004M18.6667 19.5V13.875H18.0367M18.0367 13.875C16.7511 17.1733 13.6372 19.5 10 19.5C5.58045 19.5 1.93353 16.0646 1.40043 11.625M18.0367 13.875H13.25"
2063
2098
  propList={
2064
2099
  [
2065
2100
  "stroke",
@@ -2080,11 +2115,11 @@ exports[`test icons render an outlined refresh icon in a purple color 1`] = `
2080
2115
  exports[`test icons render an outlined search icon in a white color 1`] = `
2081
2116
  <RNSVGSvgView
2082
2117
  align="xMidYMid"
2083
- bbHeight="28"
2084
- bbWidth="28"
2118
+ bbHeight={24}
2119
+ bbWidth={24}
2085
2120
  fill="none"
2086
2121
  focusable={false}
2087
- height="28"
2122
+ height={24}
2088
2123
  meetOrSlice={0}
2089
2124
  minX={0}
2090
2125
  minY={0}
@@ -2096,14 +2131,14 @@ exports[`test icons render an outlined search icon in a white color 1`] = `
2096
2131
  },
2097
2132
  {
2098
2133
  "flex": 0,
2099
- "height": 28,
2100
- "width": 28,
2134
+ "height": 24,
2135
+ "width": 24,
2101
2136
  },
2102
2137
  ]
2103
2138
  }
2104
- vbHeight={27}
2105
- vbWidth={27}
2106
- width="28"
2139
+ vbHeight={23}
2140
+ vbWidth={23}
2141
+ width={24}
2107
2142
  >
2108
2143
  <RNSVGGroup
2109
2144
  fill={null}
@@ -2114,7 +2149,7 @@ exports[`test icons render an outlined search icon in a white color 1`] = `
2114
2149
  }
2115
2150
  >
2116
2151
  <RNSVGPath
2117
- d="M23.625 23.625L16.875 16.875M19.125 11.25C19.125 15.5992 15.5992 19.125 11.25 19.125C6.90076 19.125 3.375 15.5992 3.375 11.25C3.375 6.90076 6.90076 3.375 11.25 3.375C15.5992 3.375 19.125 6.90076 19.125 11.25Z"
2152
+ d="M21.625 21.625L14.875 14.875M17.125 9.25C17.125 13.5992 13.5992 17.125 9.25 17.125C4.90076 17.125 1.375 13.5992 1.375 9.25C1.375 4.90076 4.90076 1.375 9.25 1.375C13.5992 1.375 17.125 4.90076 17.125 9.25Z"
2118
2153
  propList={
2119
2154
  [
2120
2155
  "stroke",
@@ -2135,11 +2170,11 @@ exports[`test icons render an outlined search icon in a white color 1`] = `
2135
2170
  exports[`test icons render an outlined selector icon in the main color 1`] = `
2136
2171
  <RNSVGSvgView
2137
2172
  align="xMidYMid"
2138
- bbHeight="28"
2139
- bbWidth="28"
2173
+ bbHeight={24}
2174
+ bbWidth={24}
2140
2175
  fill="none"
2141
2176
  focusable={false}
2142
- height="28"
2177
+ height={24}
2143
2178
  meetOrSlice={0}
2144
2179
  minX={0}
2145
2180
  minY={0}
@@ -2151,14 +2186,14 @@ exports[`test icons render an outlined selector icon in the main color 1`] = `
2151
2186
  },
2152
2187
  {
2153
2188
  "flex": 0,
2154
- "height": 28,
2155
- "width": 28,
2189
+ "height": 24,
2190
+ "width": 24,
2156
2191
  },
2157
2192
  ]
2158
2193
  }
2159
- vbHeight={27}
2160
- vbWidth={26}
2161
- width="28"
2194
+ vbHeight={19}
2195
+ vbWidth={12}
2196
+ width={24}
2162
2197
  >
2163
2198
  <RNSVGGroup
2164
2199
  fill={null}
@@ -2169,7 +2204,7 @@ exports[`test icons render an outlined selector icon in the main color 1`] = `
2169
2204
  }
2170
2205
  >
2171
2206
  <RNSVGPath
2172
- d="M8.66663 10.125L13 5.625L17.3333 10.125M17.3333 16.875L13 21.375L8.66663 16.875"
2207
+ d="M1.66663 6.125L5.99996 1.625L10.3333 6.125M10.3333 12.875L5.99996 17.375L1.66663 12.875"
2173
2208
  propList={
2174
2209
  [
2175
2210
  "stroke",
@@ -2190,11 +2225,11 @@ exports[`test icons render an outlined selector icon in the main color 1`] = `
2190
2225
  exports[`test icons render an outlined sm-view-grid-add icon in a yellow color 1`] = `
2191
2226
  <RNSVGSvgView
2192
2227
  align="xMidYMid"
2193
- bbHeight="28"
2194
- bbWidth="28"
2228
+ bbHeight={24}
2229
+ bbWidth={24}
2195
2230
  fill="none"
2196
2231
  focusable={false}
2197
- height="28"
2232
+ height={24}
2198
2233
  meetOrSlice={0}
2199
2234
  minX={0}
2200
2235
  minY={0}
@@ -2206,14 +2241,14 @@ exports[`test icons render an outlined sm-view-grid-add icon in a yellow color 1
2206
2241
  },
2207
2242
  {
2208
2243
  "flex": 0,
2209
- "height": 28,
2210
- "width": 28,
2244
+ "height": 24,
2245
+ "width": 24,
2211
2246
  },
2212
2247
  ]
2213
2248
  }
2214
- vbHeight={26}
2215
- vbWidth={26}
2216
- width="28"
2249
+ vbHeight={20}
2250
+ vbWidth={20}
2251
+ width={24}
2217
2252
  >
2218
2253
  <RNSVGGroup
2219
2254
  fill={null}
@@ -2224,7 +2259,7 @@ exports[`test icons render an outlined sm-view-grid-add icon in a yellow color 1
2224
2259
  }
2225
2260
  >
2226
2261
  <RNSVGPath
2227
- d="M18.4163 15.1663V21.6663M15.1663 18.4163H21.6663M6.49967 10.833H8.66634C9.86296 10.833 10.833 9.86296 10.833 8.66634V6.49967C10.833 5.30306 9.86296 4.33301 8.66634 4.33301H6.49967C5.30306 4.33301 4.33301 5.30306 4.33301 6.49967V8.66634C4.33301 9.86296 5.30306 10.833 6.49967 10.833ZM17.333 10.833H19.4997C20.6963 10.833 21.6663 9.86296 21.6663 8.66634V6.49967C21.6663 5.30306 20.6963 4.33301 19.4997 4.33301H17.333C16.1364 4.33301 15.1663 5.30306 15.1663 6.49967V8.66634C15.1663 9.86296 16.1364 10.833 17.333 10.833ZM6.49967 21.6663H8.66634C9.86296 21.6663 10.833 20.6963 10.833 19.4997V17.333C10.833 16.1364 9.86296 15.1663 8.66634 15.1663H6.49967C5.30306 15.1663 4.33301 16.1364 4.33301 17.333V19.4997C4.33301 20.6963 5.30306 21.6663 6.49967 21.6663Z"
2262
+ d="M15.4166 12.1667V18.6667M12.1666 15.4167H18.6666M3.49998 7.83337H5.66665C6.86326 7.83337 7.83331 6.86332 7.83331 5.66671V3.50004C7.83331 2.30342 6.86326 1.33337 5.66665 1.33337H3.49998C2.30336 1.33337 1.33331 2.30342 1.33331 3.50004V5.66671C1.33331 6.86332 2.30336 7.83337 3.49998 7.83337ZM14.3333 7.83337H16.5C17.6966 7.83337 18.6666 6.86332 18.6666 5.66671V3.50004C18.6666 2.30342 17.6966 1.33337 16.5 1.33337H14.3333C13.1367 1.33337 12.1666 2.30342 12.1666 3.50004V5.66671C12.1666 6.86332 13.1367 7.83337 14.3333 7.83337ZM3.49998 18.6667H5.66665C6.86326 18.6667 7.83331 17.6967 7.83331 16.5V14.3334C7.83331 13.1368 6.86326 12.1667 5.66665 12.1667H3.49998C2.30336 12.1667 1.33331 13.1368 1.33331 14.3334V16.5C1.33331 17.6967 2.30336 18.6667 3.49998 18.6667Z"
2228
2263
  propList={
2229
2264
  [
2230
2265
  "stroke",
@@ -2245,11 +2280,11 @@ exports[`test icons render an outlined sm-view-grid-add icon in a yellow color 1
2245
2280
  exports[`test icons render an outlined status-online icon in an orange color 1`] = `
2246
2281
  <RNSVGSvgView
2247
2282
  align="xMidYMid"
2248
- bbHeight="28"
2249
- bbWidth="28"
2283
+ bbHeight={24}
2284
+ bbWidth={24}
2250
2285
  fill="none"
2251
2286
  focusable={false}
2252
- height="28"
2287
+ height={24}
2253
2288
  meetOrSlice={0}
2254
2289
  minX={0}
2255
2290
  minY={0}
@@ -2261,14 +2296,14 @@ exports[`test icons render an outlined status-online icon in an orange color 1`]
2261
2296
  },
2262
2297
  {
2263
2298
  "flex": 0,
2264
- "height": 28,
2265
- "width": 28,
2299
+ "height": 24,
2300
+ "width": 24,
2266
2301
  },
2267
2302
  ]
2268
2303
  }
2269
- vbHeight={27}
2270
- vbWidth={27}
2271
- width="28"
2304
+ vbHeight={17}
2305
+ vbWidth={23}
2306
+ width={24}
2272
2307
  >
2273
2308
  <RNSVGGroup
2274
2309
  fill={null}
@@ -2279,7 +2314,7 @@ exports[`test icons render an outlined status-online icon in an orange color 1`]
2279
2314
  }
2280
2315
  >
2281
2316
  <RNSVGPath
2282
- d="M6.34054 20.6595C2.38649 16.7054 2.38649 10.2946 6.34054 6.34058M20.6595 6.34058C24.6135 10.2946 24.6135 16.7054 20.6595 20.6595M9.52252 17.4775C7.32582 15.2808 7.32582 11.7193 9.52252 9.52256M17.4775 9.52256C19.6742 11.7193 19.6742 15.2808 17.4775 17.4775M14.625 13.5C14.625 14.1214 14.1213 14.625 13.5 14.625C12.8787 14.625 12.375 14.1214 12.375 13.5C12.375 12.8787 12.8787 12.375 13.5 12.375C14.1213 12.375 14.625 12.8787 14.625 13.5Z"
2317
+ d="M4.34054 15.6595C0.386485 11.7054 0.386485 5.29464 4.34054 1.34058M18.6595 1.34058C22.6135 5.29464 22.6135 11.7054 18.6595 15.6595M7.52252 12.4775C5.32582 10.2808 5.32582 6.71926 7.52252 4.52256M15.4775 4.52256C17.6742 6.71926 17.6742 10.2808 15.4775 12.4775M12.625 8.50003C12.625 9.12135 12.1213 9.62503 11.5 9.62503C10.8787 9.62503 10.375 9.12135 10.375 8.50003C10.375 7.87871 10.8787 7.37503 11.5 7.37503C12.1213 7.37503 12.625 7.87871 12.625 8.50003Z"
2283
2318
  propList={
2284
2319
  [
2285
2320
  "stroke",
@@ -2300,11 +2335,11 @@ exports[`test icons render an outlined status-online icon in an orange color 1`]
2300
2335
  exports[`test icons render an outlined thumb-up icon in a blue color 1`] = `
2301
2336
  <RNSVGSvgView
2302
2337
  align="xMidYMid"
2303
- bbHeight="28"
2304
- bbWidth="28"
2338
+ bbHeight={24}
2339
+ bbWidth={24}
2305
2340
  fill="none"
2306
2341
  focusable={false}
2307
- height="28"
2342
+ height={24}
2308
2343
  meetOrSlice={0}
2309
2344
  minX={0}
2310
2345
  minY={0}
@@ -2316,14 +2351,14 @@ exports[`test icons render an outlined thumb-up icon in a blue color 1`] = `
2316
2351
  },
2317
2352
  {
2318
2353
  "flex": 0,
2319
- "height": 28,
2320
- "width": 28,
2354
+ "height": 24,
2355
+ "width": 24,
2321
2356
  },
2322
2357
  ]
2323
2358
  }
2324
- vbHeight={27}
2325
- vbWidth={27}
2326
- width="28"
2359
+ vbHeight={23}
2360
+ vbWidth={23}
2361
+ width={24}
2327
2362
  >
2328
2363
  <RNSVGGroup
2329
2364
  fill={null}
@@ -2334,7 +2369,7 @@ exports[`test icons render an outlined thumb-up icon in a blue color 1`] = `
2334
2369
  }
2335
2370
  >
2336
2371
  <RNSVGPath
2337
- d="M11.25 11.25H5.8906C4.21799 11.25 3.13012 13.0102 3.87814 14.5062L7.81564 22.3812C8.19677 23.1435 8.97586 23.625 9.8281 23.625H14.348C14.532 23.625 14.7153 23.6024 14.8937 23.5578L19.125 22.5M11.25 11.25V5.625C11.25 4.38236 12.2574 3.375 13.5 3.375H13.6074C14.1694 3.375 14.625 3.83059 14.625 4.39259C14.625 5.19618 14.8629 5.9818 15.3086 6.65043L19.125 12.375V22.5M11.25 11.25H13.5M19.125 22.5H21.375C22.6177 22.5 23.625 21.4926 23.625 20.25V13.5C23.625 12.2574 22.6177 11.25 21.375 11.25H18.5625"
2372
+ d="M13.75 9.25H19.1094C20.782 9.25 21.8699 11.0102 21.1219 12.5062L17.1844 20.3812C16.8033 21.1435 16.0242 21.625 15.1719 21.625H10.652C10.468 21.625 10.2848 21.6024 10.1063 21.5578L5.875 20.5M13.75 9.25V3.625C13.75 2.38236 12.7426 1.375 11.5 1.375H11.3926C10.8306 1.375 10.375 1.83059 10.375 2.39259C10.375 3.19618 10.1371 3.9818 9.69138 4.65043L5.875 10.375V20.5M13.75 9.25H11.5M5.875 20.5H3.625C2.38236 20.5 1.375 19.4926 1.375 18.25V11.5C1.375 10.2574 2.38236 9.25 3.625 9.25H6.4375"
2338
2373
  propList={
2339
2374
  [
2340
2375
  "stroke",
@@ -2355,11 +2390,11 @@ exports[`test icons render an outlined thumb-up icon in a blue color 1`] = `
2355
2390
  exports[`test icons render an outlined trash icon in a red color 1`] = `
2356
2391
  <RNSVGSvgView
2357
2392
  align="xMidYMid"
2358
- bbHeight="28"
2359
- bbWidth="28"
2393
+ bbHeight={24}
2394
+ bbWidth={24}
2360
2395
  fill="none"
2361
2396
  focusable={false}
2362
- height="28"
2397
+ height={24}
2363
2398
  meetOrSlice={0}
2364
2399
  minX={0}
2365
2400
  minY={0}
@@ -2371,14 +2406,14 @@ exports[`test icons render an outlined trash icon in a red color 1`] = `
2371
2406
  },
2372
2407
  {
2373
2408
  "flex": 0,
2374
- "height": 28,
2375
- "width": 28,
2409
+ "height": 24,
2410
+ "width": 24,
2376
2411
  },
2377
2412
  ]
2378
2413
  }
2379
- vbHeight={28}
2380
- vbWidth={28}
2381
- width="28"
2414
+ vbHeight={22}
2415
+ vbWidth={21}
2416
+ width={24}
2382
2417
  >
2383
2418
  <RNSVGGroup
2384
2419
  fill={null}
@@ -2389,7 +2424,7 @@ exports[`test icons render an outlined trash icon in a red color 1`] = `
2389
2424
  }
2390
2425
  >
2391
2426
  <RNSVGPath
2392
- d="M21.875 8.375L20.8993 22.0353C20.8152 23.2127 19.8354 24.125 18.655 24.125H9.34502C8.16458 24.125 7.18484 23.2127 7.10074 22.0353L6.125 8.375M11.75 12.875V19.625M16.25 12.875V19.625M17.375 8.375V5C17.375 4.37868 16.8713 3.875 16.25 3.875H11.75C11.1287 3.875 10.625 4.37868 10.625 5V8.375M5 8.375H23"
2427
+ d="M18.375 5.58333L17.3993 18.7377C17.3152 19.8715 16.3354 20.75 15.155 20.75H5.84502C4.66458 20.75 3.68484 19.8715 3.60074 18.7377L2.625 5.58333M8.25 9.91667V16.4167M12.75 9.91667V16.4167M13.875 5.58333V2.33333C13.875 1.73502 13.3713 1.25 12.75 1.25H8.25C7.62868 1.25 7.125 1.73502 7.125 2.33333V5.58333M1.5 5.58333H19.5"
2393
2428
  propList={
2394
2429
  [
2395
2430
  "stroke",
@@ -2410,11 +2445,11 @@ exports[`test icons render an outlined trash icon in a red color 1`] = `
2410
2445
  exports[`test icons render an outlined user icon in the main color 1`] = `
2411
2446
  <RNSVGSvgView
2412
2447
  align="xMidYMid"
2413
- bbHeight="28"
2414
- bbWidth="28"
2448
+ bbHeight={24}
2449
+ bbWidth={24}
2415
2450
  fill="none"
2416
2451
  focusable={false}
2417
- height="28"
2452
+ height={24}
2418
2453
  meetOrSlice={0}
2419
2454
  minX={0}
2420
2455
  minY={0}
@@ -2426,14 +2461,14 @@ exports[`test icons render an outlined user icon in the main color 1`] = `
2426
2461
  },
2427
2462
  {
2428
2463
  "flex": 0,
2429
- "height": 28,
2430
- "width": 28,
2464
+ "height": 24,
2465
+ "width": 24,
2431
2466
  },
2432
2467
  ]
2433
2468
  }
2434
- vbHeight={27}
2435
- vbWidth={27}
2436
- width="28"
2469
+ vbHeight={23}
2470
+ vbWidth={19}
2471
+ width={24}
2437
2472
  >
2438
2473
  <RNSVGGroup
2439
2474
  fill={null}
@@ -2444,7 +2479,7 @@ exports[`test icons render an outlined user icon in the main color 1`] = `
2444
2479
  }
2445
2480
  >
2446
2481
  <RNSVGPath
2447
- d="M18 7.875C18 10.3603 15.9853 12.375 13.5 12.375C11.0147 12.375 9 10.3603 9 7.875C9 5.38972 11.0147 3.375 13.5 3.375C15.9853 3.375 18 5.38972 18 7.875Z"
2482
+ d="M14 5.875C14 8.36028 11.9853 10.375 9.5 10.375C7.01472 10.375 5 8.36028 5 5.875C5 3.38972 7.01472 1.375 9.5 1.375C11.9853 1.375 14 3.38972 14 5.875Z"
2448
2483
  propList={
2449
2484
  [
2450
2485
  "stroke",
@@ -2459,7 +2494,7 @@ exports[`test icons render an outlined user icon in the main color 1`] = `
2459
2494
  strokeWidth="2"
2460
2495
  />
2461
2496
  <RNSVGPath
2462
- d="M13.5 15.75C9.15076 15.75 5.625 19.2758 5.625 23.625H21.375C21.375 19.2758 17.8492 15.75 13.5 15.75Z"
2497
+ d="M9.5 13.75C5.15076 13.75 1.625 17.2758 1.625 21.625H17.375C17.375 17.2758 13.8492 13.75 9.5 13.75Z"
2463
2498
  propList={
2464
2499
  [
2465
2500
  "stroke",
@@ -2480,11 +2515,11 @@ exports[`test icons render an outlined user icon in the main color 1`] = `
2480
2515
  exports[`test icons render an outlined user-group icon in a grey color 1`] = `
2481
2516
  <RNSVGSvgView
2482
2517
  align="xMidYMid"
2483
- bbHeight="28"
2484
- bbWidth="28"
2518
+ bbHeight={24}
2519
+ bbWidth={24}
2485
2520
  fill="none"
2486
2521
  focusable={false}
2487
- height="28"
2522
+ height={24}
2488
2523
  meetOrSlice={0}
2489
2524
  minX={0}
2490
2525
  minY={0}
@@ -2496,14 +2531,14 @@ exports[`test icons render an outlined user-group icon in a grey color 1`] = `
2496
2531
  },
2497
2532
  {
2498
2533
  "flex": 0,
2499
- "height": 28,
2500
- "width": 28,
2534
+ "height": 24,
2535
+ "width": 24,
2501
2536
  },
2502
2537
  ]
2503
2538
  }
2504
- vbHeight={27}
2505
- vbWidth={27}
2506
- width="28"
2539
+ vbHeight={21}
2540
+ vbWidth={25}
2541
+ width={24}
2507
2542
  >
2508
2543
  <RNSVGGroup
2509
2544
  fill={null}
@@ -2514,7 +2549,7 @@ exports[`test icons render an outlined user-group icon in a grey color 1`] = `
2514
2549
  }
2515
2550
  >
2516
2551
  <RNSVGPath
2517
- d="M19.125 22.5H24.75V20.25C24.75 18.386 23.239 16.875 21.375 16.875C20.2999 16.875 19.3423 17.3776 18.7242 18.1608M19.125 22.5H7.875M19.125 22.5V20.25C19.125 19.5117 18.9828 18.8067 18.7242 18.1608M7.875 22.5H2.25V20.25C2.25 18.386 3.76104 16.875 5.625 16.875C6.70006 16.875 7.65772 17.3776 8.27578 18.1608M7.875 22.5V20.25C7.875 19.5117 8.01723 18.8067 8.27578 18.1608M8.27578 18.1608C9.10519 16.0887 11.1317 14.625 13.5 14.625C15.8683 14.625 17.8948 16.0887 18.7242 18.1608M16.875 7.875C16.875 9.73896 15.364 11.25 13.5 11.25C11.636 11.25 10.125 9.73896 10.125 7.875C10.125 6.01104 11.636 4.5 13.5 4.5C15.364 4.5 16.875 6.01104 16.875 7.875ZM23.625 11.25C23.625 12.4926 22.6176 13.5 21.375 13.5C20.1324 13.5 19.125 12.4926 19.125 11.25C19.125 10.0074 20.1324 9 21.375 9C22.6176 9 23.625 10.0074 23.625 11.25ZM7.875 11.25C7.875 12.4926 6.86764 13.5 5.625 13.5C4.38236 13.5 3.375 12.4926 3.375 11.25C3.375 10.0074 4.38236 9 5.625 9C6.86764 9 7.875 10.0074 7.875 11.25Z"
2552
+ d="M18.125 19.5H23.75V17.25C23.75 15.386 22.239 13.875 20.375 13.875C19.2999 13.875 18.3423 14.3776 17.7242 15.1608M18.125 19.5H6.875M18.125 19.5V17.25C18.125 16.5117 17.9828 15.8067 17.7242 15.1608M6.875 19.5H1.25V17.25C1.25 15.386 2.76104 13.875 4.625 13.875C5.70006 13.875 6.65772 14.3776 7.27578 15.1608M6.875 19.5V17.25C6.875 16.5117 7.01723 15.8067 7.27578 15.1608M7.27578 15.1608C8.10519 13.0887 10.1317 11.625 12.5 11.625C14.8683 11.625 16.8948 13.0887 17.7242 15.1608M15.875 4.875C15.875 6.73896 14.364 8.25 12.5 8.25C10.636 8.25 9.125 6.73896 9.125 4.875C9.125 3.01104 10.636 1.5 12.5 1.5C14.364 1.5 15.875 3.01104 15.875 4.875ZM22.625 8.25C22.625 9.49264 21.6176 10.5 20.375 10.5C19.1324 10.5 18.125 9.49264 18.125 8.25C18.125 7.00736 19.1324 6 20.375 6C21.6176 6 22.625 7.00736 22.625 8.25ZM6.875 8.25C6.875 9.49264 5.86764 10.5 4.625 10.5C3.38236 10.5 2.375 9.49264 2.375 8.25C2.375 7.00736 3.38236 6 4.625 6C5.86764 6 6.875 7.00736 6.875 8.25Z"
2518
2553
  propList={
2519
2554
  [
2520
2555
  "stroke",
@@ -2535,11 +2570,11 @@ exports[`test icons render an outlined user-group icon in a grey color 1`] = `
2535
2570
  exports[`test icons render an outlined users icon in a white color 1`] = `
2536
2571
  <RNSVGSvgView
2537
2572
  align="xMidYMid"
2538
- bbHeight="28"
2539
- bbWidth="28"
2573
+ bbHeight={24}
2574
+ bbWidth={24}
2540
2575
  fill="none"
2541
2576
  focusable={false}
2542
- height="28"
2577
+ height={24}
2543
2578
  meetOrSlice={0}
2544
2579
  minX={0}
2545
2580
  minY={0}
@@ -2551,14 +2586,14 @@ exports[`test icons render an outlined users icon in a white color 1`] = `
2551
2586
  },
2552
2587
  {
2553
2588
  "flex": 0,
2554
- "height": 28,
2555
- "width": 28,
2589
+ "height": 24,
2590
+ "width": 24,
2556
2591
  },
2557
2592
  ]
2558
2593
  }
2559
- vbHeight={32}
2560
- vbWidth={32}
2561
- width="28"
2594
+ vbHeight={26}
2595
+ vbWidth={26}
2596
+ width={24}
2562
2597
  >
2563
2598
  <RNSVGGroup
2564
2599
  fill={null}
@@ -2569,7 +2604,7 @@ exports[`test icons render an outlined users icon in a white color 1`] = `
2569
2604
  }
2570
2605
  >
2571
2606
  <RNSVGPath
2572
- d="M16 5.80557C16.9773 4.69834 18.4071 4 20 4C22.9455 4 25.3333 6.38781 25.3333 9.33333C25.3333 12.2789 22.9455 14.6667 20 14.6667C18.4071 14.6667 16.9773 13.9683 16 12.8611M20 28H4V26.6667C4 22.2484 7.58172 18.6667 12 18.6667C16.4183 18.6667 20 22.2484 20 26.6667V28ZM20 28H28V26.6667C28 22.2484 24.4183 18.6667 20 18.6667C18.5429 18.6667 17.1767 19.0562 16 19.7369M17.3333 9.33333C17.3333 12.2789 14.9455 14.6667 12 14.6667C9.05448 14.6667 6.66667 12.2789 6.66667 9.33333C6.66667 6.38781 9.05448 4 12 4C14.9455 4 17.3333 6.38781 17.3333 9.33333Z"
2607
+ d="M13 2.80557C13.9773 1.69834 15.4071 1 17 1C19.9455 1 22.3333 3.38781 22.3333 6.33333C22.3333 9.27885 19.9455 11.6667 17 11.6667C15.4071 11.6667 13.9773 10.9683 13 9.8611M17 25H1V23.6667C1 19.2484 4.58172 15.6667 9 15.6667C13.4183 15.6667 17 19.2484 17 23.6667V25ZM17 25H25V23.6667C25 19.2484 21.4183 15.6667 17 15.6667C15.5429 15.6667 14.1767 16.0562 13 16.7369M14.3333 6.33333C14.3333 9.27885 11.9455 11.6667 9 11.6667C6.05448 11.6667 3.66667 9.27885 3.66667 6.33333C3.66667 3.38781 6.05448 1 9 1C11.9455 1 14.3333 3.38781 14.3333 6.33333Z"
2573
2608
  propList={
2574
2609
  [
2575
2610
  "stroke",
@@ -2586,3 +2621,58 @@ exports[`test icons render an outlined users icon in a white color 1`] = `
2586
2621
  </RNSVGGroup>
2587
2622
  </RNSVGSvgView>
2588
2623
  `;
2624
+
2625
+ exports[`test icons render an outlined xmark icon in the main color 1`] = `
2626
+ <RNSVGSvgView
2627
+ align="xMidYMid"
2628
+ bbHeight={24}
2629
+ bbWidth={24}
2630
+ fill="none"
2631
+ focusable={false}
2632
+ height={24}
2633
+ meetOrSlice={0}
2634
+ minX={0}
2635
+ minY={0}
2636
+ style={
2637
+ [
2638
+ {
2639
+ "backgroundColor": "transparent",
2640
+ "borderWidth": 0,
2641
+ },
2642
+ {
2643
+ "flex": 0,
2644
+ "height": 24,
2645
+ "width": 24,
2646
+ },
2647
+ ]
2648
+ }
2649
+ vbHeight={17}
2650
+ vbWidth={17}
2651
+ width={24}
2652
+ >
2653
+ <RNSVGGroup
2654
+ fill={null}
2655
+ propList={
2656
+ [
2657
+ "fill",
2658
+ ]
2659
+ }
2660
+ >
2661
+ <RNSVGPath
2662
+ d="M1.75 15.25L15.25 1.75M1.75 1.75L15.25 15.25"
2663
+ propList={
2664
+ [
2665
+ "stroke",
2666
+ "strokeWidth",
2667
+ "strokeLinecap",
2668
+ "strokeLinejoin",
2669
+ ]
2670
+ }
2671
+ stroke={4279837036}
2672
+ strokeLinecap={1}
2673
+ strokeLinejoin={1}
2674
+ strokeWidth="2"
2675
+ />
2676
+ </RNSVGGroup>
2677
+ </RNSVGSvgView>
2678
+ `;