@tactics/toddle-styleguide 5.0.2 → 5.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (961) hide show
  1. package/.prettierrc.js +9 -0
  2. package/.yarnrc.yml +2 -0
  3. package/App.d.ts +5 -0
  4. package/App.tsx +655 -0
  5. package/app.json +37 -0
  6. package/assets/adaptive-icon.png +0 -0
  7. package/assets/components/avatar/baby.png +0 -0
  8. package/assets/favicon.png +0 -0
  9. package/assets/fonts/montserrat/bold.ttf +0 -0
  10. package/assets/fonts/montserrat/regular.ttf +0 -0
  11. package/assets/fonts/source-sans-pro/bold.ttf +0 -0
  12. package/assets/fonts/source-sans-pro/regular.ttf +0 -0
  13. package/assets/icon.png +0 -0
  14. package/assets/lottie/wave-for-daycares.json +1197 -0
  15. package/assets/lottie/wave-for-parents.json +1 -0
  16. package/assets/splash.png +0 -0
  17. package/babel.config.js +20 -0
  18. package/index.d.ts +79 -0
  19. package/index.tsx +196 -0
  20. package/jest.config.js +26 -0
  21. package/metro.config.js +11 -0
  22. package/package.json +6 -16
  23. package/src/components/atoms/animated-wave/animated-wave.component.d.ts +2 -0
  24. package/src/components/atoms/animated-wave/animated-wave.component.tsx +28 -0
  25. package/src/components/atoms/animated-wave/animated-wave.preview.tsx +20 -0
  26. package/src/components/atoms/animated-wave/animated-wave.styles.d.ts +21 -0
  27. package/src/components/atoms/animated-wave/animated-wave.styles.js +25 -0
  28. package/src/components/atoms/backdrop/backdrop.component.d.ts +7 -0
  29. package/src/components/atoms/backdrop/backdrop.component.tsx +48 -0
  30. package/src/components/atoms/backdrop/backdrop.styles.d.ts +11 -0
  31. package/src/components/atoms/backdrop/backdrop.styles.js +15 -0
  32. package/src/components/atoms/background-gradient/__snapshots__/background-gradient.test.js.snap +40 -0
  33. package/src/components/atoms/background-gradient/background-gradient.component.d.ts +2 -0
  34. package/src/components/atoms/background-gradient/background-gradient.component.tsx +19 -0
  35. package/src/components/atoms/background-gradient/background-gradient.preview.d.ts +2 -0
  36. package/src/components/atoms/background-gradient/background-gradient.preview.tsx +77 -0
  37. package/src/components/atoms/background-gradient/background-gradient.styles.d.ts +8 -0
  38. package/src/components/atoms/background-gradient/background-gradient.styles.js +11 -0
  39. package/src/components/atoms/background-gradient/background-gradient.test.js +10 -0
  40. package/src/components/atoms/calendar/__snapshots__/calendar.test.js.snap +6817 -0
  41. package/src/components/atoms/calendar/calendar.component.d.ts +10 -0
  42. package/src/components/atoms/calendar/calendar.component.tsx +101 -0
  43. package/src/components/atoms/calendar/calendar.preview.d.ts +2 -0
  44. package/src/components/atoms/calendar/calendar.preview.tsx +39 -0
  45. package/src/components/atoms/calendar/calendar.styles.d.ts +81 -0
  46. package/src/components/atoms/calendar/calendar.styles.js +88 -0
  47. package/src/components/atoms/calendar/calendar.test.js +35 -0
  48. package/src/components/atoms/check-switch/__snapshots__/check-switch.test.js.snap +84 -0
  49. package/src/components/atoms/check-switch/check-switch.component.d.ts +7 -0
  50. package/src/components/atoms/check-switch/check-switch.component.tsx +48 -0
  51. package/src/components/atoms/check-switch/check-switch.preview.d.ts +2 -0
  52. package/src/components/atoms/check-switch/check-switch.preview.tsx +31 -0
  53. package/src/components/atoms/check-switch/check-switch.styles.d.ts +33 -0
  54. package/src/components/atoms/check-switch/check-switch.styles.js +36 -0
  55. package/src/components/atoms/check-switch/check-switch.test.js +13 -0
  56. package/src/components/atoms/count/count.component.d.ts +7 -0
  57. package/src/components/atoms/count/count.component.tsx +21 -0
  58. package/src/components/atoms/count/count.preview.d.ts +2 -0
  59. package/src/components/atoms/count/count.preview.tsx +16 -0
  60. package/src/components/atoms/count/count.styles.d.ts +24 -0
  61. package/src/components/atoms/count/count.styles.js +33 -0
  62. package/src/components/atoms/footer/footer.component.d.ts +6 -0
  63. package/src/components/atoms/footer/footer.component.tsx +28 -0
  64. package/src/components/atoms/footer/footer.preview.d.ts +2 -0
  65. package/src/components/atoms/footer/footer.preview.tsx +24 -0
  66. package/src/components/atoms/footer/footer.styles.d.ts +17 -0
  67. package/src/components/atoms/footer/footer.styles.js +18 -0
  68. package/src/components/atoms/heading-components/all-caps-heading/__snapshots__/all-caps-heading.test.js.snap +113 -0
  69. package/src/components/atoms/heading-components/all-caps-heading/all-caps-heading.component.d.ts +3 -0
  70. package/src/components/atoms/heading-components/all-caps-heading/all-caps-heading.component.tsx +28 -0
  71. package/src/components/atoms/heading-components/all-caps-heading/all-caps-heading.test.js +44 -0
  72. package/src/components/atoms/heading-components/heading.styles.d.ts +48 -0
  73. package/src/components/atoms/heading-components/heading.styles.js +63 -0
  74. package/src/components/atoms/heading-components/heading1/__snapshots__/heading1.test.js.snap +121 -0
  75. package/src/components/atoms/heading-components/heading1/heading1.component.d.ts +3 -0
  76. package/src/components/atoms/heading-components/heading1/heading1.component.tsx +28 -0
  77. package/src/components/atoms/heading-components/heading1/heading1.test.js +51 -0
  78. package/src/components/atoms/heading-components/heading2/__snapshots__/heading2.test.js.snap +121 -0
  79. package/src/components/atoms/heading-components/heading2/heading2.component.d.ts +3 -0
  80. package/src/components/atoms/heading-components/heading2/heading2.component.tsx +28 -0
  81. package/src/components/atoms/heading-components/heading2/heading2.test.js +51 -0
  82. package/src/components/atoms/heading-components/heading3/__snapshots__/heading3.test.js.snap +121 -0
  83. package/src/components/atoms/heading-components/heading3/heading3.component.d.ts +3 -0
  84. package/src/components/atoms/heading-components/heading3/heading3.component.tsx +28 -0
  85. package/src/components/atoms/heading-components/heading3/heading3.test.js +51 -0
  86. package/src/components/atoms/heading-components/heading4/__snapshots__/heading4.test.js.snap +121 -0
  87. package/src/components/atoms/heading-components/heading4/heading4.component.d.ts +3 -0
  88. package/src/components/atoms/heading-components/heading4/heading4.component.tsx +28 -0
  89. package/src/components/atoms/heading-components/heading4/heading4.test.js +51 -0
  90. package/src/components/atoms/heading-components/headings.preview.d.ts +2 -0
  91. package/src/components/atoms/heading-components/headings.preview.tsx +86 -0
  92. package/src/components/atoms/heading-components/index.d.ts +6 -0
  93. package/src/components/atoms/heading-components/index.tsx +7 -0
  94. package/src/components/atoms/image-bubble/__snapshots__/image-bubble.test.js.snap +67 -0
  95. package/src/components/atoms/image-bubble/image-bubble.component.d.ts +9 -0
  96. package/src/components/atoms/image-bubble/image-bubble.component.tsx +27 -0
  97. package/src/components/atoms/image-bubble/image-bubble.preview.d.ts +2 -0
  98. package/src/components/atoms/image-bubble/image-bubble.preview.tsx +19 -0
  99. package/src/components/atoms/image-bubble/image-bubble.styles.d.ts +35 -0
  100. package/src/components/atoms/image-bubble/image-bubble.styles.js +31 -0
  101. package/src/components/atoms/image-bubble/image-bubble.test.js +20 -0
  102. package/src/components/atoms/increment-input/__snapshots__/increment-input.test.js.snap +269 -0
  103. package/src/components/atoms/increment-input/increment-input.component.d.ts +8 -0
  104. package/src/components/atoms/increment-input/increment-input.component.tsx +63 -0
  105. package/src/components/atoms/increment-input/increment-input.preview.d.ts +2 -0
  106. package/src/components/atoms/increment-input/increment-input.preview.tsx +26 -0
  107. package/src/components/atoms/increment-input/increment-input.styles.d.ts +35 -0
  108. package/src/components/atoms/increment-input/increment-input.styles.js +39 -0
  109. package/src/components/atoms/increment-input/increment-input.test.js +14 -0
  110. package/src/components/atoms/line/line.component.d.ts +9 -0
  111. package/src/components/atoms/line/line.component.tsx +23 -0
  112. package/src/components/atoms/line/line.preview.d.ts +2 -0
  113. package/src/components/atoms/line/line.preview.tsx +55 -0
  114. package/src/components/atoms/line/line.styles.d.ts +12 -0
  115. package/src/components/atoms/line/line.styles.js +10 -0
  116. package/src/components/atoms/logo/__snapshots__/logo.test.js.snap +113 -0
  117. package/src/components/atoms/logo/logo.component.d.ts +7 -0
  118. package/src/components/atoms/logo/logo.component.tsx +39 -0
  119. package/src/components/atoms/logo/logo.preview.d.ts +2 -0
  120. package/src/components/atoms/logo/logo.preview.tsx +15 -0
  121. package/src/components/atoms/logo/logo.test.js +16 -0
  122. package/src/components/atoms/paragraph-components/index.d.ts +4 -0
  123. package/src/components/atoms/paragraph-components/index.tsx +5 -0
  124. package/src/components/atoms/paragraph-components/paragraph/__snapshots__/paragraph.test.js.snap +121 -0
  125. package/src/components/atoms/paragraph-components/paragraph/paragraph.component.d.ts +3 -0
  126. package/src/components/atoms/paragraph-components/paragraph/paragraph.component.tsx +28 -0
  127. package/src/components/atoms/paragraph-components/paragraph/paragraph.test.js +76 -0
  128. package/src/components/atoms/paragraph-components/paragraph-components.preview.d.ts +2 -0
  129. package/src/components/atoms/paragraph-components/paragraph-components.preview.tsx +94 -0
  130. package/src/components/atoms/paragraph-components/paragraph-text.styles.d.ts +30 -0
  131. package/src/components/atoms/paragraph-components/paragraph-text.styles.js +41 -0
  132. package/src/components/atoms/paragraph-components/small-text/__snapshots__/small-text.test.js.snap +121 -0
  133. package/src/components/atoms/paragraph-components/small-text/small-text.component.d.ts +3 -0
  134. package/src/components/atoms/paragraph-components/small-text/small-text.component.tsx +28 -0
  135. package/src/components/atoms/paragraph-components/small-text/small-text.test.js +76 -0
  136. package/src/components/atoms/paragraph-components/tiny-text/__snapshots__/tiny-text.test.js.snap +121 -0
  137. package/src/components/atoms/paragraph-components/tiny-text/tiny-text.component.d.ts +3 -0
  138. package/src/components/atoms/paragraph-components/tiny-text/tiny-text.component.tsx +28 -0
  139. package/src/components/atoms/paragraph-components/tiny-text/tiny-text.test.js +76 -0
  140. package/src/components/atoms/quick-message/__snapshots__/quick-message.test.js.snap +143 -0
  141. package/src/components/atoms/quick-message/quick-message.component.d.ts +9 -0
  142. package/src/components/atoms/quick-message/quick-message.component.tsx +35 -0
  143. package/src/components/atoms/quick-message/quick-message.preview.d.ts +2 -0
  144. package/src/components/atoms/quick-message/quick-message.preview.tsx +43 -0
  145. package/src/components/atoms/quick-message/quick-message.styles.d.ts +17 -0
  146. package/src/components/atoms/quick-message/quick-message.styles.js +20 -0
  147. package/src/components/atoms/quick-message/quick-message.test.js +58 -0
  148. package/src/components/atoms/split-container/__snapshots__/split-container.test.js.snap +333 -0
  149. package/src/components/atoms/split-container/split-container.component.d.ts +7 -0
  150. package/src/components/atoms/split-container/split-container.component.tsx +27 -0
  151. package/src/components/atoms/split-container/split-container.preview.d.ts +2 -0
  152. package/src/components/atoms/split-container/split-container.preview.tsx +62 -0
  153. package/src/components/atoms/split-container/split-container.styles.d.ts +14 -0
  154. package/src/components/atoms/split-container/split-container.styles.js +19 -0
  155. package/src/components/atoms/split-container/split-container.test.js +45 -0
  156. package/src/components/atoms/static-wave/static-wave.component.d.ts +9 -0
  157. package/src/components/atoms/static-wave/static-wave.component.tsx +46 -0
  158. package/src/components/atoms/static-wave/static-wave.styles.d.ts +14 -0
  159. package/src/components/atoms/static-wave/static-wave.styles.js +14 -0
  160. package/src/components/atoms/text-input/__snapshots__/text-input.test.js.snap +123 -0
  161. package/src/components/atoms/text-input/text-input.component.d.ts +9 -0
  162. package/src/components/atoms/text-input/text-input.component.tsx +30 -0
  163. package/src/components/atoms/text-input/text-input.preview.d.ts +2 -0
  164. package/src/components/atoms/text-input/text-input.preview.tsx +41 -0
  165. package/src/components/atoms/text-input/text-input.styles.d.ts +33 -0
  166. package/src/components/atoms/text-input/text-input.styles.js +29 -0
  167. package/src/components/atoms/text-input/text-input.test.js +59 -0
  168. package/src/components/molecules/amount/amount.component.d.ts +12 -0
  169. package/src/components/molecules/amount/amount.component.tsx +148 -0
  170. package/src/components/molecules/amount/amount.preview.d.ts +2 -0
  171. package/src/components/molecules/amount/amount.preview.tsx +77 -0
  172. package/src/components/molecules/amount/amount.styles.d.ts +36 -0
  173. package/src/components/molecules/amount/amount.styles.js +40 -0
  174. package/src/components/molecules/avatar/__snapshots__/avatar.test.js.snap +97 -0
  175. package/src/components/molecules/avatar/avatar.component.d.ts +15 -0
  176. package/src/components/molecules/avatar/avatar.component.tsx +118 -0
  177. package/src/components/molecules/avatar/avatar.preview.d.ts +2 -0
  178. package/src/components/molecules/avatar/avatar.preview.tsx +82 -0
  179. package/src/components/molecules/avatar/avatar.styles.d.ts +102 -0
  180. package/src/components/molecules/avatar/avatar.styles.js +90 -0
  181. package/src/components/molecules/avatar/avatar.test.js +22 -0
  182. package/src/components/molecules/bare-time-picker/bare-time-picker.component.d.ts +9 -0
  183. package/src/components/molecules/bare-time-picker/bare-time-picker.component.native.tsx +78 -0
  184. package/src/components/molecules/bare-time-picker/bare-time-picker.component.tsx +52 -0
  185. package/src/components/molecules/bare-time-picker/bare-time-picker.preview.d.ts +2 -0
  186. package/src/components/molecules/bare-time-picker/bare-time-picker.preview.tsx +86 -0
  187. package/src/components/molecules/bare-time-picker/bare-time-picker.styles.d.ts +14 -0
  188. package/src/components/molecules/bare-time-picker/bare-time-picker.styles.js +18 -0
  189. package/src/components/molecules/blocked-message/__snapshots__/blocked-message.test.js.snap +107 -0
  190. package/src/components/molecules/blocked-message/blocked-message.component.d.ts +6 -0
  191. package/src/components/molecules/blocked-message/blocked-message.component.tsx +35 -0
  192. package/src/components/molecules/blocked-message/blocked-message.preview.d.ts +2 -0
  193. package/src/components/molecules/blocked-message/blocked-message.preview.tsx +23 -0
  194. package/src/components/molecules/blocked-message/blocked-message.styles.d.ts +22 -0
  195. package/src/components/molecules/blocked-message/blocked-message.styles.js +21 -0
  196. package/src/components/molecules/blocked-message/blocked-message.test.js +12 -0
  197. package/src/components/molecules/button/__snapshots__/button.test.js.snap +652 -0
  198. package/src/components/molecules/button/button.component.d.ts +15 -0
  199. package/src/components/molecules/button/button.component.tsx +77 -0
  200. package/src/components/molecules/button/button.preview.d.ts +2 -0
  201. package/src/components/molecules/button/button.preview.tsx +57 -0
  202. package/src/components/molecules/button/button.styles.d.ts +18 -0
  203. package/src/components/molecules/button/button.styles.js +18 -0
  204. package/src/components/molecules/button/button.test.js +56 -0
  205. package/src/components/molecules/calendar-select/__snapshots__/calendar-select.test.js.snap +343 -0
  206. package/src/components/molecules/calendar-select/calendar-select.component.d.ts +10 -0
  207. package/src/components/molecules/calendar-select/calendar-select.component.tsx +98 -0
  208. package/src/components/molecules/calendar-select/calendar-select.preview.d.ts +2 -0
  209. package/src/components/molecules/calendar-select/calendar-select.preview.tsx +20 -0
  210. package/src/components/molecules/calendar-select/calendar-select.styles.d.ts +33 -0
  211. package/src/components/molecules/calendar-select/calendar-select.styles.js +37 -0
  212. package/src/components/molecules/calendar-select/calendar-select.test.js +20 -0
  213. package/src/components/molecules/cancel-link/__snapshots__/cancel-link.test.js.snap +139 -0
  214. package/src/components/molecules/cancel-link/cancel-link.component.d.ts +7 -0
  215. package/src/components/molecules/cancel-link/cancel-link.component.tsx +27 -0
  216. package/src/components/molecules/cancel-link/cancel-link.preview.d.ts +2 -0
  217. package/src/components/molecules/cancel-link/cancel-link.preview.tsx +20 -0
  218. package/src/components/molecules/cancel-link/cancel-link.styles.d.ts +11 -0
  219. package/src/components/molecules/cancel-link/cancel-link.styles.js +15 -0
  220. package/src/components/molecules/cancel-link/cancel-link.test.js +28 -0
  221. package/src/components/molecules/checkbox/__snapshots__/checkbox.test.js.snap +176 -0
  222. package/src/components/molecules/checkbox/checkbox.component.d.ts +8 -0
  223. package/src/components/molecules/checkbox/checkbox.component.tsx +31 -0
  224. package/src/components/molecules/checkbox/checkbox.preview.d.ts +2 -0
  225. package/src/components/molecules/checkbox/checkbox.preview.tsx +46 -0
  226. package/src/components/molecules/checkbox/checkbox.styles.d.ts +32 -0
  227. package/src/components/molecules/checkbox/checkbox.styles.js +30 -0
  228. package/src/components/molecules/checkbox/checkbox.test.js +30 -0
  229. package/src/components/molecules/contact-role/__snapshots__/contact-role.test.js.snap +113 -0
  230. package/src/components/molecules/contact-role/contact-role.component.d.ts +8 -0
  231. package/src/components/molecules/contact-role/contact-role.component.tsx +37 -0
  232. package/src/components/molecules/contact-role/contact-role.preview.d.ts +2 -0
  233. package/src/components/molecules/contact-role/contact-role.preview.tsx +17 -0
  234. package/src/components/molecules/contact-role/contact-role.styles.d.ts +16 -0
  235. package/src/components/molecules/contact-role/contact-role.styles.js +20 -0
  236. package/src/components/molecules/contact-role/contact-role.test.js +18 -0
  237. package/src/components/molecules/context-label/context-label.component.d.ts +7 -0
  238. package/src/components/molecules/context-label/context-label.component.tsx +37 -0
  239. package/src/components/molecules/context-label/context-label.preview.d.ts +2 -0
  240. package/src/components/molecules/context-label/context-label.preview.tsx +70 -0
  241. package/src/components/molecules/context-label/context-label.styles.d.ts +18 -0
  242. package/src/components/molecules/context-label/context-label.styles.js +21 -0
  243. package/src/components/molecules/date-input/__snapshots__/date-input.test.js.snap +140 -0
  244. package/src/components/molecules/date-input/date-input.component.d.ts +8 -0
  245. package/src/components/molecules/date-input/date-input.component.tsx +32 -0
  246. package/src/components/molecules/date-input/date-input.preview.d.ts +2 -0
  247. package/src/components/molecules/date-input/date-input.preview.tsx +62 -0
  248. package/src/components/molecules/date-input/date-input.styles.d.ts +18 -0
  249. package/src/components/molecules/date-input/date-input.styles.js +22 -0
  250. package/src/components/molecules/date-input/date-input.test.js +23 -0
  251. package/src/components/molecules/day/__snapshots__/day.test.js.snap +263 -0
  252. package/src/components/molecules/day/day.component.d.ts +13 -0
  253. package/src/components/molecules/day/day.component.tsx +69 -0
  254. package/src/components/molecules/day/day.styles.d.ts +35 -0
  255. package/src/components/molecules/day/day.styles.js +27 -0
  256. package/src/components/molecules/day/day.test.js +37 -0
  257. package/src/components/molecules/default-select/__snapshots__/default-select.test.js.snap +140 -0
  258. package/src/components/molecules/default-select/default-select.component.d.ts +7 -0
  259. package/src/components/molecules/default-select/default-select.component.tsx +42 -0
  260. package/src/components/molecules/default-select/default-select.preview.d.ts +2 -0
  261. package/src/components/molecules/default-select/default-select.preview.tsx +34 -0
  262. package/src/components/molecules/default-select/default-select.styles.d.ts +13 -0
  263. package/src/components/molecules/default-select/default-select.styles.js +17 -0
  264. package/src/components/molecules/default-select/default-select.test.js +17 -0
  265. package/src/components/molecules/department_logo/__snapshots__/department-logo.test.js.snap +27 -0
  266. package/src/components/molecules/department_logo/department-logo.component.d.ts +6 -0
  267. package/src/components/molecules/department_logo/department-logo.component.tsx +21 -0
  268. package/src/components/molecules/department_logo/department-logo.preview.d.ts +2 -0
  269. package/src/components/molecules/department_logo/department-logo.preview.tsx +11 -0
  270. package/src/components/molecules/department_logo/department-logo.styles.d.ts +5 -0
  271. package/src/components/molecules/department_logo/department-logo.styles.js +9 -0
  272. package/src/components/molecules/department_logo/department-logo.test.js +12 -0
  273. package/src/components/molecules/failed-to-send/__snapshots__/failed-bubble.test.js.snap +386 -0
  274. package/src/components/molecules/failed-to-send/failed-bubble.component.d.ts +9 -0
  275. package/src/components/molecules/failed-to-send/failed-bubble.component.tsx +101 -0
  276. package/src/components/molecules/failed-to-send/failed-bubble.styles.d.ts +38 -0
  277. package/src/components/molecules/failed-to-send/failed-bubble.styles.js +42 -0
  278. package/src/components/molecules/failed-to-send/failed-bubble.test.js +75 -0
  279. package/src/components/molecules/filter-range/__snapshots__/filter-range.test.js.snap +208 -0
  280. package/src/components/molecules/filter-range/filter-range.component.d.ts +11 -0
  281. package/src/components/molecules/filter-range/filter-range.component.tsx +72 -0
  282. package/src/components/molecules/filter-range/filter-range.preview.d.ts +2 -0
  283. package/src/components/molecules/filter-range/filter-range.preview.tsx +26 -0
  284. package/src/components/molecules/filter-range/filter-range.styles.d.ts +22 -0
  285. package/src/components/molecules/filter-range/filter-range.styles.js +26 -0
  286. package/src/components/molecules/filter-range/filter-range.test.js +20 -0
  287. package/src/components/molecules/filter-tab/__snapshots__/filter-tab.test.js.snap +536 -0
  288. package/src/components/molecules/filter-tab/filter-tab.component.d.ts +11 -0
  289. package/src/components/molecules/filter-tab/filter-tab.component.tsx +108 -0
  290. package/src/components/molecules/filter-tab/filter-tab.preview.d.ts +2 -0
  291. package/src/components/molecules/filter-tab/filter-tab.preview.tsx +80 -0
  292. package/src/components/molecules/filter-tab/filter-tab.styles.d.ts +59 -0
  293. package/src/components/molecules/filter-tab/filter-tab.styles.js +58 -0
  294. package/src/components/molecules/filter-tab/filter-tab.test.js +42 -0
  295. package/src/components/molecules/info/__snapshots__/info.test.js.snap +64 -0
  296. package/src/components/molecules/info/info.component.d.ts +8 -0
  297. package/src/components/molecules/info/info.component.tsx +39 -0
  298. package/src/components/molecules/info/info.preview.d.ts +2 -0
  299. package/src/components/molecules/info/info.preview.tsx +28 -0
  300. package/src/components/molecules/info/info.styles.d.ts +16 -0
  301. package/src/components/molecules/info/info.styles.js +20 -0
  302. package/src/components/molecules/info/info.test.js +18 -0
  303. package/src/components/molecules/inline-error/inline-error.component.d.ts +6 -0
  304. package/src/components/molecules/inline-error/inline-error.component.tsx +34 -0
  305. package/src/components/molecules/inline-error/inline-error.preview.d.ts +2 -0
  306. package/src/components/molecules/inline-error/inline-error.preview.tsx +22 -0
  307. package/src/components/molecules/inline-error/inline-error.styles.d.ts +18 -0
  308. package/src/components/molecules/inline-error/inline-error.styles.js +22 -0
  309. package/src/components/molecules/inline-notice/inline-notice.component.d.ts +6 -0
  310. package/src/components/molecules/inline-notice/inline-notice.component.tsx +31 -0
  311. package/src/components/molecules/inline-notice/inline-notice.preview.tsx +22 -0
  312. package/src/components/molecules/inline-notice/inline-notice.styles.d.ts +18 -0
  313. package/src/components/molecules/inline-notice/inline-notice.styles.js +22 -0
  314. package/src/components/molecules/language-button/__snapshots__/language-button.test.js.snap +129 -0
  315. package/src/components/molecules/language-button/language-button.component.d.ts +8 -0
  316. package/src/components/molecules/language-button/language-button.component.tsx +33 -0
  317. package/src/components/molecules/language-button/language-button.preview.d.ts +2 -0
  318. package/src/components/molecules/language-button/language-button.preview.tsx +29 -0
  319. package/src/components/molecules/language-button/language-button.styles.d.ts +8 -0
  320. package/src/components/molecules/language-button/language-button.styles.js +12 -0
  321. package/src/components/molecules/language-button/language-button.test.js +29 -0
  322. package/src/components/molecules/message-input/__snapshots__/message-input.test.js.snap +611 -0
  323. package/src/components/molecules/message-input/message-input.component.d.ts +9 -0
  324. package/src/components/molecules/message-input/message-input.component.tsx +54 -0
  325. package/src/components/molecules/message-input/message-input.preview.d.ts +2 -0
  326. package/src/components/molecules/message-input/message-input.preview.tsx +54 -0
  327. package/src/components/molecules/message-input/message-input.styles.d.ts +33 -0
  328. package/src/components/molecules/message-input/message-input.styles.js +37 -0
  329. package/src/components/molecules/message-input/message-input.test.js +63 -0
  330. package/src/components/molecules/more-info-button/__snapshots__/more-info-button.test.js.snap +133 -0
  331. package/src/components/molecules/more-info-button/more-info-button.component.d.ts +8 -0
  332. package/src/components/molecules/more-info-button/more-info-button.component.tsx +33 -0
  333. package/src/components/molecules/more-info-button/more-info-button.preview.d.ts +2 -0
  334. package/src/components/molecules/more-info-button/more-info-button.preview.tsx +29 -0
  335. package/src/components/molecules/more-info-button/more-info-button.styles.d.ts +10 -0
  336. package/src/components/molecules/more-info-button/more-info-button.styles.js +15 -0
  337. package/src/components/molecules/more-info-button/more-info-button.test.js +29 -0
  338. package/src/components/molecules/password-input/__snapshots__/password-input.test.js.snap +504 -0
  339. package/src/components/molecules/password-input/password-input.component.d.ts +8 -0
  340. package/src/components/molecules/password-input/password-input.component.tsx +55 -0
  341. package/src/components/molecules/password-input/password-input.preview.d.ts +2 -0
  342. package/src/components/molecules/password-input/password-input.preview.tsx +59 -0
  343. package/src/components/molecules/password-input/password-input.styles.d.ts +29 -0
  344. package/src/components/molecules/password-input/password-input.styles.js +33 -0
  345. package/src/components/molecules/password-input/password-input.test.js +46 -0
  346. package/src/components/molecules/pill/__snapshots__/pill.test.js.snap +226 -0
  347. package/src/components/molecules/pill/pill.component.d.ts +8 -0
  348. package/src/components/molecules/pill/pill.component.tsx +33 -0
  349. package/src/components/molecules/pill/pill.preview.d.ts +2 -0
  350. package/src/components/molecules/pill/pill.preview.tsx +23 -0
  351. package/src/components/molecules/pill/pill.styles.d.ts +32 -0
  352. package/src/components/molecules/pill/pill.styles.js +33 -0
  353. package/src/components/molecules/pill/pill.test.js +42 -0
  354. package/src/components/molecules/pressable-icon/__snapshots__/pressable-icon.test.js.snap +460 -0
  355. package/src/components/molecules/pressable-icon/pressable-icon.component.d.ts +9 -0
  356. package/src/components/molecules/pressable-icon/pressable-icon.component.tsx +50 -0
  357. package/src/components/molecules/pressable-icon/pressable-icon.preview.d.ts +2 -0
  358. package/src/components/molecules/pressable-icon/pressable-icon.preview.tsx +37 -0
  359. package/src/components/molecules/pressable-icon/pressable-icon.styles.d.ts +20 -0
  360. package/src/components/molecules/pressable-icon/pressable-icon.styles.js +25 -0
  361. package/src/components/molecules/pressable-icon/pressable-icon.test.js +51 -0
  362. package/src/components/molecules/quick-filter/__snapshots__/quick-filter.test.js.snap +557 -0
  363. package/src/components/molecules/quick-filter/quick-filter.component.d.ts +12 -0
  364. package/src/components/molecules/quick-filter/quick-filter.component.tsx +50 -0
  365. package/src/components/molecules/quick-filter/quick-filter.preview.d.ts +2 -0
  366. package/src/components/molecules/quick-filter/quick-filter.preview.tsx +57 -0
  367. package/src/components/molecules/quick-filter/quick-filter.styles.d.ts +35 -0
  368. package/src/components/molecules/quick-filter/quick-filter.styles.js +49 -0
  369. package/src/components/molecules/quick-filter/quick-filter.test.js +134 -0
  370. package/src/components/molecules/search-input/__snapshots__/search.test.js.snap +145 -0
  371. package/src/components/molecules/search-input/search.component.d.ts +10 -0
  372. package/src/components/molecules/search-input/search.component.tsx +50 -0
  373. package/src/components/molecules/search-input/search.preview.d.ts +2 -0
  374. package/src/components/molecules/search-input/search.preview.tsx +26 -0
  375. package/src/components/molecules/search-input/search.styles.d.ts +33 -0
  376. package/src/components/molecules/search-input/search.styles.js +38 -0
  377. package/src/components/molecules/search-input/search.test.js +22 -0
  378. package/src/components/molecules/select-link/__snapshots__/select-link.test.js.snap +70 -0
  379. package/src/components/molecules/select-link/select-link.component.d.ts +7 -0
  380. package/src/components/molecules/select-link/select-link.component.tsx +29 -0
  381. package/src/components/molecules/select-link/select-link.preview.d.ts +2 -0
  382. package/src/components/molecules/select-link/select-link.preview.tsx +20 -0
  383. package/src/components/molecules/select-link/select-link.styles.d.ts +11 -0
  384. package/src/components/molecules/select-link/select-link.styles.js +15 -0
  385. package/src/components/molecules/select-link/select-link.test.js +17 -0
  386. package/src/components/molecules/select-list-item/__snapshots__/select-list-item.test.js.snap +762 -0
  387. package/src/components/molecules/select-list-item/select-list-item-preview.d.ts +2 -0
  388. package/src/components/molecules/select-list-item/select-list-item-preview.tsx +40 -0
  389. package/src/components/molecules/select-list-item/select-list-item.component.d.ts +12 -0
  390. package/src/components/molecules/select-list-item/select-list-item.component.tsx +82 -0
  391. package/src/components/molecules/select-list-item/select-list-item.styles.d.ts +41 -0
  392. package/src/components/molecules/select-list-item/select-list-item.styles.js +43 -0
  393. package/src/components/molecules/select-list-item/select-list-item.test.js +38 -0
  394. package/src/components/molecules/select-picker/__snapshots__/select-picker.test.js.snap +407 -0
  395. package/src/components/molecules/select-picker/select-picker.component.d.ts +12 -0
  396. package/src/components/molecules/select-picker/select-picker.component.tsx +75 -0
  397. package/src/components/molecules/select-picker/select-picker.preview.d.ts +2 -0
  398. package/src/components/molecules/select-picker/select-picker.preview.tsx +63 -0
  399. package/src/components/molecules/select-picker/select-picker.styles.d.ts +32 -0
  400. package/src/components/molecules/select-picker/select-picker.styles.js +38 -0
  401. package/src/components/molecules/select-picker/select-picker.test.js +31 -0
  402. package/src/components/molecules/selectable-list-item/selectable-list-item-preview.d.ts +2 -0
  403. package/src/components/molecules/selectable-list-item/selectable-list-item-preview.tsx +51 -0
  404. package/src/components/molecules/selectable-list-item/selectable-list-item.component.d.ts +11 -0
  405. package/src/components/molecules/selectable-list-item/selectable-list-item.component.tsx +73 -0
  406. package/src/components/molecules/selectable-list-item/selectable-list-item.styles.d.ts +32 -0
  407. package/src/components/molecules/selectable-list-item/selectable-list-item.styles.js +34 -0
  408. package/src/components/molecules/send-bubble/__snapshots__/send-text-bubble.test.js.snap +1979 -0
  409. package/src/components/molecules/send-bubble/send-text-bubble.component.d.ts +11 -0
  410. package/src/components/molecules/send-bubble/send-text-bubble.component.tsx +104 -0
  411. package/src/components/molecules/send-bubble/send-text-bubble.styles.d.ts +60 -0
  412. package/src/components/molecules/send-bubble/send-text-bubble.styles.js +50 -0
  413. package/src/components/molecules/send-bubble/send-text-bubble.test.js +156 -0
  414. package/src/components/molecules/snackbar/__snapshots__/snackbar.test.js.snap +557 -0
  415. package/src/components/molecules/snackbar/snackbar.component.d.ts +8 -0
  416. package/src/components/molecules/snackbar/snackbar.component.tsx +65 -0
  417. package/src/components/molecules/snackbar/snackbar.preview.d.ts +2 -0
  418. package/src/components/molecules/snackbar/snackbar.preview.tsx +40 -0
  419. package/src/components/molecules/snackbar/snackbar.styles.d.ts +57 -0
  420. package/src/components/molecules/snackbar/snackbar.styles.js +54 -0
  421. package/src/components/molecules/snackbar/snackbar.test.js +35 -0
  422. package/src/components/molecules/swipe/__snapshots__/swipe.test.js.snap +340 -0
  423. package/src/components/molecules/swipe/swipe.component.d.ts +7 -0
  424. package/src/components/molecules/swipe/swipe.component.native.tsx +78 -0
  425. package/src/components/molecules/swipe/swipe.component.tsx +20 -0
  426. package/src/components/molecules/swipe/swipe.preview.d.ts +2 -0
  427. package/src/components/molecules/swipe/swipe.preview.tsx +123 -0
  428. package/src/components/molecules/swipe/swipe.styles.d.ts +28 -0
  429. package/src/components/molecules/swipe/swipe.styles.js +32 -0
  430. package/src/components/molecules/swipe/swipe.test.js +46 -0
  431. package/src/components/molecules/swipeable/swipeable-action.component.d.ts +10 -0
  432. package/src/components/molecules/swipeable/swipeable-action.component.tsx +57 -0
  433. package/src/components/molecules/swipeable/swipeable-action.styles.d.ts +12 -0
  434. package/src/components/molecules/swipeable/swipeable-action.styles.js +20 -0
  435. package/src/components/molecules/swipeable/swipeable-container.component.d.ts +14 -0
  436. package/src/components/molecules/swipeable/swipeable-container.component.tsx +69 -0
  437. package/src/components/molecules/swipeable/swipeable-container.styles.d.ts +9 -0
  438. package/src/components/molecules/swipeable/swipeable-container.styles.js +14 -0
  439. package/src/components/molecules/tag/__snapshots__/tag.test.js.snap +139 -0
  440. package/src/components/molecules/tag/tag.component.d.ts +9 -0
  441. package/src/components/molecules/tag/tag.component.tsx +39 -0
  442. package/src/components/molecules/tag/tag.preview.d.ts +2 -0
  443. package/src/components/molecules/tag/tag.preview.tsx +85 -0
  444. package/src/components/molecules/tag/tag.styles.d.ts +19 -0
  445. package/src/components/molecules/tag/tag.styles.js +19 -0
  446. package/src/components/molecules/tag/tag.test.js +34 -0
  447. package/src/components/molecules/time-picker/__snapshots__/time-picker.test.js.snap +2221 -0
  448. package/src/components/molecules/time-picker/time-picker.component.d.ts +9 -0
  449. package/src/components/molecules/time-picker/time-picker.component.tsx +98 -0
  450. package/src/components/molecules/time-picker/time-picker.preview.d.ts +2 -0
  451. package/src/components/molecules/time-picker/time-picker.preview.tsx +109 -0
  452. package/src/components/molecules/time-picker/time-picker.styles.d.ts +27 -0
  453. package/src/components/molecules/time-picker/time-picker.styles.js +31 -0
  454. package/src/components/molecules/time-picker/time-picker.test.js +18 -0
  455. package/src/components/molecules/time-tracker/__snapshots__/time-tracker.test.js.snap +266 -0
  456. package/src/components/molecules/time-tracker/time-tracker.component.d.ts +9 -0
  457. package/src/components/molecules/time-tracker/time-tracker.component.tsx +30 -0
  458. package/src/components/molecules/time-tracker/time-tracker.preview.d.ts +2 -0
  459. package/src/components/molecules/time-tracker/time-tracker.preview.tsx +15 -0
  460. package/src/components/molecules/time-tracker/time-tracker.styles.d.ts +33 -0
  461. package/src/components/molecules/time-tracker/time-tracker.styles.js +32 -0
  462. package/src/components/molecules/time-tracker/time-tracker.test.js +36 -0
  463. package/src/components/molecules/timeline/__snapshots__/timeline.test.js.snap +257 -0
  464. package/src/components/molecules/timeline/timeline.component.d.ts +7 -0
  465. package/src/components/molecules/timeline/timeline.component.tsx +69 -0
  466. package/src/components/molecules/timeline/timeline.preview.d.ts +2 -0
  467. package/src/components/molecules/timeline/timeline.preview.tsx +32 -0
  468. package/src/components/molecules/timeline/timeline.styles.d.ts +61 -0
  469. package/src/components/molecules/timeline/timeline.styles.js +46 -0
  470. package/src/components/molecules/timeline/timeline.test.js +18 -0
  471. package/src/components/molecules/timestamp/__snapshots__/timestamp.test.js.snap +28 -0
  472. package/src/components/molecules/timestamp/timestamp.component.d.ts +8 -0
  473. package/src/components/molecules/timestamp/timestamp.component.tsx +30 -0
  474. package/src/components/molecules/timestamp/timestamp.styles.d.ts +5 -0
  475. package/src/components/molecules/timestamp/timestamp.styles.js +8 -0
  476. package/src/components/molecules/timestamp/timestamp.test.js +16 -0
  477. package/src/components/molecules/wave-background/__snapshots__/wave.test.js.snap +173 -0
  478. package/src/components/molecules/wave-background/wave.component.d.ts +3 -0
  479. package/src/components/molecules/wave-background/wave.component.tsx +35 -0
  480. package/src/components/molecules/wave-background/wave.preview.d.ts +2 -0
  481. package/src/components/molecules/wave-background/wave.preview.tsx +78 -0
  482. package/src/components/molecules/wave-background/wave.styles.d.ts +13 -0
  483. package/src/components/molecules/wave-background/wave.styles.js +13 -0
  484. package/src/components/molecules/wave-background/wave.test.js +25 -0
  485. package/src/components/molecules/wide-button/__snapshots__/wide-button.test.js.snap +269 -0
  486. package/src/components/molecules/wide-button/wide-button.component.d.ts +9 -0
  487. package/src/components/molecules/wide-button/wide-button.component.tsx +39 -0
  488. package/src/components/molecules/wide-button/wide-button.preview.d.ts +2 -0
  489. package/src/components/molecules/wide-button/wide-button.preview.tsx +28 -0
  490. package/src/components/molecules/wide-button/wide-button.styles.d.ts +15 -0
  491. package/src/components/molecules/wide-button/wide-button.styles.js +19 -0
  492. package/src/components/molecules/wide-button/wide-button.test.js +30 -0
  493. package/src/components/organisms/child-list-item/__snapshots__/child-list-item.test.js.snap +1040 -0
  494. package/src/components/organisms/child-list-item/child-list-item.component.d.ts +23 -0
  495. package/src/components/organisms/child-list-item/child-list-item.component.tsx +166 -0
  496. package/src/components/organisms/child-list-item/child-list-item.preview.d.ts +2 -0
  497. package/src/components/organisms/child-list-item/child-list-item.preview.tsx +141 -0
  498. package/src/components/organisms/child-list-item/child-list-item.styles.d.ts +57 -0
  499. package/src/components/organisms/child-list-item/child-list-item.styles.js +61 -0
  500. package/src/components/organisms/child-list-item/child-list-item.test.js +75 -0
  501. package/src/components/organisms/child-list-item/components/child-list-tag.component.d.ts +7 -0
  502. package/src/components/organisms/child-list-item/components/child-list-tag.component.tsx +28 -0
  503. package/src/components/organisms/child-list-item/components/child-list-tag.styles.d.ts +13 -0
  504. package/src/components/organisms/child-list-item/components/child-list-tag.styles.js +16 -0
  505. package/src/components/organisms/contact-item/__snapshots__/contact-item.test.js.snap +404 -0
  506. package/src/components/organisms/contact-item/contact-item.component.d.ts +10 -0
  507. package/src/components/organisms/contact-item/contact-item.component.tsx +85 -0
  508. package/src/components/organisms/contact-item/contact-item.preview.d.ts +2 -0
  509. package/src/components/organisms/contact-item/contact-item.preview.tsx +38 -0
  510. package/src/components/organisms/contact-item/contact-item.styles.d.ts +22 -0
  511. package/src/components/organisms/contact-item/contact-item.styles.js +27 -0
  512. package/src/components/organisms/contact-item/contact-item.test.js +22 -0
  513. package/src/components/organisms/journal-entry/components/entry-type-indicator/entry-type-indicator.component.d.ts +7 -0
  514. package/src/components/organisms/journal-entry/components/entry-type-indicator/entry-type-indicator.component.tsx +96 -0
  515. package/src/components/organisms/journal-entry/components/entry-type-indicator/entry-type-indicator.styles.d.ts +13 -0
  516. package/src/components/organisms/journal-entry/components/entry-type-indicator/entry-type-indicator.styles.js +17 -0
  517. package/src/components/organisms/journal-entry/components/index.d.ts +2 -0
  518. package/src/components/organisms/journal-entry/components/index.ts +2 -0
  519. package/src/components/organisms/journal-entry/components/journal-entry-type/journal-entry-type.component.d.ts +11 -0
  520. package/src/components/organisms/journal-entry/components/journal-entry-type/journal-entry-type.component.tsx +63 -0
  521. package/src/components/organisms/journal-entry/components/journal-entry-type/journal-entry-type.styles.d.ts +13 -0
  522. package/src/components/organisms/journal-entry/components/journal-entry-type/journal-entry-type.styles.js +16 -0
  523. package/src/components/organisms/journal-entry/journal-entry.component.d.ts +20 -0
  524. package/src/components/organisms/journal-entry/journal-entry.component.tsx +134 -0
  525. package/src/components/organisms/journal-entry/journal-entry.preview.d.ts +2 -0
  526. package/src/components/organisms/journal-entry/journal-entry.preview.tsx +214 -0
  527. package/src/components/organisms/journal-entry/journal-entry.styles.d.ts +26 -0
  528. package/src/components/organisms/journal-entry/journal-entry.styles.js +27 -0
  529. package/src/components/organisms/loading-indicator/__snapshots__/loading-indicator.test.js.snap +474 -0
  530. package/src/components/organisms/loading-indicator/animation-style.animate.d.ts +3 -0
  531. package/src/components/organisms/loading-indicator/animation-style.animate.ts +164 -0
  532. package/src/components/organisms/loading-indicator/container.component.d.ts +1 -0
  533. package/src/components/organisms/loading-indicator/container.component.tsx +65 -0
  534. package/src/components/organisms/loading-indicator/dot.component.d.ts +6 -0
  535. package/src/components/organisms/loading-indicator/dot.component.tsx +27 -0
  536. package/src/components/organisms/loading-indicator/loading-indicator.component.d.ts +2 -0
  537. package/src/components/organisms/loading-indicator/loading-indicator.component.tsx +21 -0
  538. package/src/components/organisms/loading-indicator/loading-indicator.preview.d.ts +2 -0
  539. package/src/components/organisms/loading-indicator/loading-indicator.preview.tsx +100 -0
  540. package/src/components/organisms/loading-indicator/loading-indicator.test.js +41 -0
  541. package/src/components/organisms/my-child-list-item/__snapshots__/my-child-list-item.test.js.snap +293 -0
  542. package/src/components/organisms/my-child-list-item/my-child-list-item.component.d.ts +13 -0
  543. package/src/components/organisms/my-child-list-item/my-child-list-item.component.tsx +61 -0
  544. package/src/components/organisms/my-child-list-item/my-child-list-item.preview.d.ts +2 -0
  545. package/src/components/organisms/my-child-list-item/my-child-list-item.preview.tsx +51 -0
  546. package/src/components/organisms/my-child-list-item/my-child-list-item.styles.d.ts +33 -0
  547. package/src/components/organisms/my-child-list-item/my-child-list-item.styles.js +37 -0
  548. package/src/components/organisms/my-child-list-item/my-child-list-item.test.js +23 -0
  549. package/src/components/organisms/person-info-card/__snapshots__/person-info-card.test.js.snap +709 -0
  550. package/src/components/organisms/person-info-card/person-info-card.component.d.ts +15 -0
  551. package/src/components/organisms/person-info-card/person-info-card.component.tsx +45 -0
  552. package/src/components/organisms/person-info-card/person-info-card.preview.d.ts +2 -0
  553. package/src/components/organisms/person-info-card/person-info-card.preview.tsx +75 -0
  554. package/src/components/organisms/person-info-card/person-info-card.styles.d.ts +6 -0
  555. package/src/components/organisms/person-info-card/person-info-card.styles.js +10 -0
  556. package/src/components/organisms/person-info-card/person-info-card.test.js +85 -0
  557. package/src/components/organisms/text-bubble/__snapshots__/text-bubble.test.js.snap +3046 -0
  558. package/src/components/organisms/text-bubble/text-bubble.component.d.ts +15 -0
  559. package/src/components/organisms/text-bubble/text-bubble.component.tsx +71 -0
  560. package/src/components/organisms/text-bubble/text-bubble.preview.d.ts +2 -0
  561. package/src/components/organisms/text-bubble/text-bubble.preview.tsx +85 -0
  562. package/src/components/organisms/text-bubble/text-bubble.styles.d.ts +16 -0
  563. package/src/components/organisms/text-bubble/text-bubble.styles.js +20 -0
  564. package/src/components/organisms/text-bubble/text-bubble.test.js +144 -0
  565. package/src/components/organisms/timetable-edit/timetable-edit.component.d.ts +17 -0
  566. package/src/components/organisms/timetable-edit/timetable-edit.component.tsx +97 -0
  567. package/src/components/organisms/timetable-edit/timetable-edit.preview.d.ts +2 -0
  568. package/src/components/organisms/timetable-edit/timetable-edit.preview.tsx +84 -0
  569. package/src/components/organisms/timetable-edit/timetable-edit.styles.d.ts +21 -0
  570. package/src/components/organisms/timetable-edit/timetable-edit.styles.js +25 -0
  571. package/src/components/organisms/timetable-editor/components/timetable-edit-wrapper.d.ts +12 -0
  572. package/src/components/organisms/timetable-editor/components/timetable-edit-wrapper.tsx +70 -0
  573. package/src/components/organisms/timetable-editor/timetable-editor-staff.component.d.ts +8 -0
  574. package/src/components/organisms/timetable-editor/timetable-editor-staff.component.tsx +72 -0
  575. package/src/components/organisms/timetable-editor/timetable-editor.component.d.ts +8 -0
  576. package/src/components/organisms/timetable-editor/timetable-editor.component.tsx +84 -0
  577. package/src/components/organisms/timetable-editor/timetable-editor.preview.d.ts +2 -0
  578. package/src/components/organisms/timetable-editor/timetable-editor.preview.tsx +53 -0
  579. package/src/components/organisms/timetable-editor/timetable-editor.styles.d.ts +8 -0
  580. package/src/components/organisms/timetable-editor/timetable-editor.styles.js +12 -0
  581. package/src/components/templates/modal/components/fade-panel.component.d.ts +11 -0
  582. package/src/components/templates/modal/components/fade-panel.component.tsx +53 -0
  583. package/src/components/templates/modal/components/fade-panel.styles.d.ts +18 -0
  584. package/src/components/templates/modal/components/fade-panel.styles.js +19 -0
  585. package/src/components/templates/modal/modal-preview.styles.d.ts +13 -0
  586. package/src/components/templates/modal/modal-preview.styles.js +17 -0
  587. package/src/components/templates/modal/modal.component.d.ts +10 -0
  588. package/src/components/templates/modal/modal.component.tsx +53 -0
  589. package/src/components/templates/modal/modal.preview.d.ts +2 -0
  590. package/src/components/templates/modal/modal.preview.tsx +48 -0
  591. package/src/components/templates/modal/modal.styles.d.ts +23 -0
  592. package/src/components/templates/modal/modal.styles.js +28 -0
  593. package/src/components/templates/popover/components/foreground/foreground.component.d.ts +7 -0
  594. package/src/components/templates/popover/components/foreground/foreground.component.tsx +15 -0
  595. package/src/components/templates/popover/components/foreground/foreground.styles.d.ts +12 -0
  596. package/src/components/templates/popover/components/foreground/foreground.styles.js +17 -0
  597. package/src/components/templates/popover/components/index.d.ts +4 -0
  598. package/src/components/templates/popover/components/index.js +5 -0
  599. package/src/components/templates/popover/components/modal/close/close.component.d.ts +7 -0
  600. package/src/components/templates/popover/components/modal/close/close.component.tsx +28 -0
  601. package/src/components/templates/popover/components/modal/close/close.styles.d.ts +10 -0
  602. package/src/components/templates/popover/components/modal/close/close.styles.js +16 -0
  603. package/src/components/templates/popover/components/modal/heading/heading.component.d.ts +7 -0
  604. package/src/components/templates/popover/components/modal/heading/heading.component.tsx +35 -0
  605. package/src/components/templates/popover/components/modal/heading/heading.styles.d.ts +14 -0
  606. package/src/components/templates/popover/components/modal/heading/heading.styles.js +19 -0
  607. package/src/components/templates/popover/components/modal/modal.component.d.ts +12 -0
  608. package/src/components/templates/popover/components/modal/modal.component.tsx +92 -0
  609. package/src/components/templates/popover/components/modal/modal.styles.d.ts +19 -0
  610. package/src/components/templates/popover/components/modal/modal.styles.js +24 -0
  611. package/src/components/templates/popover/components/modal/scroll-content/scroll-content.component.d.ts +6 -0
  612. package/src/components/templates/popover/components/modal/scroll-content/scroll-content.component.tsx +20 -0
  613. package/src/components/templates/popover/components/modal/scroll-content/scroll-content.styles.d.ts +6 -0
  614. package/src/components/templates/popover/components/modal/scroll-content/scroll-content.styles.js +10 -0
  615. package/src/components/templates/popover/popover.component.d.ts +11 -0
  616. package/src/components/templates/popover/popover.component.tsx +67 -0
  617. package/src/components/templates/popover/popover.preview.d.ts +2 -0
  618. package/src/components/templates/popover/popover.preview.tsx +99 -0
  619. package/src/components/templates/popover/popover.styles.d.ts +11 -0
  620. package/src/components/templates/popover/popover.styles.js +15 -0
  621. package/src/components/templates/popover-action/popover-action.component.d.ts +12 -0
  622. package/src/components/templates/popover-action/popover-action.component.tsx +127 -0
  623. package/src/components/templates/popover-action/popover-action.preview.d.ts +2 -0
  624. package/src/components/templates/popover-action/popover-action.preview.tsx +142 -0
  625. package/src/components/templates/popover-action/popover-action.styles.d.ts +28 -0
  626. package/src/components/templates/popover-action/popover-action.styles.js +33 -0
  627. package/src/context/loading-dots.context.d.ts +8 -0
  628. package/src/context/loading-dots.context.tsx +33 -0
  629. package/src/context/theme.context.d.ts +74 -0
  630. package/src/context/theme.context.ts +77 -0
  631. package/src/gradients/main/main.gradient.d.ts +6 -0
  632. package/src/gradients/main/main.gradient.tsx +29 -0
  633. package/src/gradients/main/main.styles.d.ts +9 -0
  634. package/src/gradients/main/main.styles.js +11 -0
  635. package/src/hooks/use-debounce.d.ts +1 -0
  636. package/src/hooks/use-debounce.ts +15 -0
  637. package/src/icons/__snapshots__/icons.test.js.snap +3152 -0
  638. package/src/icons/crown.icon.d.ts +2 -0
  639. package/src/icons/crown.icon.tsx +29 -0
  640. package/src/icons/icons.test.js +328 -0
  641. package/src/icons/index.d.ts +3 -0
  642. package/src/icons/index.tsx +16 -0
  643. package/src/icons/outline/calendar/calendar.icon.d.ts +3 -0
  644. package/src/icons/outline/calendar/calendar.icon.tsx +24 -0
  645. package/src/icons/outline/chat/chat.icon.d.ts +3 -0
  646. package/src/icons/outline/chat/chat.icon.tsx +24 -0
  647. package/src/icons/outline/chat-alt/chat-alt.icon.d.ts +3 -0
  648. package/src/icons/outline/chat-alt/chat-alt.icon.tsx +24 -0
  649. package/src/icons/outline/check-circle/check-circle.icon.d.ts +3 -0
  650. package/src/icons/outline/check-circle/check-circle.icon.tsx +24 -0
  651. package/src/icons/outline/chevron-left/chevron-left.icon.d.ts +3 -0
  652. package/src/icons/outline/chevron-left/chevron-left.icon.tsx +24 -0
  653. package/src/icons/outline/chevron-right/chevron-right.icon.d.ts +3 -0
  654. package/src/icons/outline/chevron-right/chevron-right.icon.tsx +24 -0
  655. package/src/icons/outline/clock/clock.icon.d.ts +3 -0
  656. package/src/icons/outline/clock/clock.icon.tsx +24 -0
  657. package/src/icons/outline/cloud-download/cloud-download.icon.d.ts +3 -0
  658. package/src/icons/outline/cloud-download/cloud-download.icon.tsx +24 -0
  659. package/src/icons/outline/currency-euro/currency-euro.icon.d.ts +3 -0
  660. package/src/icons/outline/currency-euro/currency-euro.icon.tsx +24 -0
  661. package/src/icons/outline/document-text/document-text.icon.d.ts +3 -0
  662. package/src/icons/outline/document-text/document-text.icon.tsx +21 -0
  663. package/src/icons/outline/exclamation/exclamation.icon.d.ts +3 -0
  664. package/src/icons/outline/exclamation/exclamation.icon.tsx +21 -0
  665. package/src/icons/outline/exclamation-circle/exclamation-circle.icon.d.ts +3 -0
  666. package/src/icons/outline/exclamation-circle/exclamation-circle.icon.tsx +24 -0
  667. package/src/icons/outline/eye/eye.icon.d.ts +3 -0
  668. package/src/icons/outline/eye/eye.icon.tsx +28 -0
  669. package/src/icons/outline/eye-off/eye-off.icon.d.ts +3 -0
  670. package/src/icons/outline/eye-off/eye-off.icon.tsx +21 -0
  671. package/src/icons/outline/filter/filter.icon.d.ts +3 -0
  672. package/src/icons/outline/filter/filter.icon.tsx +22 -0
  673. package/src/icons/outline/information-circle/information-circle.icon.d.ts +3 -0
  674. package/src/icons/outline/information-circle/information-circle.icon.tsx +24 -0
  675. package/src/icons/outline/logout/logout.icon.d.ts +3 -0
  676. package/src/icons/outline/logout/logout.icon.tsx +27 -0
  677. package/src/icons/outline/mail/mail.icon.d.ts +3 -0
  678. package/src/icons/outline/mail/mail.icon.tsx +24 -0
  679. package/src/icons/outline/mail-open/mail-open.icon.d.ts +3 -0
  680. package/src/icons/outline/mail-open/mail-open.icon.tsx +24 -0
  681. package/src/icons/outline/menu/menu.icon.d.ts +3 -0
  682. package/src/icons/outline/menu/menu.icon.tsx +24 -0
  683. package/src/icons/outline/minus-sm/minus-sm.icon.d.ts +3 -0
  684. package/src/icons/outline/minus-sm/minus-sm.icon.tsx +24 -0
  685. package/src/icons/outline/office-building/office-building.icon.d.ts +3 -0
  686. package/src/icons/outline/office-building/office-building.icon.tsx +24 -0
  687. package/src/icons/outline/outline-default.preview.d.ts +2 -0
  688. package/src/icons/outline/outline-default.preview.tsx +115 -0
  689. package/src/icons/outline/outline-grey.preview.d.ts +2 -0
  690. package/src/icons/outline/outline-grey.preview.tsx +117 -0
  691. package/src/icons/outline/outline-white.preview.d.ts +2 -0
  692. package/src/icons/outline/outline-white.preview.tsx +121 -0
  693. package/src/icons/outline/outline.d.ts +2 -0
  694. package/src/icons/outline/outline.tsx +146 -0
  695. package/src/icons/outline/paper-airplane/paper-airplane.icon.d.ts +3 -0
  696. package/src/icons/outline/paper-airplane/paper-airplane.icon.tsx +30 -0
  697. package/src/icons/outline/paperclip/paperclip.icon.d.ts +3 -0
  698. package/src/icons/outline/paperclip/paperclip.icon.tsx +24 -0
  699. package/src/icons/outline/pencil/pencil.icon.d.ts +3 -0
  700. package/src/icons/outline/pencil/pencil.icon.tsx +24 -0
  701. package/src/icons/outline/phone/phone.icon.d.ts +3 -0
  702. package/src/icons/outline/phone/phone.icon.tsx +24 -0
  703. package/src/icons/outline/photograph/photograph.icon.d.ts +3 -0
  704. package/src/icons/outline/photograph/photograph.icon.tsx +24 -0
  705. package/src/icons/outline/plus/plus.icon.d.ts +3 -0
  706. package/src/icons/outline/plus/plus.icon.tsx +24 -0
  707. package/src/icons/outline/plus-sm/plus-sm.icon.d.ts +3 -0
  708. package/src/icons/outline/plus-sm/plus-sm.icon.tsx +21 -0
  709. package/src/icons/outline/qrcode/qrcode.icon.d.ts +3 -0
  710. package/src/icons/outline/qrcode/qrcode.icon.tsx +18 -0
  711. package/src/icons/outline/refresh/refresh.icon.d.ts +3 -0
  712. package/src/icons/outline/refresh/refresh.icon.tsx +24 -0
  713. package/src/icons/outline/search/search.icon.d.ts +3 -0
  714. package/src/icons/outline/search/search.icon.tsx +24 -0
  715. package/src/icons/outline/selector/selector.icon.d.ts +3 -0
  716. package/src/icons/outline/selector/selector.icon.tsx +24 -0
  717. package/src/icons/outline/share/share.icon.d.ts +3 -0
  718. package/src/icons/outline/share/share.icon.tsx +24 -0
  719. package/src/icons/outline/sm-view-grid-add/sm-view-grid-add.icon.d.ts +3 -0
  720. package/src/icons/outline/sm-view-grid-add/sm-view-grid-add.icon.tsx +24 -0
  721. package/src/icons/outline/status-online/status-online.icon.d.ts +3 -0
  722. package/src/icons/outline/status-online/status-online.icon.tsx +24 -0
  723. package/src/icons/outline/thumb-up/thumb-up.icon.d.ts +3 -0
  724. package/src/icons/outline/thumb-up/thumb-up.icon.tsx +24 -0
  725. package/src/icons/outline/trash/trash.icon.d.ts +3 -0
  726. package/src/icons/outline/trash/trash.icon.tsx +24 -0
  727. package/src/icons/outline/user/user.icon.d.ts +3 -0
  728. package/src/icons/outline/user/user.icon.tsx +33 -0
  729. package/src/icons/outline/user-group/user-group.icon.d.ts +3 -0
  730. package/src/icons/outline/user-group/user-group.icon.tsx +24 -0
  731. package/src/icons/outline/users/users.icon.d.ts +3 -0
  732. package/src/icons/outline/users/users.icon.tsx +24 -0
  733. package/src/icons/outline/xmark/xmark.icon.d.ts +3 -0
  734. package/src/icons/outline/xmark/xmark.icon.tsx +24 -0
  735. package/src/icons/solid/calendar/calendar.icon.d.ts +3 -0
  736. package/src/icons/solid/calendar/calendar.icon.tsx +21 -0
  737. package/src/icons/solid/chat/chat.icon.d.ts +3 -0
  738. package/src/icons/solid/chat/chat.icon.tsx +21 -0
  739. package/src/icons/solid/chat-alt/chat-alt-solid.icon.d.ts +3 -0
  740. package/src/icons/solid/chat-alt/chat-alt-solid.icon.tsx +21 -0
  741. package/src/icons/solid/check-circle/check-circle.icon.d.ts +3 -0
  742. package/src/icons/solid/check-circle/check-circle.icon.tsx +21 -0
  743. package/src/icons/solid/chevron-left/chevron-left.icon.d.ts +3 -0
  744. package/src/icons/solid/chevron-left/chevron-left.icon.tsx +21 -0
  745. package/src/icons/solid/chevron-right/chevron-right.icon.d.ts +3 -0
  746. package/src/icons/solid/chevron-right/chevron-right.icon.tsx +21 -0
  747. package/src/icons/solid/clock/clock-solid.icon.d.ts +3 -0
  748. package/src/icons/solid/clock/clock-solid.icon.tsx +22 -0
  749. package/src/icons/solid/cloud-download/cloud-download.icon.d.ts +3 -0
  750. package/src/icons/solid/cloud-download/cloud-download.icon.tsx +21 -0
  751. package/src/icons/solid/currency-euro/currency-euro.icon.d.ts +3 -0
  752. package/src/icons/solid/currency-euro/currency-euro.icon.tsx +21 -0
  753. package/src/icons/solid/document-text/document-text-solid.icon.d.ts +3 -0
  754. package/src/icons/solid/document-text/document-text-solid.icon.tsx +22 -0
  755. package/src/icons/solid/exclamation/exclamation.icon.d.ts +3 -0
  756. package/src/icons/solid/exclamation/exclamation.icon.tsx +20 -0
  757. package/src/icons/solid/exclamation-circle/exclamation-circle.icon.d.ts +3 -0
  758. package/src/icons/solid/exclamation-circle/exclamation-circle.icon.tsx +23 -0
  759. package/src/icons/solid/eye/eye.icon.d.ts +3 -0
  760. package/src/icons/solid/eye/eye.icon.tsx +24 -0
  761. package/src/icons/solid/eye-off/eye-off.icon.d.ts +3 -0
  762. package/src/icons/solid/eye-off/eye-off.icon.tsx +24 -0
  763. package/src/icons/solid/filter/filter.icon.d.ts +3 -0
  764. package/src/icons/solid/filter/filter.icon.tsx +21 -0
  765. package/src/icons/solid/information-circle/information-circle-solid.icon.d.ts +3 -0
  766. package/src/icons/solid/information-circle/information-circle-solid.icon.tsx +25 -0
  767. package/src/icons/solid/logout/logout.icon.d.ts +3 -0
  768. package/src/icons/solid/logout/logout.icon.tsx +26 -0
  769. package/src/icons/solid/mail/mail.icon.d.ts +3 -0
  770. package/src/icons/solid/mail/mail.icon.tsx +23 -0
  771. package/src/icons/solid/mail-open/mail-open.icon.d.ts +3 -0
  772. package/src/icons/solid/mail-open/mail-open.icon.tsx +21 -0
  773. package/src/icons/solid/menu/menu.icon.d.ts +3 -0
  774. package/src/icons/solid/menu/menu.icon.tsx +33 -0
  775. package/src/icons/solid/minus-sm/minus-sm.icon.d.ts +3 -0
  776. package/src/icons/solid/minus-sm/minus-sm.icon.tsx +21 -0
  777. package/src/icons/solid/office-building/office-building.icon.d.ts +3 -0
  778. package/src/icons/solid/office-building/office-building.icon.tsx +21 -0
  779. package/src/icons/solid/paper-airplane/paper-airplane.icon.d.ts +3 -0
  780. package/src/icons/solid/paper-airplane/paper-airplane.icon.tsx +25 -0
  781. package/src/icons/solid/paperclip/paperclip.icon.d.ts +3 -0
  782. package/src/icons/solid/paperclip/paperclip.icon.tsx +21 -0
  783. package/src/icons/solid/pencil/pencil-solid.icon.d.ts +3 -0
  784. package/src/icons/solid/pencil/pencil-solid.icon.tsx +24 -0
  785. package/src/icons/solid/phone/phone-solid.icon.d.ts +3 -0
  786. package/src/icons/solid/phone/phone-solid.icon.tsx +20 -0
  787. package/src/icons/solid/photograph/photograph-solid.icon.d.ts +3 -0
  788. package/src/icons/solid/photograph/photograph-solid.icon.tsx +20 -0
  789. package/src/icons/solid/plus/plus.icon.d.ts +3 -0
  790. package/src/icons/solid/plus/plus.icon.tsx +21 -0
  791. package/src/icons/solid/plus-sm/plus-sm.icon.d.ts +3 -0
  792. package/src/icons/solid/plus-sm/plus-sm.icon.tsx +21 -0
  793. package/src/icons/solid/qrcode/qrcode.icon.d.ts +3 -0
  794. package/src/icons/solid/qrcode/qrcode.icon.tsx +60 -0
  795. package/src/icons/solid/refresh/refresh-solid.icon.d.ts +3 -0
  796. package/src/icons/solid/refresh/refresh-solid.icon.tsx +22 -0
  797. package/src/icons/solid/search/search.icon.d.ts +3 -0
  798. package/src/icons/solid/search/search.icon.tsx +21 -0
  799. package/src/icons/solid/selector/selector.icon.d.ts +3 -0
  800. package/src/icons/solid/selector/selector.icon.tsx +21 -0
  801. package/src/icons/solid/share/share.icon.d.ts +3 -0
  802. package/src/icons/solid/share/share.icon.tsx +19 -0
  803. package/src/icons/solid/sm-view-grid-add/sm-view-grid-add.icon.d.ts +3 -0
  804. package/src/icons/solid/sm-view-grid-add/sm-view-grid-add.icon.tsx +31 -0
  805. package/src/icons/solid/solid.d.ts +2 -0
  806. package/src/icons/solid/solid.preview.d.ts +2 -0
  807. package/src/icons/solid/solid.preview.tsx +146 -0
  808. package/src/icons/solid/solid.tsx +141 -0
  809. package/src/icons/solid/status-online/status-online-solid.icon.d.ts +3 -0
  810. package/src/icons/solid/status-online/status-online-solid.icon.tsx +22 -0
  811. package/src/icons/solid/thumb-up/thumb-up.icon.d.ts +3 -0
  812. package/src/icons/solid/thumb-up/thumb-up.icon.tsx +23 -0
  813. package/src/icons/solid/trash/trash-solid.icon.d.ts +3 -0
  814. package/src/icons/solid/trash/trash-solid.icon.tsx +22 -0
  815. package/src/icons/solid/user/user.icon.d.ts +3 -0
  816. package/src/icons/solid/user/user.icon.tsx +23 -0
  817. package/src/icons/solid/user-group/user-group.icon.d.ts +3 -0
  818. package/src/icons/solid/user-group/user-group.icon.tsx +72 -0
  819. package/src/icons/solid/users/users-solid.icon.d.ts +3 -0
  820. package/src/icons/solid/users/users-solid.icon.tsx +57 -0
  821. package/src/icons/solid/xmark/xmark.icon.d.ts +3 -0
  822. package/src/icons/solid/xmark/xmark.icon.tsx +21 -0
  823. package/src/interfaces/icon.interface.d.ts +11 -0
  824. package/src/interfaces/icon.interface.ts +12 -0
  825. package/src/models/hex-color.model.d.ts +6 -0
  826. package/src/models/hex-color.model.ts +25 -0
  827. package/src/models/hex-color.test.js +20 -0
  828. package/src/models/initials.model.d.ts +7 -0
  829. package/src/models/initials.model.ts +32 -0
  830. package/src/models/initials.test.js +23 -0
  831. package/src/models/time-slot-record.d.ts +15 -0
  832. package/src/models/time-slot-record.ts +37 -0
  833. package/src/models/time-slot-sequence.d.ts +15 -0
  834. package/src/models/time-slot-sequence.ts +79 -0
  835. package/src/theme/font/font.d.ts +72 -0
  836. package/src/theme/font/font.ts +72 -0
  837. package/src/theme/font/index.d.ts +3 -0
  838. package/src/theme/font/index.ts +4 -0
  839. package/src/theme/font/load-fonts.d.ts +1 -0
  840. package/src/theme/font/load-fonts.ts +10 -0
  841. package/src/theme/provider/index.d.ts +3 -0
  842. package/src/theme/provider/index.ts +4 -0
  843. package/src/theme/provider/parent.theme.d.ts +71 -0
  844. package/src/theme/provider/parent.theme.ts +73 -0
  845. package/src/theme/provider/staff-member.theme.d.ts +71 -0
  846. package/src/theme/provider/staff-member.theme.ts +73 -0
  847. package/src/theme/responsive/index.d.ts +2 -0
  848. package/src/theme/responsive/index.ts +17 -0
  849. package/src/theme/scale/index.d.ts +12 -0
  850. package/src/theme/scale/index.ts +14 -0
  851. package/src/types/bubble-alignment.enum.d.ts +4 -0
  852. package/src/types/bubble-alignment.enum.ts +4 -0
  853. package/src/types/icontype.type.d.ts +2 -0
  854. package/src/types/icontype.type.ts +45 -0
  855. package/src/types/keyboard-types.enum.d.ts +9 -0
  856. package/src/types/keyboard-types.enum.ts +9 -0
  857. package/src/types/loading-dots.type.d.ts +8 -0
  858. package/src/types/loading-dots.type.ts +8 -0
  859. package/src/types/size.enum.d.ts +5 -0
  860. package/src/types/size.enum.ts +5 -0
  861. package/src/types/state.enum.d.ts +7 -0
  862. package/src/types/state.enum.ts +7 -0
  863. package/src/types/text-properties.type.d.ts +11 -0
  864. package/src/types/text-properties.type.ts +12 -0
  865. package/src/types/timetable-edit.enum.d.ts +5 -0
  866. package/src/types/timetable-edit.enum.ts +5 -0
  867. package/src/types/visual-state.enum.d.ts +7 -0
  868. package/src/types/visual-state.enum.ts +7 -0
  869. package/src/utilities/color-handler/color-handler.d.ts +4 -0
  870. package/src/utilities/color-handler/color-handler.ts +74 -0
  871. package/src/utilities/toddle-datetime/interfaces/duration.interface.d.ts +22 -0
  872. package/src/utilities/toddle-datetime/interfaces/duration.interface.tsx +23 -0
  873. package/src/utilities/toddle-datetime/interfaces/toddle-datetime.interface.d.ts +22 -0
  874. package/src/utilities/toddle-datetime/interfaces/toddle-datetime.interface.tsx +25 -0
  875. package/src/utilities/toddle-datetime/toddle-datetime.class.d.ts +50 -0
  876. package/src/utilities/toddle-datetime/toddle-datetime.class.tsx +206 -0
  877. package/src/utilities/toddle-datetime/toddle-datetime.preview.d.ts +2 -0
  878. package/src/utilities/toddle-datetime/toddle-datetime.preview.tsx +160 -0
  879. package/src/utilities/toddle-datetime/toddle-datetime.test.js +127 -0
  880. package/src/utilities/toddle-datetime/types/duration.type.d.ts +4 -0
  881. package/src/utilities/toddle-datetime/types/duration.type.tsx +6 -0
  882. package/src/utilities/toddle-datetime/types/toddle-datetime.type.d.ts +5 -0
  883. package/src/utilities/toddle-datetime/types/toddle-datetime.type.tsx +23 -0
  884. package/tsconfig.json +13 -0
  885. package/types/src/components/atoms/avatar/avatar.component.d.ts +11 -0
  886. package/types/src/components/atoms/avatar/avatar.styles.d.ts +36 -0
  887. package/types/src/components/atoms/button/button.component.d.ts +9 -0
  888. package/types/src/components/atoms/button/button.styles.d.ts +20 -0
  889. package/types/src/components/atoms/cancel-link/cancel-link.component.d.ts +7 -0
  890. package/types/src/components/atoms/cancel-link/cancel-link.styles.d.ts +17 -0
  891. package/types/src/components/atoms/check-switch/check-switch.component.d.ts +7 -0
  892. package/types/src/components/atoms/check-switch/check-switch.styles.d.ts +30 -0
  893. package/types/src/components/atoms/checkbox/checkbox.component.d.ts +8 -0
  894. package/types/src/components/atoms/checkbox/checkbox.styles.d.ts +32 -0
  895. package/types/src/components/atoms/child-list-item/child-list-item.component.d.ts +19 -0
  896. package/types/src/components/atoms/child-list-item/child-list-item.styles.d.ts +68 -0
  897. package/types/src/components/atoms/contact-item/contact-item.component.d.ts +10 -0
  898. package/types/src/components/atoms/contact-item/contact-item.styles.d.ts +24 -0
  899. package/types/src/components/atoms/filter-tab/filter-tab.component.d.ts +9 -0
  900. package/types/src/components/atoms/filter-tab/filter-tab.styles.d.ts +61 -0
  901. package/types/src/components/atoms/form-actions/form-action.component.d.ts +7 -0
  902. package/types/src/components/atoms/form-actions/form-action.styles.d.ts +14 -0
  903. package/types/src/components/atoms/image-bubble/image-bubble.component.d.ts +9 -0
  904. package/types/src/components/atoms/image-bubble/image-bubble.styles.d.ts +27 -0
  905. package/types/src/components/atoms/info/info.component.d.ts +7 -0
  906. package/types/src/components/atoms/info/info.styles.d.ts +24 -0
  907. package/types/src/components/atoms/pill/pill.component.d.ts +8 -0
  908. package/types/src/components/atoms/pill/pill.styles.d.ts +24 -0
  909. package/types/src/components/atoms/popover/components/backdrop/backdrop.component.d.ts +6 -0
  910. package/types/src/components/atoms/popover/components/backdrop/backdrop.styles.d.ts +11 -0
  911. package/types/src/components/atoms/popover/components/foreground/foreground.component.d.ts +7 -0
  912. package/types/src/components/atoms/popover/components/foreground/foreground.styles.d.ts +12 -0
  913. package/types/src/components/atoms/popover/components/index.d.ts +4 -0
  914. package/types/src/components/atoms/popover/components/modal/close/close.component.d.ts +7 -0
  915. package/types/src/components/atoms/popover/components/modal/close/close.styles.d.ts +9 -0
  916. package/types/src/components/atoms/popover/components/modal/heading/heading.component.d.ts +7 -0
  917. package/types/src/components/atoms/popover/components/modal/heading/heading.styles.d.ts +22 -0
  918. package/types/src/components/atoms/popover/components/modal/modal.component.d.ts +11 -0
  919. package/types/src/components/atoms/popover/components/modal/modal.styles.d.ts +18 -0
  920. package/types/src/components/atoms/popover/components/modal/scroll-content/scroll-content.component.d.ts +6 -0
  921. package/types/src/components/atoms/popover/components/modal/scroll-content/scroll-content.styles.d.ts +6 -0
  922. package/types/src/components/atoms/popover/popover.component.d.ts +10 -0
  923. package/types/src/components/atoms/popover/popover.styles.d.ts +8 -0
  924. package/types/src/components/atoms/pressable-icon/pressable-icon.component.d.ts +9 -0
  925. package/types/src/components/atoms/pressable-icon/pressable-icon.styles.d.ts +17 -0
  926. package/types/src/components/atoms/quick-filter/quick-filter.component.d.ts +11 -0
  927. package/types/src/components/atoms/quick-filter/quick-filter.styles.d.ts +34 -0
  928. package/types/src/components/atoms/select-list-item/select-list-item.component.d.ts +10 -0
  929. package/types/src/components/atoms/select-list-item/select-list-item.styles.d.ts +37 -0
  930. package/types/src/components/atoms/snackbar/snackbar.component.d.ts +8 -0
  931. package/types/src/components/atoms/snackbar/snackbar.styles.d.ts +50 -0
  932. package/types/src/components/atoms/tag/tag.component.d.ts +13 -0
  933. package/types/src/components/atoms/tag/tag.styles.d.ts +16 -0
  934. package/types/src/components/atoms/text-bubble/text-bubble.component.d.ts +10 -0
  935. package/types/src/components/atoms/text-bubble/text-bubble.styles.d.ts +62 -0
  936. package/types/src/components/atoms/text-input/text-input.component.d.ts +9 -0
  937. package/types/src/components/atoms/text-input/text-input.styles.d.ts +21 -0
  938. package/types/src/components/atoms/time-tracker/time-tracker.component.d.ts +8 -0
  939. package/types/src/components/atoms/time-tracker/time-tracker.styles.d.ts +25 -0
  940. package/types/src/components/atoms/wide-button/wide-button.component.d.ts +8 -0
  941. package/types/src/components/atoms/wide-button/wide-button.styles.d.ts +17 -0
  942. package/types/src/context/theme.context.d.ts +46 -0
  943. package/types/src/gradients/main/main.gradient.d.ts +2 -0
  944. package/types/src/gradients/main/main.styles.d.ts +7 -0
  945. package/types/src/icons/outline/chevron-right/chevron-right.icon.d.ts +3 -0
  946. package/types/src/icons/outline/cross/cross.icon.d.ts +3 -0
  947. package/types/src/icons/outline/filter/filter.icon.d.ts +3 -0
  948. package/types/src/models/initials.model.d.ts +7 -0
  949. package/types/src/theme/font/font.d.ts +72 -0
  950. package/types/src/theme/font/index.d.ts +3 -0
  951. package/types/src/theme/font/load-fonts.d.ts +1 -0
  952. package/types/src/theme/provider/index.d.ts +3 -0
  953. package/types/src/theme/provider/parent.theme.d.ts +43 -0
  954. package/types/src/theme/provider/staff-member.theme.d.ts +43 -0
  955. package/types/src/theme/scale/index.d.ts +12 -0
  956. package/types/src/types/bubble-alignment.enum.d.ts +4 -0
  957. package/types/src/types/icontype.type.d.ts +3 -0
  958. package/types/src/types/keyboard-types.enum.d.ts +9 -0
  959. package/types/src/types/size.enum.d.ts +5 -0
  960. package/types/src/types/visual-state.enum.d.ts +6 -0
  961. package/build/export.js +0 -10328
@@ -0,0 +1,3152 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`test icons render a solid chat-alt icon in a coral color 1`] = `
4
+ <RNSVGSvgView
5
+ align="xMidYMid"
6
+ bbHeight="24"
7
+ bbWidth="24"
8
+ fill="none"
9
+ focusable={false}
10
+ height={24}
11
+ meetOrSlice={0}
12
+ minX={0}
13
+ minY={0}
14
+ style={
15
+ [
16
+ {
17
+ "backgroundColor": "transparent",
18
+ "borderWidth": 0,
19
+ },
20
+ {
21
+ "flex": 0,
22
+ "height": 24,
23
+ "width": 24,
24
+ },
25
+ ]
26
+ }
27
+ vbHeight={19}
28
+ vbWidth={18}
29
+ width={24}
30
+ >
31
+ <RNSVGGroup
32
+ fill={null}
33
+ propList={
34
+ [
35
+ "fill",
36
+ ]
37
+ }
38
+ >
39
+ <RNSVGPath
40
+ clipRule={0}
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
+ fill={
43
+ {
44
+ "payload": 4294934352,
45
+ "type": 0,
46
+ }
47
+ }
48
+ fillRule={0}
49
+ propList={
50
+ [
51
+ "fill",
52
+ "fillRule",
53
+ ]
54
+ }
55
+ />
56
+ </RNSVGGroup>
57
+ </RNSVGSvgView>
58
+ `;
59
+
60
+ exports[`test icons render a solid clock icon in a darkcyan color 1`] = `
61
+ <RNSVGSvgView
62
+ align="xMidYMid"
63
+ bbHeight="24"
64
+ bbWidth="24"
65
+ fill="none"
66
+ focusable={false}
67
+ height={24}
68
+ meetOrSlice={0}
69
+ minX={0}
70
+ minY={0}
71
+ style={
72
+ [
73
+ {
74
+ "backgroundColor": "transparent",
75
+ "borderWidth": 0,
76
+ },
77
+ {
78
+ "flex": 0,
79
+ "height": 24,
80
+ "width": 24,
81
+ },
82
+ ]
83
+ }
84
+ vbHeight={18}
85
+ vbWidth={18}
86
+ width={24}
87
+ >
88
+ <RNSVGGroup
89
+ fill={null}
90
+ propList={
91
+ [
92
+ "fill",
93
+ ]
94
+ }
95
+ >
96
+ <RNSVGPath
97
+ clipRule={0}
98
+ 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"
99
+ fill={
100
+ {
101
+ "payload": 4278225803,
102
+ "type": 0,
103
+ }
104
+ }
105
+ fillRule={0}
106
+ propList={
107
+ [
108
+ "fill",
109
+ "fillRule",
110
+ ]
111
+ }
112
+ />
113
+ </RNSVGGroup>
114
+ </RNSVGSvgView>
115
+ `;
116
+
117
+ exports[`test icons render a solid document-text icon in a white color 1`] = `
118
+ <RNSVGSvgView
119
+ align="xMidYMid"
120
+ bbHeight="24"
121
+ bbWidth="24"
122
+ fill="none"
123
+ focusable={false}
124
+ height={24}
125
+ meetOrSlice={0}
126
+ minX={0}
127
+ minY={0}
128
+ style={
129
+ [
130
+ {
131
+ "backgroundColor": "transparent",
132
+ "borderWidth": 0,
133
+ },
134
+ {
135
+ "flex": 0,
136
+ "height": 24,
137
+ "width": 24,
138
+ },
139
+ ]
140
+ }
141
+ vbHeight={18}
142
+ vbWidth={14}
143
+ width={24}
144
+ >
145
+ <RNSVGGroup
146
+ fill={null}
147
+ propList={
148
+ [
149
+ "fill",
150
+ ]
151
+ }
152
+ >
153
+ <RNSVGPath
154
+ clipRule={0}
155
+ 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"
156
+ fill={
157
+ {
158
+ "payload": 4294967295,
159
+ "type": 0,
160
+ }
161
+ }
162
+ fillRule={0}
163
+ propList={
164
+ [
165
+ "fill",
166
+ "fillRule",
167
+ ]
168
+ }
169
+ />
170
+ </RNSVGGroup>
171
+ </RNSVGSvgView>
172
+ `;
173
+
174
+ exports[`test icons render a solid eye off icon in a tomato color 1`] = `
175
+ <RNSVGSvgView
176
+ align="xMidYMid"
177
+ bbHeight="24"
178
+ bbWidth="24"
179
+ fill="none"
180
+ focusable={false}
181
+ height={24}
182
+ meetOrSlice={0}
183
+ minX={0}
184
+ minY={0}
185
+ style={
186
+ [
187
+ {
188
+ "backgroundColor": "transparent",
189
+ "borderWidth": 0,
190
+ },
191
+ {
192
+ "flex": 0,
193
+ "height": 24,
194
+ "width": 24,
195
+ },
196
+ ]
197
+ }
198
+ vbHeight={18}
199
+ vbWidth={22}
200
+ width={24}
201
+ >
202
+ <RNSVGGroup
203
+ fill={null}
204
+ propList={
205
+ [
206
+ "fill",
207
+ ]
208
+ }
209
+ >
210
+ <RNSVGPath
211
+ clipRule={0}
212
+ 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"
213
+ fill={
214
+ {
215
+ "payload": 4294927175,
216
+ "type": 0,
217
+ }
218
+ }
219
+ fillRule={0}
220
+ propList={
221
+ [
222
+ "fill",
223
+ "fillRule",
224
+ ]
225
+ }
226
+ />
227
+ <RNSVGPath
228
+ 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"
229
+ fill={
230
+ {
231
+ "payload": 4294927175,
232
+ "type": 0,
233
+ }
234
+ }
235
+ propList={
236
+ [
237
+ "fill",
238
+ ]
239
+ }
240
+ />
241
+ </RNSVGGroup>
242
+ </RNSVGSvgView>
243
+ `;
244
+
245
+ exports[`test icons render a solid information-circle icon in a gold color 1`] = `
246
+ <RNSVGSvgView
247
+ align="xMidYMid"
248
+ bbHeight="24"
249
+ bbWidth="24"
250
+ fill="none"
251
+ focusable={false}
252
+ height={24}
253
+ meetOrSlice={0}
254
+ minX={0}
255
+ minY={0}
256
+ style={
257
+ [
258
+ {
259
+ "backgroundColor": "transparent",
260
+ "borderWidth": 0,
261
+ },
262
+ {
263
+ "flex": 0,
264
+ "height": 24,
265
+ "width": 24,
266
+ },
267
+ ]
268
+ }
269
+ vbHeight={18}
270
+ vbWidth={18}
271
+ width={24}
272
+ >
273
+ <RNSVGGroup
274
+ fill={null}
275
+ propList={
276
+ [
277
+ "fill",
278
+ ]
279
+ }
280
+ >
281
+ <RNSVGPath
282
+ clipRule={0}
283
+ 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"
284
+ fill={
285
+ {
286
+ "payload": 4294956800,
287
+ "type": 0,
288
+ }
289
+ }
290
+ fillRule={0}
291
+ propList={
292
+ [
293
+ "fill",
294
+ "fillRule",
295
+ ]
296
+ }
297
+ />
298
+ </RNSVGGroup>
299
+ </RNSVGSvgView>
300
+ `;
301
+
302
+ exports[`test icons render a solid pencil icon in a grey color 1`] = `
303
+ <RNSVGSvgView
304
+ align="xMidYMid"
305
+ bbHeight="24"
306
+ bbWidth="24"
307
+ fill="none"
308
+ focusable={false}
309
+ height={24}
310
+ meetOrSlice={0}
311
+ minX={0}
312
+ minY={0}
313
+ style={
314
+ [
315
+ {
316
+ "backgroundColor": "transparent",
317
+ "borderWidth": 0,
318
+ },
319
+ {
320
+ "flex": 0,
321
+ "height": 24,
322
+ "width": 24,
323
+ },
324
+ ]
325
+ }
326
+ vbHeight={17}
327
+ vbWidth={16}
328
+ width={24}
329
+ >
330
+ <RNSVGGroup
331
+ fill={null}
332
+ propList={
333
+ [
334
+ "fill",
335
+ ]
336
+ }
337
+ >
338
+ <RNSVGPath
339
+ 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"
340
+ fill={
341
+ {
342
+ "payload": 4286611584,
343
+ "type": 0,
344
+ }
345
+ }
346
+ propList={
347
+ [
348
+ "fill",
349
+ ]
350
+ }
351
+ />
352
+ <RNSVGPath
353
+ d="M9.5166 3.66184L0.300049 13.2973V16.55H3.41132L12.6279 6.91453L9.5166 3.66184Z"
354
+ fill={
355
+ {
356
+ "payload": 4286611584,
357
+ "type": 0,
358
+ }
359
+ }
360
+ propList={
361
+ [
362
+ "fill",
363
+ ]
364
+ }
365
+ />
366
+ </RNSVGGroup>
367
+ </RNSVGSvgView>
368
+ `;
369
+
370
+ exports[`test icons render a solid phone icon in an ivory color 1`] = `
371
+ <RNSVGSvgView
372
+ align="xMidYMid"
373
+ bbHeight="24"
374
+ bbWidth="24"
375
+ fill="none"
376
+ focusable={false}
377
+ height={24}
378
+ meetOrSlice={0}
379
+ minX={0}
380
+ minY={0}
381
+ style={
382
+ [
383
+ {
384
+ "backgroundColor": "transparent",
385
+ "borderWidth": 0,
386
+ },
387
+ {
388
+ "flex": 0,
389
+ "height": 24,
390
+ "width": 24,
391
+ },
392
+ ]
393
+ }
394
+ vbHeight={18}
395
+ vbWidth={18}
396
+ width={24}
397
+ >
398
+ <RNSVGGroup
399
+ fill={null}
400
+ propList={
401
+ [
402
+ "fill",
403
+ ]
404
+ }
405
+ >
406
+ <RNSVGPath
407
+ 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"
408
+ fill={
409
+ {
410
+ "payload": 4294967280,
411
+ "type": 0,
412
+ }
413
+ }
414
+ propList={
415
+ [
416
+ "fill",
417
+ ]
418
+ }
419
+ />
420
+ </RNSVGGroup>
421
+ </RNSVGSvgView>
422
+ `;
423
+
424
+ exports[`test icons render a solid refresh icon in the main color 1`] = `
425
+ <RNSVGSvgView
426
+ align="xMidYMid"
427
+ bbHeight="24"
428
+ bbWidth="24"
429
+ fill="none"
430
+ focusable={false}
431
+ height={24}
432
+ meetOrSlice={0}
433
+ minX={0}
434
+ minY={0}
435
+ style={
436
+ [
437
+ {
438
+ "backgroundColor": "transparent",
439
+ "borderWidth": 0,
440
+ },
441
+ {
442
+ "flex": 0,
443
+ "height": 24,
444
+ "width": 24,
445
+ },
446
+ ]
447
+ }
448
+ vbHeight={18}
449
+ vbWidth={16}
450
+ width={24}
451
+ >
452
+ <RNSVGGroup
453
+ fill={null}
454
+ propList={
455
+ [
456
+ "fill",
457
+ ]
458
+ }
459
+ >
460
+ <RNSVGPath
461
+ 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"
462
+ fill={
463
+ {
464
+ "payload": 4279837036,
465
+ "type": 0,
466
+ }
467
+ }
468
+ propList={
469
+ [
470
+ "fill",
471
+ ]
472
+ }
473
+ />
474
+ </RNSVGGroup>
475
+ </RNSVGSvgView>
476
+ `;
477
+
478
+ exports[`test icons render a solid status-online icon in a navy color 1`] = `
479
+ <RNSVGSvgView
480
+ align="xMidYMid"
481
+ bbHeight="24"
482
+ bbWidth="24"
483
+ fill="none"
484
+ focusable={false}
485
+ height={24}
486
+ meetOrSlice={0}
487
+ minX={0}
488
+ minY={0}
489
+ style={
490
+ [
491
+ {
492
+ "backgroundColor": "transparent",
493
+ "borderWidth": 0,
494
+ },
495
+ {
496
+ "flex": 0,
497
+ "height": 24,
498
+ "width": 24,
499
+ },
500
+ ]
501
+ }
502
+ vbHeight={17}
503
+ vbWidth={20}
504
+ width={24}
505
+ >
506
+ <RNSVGGroup
507
+ fill={null}
508
+ propList={
509
+ [
510
+ "fill",
511
+ ]
512
+ }
513
+ >
514
+ <RNSVGPath
515
+ clipRule={0}
516
+ 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"
517
+ fill={
518
+ {
519
+ "payload": 4278190208,
520
+ "type": 0,
521
+ }
522
+ }
523
+ fillRule={0}
524
+ propList={
525
+ [
526
+ "fill",
527
+ "fillRule",
528
+ ]
529
+ }
530
+ />
531
+ </RNSVGGroup>
532
+ </RNSVGSvgView>
533
+ `;
534
+
535
+ exports[`test icons render a solid trash icon in a tomato color 1`] = `
536
+ <RNSVGSvgView
537
+ align="xMidYMid"
538
+ bbHeight="24"
539
+ bbWidth="24"
540
+ fill="none"
541
+ focusable={false}
542
+ height={24}
543
+ meetOrSlice={0}
544
+ minX={0}
545
+ minY={0}
546
+ style={
547
+ [
548
+ {
549
+ "backgroundColor": "transparent",
550
+ "borderWidth": 0,
551
+ },
552
+ {
553
+ "flex": 0,
554
+ "height": 24,
555
+ "width": 24,
556
+ },
557
+ ]
558
+ }
559
+ vbHeight={18}
560
+ vbWidth={17}
561
+ width={24}
562
+ >
563
+ <RNSVGGroup
564
+ fill={null}
565
+ propList={
566
+ [
567
+ "fill",
568
+ ]
569
+ }
570
+ >
571
+ <RNSVGPath
572
+ clipRule={0}
573
+ 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"
574
+ fill={
575
+ {
576
+ "payload": 4294927175,
577
+ "type": 0,
578
+ }
579
+ }
580
+ fillRule={0}
581
+ propList={
582
+ [
583
+ "fill",
584
+ "fillRule",
585
+ ]
586
+ }
587
+ />
588
+ </RNSVGGroup>
589
+ </RNSVGSvgView>
590
+ `;
591
+
592
+ exports[`test icons render an outlined calendar icon in the main color 1`] = `
593
+ <RNSVGSvgView
594
+ align="xMidYMid"
595
+ bbHeight="24"
596
+ bbWidth="24"
597
+ fill="none"
598
+ focusable={false}
599
+ height={24}
600
+ meetOrSlice={0}
601
+ minX={0}
602
+ minY={0}
603
+ style={
604
+ [
605
+ {
606
+ "backgroundColor": "transparent",
607
+ "borderWidth": 0,
608
+ },
609
+ {
610
+ "flex": 0,
611
+ "height": 24,
612
+ "width": 24,
613
+ },
614
+ ]
615
+ }
616
+ vbHeight={24}
617
+ vbWidth={24}
618
+ width={24}
619
+ >
620
+ <RNSVGGroup
621
+ fill={null}
622
+ propList={
623
+ [
624
+ "fill",
625
+ ]
626
+ }
627
+ >
628
+ <RNSVGPath
629
+ 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"
630
+ fill={
631
+ {
632
+ "payload": 4278190080,
633
+ "type": 0,
634
+ }
635
+ }
636
+ propList={
637
+ [
638
+ "stroke",
639
+ "strokeWidth",
640
+ "strokeLinecap",
641
+ "strokeLinejoin",
642
+ ]
643
+ }
644
+ stroke={
645
+ {
646
+ "payload": 4279837036,
647
+ "type": 0,
648
+ }
649
+ }
650
+ strokeLinecap={1}
651
+ strokeLinejoin={1}
652
+ strokeWidth="2"
653
+ />
654
+ </RNSVGGroup>
655
+ </RNSVGSvgView>
656
+ `;
657
+
658
+ exports[`test icons render an outlined chat icon in the main color 1`] = `
659
+ <RNSVGSvgView
660
+ align="xMidYMid"
661
+ bbHeight="24"
662
+ bbWidth="24"
663
+ fill="none"
664
+ focusable={false}
665
+ height={24}
666
+ meetOrSlice={0}
667
+ minX={0}
668
+ minY={0}
669
+ style={
670
+ [
671
+ {
672
+ "backgroundColor": "transparent",
673
+ "borderWidth": 0,
674
+ },
675
+ {
676
+ "flex": 0,
677
+ "height": 24,
678
+ "width": 24,
679
+ },
680
+ ]
681
+ }
682
+ vbHeight={21}
683
+ vbWidth={23}
684
+ width={24}
685
+ >
686
+ <RNSVGGroup
687
+ fill={null}
688
+ propList={
689
+ [
690
+ "fill",
691
+ ]
692
+ }
693
+ >
694
+ <RNSVGPath
695
+ 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"
696
+ fill={
697
+ {
698
+ "payload": 4278190080,
699
+ "type": 0,
700
+ }
701
+ }
702
+ propList={
703
+ [
704
+ "stroke",
705
+ "strokeWidth",
706
+ "strokeLinecap",
707
+ "strokeLinejoin",
708
+ ]
709
+ }
710
+ stroke={
711
+ {
712
+ "payload": 4279837036,
713
+ "type": 0,
714
+ }
715
+ }
716
+ strokeLinecap={1}
717
+ strokeLinejoin={1}
718
+ strokeWidth="2"
719
+ />
720
+ </RNSVGGroup>
721
+ </RNSVGSvgView>
722
+ `;
723
+
724
+ exports[`test icons render an outlined chat-alt icon in a grey color and a size of 20px 1`] = `
725
+ <RNSVGSvgView
726
+ align="xMidYMid"
727
+ bbHeight="20"
728
+ bbWidth="20"
729
+ fill="none"
730
+ focusable={false}
731
+ height={20}
732
+ meetOrSlice={0}
733
+ minX={0}
734
+ minY={0}
735
+ style={
736
+ [
737
+ {
738
+ "backgroundColor": "transparent",
739
+ "borderWidth": 0,
740
+ },
741
+ {
742
+ "flex": 0,
743
+ "height": 20,
744
+ "width": 20,
745
+ },
746
+ ]
747
+ }
748
+ vbHeight={22}
749
+ vbWidth={23}
750
+ width={20}
751
+ >
752
+ <RNSVGGroup
753
+ fill={null}
754
+ propList={
755
+ [
756
+ "fill",
757
+ ]
758
+ }
759
+ >
760
+ <RNSVGPath
761
+ 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"
762
+ fill={
763
+ {
764
+ "payload": 4278190080,
765
+ "type": 0,
766
+ }
767
+ }
768
+ propList={
769
+ [
770
+ "stroke",
771
+ "strokeWidth",
772
+ "strokeLinecap",
773
+ "strokeLinejoin",
774
+ ]
775
+ }
776
+ stroke={
777
+ {
778
+ "payload": 4286611584,
779
+ "type": 0,
780
+ }
781
+ }
782
+ strokeLinecap={1}
783
+ strokeLinejoin={1}
784
+ strokeWidth="2"
785
+ />
786
+ </RNSVGGroup>
787
+ </RNSVGSvgView>
788
+ `;
789
+
790
+ exports[`test icons render an outlined check-circle icon in a grey color 1`] = `
791
+ <RNSVGSvgView
792
+ align="xMidYMid"
793
+ bbHeight="24"
794
+ bbWidth="24"
795
+ fill="none"
796
+ focusable={false}
797
+ height={24}
798
+ meetOrSlice={0}
799
+ minX={0}
800
+ minY={0}
801
+ style={
802
+ [
803
+ {
804
+ "backgroundColor": "transparent",
805
+ "borderWidth": 0,
806
+ },
807
+ {
808
+ "flex": 0,
809
+ "height": 24,
810
+ "width": 24,
811
+ },
812
+ ]
813
+ }
814
+ vbHeight={23}
815
+ vbWidth={23}
816
+ width={24}
817
+ >
818
+ <RNSVGGroup
819
+ fill={null}
820
+ propList={
821
+ [
822
+ "fill",
823
+ ]
824
+ }
825
+ >
826
+ <RNSVGPath
827
+ 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"
828
+ fill={
829
+ {
830
+ "payload": 4278190080,
831
+ "type": 0,
832
+ }
833
+ }
834
+ propList={
835
+ [
836
+ "stroke",
837
+ "strokeWidth",
838
+ "strokeLinecap",
839
+ "strokeLinejoin",
840
+ ]
841
+ }
842
+ stroke={
843
+ {
844
+ "payload": 4286611584,
845
+ "type": 0,
846
+ }
847
+ }
848
+ strokeLinecap={1}
849
+ strokeLinejoin={1}
850
+ strokeWidth="2"
851
+ />
852
+ </RNSVGGroup>
853
+ </RNSVGSvgView>
854
+ `;
855
+
856
+ exports[`test icons render an outlined chevron-left icon in a white color 1`] = `
857
+ <RNSVGSvgView
858
+ align="xMidYMid"
859
+ bbHeight="24"
860
+ bbWidth="24"
861
+ fill="none"
862
+ focusable={false}
863
+ height={24}
864
+ meetOrSlice={0}
865
+ minX={0}
866
+ minY={0}
867
+ style={
868
+ [
869
+ {
870
+ "backgroundColor": "transparent",
871
+ "borderWidth": 0,
872
+ },
873
+ {
874
+ "flex": 0,
875
+ "height": 24,
876
+ "width": 24,
877
+ },
878
+ ]
879
+ }
880
+ vbHeight={19}
881
+ vbWidth={10}
882
+ width={24}
883
+ >
884
+ <RNSVGGroup
885
+ fill={null}
886
+ propList={
887
+ [
888
+ "fill",
889
+ ]
890
+ }
891
+ >
892
+ <RNSVGPath
893
+ d="M8.875 17.375L1 9.5L8.875 1.625"
894
+ fill={
895
+ {
896
+ "payload": 4278190080,
897
+ "type": 0,
898
+ }
899
+ }
900
+ propList={
901
+ [
902
+ "stroke",
903
+ "strokeWidth",
904
+ "strokeLinecap",
905
+ "strokeLinejoin",
906
+ ]
907
+ }
908
+ stroke={
909
+ {
910
+ "payload": 4294967295,
911
+ "type": 0,
912
+ }
913
+ }
914
+ strokeLinecap={1}
915
+ strokeLinejoin={1}
916
+ strokeWidth="2"
917
+ />
918
+ </RNSVGGroup>
919
+ </RNSVGSvgView>
920
+ `;
921
+
922
+ exports[`test icons render an outlined chevron-right icon in a white color 1`] = `
923
+ <RNSVGSvgView
924
+ align="xMidYMid"
925
+ bbHeight="24"
926
+ bbWidth="24"
927
+ fill="none"
928
+ focusable={false}
929
+ height={24}
930
+ meetOrSlice={0}
931
+ minX={0}
932
+ minY={0}
933
+ style={
934
+ [
935
+ {
936
+ "backgroundColor": "transparent",
937
+ "borderWidth": 0,
938
+ },
939
+ {
940
+ "flex": 0,
941
+ "height": 24,
942
+ "width": 24,
943
+ },
944
+ ]
945
+ }
946
+ vbHeight={19}
947
+ vbWidth={11}
948
+ width={24}
949
+ >
950
+ <RNSVGGroup
951
+ fill={null}
952
+ propList={
953
+ [
954
+ "fill",
955
+ ]
956
+ }
957
+ >
958
+ <RNSVGPath
959
+ d="M1.75 1.625L9.33333 9.5L1.75 17.375"
960
+ fill={
961
+ {
962
+ "payload": 4278190080,
963
+ "type": 0,
964
+ }
965
+ }
966
+ propList={
967
+ [
968
+ "stroke",
969
+ "strokeWidth",
970
+ "strokeLinecap",
971
+ "strokeLinejoin",
972
+ ]
973
+ }
974
+ stroke={
975
+ {
976
+ "payload": 4294967295,
977
+ "type": 0,
978
+ }
979
+ }
980
+ strokeLinecap={1}
981
+ strokeLinejoin={1}
982
+ strokeWidth="2"
983
+ />
984
+ </RNSVGGroup>
985
+ </RNSVGSvgView>
986
+ `;
987
+
988
+ exports[`test icons render an outlined clock icon in the main color 1`] = `
989
+ <RNSVGSvgView
990
+ align="xMidYMid"
991
+ bbHeight="24"
992
+ bbWidth="24"
993
+ fill="none"
994
+ focusable={false}
995
+ height={24}
996
+ meetOrSlice={0}
997
+ minX={0}
998
+ minY={0}
999
+ style={
1000
+ [
1001
+ {
1002
+ "backgroundColor": "transparent",
1003
+ "borderWidth": 0,
1004
+ },
1005
+ {
1006
+ "flex": 0,
1007
+ "height": 24,
1008
+ "width": 24,
1009
+ },
1010
+ ]
1011
+ }
1012
+ vbHeight={22}
1013
+ vbWidth={23}
1014
+ width={24}
1015
+ >
1016
+ <RNSVGGroup
1017
+ fill={null}
1018
+ propList={
1019
+ [
1020
+ "fill",
1021
+ ]
1022
+ }
1023
+ >
1024
+ <RNSVGPath
1025
+ 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"
1026
+ fill={
1027
+ {
1028
+ "payload": 4278190080,
1029
+ "type": 0,
1030
+ }
1031
+ }
1032
+ propList={
1033
+ [
1034
+ "stroke",
1035
+ "strokeWidth",
1036
+ "strokeLinecap",
1037
+ "strokeLinejoin",
1038
+ ]
1039
+ }
1040
+ stroke={
1041
+ {
1042
+ "payload": 4279837036,
1043
+ "type": 0,
1044
+ }
1045
+ }
1046
+ strokeLinecap={1}
1047
+ strokeLinejoin={1}
1048
+ strokeWidth="2"
1049
+ />
1050
+ </RNSVGGroup>
1051
+ </RNSVGSvgView>
1052
+ `;
1053
+
1054
+ exports[`test icons render an outlined cloud-download icon in a grey color with a size of 16px 1`] = `
1055
+ <RNSVGSvgView
1056
+ align="xMidYMid"
1057
+ bbHeight="16"
1058
+ bbWidth="16"
1059
+ fill="none"
1060
+ focusable={false}
1061
+ height={16}
1062
+ meetOrSlice={0}
1063
+ minX={0}
1064
+ minY={0}
1065
+ style={
1066
+ [
1067
+ {
1068
+ "backgroundColor": "transparent",
1069
+ "borderWidth": 0,
1070
+ },
1071
+ {
1072
+ "flex": 0,
1073
+ "height": 16,
1074
+ "width": 16,
1075
+ },
1076
+ ]
1077
+ }
1078
+ vbHeight={25}
1079
+ vbWidth={23}
1080
+ width={16}
1081
+ >
1082
+ <RNSVGGroup
1083
+ fill={null}
1084
+ propList={
1085
+ [
1086
+ "fill",
1087
+ ]
1088
+ }
1089
+ >
1090
+ <RNSVGPath
1091
+ 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"
1092
+ fill={
1093
+ {
1094
+ "payload": 4278190080,
1095
+ "type": 0,
1096
+ }
1097
+ }
1098
+ propList={
1099
+ [
1100
+ "stroke",
1101
+ "strokeWidth",
1102
+ "strokeLinecap",
1103
+ "strokeLinejoin",
1104
+ ]
1105
+ }
1106
+ stroke={
1107
+ {
1108
+ "payload": 4286611584,
1109
+ "type": 0,
1110
+ }
1111
+ }
1112
+ strokeLinecap={1}
1113
+ strokeLinejoin={1}
1114
+ strokeWidth="2"
1115
+ />
1116
+ </RNSVGGroup>
1117
+ </RNSVGSvgView>
1118
+ `;
1119
+
1120
+ exports[`test icons render an outlined currency-euro icon in a red color 1`] = `
1121
+ <RNSVGSvgView
1122
+ align="xMidYMid"
1123
+ bbHeight="24"
1124
+ bbWidth="24"
1125
+ fill="none"
1126
+ focusable={false}
1127
+ height={24}
1128
+ meetOrSlice={0}
1129
+ minX={0}
1130
+ minY={0}
1131
+ style={
1132
+ [
1133
+ {
1134
+ "backgroundColor": "transparent",
1135
+ "borderWidth": 0,
1136
+ },
1137
+ {
1138
+ "flex": 0,
1139
+ "height": 24,
1140
+ "width": 24,
1141
+ },
1142
+ ]
1143
+ }
1144
+ vbHeight={23}
1145
+ vbWidth={22}
1146
+ width={24}
1147
+ >
1148
+ <RNSVGGroup
1149
+ fill={null}
1150
+ propList={
1151
+ [
1152
+ "fill",
1153
+ ]
1154
+ }
1155
+ >
1156
+ <RNSVGPath
1157
+ 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"
1158
+ fill={
1159
+ {
1160
+ "payload": 4278190080,
1161
+ "type": 0,
1162
+ }
1163
+ }
1164
+ propList={
1165
+ [
1166
+ "stroke",
1167
+ "strokeWidth",
1168
+ "strokeLinecap",
1169
+ "strokeLinejoin",
1170
+ ]
1171
+ }
1172
+ stroke={
1173
+ {
1174
+ "payload": 4294901760,
1175
+ "type": 0,
1176
+ }
1177
+ }
1178
+ strokeLinecap={1}
1179
+ strokeLinejoin={1}
1180
+ strokeWidth="2"
1181
+ />
1182
+ </RNSVGGroup>
1183
+ </RNSVGSvgView>
1184
+ `;
1185
+
1186
+ exports[`test icons render an outlined exclamation icon in a blue color 1`] = `
1187
+ <RNSVGSvgView
1188
+ align="xMidYMid"
1189
+ bbHeight="24"
1190
+ bbWidth="24"
1191
+ fill="none"
1192
+ focusable={false}
1193
+ height={24}
1194
+ meetOrSlice={0}
1195
+ minX={0}
1196
+ minY={0}
1197
+ style={
1198
+ [
1199
+ {
1200
+ "backgroundColor": "transparent",
1201
+ "borderWidth": 0,
1202
+ },
1203
+ {
1204
+ "flex": 0,
1205
+ "height": 24,
1206
+ "width": 24,
1207
+ },
1208
+ ]
1209
+ }
1210
+ vbHeight={21}
1211
+ vbWidth={23}
1212
+ width={24}
1213
+ >
1214
+ <RNSVGGroup
1215
+ fill={null}
1216
+ propList={
1217
+ [
1218
+ "fill",
1219
+ ]
1220
+ }
1221
+ >
1222
+ <RNSVGPath
1223
+ 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"
1224
+ fill={
1225
+ {
1226
+ "payload": 4278190080,
1227
+ "type": 0,
1228
+ }
1229
+ }
1230
+ propList={
1231
+ [
1232
+ "stroke",
1233
+ "strokeWidth",
1234
+ "strokeLinecap",
1235
+ "strokeLinejoin",
1236
+ ]
1237
+ }
1238
+ stroke={
1239
+ {
1240
+ "payload": 4278190335,
1241
+ "type": 0,
1242
+ }
1243
+ }
1244
+ strokeLinecap={1}
1245
+ strokeLinejoin={1}
1246
+ strokeWidth="2"
1247
+ />
1248
+ </RNSVGGroup>
1249
+ </RNSVGSvgView>
1250
+ `;
1251
+
1252
+ exports[`test icons render an outlined exclamation-circle icon in a pink color 1`] = `
1253
+ <RNSVGSvgView
1254
+ align="xMidYMid"
1255
+ bbHeight="24"
1256
+ bbWidth="24"
1257
+ fill="none"
1258
+ focusable={false}
1259
+ height={24}
1260
+ meetOrSlice={0}
1261
+ minX={0}
1262
+ minY={0}
1263
+ style={
1264
+ [
1265
+ {
1266
+ "backgroundColor": "transparent",
1267
+ "borderWidth": 0,
1268
+ },
1269
+ {
1270
+ "flex": 0,
1271
+ "height": 24,
1272
+ "width": 24,
1273
+ },
1274
+ ]
1275
+ }
1276
+ vbHeight={23}
1277
+ vbWidth={22}
1278
+ width={24}
1279
+ >
1280
+ <RNSVGGroup
1281
+ fill={null}
1282
+ propList={
1283
+ [
1284
+ "fill",
1285
+ ]
1286
+ }
1287
+ >
1288
+ <RNSVGPath
1289
+ 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"
1290
+ fill={
1291
+ {
1292
+ "payload": 4278190080,
1293
+ "type": 0,
1294
+ }
1295
+ }
1296
+ propList={
1297
+ [
1298
+ "stroke",
1299
+ "strokeWidth",
1300
+ "strokeLinecap",
1301
+ "strokeLinejoin",
1302
+ ]
1303
+ }
1304
+ stroke={
1305
+ {
1306
+ "payload": 4294951115,
1307
+ "type": 0,
1308
+ }
1309
+ }
1310
+ strokeLinecap={1}
1311
+ strokeLinejoin={1}
1312
+ strokeWidth="2"
1313
+ />
1314
+ </RNSVGGroup>
1315
+ </RNSVGSvgView>
1316
+ `;
1317
+
1318
+ exports[`test icons render an outlined eye icon in a purple color 1`] = `
1319
+ <RNSVGSvgView
1320
+ align="xMidYMid"
1321
+ bbHeight="24"
1322
+ bbWidth="24"
1323
+ fill="none"
1324
+ focusable={false}
1325
+ height={24}
1326
+ meetOrSlice={0}
1327
+ minX={0}
1328
+ minY={0}
1329
+ style={
1330
+ [
1331
+ {
1332
+ "backgroundColor": "transparent",
1333
+ "borderWidth": 0,
1334
+ },
1335
+ {
1336
+ "flex": 0,
1337
+ "height": 24,
1338
+ "width": 24,
1339
+ },
1340
+ ]
1341
+ }
1342
+ vbHeight={19}
1343
+ vbWidth={25}
1344
+ width={24}
1345
+ >
1346
+ <RNSVGGroup
1347
+ fill={null}
1348
+ propList={
1349
+ [
1350
+ "fill",
1351
+ ]
1352
+ }
1353
+ >
1354
+ <RNSVGPath
1355
+ 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"
1356
+ fill={
1357
+ {
1358
+ "payload": 4278190080,
1359
+ "type": 0,
1360
+ }
1361
+ }
1362
+ propList={
1363
+ [
1364
+ "stroke",
1365
+ "strokeWidth",
1366
+ "strokeLinecap",
1367
+ "strokeLinejoin",
1368
+ ]
1369
+ }
1370
+ stroke={
1371
+ {
1372
+ "payload": 4288684272,
1373
+ "type": 0,
1374
+ }
1375
+ }
1376
+ strokeLinecap={1}
1377
+ strokeLinejoin={1}
1378
+ strokeWidth="2"
1379
+ />
1380
+ <RNSVGPath
1381
+ 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"
1382
+ fill={
1383
+ {
1384
+ "payload": 4278190080,
1385
+ "type": 0,
1386
+ }
1387
+ }
1388
+ propList={
1389
+ [
1390
+ "stroke",
1391
+ "strokeWidth",
1392
+ "strokeLinecap",
1393
+ "strokeLinejoin",
1394
+ ]
1395
+ }
1396
+ stroke={
1397
+ {
1398
+ "payload": 4288684272,
1399
+ "type": 0,
1400
+ }
1401
+ }
1402
+ strokeLinecap={1}
1403
+ strokeLinejoin={1}
1404
+ strokeWidth="2"
1405
+ />
1406
+ </RNSVGGroup>
1407
+ </RNSVGSvgView>
1408
+ `;
1409
+
1410
+ exports[`test icons render an outlined filter icon in the main color 1`] = `
1411
+ <RNSVGSvgView
1412
+ align="xMidYMid"
1413
+ bbHeight="24"
1414
+ bbWidth="24"
1415
+ fill="none"
1416
+ focusable={false}
1417
+ height={24}
1418
+ meetOrSlice={0}
1419
+ minX={0}
1420
+ minY={0}
1421
+ style={
1422
+ [
1423
+ {
1424
+ "backgroundColor": "transparent",
1425
+ "borderWidth": 0,
1426
+ },
1427
+ {
1428
+ "flex": 0,
1429
+ "height": 24,
1430
+ "width": 24,
1431
+ },
1432
+ ]
1433
+ }
1434
+ vbHeight={22}
1435
+ vbWidth={22}
1436
+ width={24}
1437
+ >
1438
+ <RNSVGGroup
1439
+ fill={null}
1440
+ propList={
1441
+ [
1442
+ "fill",
1443
+ ]
1444
+ }
1445
+ >
1446
+ <RNSVGPath
1447
+ 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"
1448
+ fill={
1449
+ {
1450
+ "payload": 4278190080,
1451
+ "type": 0,
1452
+ }
1453
+ }
1454
+ propList={
1455
+ [
1456
+ "stroke",
1457
+ "strokeWidth",
1458
+ "strokeLinecap",
1459
+ "strokeLinejoin",
1460
+ ]
1461
+ }
1462
+ stroke={
1463
+ {
1464
+ "payload": 4279837036,
1465
+ "type": 0,
1466
+ }
1467
+ }
1468
+ strokeLinecap={1}
1469
+ strokeLinejoin={1}
1470
+ strokeWidth="2"
1471
+ />
1472
+ </RNSVGGroup>
1473
+ </RNSVGSvgView>
1474
+ `;
1475
+
1476
+ exports[`test icons render an outlined information-circle icon in the main color 1`] = `
1477
+ <RNSVGSvgView
1478
+ align="xMidYMid"
1479
+ bbHeight="24"
1480
+ bbWidth="24"
1481
+ fill="none"
1482
+ focusable={false}
1483
+ height={24}
1484
+ meetOrSlice={0}
1485
+ minX={0}
1486
+ minY={0}
1487
+ style={
1488
+ [
1489
+ {
1490
+ "backgroundColor": "transparent",
1491
+ "borderWidth": 0,
1492
+ },
1493
+ {
1494
+ "flex": 0,
1495
+ "height": 24,
1496
+ "width": 24,
1497
+ },
1498
+ ]
1499
+ }
1500
+ vbHeight={22}
1501
+ vbWidth={22}
1502
+ width={24}
1503
+ >
1504
+ <RNSVGGroup
1505
+ fill={null}
1506
+ propList={
1507
+ [
1508
+ "fill",
1509
+ ]
1510
+ }
1511
+ >
1512
+ <RNSVGPath
1513
+ 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"
1514
+ fill={
1515
+ {
1516
+ "payload": 4278190080,
1517
+ "type": 0,
1518
+ }
1519
+ }
1520
+ propList={
1521
+ [
1522
+ "stroke",
1523
+ "strokeWidth",
1524
+ "strokeLinecap",
1525
+ "strokeLinejoin",
1526
+ ]
1527
+ }
1528
+ stroke={
1529
+ {
1530
+ "payload": 4279837036,
1531
+ "type": 0,
1532
+ }
1533
+ }
1534
+ strokeLinecap={1}
1535
+ strokeLinejoin={1}
1536
+ strokeWidth="2"
1537
+ />
1538
+ </RNSVGGroup>
1539
+ </RNSVGSvgView>
1540
+ `;
1541
+
1542
+ exports[`test icons render an outlined logout icon in a red color 1`] = `
1543
+ <RNSVGSvgView
1544
+ align="xMidYMid"
1545
+ bbHeight="24"
1546
+ bbWidth="24"
1547
+ fill="none"
1548
+ focusable={false}
1549
+ height={24}
1550
+ meetOrSlice={0}
1551
+ minX={0}
1552
+ minY={0}
1553
+ style={
1554
+ [
1555
+ {
1556
+ "backgroundColor": "transparent",
1557
+ "borderWidth": 0,
1558
+ },
1559
+ {
1560
+ "transform": [
1561
+ {
1562
+ "scaleX": -1,
1563
+ },
1564
+ ],
1565
+ },
1566
+ {
1567
+ "flex": 0,
1568
+ "height": 24,
1569
+ "width": 24,
1570
+ },
1571
+ ]
1572
+ }
1573
+ vbHeight={21}
1574
+ vbWidth={22}
1575
+ width={24}
1576
+ >
1577
+ <RNSVGGroup
1578
+ fill={null}
1579
+ propList={
1580
+ [
1581
+ "fill",
1582
+ ]
1583
+ }
1584
+ >
1585
+ <RNSVGPath
1586
+ 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"
1587
+ fill={
1588
+ {
1589
+ "payload": 4278190080,
1590
+ "type": 0,
1591
+ }
1592
+ }
1593
+ propList={
1594
+ [
1595
+ "stroke",
1596
+ "strokeWidth",
1597
+ "strokeLinecap",
1598
+ "strokeLinejoin",
1599
+ ]
1600
+ }
1601
+ stroke={
1602
+ {
1603
+ "payload": 4294901760,
1604
+ "type": 0,
1605
+ }
1606
+ }
1607
+ strokeLinecap={1}
1608
+ strokeLinejoin={1}
1609
+ strokeWidth="2"
1610
+ />
1611
+ </RNSVGGroup>
1612
+ </RNSVGSvgView>
1613
+ `;
1614
+
1615
+ exports[`test icons render an outlined mail icon in a brown color 1`] = `
1616
+ <RNSVGSvgView
1617
+ align="xMidYMid"
1618
+ bbHeight="24"
1619
+ bbWidth="24"
1620
+ fill="none"
1621
+ focusable={false}
1622
+ height={24}
1623
+ meetOrSlice={0}
1624
+ minX={0}
1625
+ minY={0}
1626
+ style={
1627
+ [
1628
+ {
1629
+ "backgroundColor": "transparent",
1630
+ "borderWidth": 0,
1631
+ },
1632
+ {
1633
+ "flex": 0,
1634
+ "height": 24,
1635
+ "width": 24,
1636
+ },
1637
+ ]
1638
+ }
1639
+ vbHeight={19}
1640
+ vbWidth={23}
1641
+ width={24}
1642
+ >
1643
+ <RNSVGGroup
1644
+ fill={null}
1645
+ propList={
1646
+ [
1647
+ "fill",
1648
+ ]
1649
+ }
1650
+ >
1651
+ <RNSVGPath
1652
+ 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"
1653
+ fill={
1654
+ {
1655
+ "payload": 4278190080,
1656
+ "type": 0,
1657
+ }
1658
+ }
1659
+ propList={
1660
+ [
1661
+ "stroke",
1662
+ "strokeWidth",
1663
+ "strokeLinecap",
1664
+ "strokeLinejoin",
1665
+ ]
1666
+ }
1667
+ stroke={
1668
+ {
1669
+ "payload": 4288039680,
1670
+ "type": 0,
1671
+ }
1672
+ }
1673
+ strokeLinecap={1}
1674
+ strokeLinejoin={1}
1675
+ strokeWidth="2"
1676
+ />
1677
+ </RNSVGGroup>
1678
+ </RNSVGSvgView>
1679
+ `;
1680
+
1681
+ exports[`test icons render an outlined mail-open icon in a grey color 1`] = `
1682
+ <RNSVGSvgView
1683
+ align="xMidYMid"
1684
+ bbHeight="24"
1685
+ bbWidth="24"
1686
+ fill="none"
1687
+ focusable={false}
1688
+ height={24}
1689
+ meetOrSlice={0}
1690
+ minX={0}
1691
+ minY={0}
1692
+ style={
1693
+ [
1694
+ {
1695
+ "backgroundColor": "transparent",
1696
+ "borderWidth": 0,
1697
+ },
1698
+ {
1699
+ "flex": 0,
1700
+ "height": 24,
1701
+ "width": 24,
1702
+ },
1703
+ ]
1704
+ }
1705
+ vbHeight={22}
1706
+ vbWidth={23}
1707
+ width={24}
1708
+ >
1709
+ <RNSVGGroup
1710
+ fill={null}
1711
+ propList={
1712
+ [
1713
+ "fill",
1714
+ ]
1715
+ }
1716
+ >
1717
+ <RNSVGPath
1718
+ 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"
1719
+ fill={
1720
+ {
1721
+ "payload": 4278190080,
1722
+ "type": 0,
1723
+ }
1724
+ }
1725
+ propList={
1726
+ [
1727
+ "stroke",
1728
+ "strokeWidth",
1729
+ "strokeLinecap",
1730
+ "strokeLinejoin",
1731
+ ]
1732
+ }
1733
+ stroke={
1734
+ {
1735
+ "payload": 4286611584,
1736
+ "type": 0,
1737
+ }
1738
+ }
1739
+ strokeLinecap={1}
1740
+ strokeLinejoin={1}
1741
+ strokeWidth="2"
1742
+ />
1743
+ </RNSVGGroup>
1744
+ </RNSVGSvgView>
1745
+ `;
1746
+
1747
+ exports[`test icons render an outlined menu icon in the main color 1`] = `
1748
+ <RNSVGSvgView
1749
+ align="xMidYMid"
1750
+ bbHeight="24"
1751
+ bbWidth="24"
1752
+ fill="none"
1753
+ focusable={false}
1754
+ height={24}
1755
+ meetOrSlice={0}
1756
+ minX={0}
1757
+ minY={0}
1758
+ style={
1759
+ [
1760
+ {
1761
+ "backgroundColor": "transparent",
1762
+ "borderWidth": 0,
1763
+ },
1764
+ {
1765
+ "flex": 0,
1766
+ "height": 24,
1767
+ "width": 24,
1768
+ },
1769
+ ]
1770
+ }
1771
+ vbHeight={17}
1772
+ vbWidth={21}
1773
+ width={24}
1774
+ >
1775
+ <RNSVGGroup
1776
+ fill={null}
1777
+ propList={
1778
+ [
1779
+ "fill",
1780
+ ]
1781
+ }
1782
+ >
1783
+ <RNSVGPath
1784
+ d="M1.5 1.75H19.5M1.5 8.5H19.5M1.5 15.25H19.5"
1785
+ fill={
1786
+ {
1787
+ "payload": 4278190080,
1788
+ "type": 0,
1789
+ }
1790
+ }
1791
+ propList={
1792
+ [
1793
+ "stroke",
1794
+ "strokeWidth",
1795
+ "strokeLinecap",
1796
+ "strokeLinejoin",
1797
+ ]
1798
+ }
1799
+ stroke={
1800
+ {
1801
+ "payload": 4279837036,
1802
+ "type": 0,
1803
+ }
1804
+ }
1805
+ strokeLinecap={1}
1806
+ strokeLinejoin={1}
1807
+ strokeWidth="2"
1808
+ />
1809
+ </RNSVGGroup>
1810
+ </RNSVGSvgView>
1811
+ `;
1812
+
1813
+ exports[`test icons render an outlined minus-sm icon in the main color 1`] = `
1814
+ <RNSVGSvgView
1815
+ align="xMidYMid"
1816
+ bbHeight="24"
1817
+ bbWidth="24"
1818
+ fill="none"
1819
+ focusable={false}
1820
+ height={24}
1821
+ meetOrSlice={0}
1822
+ minX={0}
1823
+ minY={0}
1824
+ style={
1825
+ [
1826
+ {
1827
+ "backgroundColor": "transparent",
1828
+ "borderWidth": 0,
1829
+ },
1830
+ {
1831
+ "flex": 0,
1832
+ "height": 24,
1833
+ "width": 24,
1834
+ },
1835
+ ]
1836
+ }
1837
+ vbHeight={3}
1838
+ vbWidth={16}
1839
+ width={24}
1840
+ >
1841
+ <RNSVGGroup
1842
+ fill={null}
1843
+ propList={
1844
+ [
1845
+ "fill",
1846
+ ]
1847
+ }
1848
+ >
1849
+ <RNSVGPath
1850
+ d="M14.5 1.5H1.5"
1851
+ fill={
1852
+ {
1853
+ "payload": 4278190080,
1854
+ "type": 0,
1855
+ }
1856
+ }
1857
+ propList={
1858
+ [
1859
+ "stroke",
1860
+ "strokeWidth",
1861
+ "strokeLinecap",
1862
+ "strokeLinejoin",
1863
+ ]
1864
+ }
1865
+ stroke={
1866
+ {
1867
+ "payload": 4279837036,
1868
+ "type": 0,
1869
+ }
1870
+ }
1871
+ strokeLinecap={1}
1872
+ strokeLinejoin={1}
1873
+ strokeWidth="2"
1874
+ />
1875
+ </RNSVGGroup>
1876
+ </RNSVGSvgView>
1877
+ `;
1878
+
1879
+ exports[`test icons render an outlined office-building icon in a green color 1`] = `
1880
+ <RNSVGSvgView
1881
+ align="xMidYMid"
1882
+ bbHeight="24"
1883
+ bbWidth="24"
1884
+ fill="none"
1885
+ focusable={false}
1886
+ height={24}
1887
+ meetOrSlice={0}
1888
+ minX={0}
1889
+ minY={0}
1890
+ style={
1891
+ [
1892
+ {
1893
+ "backgroundColor": "transparent",
1894
+ "borderWidth": 0,
1895
+ },
1896
+ {
1897
+ "flex": 0,
1898
+ "height": 24,
1899
+ "width": 24,
1900
+ },
1901
+ ]
1902
+ }
1903
+ vbHeight={23}
1904
+ vbWidth={23}
1905
+ width={24}
1906
+ >
1907
+ <RNSVGGroup
1908
+ fill={null}
1909
+ propList={
1910
+ [
1911
+ "fill",
1912
+ ]
1913
+ }
1914
+ >
1915
+ <RNSVGPath
1916
+ 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"
1917
+ fill={
1918
+ {
1919
+ "payload": 4278190080,
1920
+ "type": 0,
1921
+ }
1922
+ }
1923
+ propList={
1924
+ [
1925
+ "stroke",
1926
+ "strokeWidth",
1927
+ "strokeLinecap",
1928
+ "strokeLinejoin",
1929
+ ]
1930
+ }
1931
+ stroke={
1932
+ {
1933
+ "payload": 4278255360,
1934
+ "type": 0,
1935
+ }
1936
+ }
1937
+ strokeLinecap={1}
1938
+ strokeLinejoin={1}
1939
+ strokeWidth="2"
1940
+ />
1941
+ </RNSVGGroup>
1942
+ </RNSVGSvgView>
1943
+ `;
1944
+
1945
+ exports[`test icons render an outlined paper-airplane icon in a white color 1`] = `
1946
+ <RNSVGSvgView
1947
+ align="xMidYMid"
1948
+ bbHeight="24"
1949
+ bbWidth="24"
1950
+ fill="none"
1951
+ focusable={false}
1952
+ height={24}
1953
+ meetOrSlice={0}
1954
+ minX={0}
1955
+ minY={0}
1956
+ style={
1957
+ [
1958
+ {
1959
+ "backgroundColor": "transparent",
1960
+ "borderWidth": 0,
1961
+ },
1962
+ {
1963
+ "transform": [
1964
+ {
1965
+ "rotate": "90deg",
1966
+ },
1967
+ ],
1968
+ },
1969
+ {
1970
+ "flex": 0,
1971
+ "height": 24,
1972
+ "width": 24,
1973
+ },
1974
+ ]
1975
+ }
1976
+ vbHeight={22}
1977
+ vbWidth={23}
1978
+ width={24}
1979
+ >
1980
+ <RNSVGGroup
1981
+ fill={null}
1982
+ propList={
1983
+ [
1984
+ "fill",
1985
+ ]
1986
+ }
1987
+ >
1988
+ <RNSVGPath
1989
+ d="M11.5 18.5833L21.625 20.75L11.5 1.25L1.375 20.75L11.5 18.5833ZM11.5 18.5833V9.91667"
1990
+ fill={
1991
+ {
1992
+ "payload": 4278190080,
1993
+ "type": 0,
1994
+ }
1995
+ }
1996
+ propList={
1997
+ [
1998
+ "stroke",
1999
+ "strokeWidth",
2000
+ "strokeLinecap",
2001
+ "strokeLinejoin",
2002
+ ]
2003
+ }
2004
+ stroke={
2005
+ {
2006
+ "payload": 4294967295,
2007
+ "type": 0,
2008
+ }
2009
+ }
2010
+ strokeLinecap={1}
2011
+ strokeLinejoin={1}
2012
+ strokeWidth="2"
2013
+ />
2014
+ </RNSVGGroup>
2015
+ </RNSVGSvgView>
2016
+ `;
2017
+
2018
+ exports[`test icons render an outlined paperclip icon in the main color 1`] = `
2019
+ <RNSVGSvgView
2020
+ align="xMidYMid"
2021
+ bbHeight="24"
2022
+ bbWidth="24"
2023
+ fill="none"
2024
+ focusable={false}
2025
+ height={24}
2026
+ meetOrSlice={0}
2027
+ minX={0}
2028
+ minY={0}
2029
+ style={
2030
+ [
2031
+ {
2032
+ "backgroundColor": "transparent",
2033
+ "borderWidth": 0,
2034
+ },
2035
+ {
2036
+ "flex": 0,
2037
+ "height": 24,
2038
+ "width": 24,
2039
+ },
2040
+ ]
2041
+ }
2042
+ vbHeight={22}
2043
+ vbWidth={21}
2044
+ width={24}
2045
+ >
2046
+ <RNSVGGroup
2047
+ fill={null}
2048
+ propList={
2049
+ [
2050
+ "fill",
2051
+ ]
2052
+ }
2053
+ >
2054
+ <RNSVGPath
2055
+ 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"
2056
+ fill={
2057
+ {
2058
+ "payload": 4278190080,
2059
+ "type": 0,
2060
+ }
2061
+ }
2062
+ propList={
2063
+ [
2064
+ "stroke",
2065
+ "strokeWidth",
2066
+ "strokeLinecap",
2067
+ "strokeLinejoin",
2068
+ ]
2069
+ }
2070
+ stroke={
2071
+ {
2072
+ "payload": 4279837036,
2073
+ "type": 0,
2074
+ }
2075
+ }
2076
+ strokeLinecap={1}
2077
+ strokeLinejoin={1}
2078
+ strokeWidth="2"
2079
+ />
2080
+ </RNSVGGroup>
2081
+ </RNSVGSvgView>
2082
+ `;
2083
+
2084
+ exports[`test icons render an outlined pencil icon in the main color 1`] = `
2085
+ <RNSVGSvgView
2086
+ align="xMidYMid"
2087
+ bbHeight="24"
2088
+ bbWidth="24"
2089
+ fill="none"
2090
+ focusable={false}
2091
+ height={24}
2092
+ meetOrSlice={0}
2093
+ minX={0}
2094
+ minY={0}
2095
+ style={
2096
+ [
2097
+ {
2098
+ "backgroundColor": "transparent",
2099
+ "borderWidth": 0,
2100
+ },
2101
+ {
2102
+ "flex": 0,
2103
+ "height": 24,
2104
+ "width": 24,
2105
+ },
2106
+ ]
2107
+ }
2108
+ vbHeight={23}
2109
+ vbWidth={23}
2110
+ width={24}
2111
+ >
2112
+ <RNSVGGroup
2113
+ fill={null}
2114
+ propList={
2115
+ [
2116
+ "fill",
2117
+ ]
2118
+ }
2119
+ >
2120
+ <RNSVGPath
2121
+ 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"
2122
+ fill={
2123
+ {
2124
+ "payload": 4278190080,
2125
+ "type": 0,
2126
+ }
2127
+ }
2128
+ propList={
2129
+ [
2130
+ "stroke",
2131
+ "strokeWidth",
2132
+ "strokeLinecap",
2133
+ "strokeLinejoin",
2134
+ ]
2135
+ }
2136
+ stroke={
2137
+ {
2138
+ "payload": 4279837036,
2139
+ "type": 0,
2140
+ }
2141
+ }
2142
+ strokeLinecap={1}
2143
+ strokeLinejoin={1}
2144
+ strokeWidth="2"
2145
+ />
2146
+ </RNSVGGroup>
2147
+ </RNSVGSvgView>
2148
+ `;
2149
+
2150
+ exports[`test icons render an outlined phone icon in the main color 1`] = `
2151
+ <RNSVGSvgView
2152
+ align="xMidYMid"
2153
+ bbHeight="24"
2154
+ bbWidth="24"
2155
+ fill="none"
2156
+ focusable={false}
2157
+ height={24}
2158
+ meetOrSlice={0}
2159
+ minX={0}
2160
+ minY={0}
2161
+ style={
2162
+ [
2163
+ {
2164
+ "backgroundColor": "transparent",
2165
+ "borderWidth": 0,
2166
+ },
2167
+ {
2168
+ "flex": 0,
2169
+ "height": 24,
2170
+ "width": 24,
2171
+ },
2172
+ ]
2173
+ }
2174
+ vbHeight={22}
2175
+ vbWidth={23}
2176
+ width={24}
2177
+ >
2178
+ <RNSVGGroup
2179
+ fill={null}
2180
+ propList={
2181
+ [
2182
+ "fill",
2183
+ ]
2184
+ }
2185
+ >
2186
+ <RNSVGPath
2187
+ 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"
2188
+ fill={
2189
+ {
2190
+ "payload": 4278190080,
2191
+ "type": 0,
2192
+ }
2193
+ }
2194
+ propList={
2195
+ [
2196
+ "stroke",
2197
+ "strokeWidth",
2198
+ "strokeLinecap",
2199
+ "strokeLinejoin",
2200
+ ]
2201
+ }
2202
+ stroke={
2203
+ {
2204
+ "payload": 4279837036,
2205
+ "type": 0,
2206
+ }
2207
+ }
2208
+ strokeLinecap={1}
2209
+ strokeLinejoin={1}
2210
+ strokeWidth="2"
2211
+ />
2212
+ </RNSVGGroup>
2213
+ </RNSVGSvgView>
2214
+ `;
2215
+
2216
+ exports[`test icons render an outlined plus icon in a grey color 1`] = `
2217
+ <RNSVGSvgView
2218
+ align="xMidYMid"
2219
+ bbHeight="24"
2220
+ bbWidth="24"
2221
+ fill="none"
2222
+ focusable={false}
2223
+ height={24}
2224
+ meetOrSlice={0}
2225
+ minX={0}
2226
+ minY={0}
2227
+ style={
2228
+ [
2229
+ {
2230
+ "backgroundColor": "transparent",
2231
+ "borderWidth": 0,
2232
+ },
2233
+ {
2234
+ "flex": 0,
2235
+ "height": 24,
2236
+ "width": 24,
2237
+ },
2238
+ ]
2239
+ }
2240
+ vbHeight={21}
2241
+ vbWidth={21}
2242
+ width={24}
2243
+ >
2244
+ <RNSVGGroup
2245
+ fill={null}
2246
+ propList={
2247
+ [
2248
+ "fill",
2249
+ ]
2250
+ }
2251
+ >
2252
+ <RNSVGPath
2253
+ d="M10.5 1.5V19.5M19.5 10.5L1.5 10.5"
2254
+ fill={
2255
+ {
2256
+ "payload": 4278190080,
2257
+ "type": 0,
2258
+ }
2259
+ }
2260
+ propList={
2261
+ [
2262
+ "stroke",
2263
+ "strokeWidth",
2264
+ "strokeLinecap",
2265
+ "strokeLinejoin",
2266
+ ]
2267
+ }
2268
+ stroke={
2269
+ {
2270
+ "payload": 4286611584,
2271
+ "type": 0,
2272
+ }
2273
+ }
2274
+ strokeLinecap={1}
2275
+ strokeLinejoin={1}
2276
+ strokeWidth="2"
2277
+ />
2278
+ </RNSVGGroup>
2279
+ </RNSVGSvgView>
2280
+ `;
2281
+
2282
+ exports[`test icons render an outlined plus-sm icon in a red color 1`] = `
2283
+ <RNSVGSvgView
2284
+ align="xMidYMid"
2285
+ bbHeight="24"
2286
+ bbWidth="24"
2287
+ fill="none"
2288
+ focusable={false}
2289
+ height={24}
2290
+ meetOrSlice={0}
2291
+ minX={0}
2292
+ minY={0}
2293
+ style={
2294
+ [
2295
+ {
2296
+ "backgroundColor": "transparent",
2297
+ "borderWidth": 0,
2298
+ },
2299
+ {
2300
+ "flex": 0,
2301
+ "height": 24,
2302
+ "width": 24,
2303
+ },
2304
+ ]
2305
+ }
2306
+ vbHeight={17}
2307
+ vbWidth={17}
2308
+ width={24}
2309
+ >
2310
+ <RNSVGGroup
2311
+ fill={null}
2312
+ propList={
2313
+ [
2314
+ "fill",
2315
+ ]
2316
+ }
2317
+ >
2318
+ <RNSVGPath
2319
+ d="M8.5 1.75V8.5M8.5 8.5V15.25M8.5 8.5H15.25M8.5 8.5L1.75 8.5"
2320
+ fill={
2321
+ {
2322
+ "payload": 4278190080,
2323
+ "type": 0,
2324
+ }
2325
+ }
2326
+ propList={
2327
+ [
2328
+ "stroke",
2329
+ "strokeWidth",
2330
+ "strokeLinecap",
2331
+ "strokeLinejoin",
2332
+ ]
2333
+ }
2334
+ stroke={
2335
+ {
2336
+ "payload": 4294901760,
2337
+ "type": 0,
2338
+ }
2339
+ }
2340
+ strokeLinecap={1}
2341
+ strokeLinejoin={1}
2342
+ strokeWidth="2"
2343
+ />
2344
+ </RNSVGGroup>
2345
+ </RNSVGSvgView>
2346
+ `;
2347
+
2348
+ exports[`test icons render an outlined qrcode icon in a purple color 1`] = `
2349
+ <RNSVGSvgView
2350
+ align="xMidYMid"
2351
+ bbHeight="24"
2352
+ bbWidth="24"
2353
+ fill="none"
2354
+ focusable={false}
2355
+ height={24}
2356
+ meetOrSlice={0}
2357
+ minX={0}
2358
+ minY={0}
2359
+ style={
2360
+ [
2361
+ {
2362
+ "backgroundColor": "transparent",
2363
+ "borderWidth": 0,
2364
+ },
2365
+ {
2366
+ "flex": 0,
2367
+ "height": 24,
2368
+ "width": 24,
2369
+ },
2370
+ ]
2371
+ }
2372
+ vbHeight={21}
2373
+ vbWidth={20}
2374
+ width={24}
2375
+ >
2376
+ <RNSVGGroup
2377
+ fill={null}
2378
+ propList={
2379
+ [
2380
+ "fill",
2381
+ ]
2382
+ }
2383
+ >
2384
+ <RNSVGPath
2385
+ 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"
2386
+ fill={
2387
+ {
2388
+ "payload": 4288684272,
2389
+ "type": 0,
2390
+ }
2391
+ }
2392
+ propList={
2393
+ [
2394
+ "fill",
2395
+ ]
2396
+ }
2397
+ />
2398
+ </RNSVGGroup>
2399
+ </RNSVGSvgView>
2400
+ `;
2401
+
2402
+ exports[`test icons render an outlined refresh icon in a purple color 1`] = `
2403
+ <RNSVGSvgView
2404
+ align="xMidYMid"
2405
+ bbHeight="24"
2406
+ bbWidth="24"
2407
+ fill="none"
2408
+ focusable={false}
2409
+ height={24}
2410
+ meetOrSlice={0}
2411
+ minX={0}
2412
+ minY={0}
2413
+ style={
2414
+ [
2415
+ {
2416
+ "backgroundColor": "transparent",
2417
+ "borderWidth": 0,
2418
+ },
2419
+ {
2420
+ "flex": 0,
2421
+ "height": 24,
2422
+ "width": 24,
2423
+ },
2424
+ ]
2425
+ }
2426
+ vbHeight={21}
2427
+ vbWidth={20}
2428
+ width={24}
2429
+ >
2430
+ <RNSVGGroup
2431
+ fill={null}
2432
+ propList={
2433
+ [
2434
+ "fill",
2435
+ ]
2436
+ }
2437
+ >
2438
+ <RNSVGPath
2439
+ 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"
2440
+ fill={
2441
+ {
2442
+ "payload": 4278190080,
2443
+ "type": 0,
2444
+ }
2445
+ }
2446
+ propList={
2447
+ [
2448
+ "stroke",
2449
+ "strokeWidth",
2450
+ "strokeLinecap",
2451
+ "strokeLinejoin",
2452
+ ]
2453
+ }
2454
+ stroke={
2455
+ {
2456
+ "payload": 4288684272,
2457
+ "type": 0,
2458
+ }
2459
+ }
2460
+ strokeLinecap={1}
2461
+ strokeLinejoin={1}
2462
+ strokeWidth="2"
2463
+ />
2464
+ </RNSVGGroup>
2465
+ </RNSVGSvgView>
2466
+ `;
2467
+
2468
+ exports[`test icons render an outlined search icon in a white color 1`] = `
2469
+ <RNSVGSvgView
2470
+ align="xMidYMid"
2471
+ bbHeight="24"
2472
+ bbWidth="24"
2473
+ fill="none"
2474
+ focusable={false}
2475
+ height={24}
2476
+ meetOrSlice={0}
2477
+ minX={0}
2478
+ minY={0}
2479
+ style={
2480
+ [
2481
+ {
2482
+ "backgroundColor": "transparent",
2483
+ "borderWidth": 0,
2484
+ },
2485
+ {
2486
+ "flex": 0,
2487
+ "height": 24,
2488
+ "width": 24,
2489
+ },
2490
+ ]
2491
+ }
2492
+ vbHeight={23}
2493
+ vbWidth={23}
2494
+ width={24}
2495
+ >
2496
+ <RNSVGGroup
2497
+ fill={null}
2498
+ propList={
2499
+ [
2500
+ "fill",
2501
+ ]
2502
+ }
2503
+ >
2504
+ <RNSVGPath
2505
+ 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"
2506
+ fill={
2507
+ {
2508
+ "payload": 4278190080,
2509
+ "type": 0,
2510
+ }
2511
+ }
2512
+ propList={
2513
+ [
2514
+ "stroke",
2515
+ "strokeWidth",
2516
+ "strokeLinecap",
2517
+ "strokeLinejoin",
2518
+ ]
2519
+ }
2520
+ stroke={
2521
+ {
2522
+ "payload": 4294967295,
2523
+ "type": 0,
2524
+ }
2525
+ }
2526
+ strokeLinecap={1}
2527
+ strokeLinejoin={1}
2528
+ strokeWidth="2"
2529
+ />
2530
+ </RNSVGGroup>
2531
+ </RNSVGSvgView>
2532
+ `;
2533
+
2534
+ exports[`test icons render an outlined selector icon in the main color 1`] = `
2535
+ <RNSVGSvgView
2536
+ align="xMidYMid"
2537
+ bbHeight="24"
2538
+ bbWidth="24"
2539
+ fill="none"
2540
+ focusable={false}
2541
+ height={24}
2542
+ meetOrSlice={0}
2543
+ minX={0}
2544
+ minY={0}
2545
+ style={
2546
+ [
2547
+ {
2548
+ "backgroundColor": "transparent",
2549
+ "borderWidth": 0,
2550
+ },
2551
+ {
2552
+ "flex": 0,
2553
+ "height": 24,
2554
+ "width": 24,
2555
+ },
2556
+ ]
2557
+ }
2558
+ vbHeight={19}
2559
+ vbWidth={12}
2560
+ width={24}
2561
+ >
2562
+ <RNSVGGroup
2563
+ fill={null}
2564
+ propList={
2565
+ [
2566
+ "fill",
2567
+ ]
2568
+ }
2569
+ >
2570
+ <RNSVGPath
2571
+ d="M1.66663 6.125L5.99996 1.625L10.3333 6.125M10.3333 12.875L5.99996 17.375L1.66663 12.875"
2572
+ fill={
2573
+ {
2574
+ "payload": 4278190080,
2575
+ "type": 0,
2576
+ }
2577
+ }
2578
+ propList={
2579
+ [
2580
+ "stroke",
2581
+ "strokeWidth",
2582
+ "strokeLinecap",
2583
+ "strokeLinejoin",
2584
+ ]
2585
+ }
2586
+ stroke={
2587
+ {
2588
+ "payload": 4279837036,
2589
+ "type": 0,
2590
+ }
2591
+ }
2592
+ strokeLinecap={1}
2593
+ strokeLinejoin={1}
2594
+ strokeWidth="2"
2595
+ />
2596
+ </RNSVGGroup>
2597
+ </RNSVGSvgView>
2598
+ `;
2599
+
2600
+ exports[`test icons render an outlined sm-view-grid-add icon in a yellow color 1`] = `
2601
+ <RNSVGSvgView
2602
+ align="xMidYMid"
2603
+ bbHeight="24"
2604
+ bbWidth="24"
2605
+ fill="none"
2606
+ focusable={false}
2607
+ height={24}
2608
+ meetOrSlice={0}
2609
+ minX={0}
2610
+ minY={0}
2611
+ style={
2612
+ [
2613
+ {
2614
+ "backgroundColor": "transparent",
2615
+ "borderWidth": 0,
2616
+ },
2617
+ {
2618
+ "flex": 0,
2619
+ "height": 24,
2620
+ "width": 24,
2621
+ },
2622
+ ]
2623
+ }
2624
+ vbHeight={20}
2625
+ vbWidth={20}
2626
+ width={24}
2627
+ >
2628
+ <RNSVGGroup
2629
+ fill={null}
2630
+ propList={
2631
+ [
2632
+ "fill",
2633
+ ]
2634
+ }
2635
+ >
2636
+ <RNSVGPath
2637
+ 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"
2638
+ fill={
2639
+ {
2640
+ "payload": 4278190080,
2641
+ "type": 0,
2642
+ }
2643
+ }
2644
+ propList={
2645
+ [
2646
+ "stroke",
2647
+ "strokeWidth",
2648
+ "strokeLinecap",
2649
+ "strokeLinejoin",
2650
+ ]
2651
+ }
2652
+ stroke={
2653
+ {
2654
+ "payload": 4294967040,
2655
+ "type": 0,
2656
+ }
2657
+ }
2658
+ strokeLinecap={1}
2659
+ strokeLinejoin={1}
2660
+ strokeWidth="2"
2661
+ />
2662
+ </RNSVGGroup>
2663
+ </RNSVGSvgView>
2664
+ `;
2665
+
2666
+ exports[`test icons render an outlined status-online icon in an orange color 1`] = `
2667
+ <RNSVGSvgView
2668
+ align="xMidYMid"
2669
+ bbHeight="24"
2670
+ bbWidth="24"
2671
+ fill="none"
2672
+ focusable={false}
2673
+ height={24}
2674
+ meetOrSlice={0}
2675
+ minX={0}
2676
+ minY={0}
2677
+ style={
2678
+ [
2679
+ {
2680
+ "backgroundColor": "transparent",
2681
+ "borderWidth": 0,
2682
+ },
2683
+ {
2684
+ "flex": 0,
2685
+ "height": 24,
2686
+ "width": 24,
2687
+ },
2688
+ ]
2689
+ }
2690
+ vbHeight={17}
2691
+ vbWidth={23}
2692
+ width={24}
2693
+ >
2694
+ <RNSVGGroup
2695
+ fill={null}
2696
+ propList={
2697
+ [
2698
+ "fill",
2699
+ ]
2700
+ }
2701
+ >
2702
+ <RNSVGPath
2703
+ 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"
2704
+ fill={
2705
+ {
2706
+ "payload": 4278190080,
2707
+ "type": 0,
2708
+ }
2709
+ }
2710
+ propList={
2711
+ [
2712
+ "stroke",
2713
+ "strokeWidth",
2714
+ "strokeLinecap",
2715
+ "strokeLinejoin",
2716
+ ]
2717
+ }
2718
+ stroke={
2719
+ {
2720
+ "payload": 4294944000,
2721
+ "type": 0,
2722
+ }
2723
+ }
2724
+ strokeLinecap={1}
2725
+ strokeLinejoin={1}
2726
+ strokeWidth="2"
2727
+ />
2728
+ </RNSVGGroup>
2729
+ </RNSVGSvgView>
2730
+ `;
2731
+
2732
+ exports[`test icons render an outlined thumb-up icon in a blue color 1`] = `
2733
+ <RNSVGSvgView
2734
+ align="xMidYMid"
2735
+ bbHeight="24"
2736
+ bbWidth="24"
2737
+ fill="none"
2738
+ focusable={false}
2739
+ height={24}
2740
+ meetOrSlice={0}
2741
+ minX={0}
2742
+ minY={0}
2743
+ style={
2744
+ [
2745
+ {
2746
+ "backgroundColor": "transparent",
2747
+ "borderWidth": 0,
2748
+ },
2749
+ {
2750
+ "flex": 0,
2751
+ "height": 24,
2752
+ "width": 24,
2753
+ },
2754
+ ]
2755
+ }
2756
+ vbHeight={23}
2757
+ vbWidth={23}
2758
+ width={24}
2759
+ >
2760
+ <RNSVGGroup
2761
+ fill={null}
2762
+ propList={
2763
+ [
2764
+ "fill",
2765
+ ]
2766
+ }
2767
+ >
2768
+ <RNSVGPath
2769
+ 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"
2770
+ fill={
2771
+ {
2772
+ "payload": 4278190080,
2773
+ "type": 0,
2774
+ }
2775
+ }
2776
+ propList={
2777
+ [
2778
+ "stroke",
2779
+ "strokeWidth",
2780
+ "strokeLinecap",
2781
+ "strokeLinejoin",
2782
+ ]
2783
+ }
2784
+ stroke={
2785
+ {
2786
+ "payload": 4278190335,
2787
+ "type": 0,
2788
+ }
2789
+ }
2790
+ strokeLinecap={1}
2791
+ strokeLinejoin={1}
2792
+ strokeWidth="2"
2793
+ />
2794
+ </RNSVGGroup>
2795
+ </RNSVGSvgView>
2796
+ `;
2797
+
2798
+ exports[`test icons render an outlined trash icon in a red color 1`] = `
2799
+ <RNSVGSvgView
2800
+ align="xMidYMid"
2801
+ bbHeight="24"
2802
+ bbWidth="24"
2803
+ fill="none"
2804
+ focusable={false}
2805
+ height={24}
2806
+ meetOrSlice={0}
2807
+ minX={0}
2808
+ minY={0}
2809
+ style={
2810
+ [
2811
+ {
2812
+ "backgroundColor": "transparent",
2813
+ "borderWidth": 0,
2814
+ },
2815
+ {
2816
+ "flex": 0,
2817
+ "height": 24,
2818
+ "width": 24,
2819
+ },
2820
+ ]
2821
+ }
2822
+ vbHeight={22}
2823
+ vbWidth={21}
2824
+ width={24}
2825
+ >
2826
+ <RNSVGGroup
2827
+ fill={null}
2828
+ propList={
2829
+ [
2830
+ "fill",
2831
+ ]
2832
+ }
2833
+ >
2834
+ <RNSVGPath
2835
+ 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"
2836
+ fill={
2837
+ {
2838
+ "payload": 4278190080,
2839
+ "type": 0,
2840
+ }
2841
+ }
2842
+ propList={
2843
+ [
2844
+ "stroke",
2845
+ "strokeWidth",
2846
+ "strokeLinecap",
2847
+ "strokeLinejoin",
2848
+ ]
2849
+ }
2850
+ stroke={
2851
+ {
2852
+ "payload": 4294901760,
2853
+ "type": 0,
2854
+ }
2855
+ }
2856
+ strokeLinecap={1}
2857
+ strokeLinejoin={1}
2858
+ strokeWidth="2"
2859
+ />
2860
+ </RNSVGGroup>
2861
+ </RNSVGSvgView>
2862
+ `;
2863
+
2864
+ exports[`test icons render an outlined user icon in the main color 1`] = `
2865
+ <RNSVGSvgView
2866
+ align="xMidYMid"
2867
+ bbHeight="24"
2868
+ bbWidth="24"
2869
+ fill="none"
2870
+ focusable={false}
2871
+ height={24}
2872
+ meetOrSlice={0}
2873
+ minX={0}
2874
+ minY={0}
2875
+ style={
2876
+ [
2877
+ {
2878
+ "backgroundColor": "transparent",
2879
+ "borderWidth": 0,
2880
+ },
2881
+ {
2882
+ "flex": 0,
2883
+ "height": 24,
2884
+ "width": 24,
2885
+ },
2886
+ ]
2887
+ }
2888
+ vbHeight={23}
2889
+ vbWidth={19}
2890
+ width={24}
2891
+ >
2892
+ <RNSVGGroup
2893
+ fill={null}
2894
+ propList={
2895
+ [
2896
+ "fill",
2897
+ ]
2898
+ }
2899
+ >
2900
+ <RNSVGPath
2901
+ 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"
2902
+ fill={
2903
+ {
2904
+ "payload": 4278190080,
2905
+ "type": 0,
2906
+ }
2907
+ }
2908
+ propList={
2909
+ [
2910
+ "stroke",
2911
+ "strokeWidth",
2912
+ "strokeLinecap",
2913
+ "strokeLinejoin",
2914
+ ]
2915
+ }
2916
+ stroke={
2917
+ {
2918
+ "payload": 4279837036,
2919
+ "type": 0,
2920
+ }
2921
+ }
2922
+ strokeLinecap={1}
2923
+ strokeLinejoin={1}
2924
+ strokeWidth="2"
2925
+ />
2926
+ <RNSVGPath
2927
+ 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"
2928
+ fill={
2929
+ {
2930
+ "payload": 4278190080,
2931
+ "type": 0,
2932
+ }
2933
+ }
2934
+ propList={
2935
+ [
2936
+ "stroke",
2937
+ "strokeWidth",
2938
+ "strokeLinecap",
2939
+ "strokeLinejoin",
2940
+ ]
2941
+ }
2942
+ stroke={
2943
+ {
2944
+ "payload": 4279837036,
2945
+ "type": 0,
2946
+ }
2947
+ }
2948
+ strokeLinecap={1}
2949
+ strokeLinejoin={1}
2950
+ strokeWidth="2"
2951
+ />
2952
+ </RNSVGGroup>
2953
+ </RNSVGSvgView>
2954
+ `;
2955
+
2956
+ exports[`test icons render an outlined user-group icon in a grey color 1`] = `
2957
+ <RNSVGSvgView
2958
+ align="xMidYMid"
2959
+ bbHeight="24"
2960
+ bbWidth="24"
2961
+ fill="none"
2962
+ focusable={false}
2963
+ height={24}
2964
+ meetOrSlice={0}
2965
+ minX={0}
2966
+ minY={0}
2967
+ style={
2968
+ [
2969
+ {
2970
+ "backgroundColor": "transparent",
2971
+ "borderWidth": 0,
2972
+ },
2973
+ {
2974
+ "flex": 0,
2975
+ "height": 24,
2976
+ "width": 24,
2977
+ },
2978
+ ]
2979
+ }
2980
+ vbHeight={21}
2981
+ vbWidth={25}
2982
+ width={24}
2983
+ >
2984
+ <RNSVGGroup
2985
+ fill={null}
2986
+ propList={
2987
+ [
2988
+ "fill",
2989
+ ]
2990
+ }
2991
+ >
2992
+ <RNSVGPath
2993
+ 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"
2994
+ fill={
2995
+ {
2996
+ "payload": 4278190080,
2997
+ "type": 0,
2998
+ }
2999
+ }
3000
+ propList={
3001
+ [
3002
+ "stroke",
3003
+ "strokeWidth",
3004
+ "strokeLinecap",
3005
+ "strokeLinejoin",
3006
+ ]
3007
+ }
3008
+ stroke={
3009
+ {
3010
+ "payload": 4286611584,
3011
+ "type": 0,
3012
+ }
3013
+ }
3014
+ strokeLinecap={1}
3015
+ strokeLinejoin={1}
3016
+ strokeWidth="2"
3017
+ />
3018
+ </RNSVGGroup>
3019
+ </RNSVGSvgView>
3020
+ `;
3021
+
3022
+ exports[`test icons render an outlined users icon in a white color 1`] = `
3023
+ <RNSVGSvgView
3024
+ align="xMidYMid"
3025
+ bbHeight="24"
3026
+ bbWidth="24"
3027
+ fill="none"
3028
+ focusable={false}
3029
+ height={24}
3030
+ meetOrSlice={0}
3031
+ minX={0}
3032
+ minY={0}
3033
+ style={
3034
+ [
3035
+ {
3036
+ "backgroundColor": "transparent",
3037
+ "borderWidth": 0,
3038
+ },
3039
+ {
3040
+ "flex": 0,
3041
+ "height": 24,
3042
+ "width": 24,
3043
+ },
3044
+ ]
3045
+ }
3046
+ vbHeight={26}
3047
+ vbWidth={26}
3048
+ width={24}
3049
+ >
3050
+ <RNSVGGroup
3051
+ fill={null}
3052
+ propList={
3053
+ [
3054
+ "fill",
3055
+ ]
3056
+ }
3057
+ >
3058
+ <RNSVGPath
3059
+ 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"
3060
+ fill={
3061
+ {
3062
+ "payload": 4278190080,
3063
+ "type": 0,
3064
+ }
3065
+ }
3066
+ propList={
3067
+ [
3068
+ "stroke",
3069
+ "strokeWidth",
3070
+ "strokeLinecap",
3071
+ "strokeLinejoin",
3072
+ ]
3073
+ }
3074
+ stroke={
3075
+ {
3076
+ "payload": 4294967295,
3077
+ "type": 0,
3078
+ }
3079
+ }
3080
+ strokeLinecap={1}
3081
+ strokeLinejoin={1}
3082
+ strokeWidth="2"
3083
+ />
3084
+ </RNSVGGroup>
3085
+ </RNSVGSvgView>
3086
+ `;
3087
+
3088
+ exports[`test icons render an outlined xmark icon in the main color 1`] = `
3089
+ <RNSVGSvgView
3090
+ align="xMidYMid"
3091
+ bbHeight="24"
3092
+ bbWidth="24"
3093
+ fill="none"
3094
+ focusable={false}
3095
+ height={24}
3096
+ meetOrSlice={0}
3097
+ minX={0}
3098
+ minY={0}
3099
+ style={
3100
+ [
3101
+ {
3102
+ "backgroundColor": "transparent",
3103
+ "borderWidth": 0,
3104
+ },
3105
+ {
3106
+ "flex": 0,
3107
+ "height": 24,
3108
+ "width": 24,
3109
+ },
3110
+ ]
3111
+ }
3112
+ vbHeight={17}
3113
+ vbWidth={17}
3114
+ width={24}
3115
+ >
3116
+ <RNSVGGroup
3117
+ fill={null}
3118
+ propList={
3119
+ [
3120
+ "fill",
3121
+ ]
3122
+ }
3123
+ >
3124
+ <RNSVGPath
3125
+ d="M1.75 15.25L15.25 1.75M1.75 1.75L15.25 15.25"
3126
+ fill={
3127
+ {
3128
+ "payload": 4278190080,
3129
+ "type": 0,
3130
+ }
3131
+ }
3132
+ propList={
3133
+ [
3134
+ "stroke",
3135
+ "strokeWidth",
3136
+ "strokeLinecap",
3137
+ "strokeLinejoin",
3138
+ ]
3139
+ }
3140
+ stroke={
3141
+ {
3142
+ "payload": 4279837036,
3143
+ "type": 0,
3144
+ }
3145
+ }
3146
+ strokeLinecap={1}
3147
+ strokeLinejoin={1}
3148
+ strokeWidth="2"
3149
+ />
3150
+ </RNSVGGroup>
3151
+ </RNSVGSvgView>
3152
+ `;