@tactics/toddle-styleguide 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (292) hide show
  1. package/App.tsx +27 -0
  2. package/index.d.ts +5 -1
  3. package/index.tsx +8 -0
  4. package/package.json +1 -1
  5. package/src/components/{templates/popover/components → atoms}/backdrop/backdrop.component.tsx +1 -1
  6. package/src/components/atoms/calendar/__snapshots__/calendar.test.js.snap +54 -54
  7. package/src/components/atoms/calendar/calendar.component.tsx +4 -2
  8. package/src/components/atoms/footer/__snapshots__/footer.test.js.snap +9 -9
  9. package/src/components/atoms/increment-input/__snapshots__/increment-input.test.js.snap +18 -18
  10. package/src/components/atoms/increment-input/increment-input.component.tsx +12 -2
  11. package/src/components/atoms/split-container/__snapshots__/split-container.test.js.snap +9 -9
  12. package/src/components/molecules/blocked-message/__snapshots__/blocked-message.test.js.snap +9 -9
  13. package/src/components/molecules/blocked-message/blocked-message.component.tsx +6 -1
  14. package/src/components/molecules/button/__snapshots__/button.test.js.snap +36 -30
  15. package/src/components/molecules/button/button.component.d.ts +6 -3
  16. package/src/components/molecules/button/button.component.tsx +27 -3
  17. package/src/components/molecules/button/button.preview.tsx +6 -3
  18. package/src/components/molecules/button/button.test.js +9 -6
  19. package/src/components/molecules/calendar-select/__snapshots__/calendar-select.test.js.snap +29 -29
  20. package/src/components/molecules/calendar-select/calendar-select.component.tsx +7 -4
  21. package/src/components/molecules/calendar-select/calendar-select.styles.js +2 -2
  22. package/src/components/molecules/date-input/__snapshots__/date-input.test.js.snap +9 -9
  23. package/src/components/molecules/date-input/date-input.component.tsx +5 -1
  24. package/src/components/molecules/default-select/__snapshots__/default-select.test.js.snap +9 -9
  25. package/src/components/molecules/default-select/default-select.component.tsx +5 -1
  26. package/src/components/molecules/failed-to-send/__snapshots__/failed-bubble.test.js.snap +27 -27
  27. package/src/components/molecules/failed-to-send/failed-bubble.component.tsx +14 -3
  28. package/src/components/molecules/language-button/__snapshots__/language-button.test.js.snap +95 -0
  29. package/src/components/molecules/language-button/language-button.component.d.ts +7 -0
  30. package/src/components/molecules/language-button/language-button.component.tsx +33 -0
  31. package/src/components/molecules/language-button/language-button.preview.d.ts +1 -0
  32. package/src/components/molecules/language-button/language-button.preview.tsx +29 -0
  33. package/src/components/molecules/language-button/language-button.styles.d.ts +8 -0
  34. package/src/components/molecules/language-button/language-button.styles.js +12 -0
  35. package/src/components/molecules/language-button/language-button.test.js +29 -0
  36. package/src/components/molecules/message-input/__snapshots__/message-input.test.js.snap +140 -72
  37. package/src/components/molecules/message-input/message-input.component.tsx +10 -2
  38. package/src/components/molecules/more-info-button/__snapshots__/more-info-button.test.js.snap +99 -0
  39. package/src/components/molecules/more-info-button/more-info-button.component.d.ts +7 -0
  40. package/src/components/molecules/more-info-button/more-info-button.component.tsx +33 -0
  41. package/src/components/molecules/more-info-button/more-info-button.preview.d.ts +1 -0
  42. package/src/components/molecules/more-info-button/more-info-button.preview.tsx +29 -0
  43. package/src/components/molecules/more-info-button/more-info-button.styles.d.ts +10 -0
  44. package/src/components/molecules/more-info-button/more-info-button.styles.js +15 -0
  45. package/src/components/molecules/more-info-button/more-info-button.test.js +29 -0
  46. package/src/components/molecules/password-input/__snapshots__/password-input.test.js.snap +30 -30
  47. package/src/components/molecules/password-input/password-input.component.tsx +10 -2
  48. package/src/components/molecules/pressable-icon/__snapshots__/pressable-icon.test.js.snap +36 -36
  49. package/src/components/molecules/pressable-icon/pressable-icon.preview.tsx +4 -4
  50. package/src/components/molecules/pressable-icon/pressable-icon.test.js +8 -4
  51. package/src/components/molecules/search-input/__snapshots__/search.test.js.snap +15 -18
  52. package/src/components/molecules/search-input/search.component.tsx +6 -2
  53. package/src/components/molecules/search-input/search.styles.js +5 -8
  54. package/src/components/molecules/select-list-item/__snapshots__/select-list-item.test.js.snap +431 -431
  55. package/src/components/molecules/select-list-item/select-list-item-preview.tsx +3 -4
  56. package/src/components/molecules/select-list-item/select-list-item.component.tsx +21 -18
  57. package/src/components/molecules/select-list-item/select-list-item.styles.js +10 -7
  58. package/src/components/molecules/select-picker/__snapshots__/select-picker.test.js.snap +18 -20
  59. package/src/components/molecules/select-picker/select-picker.component.tsx +6 -1
  60. package/src/components/molecules/select-picker/select-picker.styles.js +2 -2
  61. package/src/components/molecules/send-bubble/__snapshots__/send-text-bubble.test.js.snap +108 -108
  62. package/src/components/molecules/send-bubble/send-text-bubble.component.tsx +2 -2
  63. package/src/components/molecules/snackbar/__snapshots__/snackbar.test.js.snap +36 -36
  64. package/src/components/molecules/snackbar/snackbar.component.tsx +21 -2
  65. package/src/components/molecules/swipe/__snapshots__/swipe.test.js.snap +15 -11
  66. package/src/components/molecules/swipe/swipe.component.tsx +10 -2
  67. package/src/components/organisms/child-list-item/__snapshots__/child-list-item.test.js.snap +10 -10
  68. package/src/components/organisms/child-list-item/child-list-item.component.tsx +7 -2
  69. package/src/components/organisms/child-list-item/child-list-item.preview.tsx +7 -1
  70. package/src/components/organisms/contact-item/__snapshots__/contact-item.test.js.snap +18 -18
  71. package/src/components/organisms/contact-item/contact-item.component.tsx +6 -1
  72. package/src/components/organisms/loading-indicator/__snapshots__/loading-indicator.test.js.snap +474 -0
  73. package/src/components/organisms/loading-indicator/animation-style.animate.d.ts +3 -0
  74. package/src/components/organisms/loading-indicator/animation-style.animate.ts +164 -0
  75. package/src/components/organisms/loading-indicator/container.component.d.ts +1 -0
  76. package/src/components/organisms/loading-indicator/container.component.tsx +65 -0
  77. package/src/components/organisms/loading-indicator/dot.component.d.ts +6 -0
  78. package/src/components/organisms/loading-indicator/dot.component.tsx +27 -0
  79. package/src/components/organisms/loading-indicator/loading-indicator.component.d.ts +2 -0
  80. package/src/components/organisms/loading-indicator/loading-indicator.component.tsx +21 -0
  81. package/src/components/organisms/loading-indicator/loading-indicator.preview.d.ts +1 -0
  82. package/src/components/organisms/loading-indicator/loading-indicator.preview.tsx +100 -0
  83. package/src/components/organisms/loading-indicator/loading-indicator.test.js +40 -0
  84. package/src/components/organisms/my-child-list-item/__snapshots__/my-child-list-item.test.js.snap +18 -18
  85. package/src/components/organisms/my-child-list-item/my-child-list-item.component.tsx +12 -2
  86. package/src/components/organisms/text-bubble/__snapshots__/text-bubble.test.js.snap +135 -135
  87. package/src/components/organisms/text-bubble/text-bubble.test.js +0 -1
  88. package/src/components/templates/modal/components/fade-panel.component.d.ts +11 -0
  89. package/src/components/templates/modal/components/fade-panel.component.tsx +53 -0
  90. package/src/components/templates/modal/components/fade-panel.styles.d.ts +16 -0
  91. package/src/components/templates/modal/components/fade-panel.styles.js +17 -0
  92. package/src/components/templates/modal/modal-preview.styles.d.ts +13 -0
  93. package/src/components/templates/modal/modal-preview.styles.js +17 -0
  94. package/src/components/templates/modal/modal.component.d.ts +10 -0
  95. package/src/components/templates/modal/modal.component.tsx +56 -0
  96. package/src/components/templates/modal/modal.preview.d.ts +1 -0
  97. package/src/components/templates/modal/modal.preview.tsx +73 -0
  98. package/src/components/templates/modal/modal.styles.d.ts +21 -0
  99. package/src/components/templates/modal/modal.styles.js +23 -0
  100. package/src/components/templates/popover/components/index.js +1 -1
  101. package/src/components/templates/popover/components/modal/close/close.component.tsx +9 -4
  102. package/src/components/templates/popover/components/modal/close/close.styles.d.ts +4 -3
  103. package/src/components/templates/popover/components/modal/close/close.styles.js +8 -5
  104. package/src/components/templates/popover/components/modal/heading/heading.styles.js +1 -1
  105. package/src/components/templates/popover/components/modal/modal.component.tsx +1 -1
  106. package/src/components/templates/popover/components/modal/modal.styles.js +1 -1
  107. package/src/components/templates/popover/popover.component.tsx +2 -1
  108. package/src/context/loading-dots.context.d.ts +8 -0
  109. package/src/context/loading-dots.context.tsx +33 -0
  110. package/src/icons/__snapshots__/icons.test.js.snap +572 -482
  111. package/src/icons/icons.test.js +126 -51
  112. package/src/icons/index.d.ts +2 -56
  113. package/src/icons/index.tsx +11 -3
  114. package/src/icons/outline/calendar/calendar.icon.d.ts +2 -2
  115. package/src/icons/outline/calendar/calendar.icon.tsx +5 -4
  116. package/src/icons/outline/chat/chat.icon.d.ts +2 -2
  117. package/src/icons/outline/chat/chat.icon.tsx +5 -4
  118. package/src/icons/outline/chat-alt/chat-alt.icon.d.ts +2 -2
  119. package/src/icons/outline/chat-alt/chat-alt.icon.tsx +5 -4
  120. package/src/icons/outline/check-circle/check-circle.icon.d.ts +2 -2
  121. package/src/icons/outline/check-circle/check-circle.icon.tsx +5 -4
  122. package/src/icons/outline/chevron-left/chevron-left.icon.d.ts +2 -2
  123. package/src/icons/outline/chevron-left/chevron-left.icon.tsx +5 -4
  124. package/src/icons/outline/chevron-right/chevron-right.icon.d.ts +2 -2
  125. package/src/icons/outline/chevron-right/chevron-right.icon.tsx +5 -4
  126. package/src/icons/outline/clock/clock.icon.d.ts +2 -2
  127. package/src/icons/outline/clock/clock.icon.tsx +5 -4
  128. package/src/icons/outline/cloud-download/cloud-download.icon.d.ts +2 -2
  129. package/src/icons/outline/cloud-download/cloud-download.icon.tsx +5 -4
  130. package/src/icons/outline/currency-euro/currency-euro.icon.d.ts +2 -2
  131. package/src/icons/outline/currency-euro/currency-euro.icon.tsx +5 -4
  132. package/src/icons/outline/document-text/document-text.icon.d.ts +2 -2
  133. package/src/icons/outline/document-text/document-text.icon.tsx +5 -4
  134. package/src/icons/outline/exclamation/exclamation.icon.d.ts +2 -2
  135. package/src/icons/outline/exclamation/exclamation.icon.tsx +5 -4
  136. package/src/icons/outline/exclamation-circle/exclamation-circle.icon.d.ts +2 -2
  137. package/src/icons/outline/exclamation-circle/exclamation-circle.icon.tsx +8 -4
  138. package/src/icons/outline/eye/eye.icon.d.ts +2 -2
  139. package/src/icons/outline/eye/eye.icon.tsx +6 -5
  140. package/src/icons/outline/eye-off/eye-off.icon.d.ts +2 -2
  141. package/src/icons/outline/eye-off/eye-off.icon.tsx +4 -3
  142. package/src/icons/outline/filter/filter.icon.d.ts +2 -2
  143. package/src/icons/outline/filter/filter.icon.tsx +5 -42
  144. package/src/icons/outline/information-circle/information-circle.icon.d.ts +2 -2
  145. package/src/icons/outline/information-circle/information-circle.icon.tsx +8 -4
  146. package/src/icons/outline/logout/logout.icon.d.ts +2 -2
  147. package/src/icons/outline/logout/logout.icon.tsx +11 -4
  148. package/src/icons/outline/mail/mail.icon.d.ts +2 -2
  149. package/src/icons/outline/mail/mail.icon.tsx +5 -4
  150. package/src/icons/outline/mail-open/mail-open.icon.d.ts +2 -2
  151. package/src/icons/outline/mail-open/mail-open.icon.tsx +5 -4
  152. package/src/icons/outline/menu/menu.icon.d.ts +2 -2
  153. package/src/icons/outline/menu/menu.icon.tsx +5 -4
  154. package/src/icons/outline/minus-sm/minus-sm.icon.d.ts +2 -2
  155. package/src/icons/outline/minus-sm/minus-sm.icon.tsx +5 -9
  156. package/src/icons/outline/office-building/office-building.icon.d.ts +2 -2
  157. package/src/icons/outline/office-building/office-building.icon.tsx +5 -4
  158. package/src/icons/outline/outline-default.preview.tsx +49 -45
  159. package/src/icons/outline/outline-grey.preview.tsx +56 -40
  160. package/src/icons/outline/outline-white.preview.tsx +61 -41
  161. package/src/icons/outline/outline.d.ts +2 -42
  162. package/src/icons/outline/outline.tsx +99 -42
  163. package/src/icons/outline/paper-airplane/paper-airplane.icon.d.ts +2 -2
  164. package/src/icons/outline/paper-airplane/paper-airplane.icon.tsx +11 -4
  165. package/src/icons/outline/paperclip/paperclip.icon.d.ts +2 -2
  166. package/src/icons/outline/paperclip/paperclip.icon.tsx +5 -4
  167. package/src/icons/outline/pencil/pencil.icon.d.ts +2 -2
  168. package/src/icons/outline/pencil/pencil.icon.tsx +5 -4
  169. package/src/icons/outline/phone/phone.icon.d.ts +2 -2
  170. package/src/icons/outline/phone/phone.icon.tsx +5 -4
  171. package/src/icons/outline/plus/plus.icon.d.ts +2 -2
  172. package/src/icons/outline/plus/plus.icon.tsx +5 -4
  173. package/src/icons/outline/plus-sm/plus-sm.icon.d.ts +2 -2
  174. package/src/icons/outline/plus-sm/plus-sm.icon.tsx +5 -9
  175. package/src/icons/outline/qrcode/qrcode.icon.d.ts +2 -2
  176. package/src/icons/outline/qrcode/qrcode.icon.tsx +5 -4
  177. package/src/icons/outline/refresh/refresh.icon.d.ts +2 -2
  178. package/src/icons/outline/refresh/refresh.icon.tsx +5 -4
  179. package/src/icons/outline/search/search.icon.d.ts +2 -2
  180. package/src/icons/outline/search/search.icon.tsx +5 -4
  181. package/src/icons/outline/selector/selector.icon.d.ts +2 -2
  182. package/src/icons/outline/selector/selector.icon.tsx +5 -4
  183. package/src/icons/outline/sm-view-grid-add/sm-view-grid-add.icon.d.ts +2 -2
  184. package/src/icons/outline/sm-view-grid-add/sm-view-grid-add.icon.tsx +5 -4
  185. package/src/icons/outline/status-online/status-online.icon.d.ts +2 -2
  186. package/src/icons/outline/status-online/status-online.icon.tsx +5 -4
  187. package/src/icons/outline/thumb-up/thumb-up.icon.d.ts +2 -2
  188. package/src/icons/outline/thumb-up/thumb-up.icon.tsx +5 -4
  189. package/src/icons/outline/trash/trash.icon.d.ts +2 -2
  190. package/src/icons/outline/trash/trash.icon.tsx +5 -4
  191. package/src/icons/outline/user/user.icon.d.ts +2 -2
  192. package/src/icons/outline/user/user.icon.tsx +6 -5
  193. package/src/icons/outline/user-group/user-group.icon.d.ts +2 -2
  194. package/src/icons/outline/user-group/user-group.icon.tsx +5 -4
  195. package/src/icons/outline/users/users.icon.d.ts +2 -2
  196. package/src/icons/outline/users/users.icon.tsx +5 -4
  197. package/src/icons/outline/xmark/xmark.icon.d.ts +2 -0
  198. package/src/icons/outline/{cross/cross.icon.tsx → xmark/xmark.icon.tsx} +5 -4
  199. package/src/icons/solid/calendar/calendar.icon.d.ts +2 -0
  200. package/src/icons/solid/calendar/calendar.icon.tsx +21 -0
  201. package/src/icons/solid/chat/chat.icon.d.ts +2 -0
  202. package/src/icons/solid/chat/chat.icon.tsx +21 -0
  203. package/src/icons/solid/chat-alt/chat-alt-solid.icon.d.ts +2 -2
  204. package/src/icons/solid/chat-alt/chat-alt-solid.icon.tsx +5 -4
  205. package/src/icons/solid/check-circle/check-circle.icon.d.ts +2 -0
  206. package/src/icons/solid/check-circle/check-circle.icon.tsx +21 -0
  207. package/src/icons/solid/chevron-left/chevron-left.icon.d.ts +2 -0
  208. package/src/icons/solid/chevron-left/chevron-left.icon.tsx +21 -0
  209. package/src/icons/solid/chevron-right/chevron-right.icon.d.ts +2 -0
  210. package/src/icons/solid/chevron-right/chevron-right.icon.tsx +21 -0
  211. package/src/icons/solid/clock/clock-solid.icon.d.ts +2 -2
  212. package/src/icons/solid/clock/clock-solid.icon.tsx +5 -4
  213. package/src/icons/solid/cloud-download/cloud-download.icon.d.ts +2 -0
  214. package/src/icons/solid/cloud-download/cloud-download.icon.tsx +21 -0
  215. package/src/icons/solid/currency-euro/currency-euro.icon.d.ts +2 -0
  216. package/src/icons/solid/currency-euro/currency-euro.icon.tsx +21 -0
  217. package/src/icons/solid/document-text/document-text-solid.icon.d.ts +2 -2
  218. package/src/icons/solid/document-text/document-text-solid.icon.tsx +4 -3
  219. package/src/icons/solid/exclamation/exclamation.icon.d.ts +2 -0
  220. package/src/icons/solid/exclamation/exclamation.icon.tsx +20 -0
  221. package/src/icons/solid/exclamation-circle/exclamation-circle.icon.d.ts +2 -0
  222. package/src/icons/solid/exclamation-circle/exclamation-circle.icon.tsx +23 -0
  223. package/src/icons/solid/eye/eye.icon.d.ts +2 -0
  224. package/src/icons/solid/eye/eye.icon.tsx +24 -0
  225. package/src/icons/solid/eye-off/eye-off.icon.d.ts +2 -0
  226. package/src/icons/solid/eye-off/eye-off.icon.tsx +24 -0
  227. package/src/icons/solid/filter/filter.icon.d.ts +2 -0
  228. package/src/icons/solid/filter/filter.icon.tsx +21 -0
  229. package/src/icons/solid/information-circle/information-circle-solid.icon.d.ts +2 -2
  230. package/src/icons/solid/information-circle/information-circle-solid.icon.tsx +8 -4
  231. package/src/icons/solid/logout/logout.icon.d.ts +2 -0
  232. package/src/icons/solid/logout/logout.icon.tsx +26 -0
  233. package/src/icons/solid/mail/mail.icon.d.ts +2 -0
  234. package/src/icons/solid/mail/mail.icon.tsx +23 -0
  235. package/src/icons/solid/mail-open/mail-open.icon.d.ts +2 -0
  236. package/src/icons/solid/mail-open/mail-open.icon.tsx +21 -0
  237. package/src/icons/solid/menu/menu.icon.d.ts +2 -0
  238. package/src/icons/solid/menu/menu.icon.tsx +33 -0
  239. package/src/icons/solid/minus-sm/minus-sm.icon.d.ts +2 -0
  240. package/src/icons/solid/minus-sm/minus-sm.icon.tsx +21 -0
  241. package/src/icons/solid/office-building/office-building.icon.d.ts +2 -0
  242. package/src/icons/solid/office-building/office-building.icon.tsx +21 -0
  243. package/src/icons/solid/paper-airplane/paper-airplane.icon.d.ts +2 -0
  244. package/src/icons/solid/paper-airplane/paper-airplane.icon.tsx +25 -0
  245. package/src/icons/solid/paperclip/paperclip.icon.d.ts +2 -0
  246. package/src/icons/solid/paperclip/paperclip.icon.tsx +21 -0
  247. package/src/icons/solid/pencil/pencil-solid.icon.d.ts +2 -2
  248. package/src/icons/solid/pencil/pencil-solid.icon.tsx +6 -5
  249. package/src/icons/solid/phone/phone-solid.icon.d.ts +2 -2
  250. package/src/icons/solid/phone/phone-solid.icon.tsx +5 -4
  251. package/src/icons/solid/plus/plus.icon.d.ts +2 -0
  252. package/src/icons/solid/plus/plus.icon.tsx +21 -0
  253. package/src/icons/solid/plus-sm/plus-sm.icon.d.ts +2 -0
  254. package/src/icons/solid/plus-sm/plus-sm.icon.tsx +21 -0
  255. package/src/icons/solid/qrcode/qrcode.icon.d.ts +2 -0
  256. package/src/icons/solid/qrcode/qrcode.icon.tsx +60 -0
  257. package/src/icons/solid/refresh/refresh-solid.icon.d.ts +2 -2
  258. package/src/icons/solid/refresh/refresh-solid.icon.tsx +5 -4
  259. package/src/icons/solid/search/search.icon.d.ts +2 -0
  260. package/src/icons/solid/search/search.icon.tsx +21 -0
  261. package/src/icons/solid/selector/selector.icon.d.ts +2 -0
  262. package/src/icons/solid/selector/selector.icon.tsx +21 -0
  263. package/src/icons/solid/sm-view-grid-add/sm-view-grid-add.icon.d.ts +2 -0
  264. package/src/icons/solid/sm-view-grid-add/sm-view-grid-add.icon.tsx +31 -0
  265. package/src/icons/solid/solid.d.ts +2 -12
  266. package/src/icons/solid/solid.preview.tsx +95 -30
  267. package/src/icons/solid/solid.tsx +133 -21
  268. package/src/icons/solid/status-online/status-online-solid.icon.d.ts +2 -2
  269. package/src/icons/solid/status-online/status-online-solid.icon.tsx +5 -10
  270. package/src/icons/solid/thumb-up/thumb-up.icon.d.ts +2 -0
  271. package/src/icons/solid/thumb-up/thumb-up.icon.tsx +23 -0
  272. package/src/icons/solid/trash/trash-solid.icon.d.ts +2 -2
  273. package/src/icons/solid/trash/trash-solid.icon.tsx +5 -4
  274. package/src/icons/solid/user/user.icon.d.ts +2 -0
  275. package/src/icons/solid/user/user.icon.tsx +23 -0
  276. package/src/icons/solid/user-group/user-group.icon.d.ts +2 -0
  277. package/src/icons/solid/user-group/user-group.icon.tsx +72 -0
  278. package/src/icons/solid/users/users-solid.icon.d.ts +2 -2
  279. package/src/icons/solid/users/users-solid.icon.tsx +29 -3
  280. package/src/icons/solid/xmark/xmark.icon.d.ts +2 -0
  281. package/src/icons/solid/xmark/xmark.icon.tsx +21 -0
  282. package/src/interfaces/icon.interface.d.ts +11 -0
  283. package/src/interfaces/icon.interface.ts +12 -0
  284. package/src/theme/provider/parent.theme.ts +1 -1
  285. package/src/types/icontype.type.d.ts +2 -4
  286. package/src/types/icontype.type.ts +43 -4
  287. package/src/types/loading-dots.type.d.ts +8 -0
  288. package/src/types/loading-dots.type.ts +8 -0
  289. package/src/icons/outline/cross/cross.icon.d.ts +0 -2
  290. /package/src/components/{templates/popover/components → atoms}/backdrop/backdrop.component.d.ts +0 -0
  291. /package/src/components/{templates/popover/components → atoms}/backdrop/backdrop.styles.d.ts +0 -0
  292. /package/src/components/{templates/popover/components → atoms}/backdrop/backdrop.styles.js +0 -0
@@ -96,11 +96,11 @@ exports[`Failed text bubble test shows a DEFAULT RECEIVED text bubble that is sw
96
96
  >
97
97
  <RNSVGSvgView
98
98
  align="xMidYMid"
99
- bbHeight="28"
100
- bbWidth="28"
99
+ bbHeight={24}
100
+ bbWidth={24}
101
101
  fill="none"
102
102
  focusable={false}
103
- height="28"
103
+ height={24}
104
104
  meetOrSlice={0}
105
105
  minX={0}
106
106
  minY={0}
@@ -112,14 +112,14 @@ exports[`Failed text bubble test shows a DEFAULT RECEIVED text bubble that is sw
112
112
  },
113
113
  {
114
114
  "flex": 0,
115
- "height": 28,
116
- "width": 28,
115
+ "height": 24,
116
+ "width": 24,
117
117
  },
118
118
  ]
119
119
  }
120
- vbHeight={28}
121
- vbWidth={28}
122
- width="28"
120
+ vbHeight={23}
121
+ vbWidth={23}
122
+ width={24}
123
123
  >
124
124
  <RNSVGGroup
125
125
  fill={null}
@@ -130,7 +130,7 @@ exports[`Failed text bubble test shows a DEFAULT RECEIVED text bubble that is sw
130
130
  }
131
131
  >
132
132
  <RNSVGPath
133
- d="M17.6362 6.38626L21.6137 10.3637M19.3237 4.69876C20.422 3.60041 22.2028 3.60041 23.3012 4.69876C24.3995 5.79711 24.3995 7.57789 23.3012 8.67624L7.8125 24.1649H3.875V20.1475L19.3237 4.69876Z"
133
+ 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"
134
134
  propList={
135
135
  [
136
136
  "stroke",
@@ -174,11 +174,11 @@ exports[`Failed text bubble test shows a DEFAULT RECEIVED text bubble that is sw
174
174
  >
175
175
  <RNSVGSvgView
176
176
  align="xMidYMid"
177
- bbHeight="28"
178
- bbWidth="28"
177
+ bbHeight={24}
178
+ bbWidth={24}
179
179
  fill="none"
180
180
  focusable={false}
181
- height="28"
181
+ height={24}
182
182
  meetOrSlice={0}
183
183
  minX={0}
184
184
  minY={0}
@@ -190,14 +190,14 @@ exports[`Failed text bubble test shows a DEFAULT RECEIVED text bubble that is sw
190
190
  },
191
191
  {
192
192
  "flex": 0,
193
- "height": 28,
194
- "width": 28,
193
+ "height": 24,
194
+ "width": 24,
195
195
  },
196
196
  ]
197
197
  }
198
- vbHeight={28}
199
- vbWidth={28}
200
- width="28"
198
+ vbHeight={22}
199
+ vbWidth={21}
200
+ width={24}
201
201
  >
202
202
  <RNSVGGroup
203
203
  fill={null}
@@ -208,7 +208,7 @@ exports[`Failed text bubble test shows a DEFAULT RECEIVED text bubble that is sw
208
208
  }
209
209
  >
210
210
  <RNSVGPath
211
- d="M21.875 8.375L20.8993 22.0353C20.8152 23.2127 19.8354 24.125 18.655 24.125H9.34502C8.16458 24.125 7.18484 23.2127 7.10074 22.0353L6.125 8.375M11.75 12.875V19.625M16.25 12.875V19.625M17.375 8.375V5C17.375 4.37868 16.8713 3.875 16.25 3.875H11.75C11.1287 3.875 10.625 4.37868 10.625 5V8.375M5 8.375H23"
211
+ 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"
212
212
  propList={
213
213
  [
214
214
  "stroke",
@@ -382,11 +382,11 @@ exports[`Failed text bubble test shows a DEFAULT SENT text bubble that is swipea
382
382
  >
383
383
  <RNSVGSvgView
384
384
  align="xMidYMid"
385
- bbHeight="28"
386
- bbWidth="28"
385
+ bbHeight={24}
386
+ bbWidth={24}
387
387
  fill="none"
388
388
  focusable={false}
389
- height="28"
389
+ height={24}
390
390
  meetOrSlice={0}
391
391
  minX={0}
392
392
  minY={0}
@@ -398,14 +398,14 @@ exports[`Failed text bubble test shows a DEFAULT SENT text bubble that is swipea
398
398
  },
399
399
  {
400
400
  "flex": 0,
401
- "height": 28,
402
- "width": 28,
401
+ "height": 24,
402
+ "width": 24,
403
403
  },
404
404
  ]
405
405
  }
406
- vbHeight={28}
407
- vbWidth={28}
408
- width="28"
406
+ vbHeight={23}
407
+ vbWidth={23}
408
+ width={24}
409
409
  >
410
410
  <RNSVGGroup
411
411
  fill={null}
@@ -416,7 +416,7 @@ exports[`Failed text bubble test shows a DEFAULT SENT text bubble that is swipea
416
416
  }
417
417
  >
418
418
  <RNSVGPath
419
- d="M17.6362 6.38626L21.6137 10.3637M19.3237 4.69876C20.422 3.60041 22.2028 3.60041 23.3012 4.69876C24.3995 5.79711 24.3995 7.57789 23.3012 8.67624L7.8125 24.1649H3.875V20.1475L19.3237 4.69876Z"
419
+ 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"
420
420
  propList={
421
421
  [
422
422
  "stroke",
@@ -460,11 +460,11 @@ exports[`Failed text bubble test shows a DEFAULT SENT text bubble that is swipea
460
460
  >
461
461
  <RNSVGSvgView
462
462
  align="xMidYMid"
463
- bbHeight="28"
464
- bbWidth="28"
463
+ bbHeight={24}
464
+ bbWidth={24}
465
465
  fill="none"
466
466
  focusable={false}
467
- height="28"
467
+ height={24}
468
468
  meetOrSlice={0}
469
469
  minX={0}
470
470
  minY={0}
@@ -476,14 +476,14 @@ exports[`Failed text bubble test shows a DEFAULT SENT text bubble that is swipea
476
476
  },
477
477
  {
478
478
  "flex": 0,
479
- "height": 28,
480
- "width": 28,
479
+ "height": 24,
480
+ "width": 24,
481
481
  },
482
482
  ]
483
483
  }
484
- vbHeight={28}
485
- vbWidth={28}
486
- width="28"
484
+ vbHeight={22}
485
+ vbWidth={21}
486
+ width={24}
487
487
  >
488
488
  <RNSVGGroup
489
489
  fill={null}
@@ -494,7 +494,7 @@ exports[`Failed text bubble test shows a DEFAULT SENT text bubble that is swipea
494
494
  }
495
495
  >
496
496
  <RNSVGPath
497
- d="M21.875 8.375L20.8993 22.0353C20.8152 23.2127 19.8354 24.125 18.655 24.125H9.34502C8.16458 24.125 7.18484 23.2127 7.10074 22.0353L6.125 8.375M11.75 12.875V19.625M16.25 12.875V19.625M17.375 8.375V5C17.375 4.37868 16.8713 3.875 16.25 3.875H11.75C11.1287 3.875 10.625 4.37868 10.625 5V8.375M5 8.375H23"
497
+ 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"
498
498
  propList={
499
499
  [
500
500
  "stroke",
@@ -668,11 +668,11 @@ exports[`Failed text bubble test shows a WARNING RECEIVED text bubble that is sw
668
668
  >
669
669
  <RNSVGSvgView
670
670
  align="xMidYMid"
671
- bbHeight="28"
672
- bbWidth="28"
671
+ bbHeight={24}
672
+ bbWidth={24}
673
673
  fill="none"
674
674
  focusable={false}
675
- height="28"
675
+ height={24}
676
676
  meetOrSlice={0}
677
677
  minX={0}
678
678
  minY={0}
@@ -684,14 +684,14 @@ exports[`Failed text bubble test shows a WARNING RECEIVED text bubble that is sw
684
684
  },
685
685
  {
686
686
  "flex": 0,
687
- "height": 28,
688
- "width": 28,
687
+ "height": 24,
688
+ "width": 24,
689
689
  },
690
690
  ]
691
691
  }
692
- vbHeight={28}
693
- vbWidth={28}
694
- width="28"
692
+ vbHeight={23}
693
+ vbWidth={23}
694
+ width={24}
695
695
  >
696
696
  <RNSVGGroup
697
697
  fill={null}
@@ -702,7 +702,7 @@ exports[`Failed text bubble test shows a WARNING RECEIVED text bubble that is sw
702
702
  }
703
703
  >
704
704
  <RNSVGPath
705
- d="M17.6362 6.38626L21.6137 10.3637M19.3237 4.69876C20.422 3.60041 22.2028 3.60041 23.3012 4.69876C24.3995 5.79711 24.3995 7.57789 23.3012 8.67624L7.8125 24.1649H3.875V20.1475L19.3237 4.69876Z"
705
+ 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"
706
706
  propList={
707
707
  [
708
708
  "stroke",
@@ -746,11 +746,11 @@ exports[`Failed text bubble test shows a WARNING RECEIVED text bubble that is sw
746
746
  >
747
747
  <RNSVGSvgView
748
748
  align="xMidYMid"
749
- bbHeight="28"
750
- bbWidth="28"
749
+ bbHeight={24}
750
+ bbWidth={24}
751
751
  fill="none"
752
752
  focusable={false}
753
- height="28"
753
+ height={24}
754
754
  meetOrSlice={0}
755
755
  minX={0}
756
756
  minY={0}
@@ -762,14 +762,14 @@ exports[`Failed text bubble test shows a WARNING RECEIVED text bubble that is sw
762
762
  },
763
763
  {
764
764
  "flex": 0,
765
- "height": 28,
766
- "width": 28,
765
+ "height": 24,
766
+ "width": 24,
767
767
  },
768
768
  ]
769
769
  }
770
- vbHeight={28}
771
- vbWidth={28}
772
- width="28"
770
+ vbHeight={22}
771
+ vbWidth={21}
772
+ width={24}
773
773
  >
774
774
  <RNSVGGroup
775
775
  fill={null}
@@ -780,7 +780,7 @@ exports[`Failed text bubble test shows a WARNING RECEIVED text bubble that is sw
780
780
  }
781
781
  >
782
782
  <RNSVGPath
783
- d="M21.875 8.375L20.8993 22.0353C20.8152 23.2127 19.8354 24.125 18.655 24.125H9.34502C8.16458 24.125 7.18484 23.2127 7.10074 22.0353L6.125 8.375M11.75 12.875V19.625M16.25 12.875V19.625M17.375 8.375V5C17.375 4.37868 16.8713 3.875 16.25 3.875H11.75C11.1287 3.875 10.625 4.37868 10.625 5V8.375M5 8.375H23"
783
+ 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"
784
784
  propList={
785
785
  [
786
786
  "stroke",
@@ -954,11 +954,11 @@ exports[`Failed text bubble test shows a WARNING SENT text bubble that is swipea
954
954
  >
955
955
  <RNSVGSvgView
956
956
  align="xMidYMid"
957
- bbHeight="28"
958
- bbWidth="28"
957
+ bbHeight={24}
958
+ bbWidth={24}
959
959
  fill="none"
960
960
  focusable={false}
961
- height="28"
961
+ height={24}
962
962
  meetOrSlice={0}
963
963
  minX={0}
964
964
  minY={0}
@@ -970,14 +970,14 @@ exports[`Failed text bubble test shows a WARNING SENT text bubble that is swipea
970
970
  },
971
971
  {
972
972
  "flex": 0,
973
- "height": 28,
974
- "width": 28,
973
+ "height": 24,
974
+ "width": 24,
975
975
  },
976
976
  ]
977
977
  }
978
- vbHeight={28}
979
- vbWidth={28}
980
- width="28"
978
+ vbHeight={23}
979
+ vbWidth={23}
980
+ width={24}
981
981
  >
982
982
  <RNSVGGroup
983
983
  fill={null}
@@ -988,7 +988,7 @@ exports[`Failed text bubble test shows a WARNING SENT text bubble that is swipea
988
988
  }
989
989
  >
990
990
  <RNSVGPath
991
- d="M17.6362 6.38626L21.6137 10.3637M19.3237 4.69876C20.422 3.60041 22.2028 3.60041 23.3012 4.69876C24.3995 5.79711 24.3995 7.57789 23.3012 8.67624L7.8125 24.1649H3.875V20.1475L19.3237 4.69876Z"
991
+ 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"
992
992
  propList={
993
993
  [
994
994
  "stroke",
@@ -1032,11 +1032,11 @@ exports[`Failed text bubble test shows a WARNING SENT text bubble that is swipea
1032
1032
  >
1033
1033
  <RNSVGSvgView
1034
1034
  align="xMidYMid"
1035
- bbHeight="28"
1036
- bbWidth="28"
1035
+ bbHeight={24}
1036
+ bbWidth={24}
1037
1037
  fill="none"
1038
1038
  focusable={false}
1039
- height="28"
1039
+ height={24}
1040
1040
  meetOrSlice={0}
1041
1041
  minX={0}
1042
1042
  minY={0}
@@ -1048,14 +1048,14 @@ exports[`Failed text bubble test shows a WARNING SENT text bubble that is swipea
1048
1048
  },
1049
1049
  {
1050
1050
  "flex": 0,
1051
- "height": 28,
1052
- "width": 28,
1051
+ "height": 24,
1052
+ "width": 24,
1053
1053
  },
1054
1054
  ]
1055
1055
  }
1056
- vbHeight={28}
1057
- vbWidth={28}
1058
- width="28"
1056
+ vbHeight={22}
1057
+ vbWidth={21}
1058
+ width={24}
1059
1059
  >
1060
1060
  <RNSVGGroup
1061
1061
  fill={null}
@@ -1066,7 +1066,7 @@ exports[`Failed text bubble test shows a WARNING SENT text bubble that is swipea
1066
1066
  }
1067
1067
  >
1068
1068
  <RNSVGPath
1069
- d="M21.875 8.375L20.8993 22.0353C20.8152 23.2127 19.8354 24.125 18.655 24.125H9.34502C8.16458 24.125 7.18484 23.2127 7.10074 22.0353L6.125 8.375M11.75 12.875V19.625M16.25 12.875V19.625M17.375 8.375V5C17.375 4.37868 16.8713 3.875 16.25 3.875H11.75C11.1287 3.875 10.625 4.37868 10.625 5V8.375M5 8.375H23"
1069
+ 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"
1070
1070
  propList={
1071
1071
  [
1072
1072
  "stroke",
@@ -1240,11 +1240,11 @@ exports[`Failed text bubble test shows an ERROR RECEIVED text bubble that is swi
1240
1240
  >
1241
1241
  <RNSVGSvgView
1242
1242
  align="xMidYMid"
1243
- bbHeight="28"
1244
- bbWidth="28"
1243
+ bbHeight={24}
1244
+ bbWidth={24}
1245
1245
  fill="none"
1246
1246
  focusable={false}
1247
- height="28"
1247
+ height={24}
1248
1248
  meetOrSlice={0}
1249
1249
  minX={0}
1250
1250
  minY={0}
@@ -1256,14 +1256,14 @@ exports[`Failed text bubble test shows an ERROR RECEIVED text bubble that is swi
1256
1256
  },
1257
1257
  {
1258
1258
  "flex": 0,
1259
- "height": 28,
1260
- "width": 28,
1259
+ "height": 24,
1260
+ "width": 24,
1261
1261
  },
1262
1262
  ]
1263
1263
  }
1264
- vbHeight={28}
1265
- vbWidth={28}
1266
- width="28"
1264
+ vbHeight={23}
1265
+ vbWidth={23}
1266
+ width={24}
1267
1267
  >
1268
1268
  <RNSVGGroup
1269
1269
  fill={null}
@@ -1274,7 +1274,7 @@ exports[`Failed text bubble test shows an ERROR RECEIVED text bubble that is swi
1274
1274
  }
1275
1275
  >
1276
1276
  <RNSVGPath
1277
- d="M17.6362 6.38626L21.6137 10.3637M19.3237 4.69876C20.422 3.60041 22.2028 3.60041 23.3012 4.69876C24.3995 5.79711 24.3995 7.57789 23.3012 8.67624L7.8125 24.1649H3.875V20.1475L19.3237 4.69876Z"
1277
+ 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"
1278
1278
  propList={
1279
1279
  [
1280
1280
  "stroke",
@@ -1318,11 +1318,11 @@ exports[`Failed text bubble test shows an ERROR RECEIVED text bubble that is swi
1318
1318
  >
1319
1319
  <RNSVGSvgView
1320
1320
  align="xMidYMid"
1321
- bbHeight="28"
1322
- bbWidth="28"
1321
+ bbHeight={24}
1322
+ bbWidth={24}
1323
1323
  fill="none"
1324
1324
  focusable={false}
1325
- height="28"
1325
+ height={24}
1326
1326
  meetOrSlice={0}
1327
1327
  minX={0}
1328
1328
  minY={0}
@@ -1334,14 +1334,14 @@ exports[`Failed text bubble test shows an ERROR RECEIVED text bubble that is swi
1334
1334
  },
1335
1335
  {
1336
1336
  "flex": 0,
1337
- "height": 28,
1338
- "width": 28,
1337
+ "height": 24,
1338
+ "width": 24,
1339
1339
  },
1340
1340
  ]
1341
1341
  }
1342
- vbHeight={28}
1343
- vbWidth={28}
1344
- width="28"
1342
+ vbHeight={22}
1343
+ vbWidth={21}
1344
+ width={24}
1345
1345
  >
1346
1346
  <RNSVGGroup
1347
1347
  fill={null}
@@ -1352,7 +1352,7 @@ exports[`Failed text bubble test shows an ERROR RECEIVED text bubble that is swi
1352
1352
  }
1353
1353
  >
1354
1354
  <RNSVGPath
1355
- d="M21.875 8.375L20.8993 22.0353C20.8152 23.2127 19.8354 24.125 18.655 24.125H9.34502C8.16458 24.125 7.18484 23.2127 7.10074 22.0353L6.125 8.375M11.75 12.875V19.625M16.25 12.875V19.625M17.375 8.375V5C17.375 4.37868 16.8713 3.875 16.25 3.875H11.75C11.1287 3.875 10.625 4.37868 10.625 5V8.375M5 8.375H23"
1355
+ 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"
1356
1356
  propList={
1357
1357
  [
1358
1358
  "stroke",
@@ -1526,11 +1526,11 @@ exports[`Failed text bubble test shows an ERROR SENT text bubble that is swipeab
1526
1526
  >
1527
1527
  <RNSVGSvgView
1528
1528
  align="xMidYMid"
1529
- bbHeight="28"
1530
- bbWidth="28"
1529
+ bbHeight={24}
1530
+ bbWidth={24}
1531
1531
  fill="none"
1532
1532
  focusable={false}
1533
- height="28"
1533
+ height={24}
1534
1534
  meetOrSlice={0}
1535
1535
  minX={0}
1536
1536
  minY={0}
@@ -1542,14 +1542,14 @@ exports[`Failed text bubble test shows an ERROR SENT text bubble that is swipeab
1542
1542
  },
1543
1543
  {
1544
1544
  "flex": 0,
1545
- "height": 28,
1546
- "width": 28,
1545
+ "height": 24,
1546
+ "width": 24,
1547
1547
  },
1548
1548
  ]
1549
1549
  }
1550
- vbHeight={28}
1551
- vbWidth={28}
1552
- width="28"
1550
+ vbHeight={23}
1551
+ vbWidth={23}
1552
+ width={24}
1553
1553
  >
1554
1554
  <RNSVGGroup
1555
1555
  fill={null}
@@ -1560,7 +1560,7 @@ exports[`Failed text bubble test shows an ERROR SENT text bubble that is swipeab
1560
1560
  }
1561
1561
  >
1562
1562
  <RNSVGPath
1563
- d="M17.6362 6.38626L21.6137 10.3637M19.3237 4.69876C20.422 3.60041 22.2028 3.60041 23.3012 4.69876C24.3995 5.79711 24.3995 7.57789 23.3012 8.67624L7.8125 24.1649H3.875V20.1475L19.3237 4.69876Z"
1563
+ 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"
1564
1564
  propList={
1565
1565
  [
1566
1566
  "stroke",
@@ -1604,11 +1604,11 @@ exports[`Failed text bubble test shows an ERROR SENT text bubble that is swipeab
1604
1604
  >
1605
1605
  <RNSVGSvgView
1606
1606
  align="xMidYMid"
1607
- bbHeight="28"
1608
- bbWidth="28"
1607
+ bbHeight={24}
1608
+ bbWidth={24}
1609
1609
  fill="none"
1610
1610
  focusable={false}
1611
- height="28"
1611
+ height={24}
1612
1612
  meetOrSlice={0}
1613
1613
  minX={0}
1614
1614
  minY={0}
@@ -1620,14 +1620,14 @@ exports[`Failed text bubble test shows an ERROR SENT text bubble that is swipeab
1620
1620
  },
1621
1621
  {
1622
1622
  "flex": 0,
1623
- "height": 28,
1624
- "width": 28,
1623
+ "height": 24,
1624
+ "width": 24,
1625
1625
  },
1626
1626
  ]
1627
1627
  }
1628
- vbHeight={28}
1629
- vbWidth={28}
1630
- width="28"
1628
+ vbHeight={22}
1629
+ vbWidth={21}
1630
+ width={24}
1631
1631
  >
1632
1632
  <RNSVGGroup
1633
1633
  fill={null}
@@ -1638,7 +1638,7 @@ exports[`Failed text bubble test shows an ERROR SENT text bubble that is swipeab
1638
1638
  }
1639
1639
  >
1640
1640
  <RNSVGPath
1641
- d="M21.875 8.375L20.8993 22.0353C20.8152 23.2127 19.8354 24.125 18.655 24.125H9.34502C8.16458 24.125 7.18484 23.2127 7.10074 22.0353L6.125 8.375M11.75 12.875V19.625M16.25 12.875V19.625M17.375 8.375V5C17.375 4.37868 16.8713 3.875 16.25 3.875H11.75C11.1287 3.875 10.625 4.37868 10.625 5V8.375M5 8.375H23"
1641
+ 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"
1642
1642
  propList={
1643
1643
  [
1644
1644
  "stroke",
@@ -60,12 +60,12 @@ const SendTextBubble = ({
60
60
  <View style={styles.swipedRow}>
61
61
  <Animated.View style={[styles.swipedIcon, {opacity}]}>
62
62
  <Pressable onPress={onPressEdit}>
63
- <Icon.Outline.Pencil color={iconColorCheck()} />
63
+ <Icon style={'regular'} name={'pencil'} color={iconColorCheck()} />
64
64
  </Pressable>
65
65
  </Animated.View>
66
66
  <Animated.View style={[styles.swipedIcon, {opacity}]}>
67
67
  <Pressable onPress={onPressDelete}>
68
- <Icon.Outline.Trash color={iconColorCheck()} />
68
+ <Icon style={'regular'} name={'trash'} color={iconColorCheck()} />
69
69
  </Pressable>
70
70
  </Animated.View>
71
71
  </View>