@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.
- package/App.tsx +27 -0
- package/index.d.ts +5 -1
- package/index.tsx +8 -0
- package/package.json +1 -1
- package/src/components/{templates/popover/components → atoms}/backdrop/backdrop.component.tsx +1 -1
- package/src/components/atoms/calendar/__snapshots__/calendar.test.js.snap +54 -54
- package/src/components/atoms/calendar/calendar.component.tsx +4 -2
- package/src/components/atoms/footer/__snapshots__/footer.test.js.snap +9 -9
- package/src/components/atoms/increment-input/__snapshots__/increment-input.test.js.snap +18 -18
- package/src/components/atoms/increment-input/increment-input.component.tsx +12 -2
- package/src/components/atoms/split-container/__snapshots__/split-container.test.js.snap +9 -9
- package/src/components/molecules/blocked-message/__snapshots__/blocked-message.test.js.snap +9 -9
- package/src/components/molecules/blocked-message/blocked-message.component.tsx +6 -1
- package/src/components/molecules/button/__snapshots__/button.test.js.snap +36 -30
- package/src/components/molecules/button/button.component.d.ts +6 -3
- package/src/components/molecules/button/button.component.tsx +27 -3
- package/src/components/molecules/button/button.preview.tsx +6 -3
- package/src/components/molecules/button/button.test.js +9 -6
- package/src/components/molecules/calendar-select/__snapshots__/calendar-select.test.js.snap +29 -29
- package/src/components/molecules/calendar-select/calendar-select.component.tsx +7 -4
- package/src/components/molecules/calendar-select/calendar-select.styles.js +2 -2
- package/src/components/molecules/date-input/__snapshots__/date-input.test.js.snap +9 -9
- package/src/components/molecules/date-input/date-input.component.tsx +5 -1
- package/src/components/molecules/default-select/__snapshots__/default-select.test.js.snap +9 -9
- package/src/components/molecules/default-select/default-select.component.tsx +5 -1
- package/src/components/molecules/failed-to-send/__snapshots__/failed-bubble.test.js.snap +27 -27
- package/src/components/molecules/failed-to-send/failed-bubble.component.tsx +14 -3
- package/src/components/molecules/language-button/__snapshots__/language-button.test.js.snap +95 -0
- package/src/components/molecules/language-button/language-button.component.d.ts +7 -0
- package/src/components/molecules/language-button/language-button.component.tsx +33 -0
- package/src/components/molecules/language-button/language-button.preview.d.ts +1 -0
- package/src/components/molecules/language-button/language-button.preview.tsx +29 -0
- package/src/components/molecules/language-button/language-button.styles.d.ts +8 -0
- package/src/components/molecules/language-button/language-button.styles.js +12 -0
- package/src/components/molecules/language-button/language-button.test.js +29 -0
- package/src/components/molecules/message-input/__snapshots__/message-input.test.js.snap +140 -72
- package/src/components/molecules/message-input/message-input.component.tsx +10 -2
- package/src/components/molecules/more-info-button/__snapshots__/more-info-button.test.js.snap +99 -0
- package/src/components/molecules/more-info-button/more-info-button.component.d.ts +7 -0
- package/src/components/molecules/more-info-button/more-info-button.component.tsx +33 -0
- package/src/components/molecules/more-info-button/more-info-button.preview.d.ts +1 -0
- package/src/components/molecules/more-info-button/more-info-button.preview.tsx +29 -0
- package/src/components/molecules/more-info-button/more-info-button.styles.d.ts +10 -0
- package/src/components/molecules/more-info-button/more-info-button.styles.js +15 -0
- package/src/components/molecules/more-info-button/more-info-button.test.js +29 -0
- package/src/components/molecules/password-input/__snapshots__/password-input.test.js.snap +30 -30
- package/src/components/molecules/password-input/password-input.component.tsx +10 -2
- package/src/components/molecules/pressable-icon/__snapshots__/pressable-icon.test.js.snap +36 -36
- package/src/components/molecules/pressable-icon/pressable-icon.preview.tsx +4 -4
- package/src/components/molecules/pressable-icon/pressable-icon.test.js +8 -4
- package/src/components/molecules/search-input/__snapshots__/search.test.js.snap +15 -18
- package/src/components/molecules/search-input/search.component.tsx +6 -2
- package/src/components/molecules/search-input/search.styles.js +5 -8
- package/src/components/molecules/select-list-item/__snapshots__/select-list-item.test.js.snap +431 -431
- package/src/components/molecules/select-list-item/select-list-item-preview.tsx +3 -4
- package/src/components/molecules/select-list-item/select-list-item.component.tsx +21 -18
- package/src/components/molecules/select-list-item/select-list-item.styles.js +10 -7
- package/src/components/molecules/select-picker/__snapshots__/select-picker.test.js.snap +18 -20
- package/src/components/molecules/select-picker/select-picker.component.tsx +6 -1
- package/src/components/molecules/select-picker/select-picker.styles.js +2 -2
- package/src/components/molecules/send-bubble/__snapshots__/send-text-bubble.test.js.snap +108 -108
- package/src/components/molecules/send-bubble/send-text-bubble.component.tsx +2 -2
- package/src/components/molecules/snackbar/__snapshots__/snackbar.test.js.snap +36 -36
- package/src/components/molecules/snackbar/snackbar.component.tsx +21 -2
- package/src/components/molecules/swipe/__snapshots__/swipe.test.js.snap +15 -11
- package/src/components/molecules/swipe/swipe.component.tsx +10 -2
- package/src/components/organisms/child-list-item/__snapshots__/child-list-item.test.js.snap +10 -10
- package/src/components/organisms/child-list-item/child-list-item.component.tsx +7 -2
- package/src/components/organisms/child-list-item/child-list-item.preview.tsx +7 -1
- package/src/components/organisms/contact-item/__snapshots__/contact-item.test.js.snap +18 -18
- package/src/components/organisms/contact-item/contact-item.component.tsx +6 -1
- package/src/components/organisms/loading-indicator/__snapshots__/loading-indicator.test.js.snap +474 -0
- package/src/components/organisms/loading-indicator/animation-style.animate.d.ts +3 -0
- package/src/components/organisms/loading-indicator/animation-style.animate.ts +164 -0
- package/src/components/organisms/loading-indicator/container.component.d.ts +1 -0
- package/src/components/organisms/loading-indicator/container.component.tsx +65 -0
- package/src/components/organisms/loading-indicator/dot.component.d.ts +6 -0
- package/src/components/organisms/loading-indicator/dot.component.tsx +27 -0
- package/src/components/organisms/loading-indicator/loading-indicator.component.d.ts +2 -0
- package/src/components/organisms/loading-indicator/loading-indicator.component.tsx +21 -0
- package/src/components/organisms/loading-indicator/loading-indicator.preview.d.ts +1 -0
- package/src/components/organisms/loading-indicator/loading-indicator.preview.tsx +100 -0
- package/src/components/organisms/loading-indicator/loading-indicator.test.js +40 -0
- package/src/components/organisms/my-child-list-item/__snapshots__/my-child-list-item.test.js.snap +18 -18
- package/src/components/organisms/my-child-list-item/my-child-list-item.component.tsx +12 -2
- package/src/components/organisms/text-bubble/__snapshots__/text-bubble.test.js.snap +135 -135
- package/src/components/organisms/text-bubble/text-bubble.test.js +0 -1
- package/src/components/templates/modal/components/fade-panel.component.d.ts +11 -0
- package/src/components/templates/modal/components/fade-panel.component.tsx +53 -0
- package/src/components/templates/modal/components/fade-panel.styles.d.ts +16 -0
- package/src/components/templates/modal/components/fade-panel.styles.js +17 -0
- package/src/components/templates/modal/modal-preview.styles.d.ts +13 -0
- package/src/components/templates/modal/modal-preview.styles.js +17 -0
- package/src/components/templates/modal/modal.component.d.ts +10 -0
- package/src/components/templates/modal/modal.component.tsx +56 -0
- package/src/components/templates/modal/modal.preview.d.ts +1 -0
- package/src/components/templates/modal/modal.preview.tsx +73 -0
- package/src/components/templates/modal/modal.styles.d.ts +21 -0
- package/src/components/templates/modal/modal.styles.js +23 -0
- package/src/components/templates/popover/components/index.js +1 -1
- package/src/components/templates/popover/components/modal/close/close.component.tsx +9 -4
- package/src/components/templates/popover/components/modal/close/close.styles.d.ts +4 -3
- package/src/components/templates/popover/components/modal/close/close.styles.js +8 -5
- package/src/components/templates/popover/components/modal/heading/heading.styles.js +1 -1
- package/src/components/templates/popover/components/modal/modal.component.tsx +1 -1
- package/src/components/templates/popover/components/modal/modal.styles.js +1 -1
- package/src/components/templates/popover/popover.component.tsx +2 -1
- package/src/context/loading-dots.context.d.ts +8 -0
- package/src/context/loading-dots.context.tsx +33 -0
- package/src/icons/__snapshots__/icons.test.js.snap +572 -482
- package/src/icons/icons.test.js +126 -51
- package/src/icons/index.d.ts +2 -56
- package/src/icons/index.tsx +11 -3
- package/src/icons/outline/calendar/calendar.icon.d.ts +2 -2
- package/src/icons/outline/calendar/calendar.icon.tsx +5 -4
- package/src/icons/outline/chat/chat.icon.d.ts +2 -2
- package/src/icons/outline/chat/chat.icon.tsx +5 -4
- package/src/icons/outline/chat-alt/chat-alt.icon.d.ts +2 -2
- package/src/icons/outline/chat-alt/chat-alt.icon.tsx +5 -4
- package/src/icons/outline/check-circle/check-circle.icon.d.ts +2 -2
- package/src/icons/outline/check-circle/check-circle.icon.tsx +5 -4
- package/src/icons/outline/chevron-left/chevron-left.icon.d.ts +2 -2
- package/src/icons/outline/chevron-left/chevron-left.icon.tsx +5 -4
- package/src/icons/outline/chevron-right/chevron-right.icon.d.ts +2 -2
- package/src/icons/outline/chevron-right/chevron-right.icon.tsx +5 -4
- package/src/icons/outline/clock/clock.icon.d.ts +2 -2
- package/src/icons/outline/clock/clock.icon.tsx +5 -4
- package/src/icons/outline/cloud-download/cloud-download.icon.d.ts +2 -2
- package/src/icons/outline/cloud-download/cloud-download.icon.tsx +5 -4
- package/src/icons/outline/currency-euro/currency-euro.icon.d.ts +2 -2
- package/src/icons/outline/currency-euro/currency-euro.icon.tsx +5 -4
- package/src/icons/outline/document-text/document-text.icon.d.ts +2 -2
- package/src/icons/outline/document-text/document-text.icon.tsx +5 -4
- package/src/icons/outline/exclamation/exclamation.icon.d.ts +2 -2
- package/src/icons/outline/exclamation/exclamation.icon.tsx +5 -4
- package/src/icons/outline/exclamation-circle/exclamation-circle.icon.d.ts +2 -2
- package/src/icons/outline/exclamation-circle/exclamation-circle.icon.tsx +8 -4
- package/src/icons/outline/eye/eye.icon.d.ts +2 -2
- package/src/icons/outline/eye/eye.icon.tsx +6 -5
- package/src/icons/outline/eye-off/eye-off.icon.d.ts +2 -2
- package/src/icons/outline/eye-off/eye-off.icon.tsx +4 -3
- package/src/icons/outline/filter/filter.icon.d.ts +2 -2
- package/src/icons/outline/filter/filter.icon.tsx +5 -42
- package/src/icons/outline/information-circle/information-circle.icon.d.ts +2 -2
- package/src/icons/outline/information-circle/information-circle.icon.tsx +8 -4
- package/src/icons/outline/logout/logout.icon.d.ts +2 -2
- package/src/icons/outline/logout/logout.icon.tsx +11 -4
- package/src/icons/outline/mail/mail.icon.d.ts +2 -2
- package/src/icons/outline/mail/mail.icon.tsx +5 -4
- package/src/icons/outline/mail-open/mail-open.icon.d.ts +2 -2
- package/src/icons/outline/mail-open/mail-open.icon.tsx +5 -4
- package/src/icons/outline/menu/menu.icon.d.ts +2 -2
- package/src/icons/outline/menu/menu.icon.tsx +5 -4
- package/src/icons/outline/minus-sm/minus-sm.icon.d.ts +2 -2
- package/src/icons/outline/minus-sm/minus-sm.icon.tsx +5 -9
- package/src/icons/outline/office-building/office-building.icon.d.ts +2 -2
- package/src/icons/outline/office-building/office-building.icon.tsx +5 -4
- package/src/icons/outline/outline-default.preview.tsx +49 -45
- package/src/icons/outline/outline-grey.preview.tsx +56 -40
- package/src/icons/outline/outline-white.preview.tsx +61 -41
- package/src/icons/outline/outline.d.ts +2 -42
- package/src/icons/outline/outline.tsx +99 -42
- package/src/icons/outline/paper-airplane/paper-airplane.icon.d.ts +2 -2
- package/src/icons/outline/paper-airplane/paper-airplane.icon.tsx +11 -4
- package/src/icons/outline/paperclip/paperclip.icon.d.ts +2 -2
- package/src/icons/outline/paperclip/paperclip.icon.tsx +5 -4
- package/src/icons/outline/pencil/pencil.icon.d.ts +2 -2
- package/src/icons/outline/pencil/pencil.icon.tsx +5 -4
- package/src/icons/outline/phone/phone.icon.d.ts +2 -2
- package/src/icons/outline/phone/phone.icon.tsx +5 -4
- package/src/icons/outline/plus/plus.icon.d.ts +2 -2
- package/src/icons/outline/plus/plus.icon.tsx +5 -4
- package/src/icons/outline/plus-sm/plus-sm.icon.d.ts +2 -2
- package/src/icons/outline/plus-sm/plus-sm.icon.tsx +5 -9
- package/src/icons/outline/qrcode/qrcode.icon.d.ts +2 -2
- package/src/icons/outline/qrcode/qrcode.icon.tsx +5 -4
- package/src/icons/outline/refresh/refresh.icon.d.ts +2 -2
- package/src/icons/outline/refresh/refresh.icon.tsx +5 -4
- package/src/icons/outline/search/search.icon.d.ts +2 -2
- package/src/icons/outline/search/search.icon.tsx +5 -4
- package/src/icons/outline/selector/selector.icon.d.ts +2 -2
- package/src/icons/outline/selector/selector.icon.tsx +5 -4
- package/src/icons/outline/sm-view-grid-add/sm-view-grid-add.icon.d.ts +2 -2
- package/src/icons/outline/sm-view-grid-add/sm-view-grid-add.icon.tsx +5 -4
- package/src/icons/outline/status-online/status-online.icon.d.ts +2 -2
- package/src/icons/outline/status-online/status-online.icon.tsx +5 -4
- package/src/icons/outline/thumb-up/thumb-up.icon.d.ts +2 -2
- package/src/icons/outline/thumb-up/thumb-up.icon.tsx +5 -4
- package/src/icons/outline/trash/trash.icon.d.ts +2 -2
- package/src/icons/outline/trash/trash.icon.tsx +5 -4
- package/src/icons/outline/user/user.icon.d.ts +2 -2
- package/src/icons/outline/user/user.icon.tsx +6 -5
- package/src/icons/outline/user-group/user-group.icon.d.ts +2 -2
- package/src/icons/outline/user-group/user-group.icon.tsx +5 -4
- package/src/icons/outline/users/users.icon.d.ts +2 -2
- package/src/icons/outline/users/users.icon.tsx +5 -4
- package/src/icons/outline/xmark/xmark.icon.d.ts +2 -0
- package/src/icons/outline/{cross/cross.icon.tsx → xmark/xmark.icon.tsx} +5 -4
- package/src/icons/solid/calendar/calendar.icon.d.ts +2 -0
- package/src/icons/solid/calendar/calendar.icon.tsx +21 -0
- package/src/icons/solid/chat/chat.icon.d.ts +2 -0
- package/src/icons/solid/chat/chat.icon.tsx +21 -0
- package/src/icons/solid/chat-alt/chat-alt-solid.icon.d.ts +2 -2
- package/src/icons/solid/chat-alt/chat-alt-solid.icon.tsx +5 -4
- package/src/icons/solid/check-circle/check-circle.icon.d.ts +2 -0
- package/src/icons/solid/check-circle/check-circle.icon.tsx +21 -0
- package/src/icons/solid/chevron-left/chevron-left.icon.d.ts +2 -0
- package/src/icons/solid/chevron-left/chevron-left.icon.tsx +21 -0
- package/src/icons/solid/chevron-right/chevron-right.icon.d.ts +2 -0
- package/src/icons/solid/chevron-right/chevron-right.icon.tsx +21 -0
- package/src/icons/solid/clock/clock-solid.icon.d.ts +2 -2
- package/src/icons/solid/clock/clock-solid.icon.tsx +5 -4
- package/src/icons/solid/cloud-download/cloud-download.icon.d.ts +2 -0
- package/src/icons/solid/cloud-download/cloud-download.icon.tsx +21 -0
- package/src/icons/solid/currency-euro/currency-euro.icon.d.ts +2 -0
- package/src/icons/solid/currency-euro/currency-euro.icon.tsx +21 -0
- package/src/icons/solid/document-text/document-text-solid.icon.d.ts +2 -2
- package/src/icons/solid/document-text/document-text-solid.icon.tsx +4 -3
- package/src/icons/solid/exclamation/exclamation.icon.d.ts +2 -0
- package/src/icons/solid/exclamation/exclamation.icon.tsx +20 -0
- package/src/icons/solid/exclamation-circle/exclamation-circle.icon.d.ts +2 -0
- package/src/icons/solid/exclamation-circle/exclamation-circle.icon.tsx +23 -0
- package/src/icons/solid/eye/eye.icon.d.ts +2 -0
- package/src/icons/solid/eye/eye.icon.tsx +24 -0
- package/src/icons/solid/eye-off/eye-off.icon.d.ts +2 -0
- package/src/icons/solid/eye-off/eye-off.icon.tsx +24 -0
- package/src/icons/solid/filter/filter.icon.d.ts +2 -0
- package/src/icons/solid/filter/filter.icon.tsx +21 -0
- package/src/icons/solid/information-circle/information-circle-solid.icon.d.ts +2 -2
- package/src/icons/solid/information-circle/information-circle-solid.icon.tsx +8 -4
- package/src/icons/solid/logout/logout.icon.d.ts +2 -0
- package/src/icons/solid/logout/logout.icon.tsx +26 -0
- package/src/icons/solid/mail/mail.icon.d.ts +2 -0
- package/src/icons/solid/mail/mail.icon.tsx +23 -0
- package/src/icons/solid/mail-open/mail-open.icon.d.ts +2 -0
- package/src/icons/solid/mail-open/mail-open.icon.tsx +21 -0
- package/src/icons/solid/menu/menu.icon.d.ts +2 -0
- package/src/icons/solid/menu/menu.icon.tsx +33 -0
- package/src/icons/solid/minus-sm/minus-sm.icon.d.ts +2 -0
- package/src/icons/solid/minus-sm/minus-sm.icon.tsx +21 -0
- package/src/icons/solid/office-building/office-building.icon.d.ts +2 -0
- package/src/icons/solid/office-building/office-building.icon.tsx +21 -0
- package/src/icons/solid/paper-airplane/paper-airplane.icon.d.ts +2 -0
- package/src/icons/solid/paper-airplane/paper-airplane.icon.tsx +25 -0
- package/src/icons/solid/paperclip/paperclip.icon.d.ts +2 -0
- package/src/icons/solid/paperclip/paperclip.icon.tsx +21 -0
- package/src/icons/solid/pencil/pencil-solid.icon.d.ts +2 -2
- package/src/icons/solid/pencil/pencil-solid.icon.tsx +6 -5
- package/src/icons/solid/phone/phone-solid.icon.d.ts +2 -2
- package/src/icons/solid/phone/phone-solid.icon.tsx +5 -4
- package/src/icons/solid/plus/plus.icon.d.ts +2 -0
- package/src/icons/solid/plus/plus.icon.tsx +21 -0
- package/src/icons/solid/plus-sm/plus-sm.icon.d.ts +2 -0
- package/src/icons/solid/plus-sm/plus-sm.icon.tsx +21 -0
- package/src/icons/solid/qrcode/qrcode.icon.d.ts +2 -0
- package/src/icons/solid/qrcode/qrcode.icon.tsx +60 -0
- package/src/icons/solid/refresh/refresh-solid.icon.d.ts +2 -2
- package/src/icons/solid/refresh/refresh-solid.icon.tsx +5 -4
- package/src/icons/solid/search/search.icon.d.ts +2 -0
- package/src/icons/solid/search/search.icon.tsx +21 -0
- package/src/icons/solid/selector/selector.icon.d.ts +2 -0
- package/src/icons/solid/selector/selector.icon.tsx +21 -0
- package/src/icons/solid/sm-view-grid-add/sm-view-grid-add.icon.d.ts +2 -0
- package/src/icons/solid/sm-view-grid-add/sm-view-grid-add.icon.tsx +31 -0
- package/src/icons/solid/solid.d.ts +2 -12
- package/src/icons/solid/solid.preview.tsx +95 -30
- package/src/icons/solid/solid.tsx +133 -21
- package/src/icons/solid/status-online/status-online-solid.icon.d.ts +2 -2
- package/src/icons/solid/status-online/status-online-solid.icon.tsx +5 -10
- package/src/icons/solid/thumb-up/thumb-up.icon.d.ts +2 -0
- package/src/icons/solid/thumb-up/thumb-up.icon.tsx +23 -0
- package/src/icons/solid/trash/trash-solid.icon.d.ts +2 -2
- package/src/icons/solid/trash/trash-solid.icon.tsx +5 -4
- package/src/icons/solid/user/user.icon.d.ts +2 -0
- package/src/icons/solid/user/user.icon.tsx +23 -0
- package/src/icons/solid/user-group/user-group.icon.d.ts +2 -0
- package/src/icons/solid/user-group/user-group.icon.tsx +72 -0
- package/src/icons/solid/users/users-solid.icon.d.ts +2 -2
- package/src/icons/solid/users/users-solid.icon.tsx +29 -3
- package/src/icons/solid/xmark/xmark.icon.d.ts +2 -0
- package/src/icons/solid/xmark/xmark.icon.tsx +21 -0
- package/src/interfaces/icon.interface.d.ts +11 -0
- package/src/interfaces/icon.interface.ts +12 -0
- package/src/theme/provider/parent.theme.ts +1 -1
- package/src/types/icontype.type.d.ts +2 -4
- package/src/types/icontype.type.ts +43 -4
- package/src/types/loading-dots.type.d.ts +8 -0
- package/src/types/loading-dots.type.ts +8 -0
- package/src/icons/outline/cross/cross.icon.d.ts +0 -2
- /package/src/components/{templates/popover/components → atoms}/backdrop/backdrop.component.d.ts +0 -0
- /package/src/components/{templates/popover/components → atoms}/backdrop/backdrop.styles.d.ts +0 -0
- /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=
|
|
100
|
-
bbWidth=
|
|
99
|
+
bbHeight={24}
|
|
100
|
+
bbWidth={24}
|
|
101
101
|
fill="none"
|
|
102
102
|
focusable={false}
|
|
103
|
-
height=
|
|
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":
|
|
116
|
-
"width":
|
|
115
|
+
"height": 24,
|
|
116
|
+
"width": 24,
|
|
117
117
|
},
|
|
118
118
|
]
|
|
119
119
|
}
|
|
120
|
-
vbHeight={
|
|
121
|
-
vbWidth={
|
|
122
|
-
width=
|
|
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="
|
|
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=
|
|
178
|
-
bbWidth=
|
|
177
|
+
bbHeight={24}
|
|
178
|
+
bbWidth={24}
|
|
179
179
|
fill="none"
|
|
180
180
|
focusable={false}
|
|
181
|
-
height=
|
|
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":
|
|
194
|
-
"width":
|
|
193
|
+
"height": 24,
|
|
194
|
+
"width": 24,
|
|
195
195
|
},
|
|
196
196
|
]
|
|
197
197
|
}
|
|
198
|
-
vbHeight={
|
|
199
|
-
vbWidth={
|
|
200
|
-
width=
|
|
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="
|
|
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=
|
|
386
|
-
bbWidth=
|
|
385
|
+
bbHeight={24}
|
|
386
|
+
bbWidth={24}
|
|
387
387
|
fill="none"
|
|
388
388
|
focusable={false}
|
|
389
|
-
height=
|
|
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":
|
|
402
|
-
"width":
|
|
401
|
+
"height": 24,
|
|
402
|
+
"width": 24,
|
|
403
403
|
},
|
|
404
404
|
]
|
|
405
405
|
}
|
|
406
|
-
vbHeight={
|
|
407
|
-
vbWidth={
|
|
408
|
-
width=
|
|
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="
|
|
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=
|
|
464
|
-
bbWidth=
|
|
463
|
+
bbHeight={24}
|
|
464
|
+
bbWidth={24}
|
|
465
465
|
fill="none"
|
|
466
466
|
focusable={false}
|
|
467
|
-
height=
|
|
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":
|
|
480
|
-
"width":
|
|
479
|
+
"height": 24,
|
|
480
|
+
"width": 24,
|
|
481
481
|
},
|
|
482
482
|
]
|
|
483
483
|
}
|
|
484
|
-
vbHeight={
|
|
485
|
-
vbWidth={
|
|
486
|
-
width=
|
|
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="
|
|
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=
|
|
672
|
-
bbWidth=
|
|
671
|
+
bbHeight={24}
|
|
672
|
+
bbWidth={24}
|
|
673
673
|
fill="none"
|
|
674
674
|
focusable={false}
|
|
675
|
-
height=
|
|
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":
|
|
688
|
-
"width":
|
|
687
|
+
"height": 24,
|
|
688
|
+
"width": 24,
|
|
689
689
|
},
|
|
690
690
|
]
|
|
691
691
|
}
|
|
692
|
-
vbHeight={
|
|
693
|
-
vbWidth={
|
|
694
|
-
width=
|
|
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="
|
|
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=
|
|
750
|
-
bbWidth=
|
|
749
|
+
bbHeight={24}
|
|
750
|
+
bbWidth={24}
|
|
751
751
|
fill="none"
|
|
752
752
|
focusable={false}
|
|
753
|
-
height=
|
|
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":
|
|
766
|
-
"width":
|
|
765
|
+
"height": 24,
|
|
766
|
+
"width": 24,
|
|
767
767
|
},
|
|
768
768
|
]
|
|
769
769
|
}
|
|
770
|
-
vbHeight={
|
|
771
|
-
vbWidth={
|
|
772
|
-
width=
|
|
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="
|
|
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=
|
|
958
|
-
bbWidth=
|
|
957
|
+
bbHeight={24}
|
|
958
|
+
bbWidth={24}
|
|
959
959
|
fill="none"
|
|
960
960
|
focusable={false}
|
|
961
|
-
height=
|
|
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":
|
|
974
|
-
"width":
|
|
973
|
+
"height": 24,
|
|
974
|
+
"width": 24,
|
|
975
975
|
},
|
|
976
976
|
]
|
|
977
977
|
}
|
|
978
|
-
vbHeight={
|
|
979
|
-
vbWidth={
|
|
980
|
-
width=
|
|
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="
|
|
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=
|
|
1036
|
-
bbWidth=
|
|
1035
|
+
bbHeight={24}
|
|
1036
|
+
bbWidth={24}
|
|
1037
1037
|
fill="none"
|
|
1038
1038
|
focusable={false}
|
|
1039
|
-
height=
|
|
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":
|
|
1052
|
-
"width":
|
|
1051
|
+
"height": 24,
|
|
1052
|
+
"width": 24,
|
|
1053
1053
|
},
|
|
1054
1054
|
]
|
|
1055
1055
|
}
|
|
1056
|
-
vbHeight={
|
|
1057
|
-
vbWidth={
|
|
1058
|
-
width=
|
|
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="
|
|
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=
|
|
1244
|
-
bbWidth=
|
|
1243
|
+
bbHeight={24}
|
|
1244
|
+
bbWidth={24}
|
|
1245
1245
|
fill="none"
|
|
1246
1246
|
focusable={false}
|
|
1247
|
-
height=
|
|
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":
|
|
1260
|
-
"width":
|
|
1259
|
+
"height": 24,
|
|
1260
|
+
"width": 24,
|
|
1261
1261
|
},
|
|
1262
1262
|
]
|
|
1263
1263
|
}
|
|
1264
|
-
vbHeight={
|
|
1265
|
-
vbWidth={
|
|
1266
|
-
width=
|
|
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="
|
|
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=
|
|
1322
|
-
bbWidth=
|
|
1321
|
+
bbHeight={24}
|
|
1322
|
+
bbWidth={24}
|
|
1323
1323
|
fill="none"
|
|
1324
1324
|
focusable={false}
|
|
1325
|
-
height=
|
|
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":
|
|
1338
|
-
"width":
|
|
1337
|
+
"height": 24,
|
|
1338
|
+
"width": 24,
|
|
1339
1339
|
},
|
|
1340
1340
|
]
|
|
1341
1341
|
}
|
|
1342
|
-
vbHeight={
|
|
1343
|
-
vbWidth={
|
|
1344
|
-
width=
|
|
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="
|
|
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=
|
|
1530
|
-
bbWidth=
|
|
1529
|
+
bbHeight={24}
|
|
1530
|
+
bbWidth={24}
|
|
1531
1531
|
fill="none"
|
|
1532
1532
|
focusable={false}
|
|
1533
|
-
height=
|
|
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":
|
|
1546
|
-
"width":
|
|
1545
|
+
"height": 24,
|
|
1546
|
+
"width": 24,
|
|
1547
1547
|
},
|
|
1548
1548
|
]
|
|
1549
1549
|
}
|
|
1550
|
-
vbHeight={
|
|
1551
|
-
vbWidth={
|
|
1552
|
-
width=
|
|
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="
|
|
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=
|
|
1608
|
-
bbWidth=
|
|
1607
|
+
bbHeight={24}
|
|
1608
|
+
bbWidth={24}
|
|
1609
1609
|
fill="none"
|
|
1610
1610
|
focusable={false}
|
|
1611
|
-
height=
|
|
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":
|
|
1624
|
-
"width":
|
|
1623
|
+
"height": 24,
|
|
1624
|
+
"width": 24,
|
|
1625
1625
|
},
|
|
1626
1626
|
]
|
|
1627
1627
|
}
|
|
1628
|
-
vbHeight={
|
|
1629
|
-
vbWidth={
|
|
1630
|
-
width=
|
|
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="
|
|
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
|
|
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
|
|
68
|
+
<Icon style={'regular'} name={'trash'} color={iconColorCheck()} />
|
|
69
69
|
</Pressable>
|
|
70
70
|
</Animated.View>
|
|
71
71
|
</View>
|