@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
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
exports[`test icons render a solid chat-alt icon in a coral color 1`] = `
|
|
4
4
|
<RNSVGSvgView
|
|
5
5
|
align="xMidYMid"
|
|
6
|
-
bbHeight=
|
|
7
|
-
bbWidth=
|
|
6
|
+
bbHeight={24}
|
|
7
|
+
bbWidth={24}
|
|
8
8
|
fill="none"
|
|
9
9
|
focusable={false}
|
|
10
|
-
height=
|
|
10
|
+
height={24}
|
|
11
11
|
meetOrSlice={0}
|
|
12
12
|
minX={0}
|
|
13
13
|
minY={0}
|
|
@@ -19,14 +19,14 @@ exports[`test icons render a solid chat-alt icon in a coral color 1`] = `
|
|
|
19
19
|
},
|
|
20
20
|
{
|
|
21
21
|
"flex": 0,
|
|
22
|
-
"height":
|
|
23
|
-
"width":
|
|
22
|
+
"height": 24,
|
|
23
|
+
"width": 24,
|
|
24
24
|
},
|
|
25
25
|
]
|
|
26
26
|
}
|
|
27
|
-
vbHeight={
|
|
28
|
-
vbWidth={
|
|
29
|
-
width=
|
|
27
|
+
vbHeight={19}
|
|
28
|
+
vbWidth={18}
|
|
29
|
+
width={24}
|
|
30
30
|
>
|
|
31
31
|
<RNSVGGroup
|
|
32
32
|
fill={null}
|
|
@@ -38,7 +38,7 @@ exports[`test icons render a solid chat-alt icon in a coral color 1`] = `
|
|
|
38
38
|
>
|
|
39
39
|
<RNSVGPath
|
|
40
40
|
clipRule={0}
|
|
41
|
-
d="
|
|
41
|
+
d="M17.7999 2.75001V11.95C17.7999 13.2203 16.815 14.25 15.5999 14.25H10.1L4.59995 18.85V14.25H2.39995C1.18492 14.25 0.199951 13.2203 0.199951 11.95V2.75001C0.199951 1.47976 1.18492 0.450012 2.39995 0.450012H15.5999C16.815 0.450012 17.7999 1.47976 17.7999 2.75001ZM5.69995 6.20001H3.49995V8.50001H5.69995V6.20001ZM7.89995 6.20001H10.1V8.50001H7.89995V6.20001ZM14.5 6.20001H12.2999V8.50001H14.5V6.20001Z"
|
|
42
42
|
fill={4294934352}
|
|
43
43
|
fillRule={0}
|
|
44
44
|
propList={
|
|
@@ -55,11 +55,11 @@ exports[`test icons render a solid chat-alt icon in a coral color 1`] = `
|
|
|
55
55
|
exports[`test icons render a solid clock icon in a darkcyan color 1`] = `
|
|
56
56
|
<RNSVGSvgView
|
|
57
57
|
align="xMidYMid"
|
|
58
|
-
bbHeight=
|
|
59
|
-
bbWidth=
|
|
58
|
+
bbHeight={24}
|
|
59
|
+
bbWidth={24}
|
|
60
60
|
fill="none"
|
|
61
61
|
focusable={false}
|
|
62
|
-
height=
|
|
62
|
+
height={24}
|
|
63
63
|
meetOrSlice={0}
|
|
64
64
|
minX={0}
|
|
65
65
|
minY={0}
|
|
@@ -71,14 +71,14 @@ exports[`test icons render a solid clock icon in a darkcyan color 1`] = `
|
|
|
71
71
|
},
|
|
72
72
|
{
|
|
73
73
|
"flex": 0,
|
|
74
|
-
"height":
|
|
75
|
-
"width":
|
|
74
|
+
"height": 24,
|
|
75
|
+
"width": 24,
|
|
76
76
|
},
|
|
77
77
|
]
|
|
78
78
|
}
|
|
79
|
-
vbHeight={
|
|
80
|
-
vbWidth={
|
|
81
|
-
width=
|
|
79
|
+
vbHeight={18}
|
|
80
|
+
vbWidth={18}
|
|
81
|
+
width={24}
|
|
82
82
|
>
|
|
83
83
|
<RNSVGGroup
|
|
84
84
|
fill={null}
|
|
@@ -90,7 +90,7 @@ exports[`test icons render a solid clock icon in a darkcyan color 1`] = `
|
|
|
90
90
|
>
|
|
91
91
|
<RNSVGPath
|
|
92
92
|
clipRule={0}
|
|
93
|
-
d="
|
|
93
|
+
d="M8.99995 17.8C13.8601 17.8 17.7999 13.8601 17.7999 9.00001C17.7999 4.13991 13.8601 0.200012 8.99995 0.200012C4.13985 0.200012 0.199951 4.13991 0.199951 9.00001C0.199951 13.8601 4.13985 17.8 8.99995 17.8ZM9.99995 4.60001C9.99995 4.04773 9.55224 3.60001 8.99995 3.60001C8.44767 3.60001 7.99995 4.04773 7.99995 4.60001V9.00001C7.99995 9.26523 8.10531 9.51958 8.29284 9.70712L11.4041 12.8184C11.7946 13.2089 12.4278 13.2089 12.8183 12.8184C13.2089 12.4279 13.2089 11.7947 12.8183 11.4042L9.99995 8.5858V4.60001Z"
|
|
94
94
|
fill={4278225803}
|
|
95
95
|
fillRule={0}
|
|
96
96
|
propList={
|
|
@@ -104,14 +104,14 @@ exports[`test icons render a solid clock icon in a darkcyan color 1`] = `
|
|
|
104
104
|
</RNSVGSvgView>
|
|
105
105
|
`;
|
|
106
106
|
|
|
107
|
-
exports[`test icons render a solid
|
|
107
|
+
exports[`test icons render a solid document-text icon in a white color 1`] = `
|
|
108
108
|
<RNSVGSvgView
|
|
109
109
|
align="xMidYMid"
|
|
110
|
-
bbHeight=
|
|
111
|
-
bbWidth=
|
|
110
|
+
bbHeight={24}
|
|
111
|
+
bbWidth={24}
|
|
112
112
|
fill="none"
|
|
113
113
|
focusable={false}
|
|
114
|
-
height=
|
|
114
|
+
height={24}
|
|
115
115
|
meetOrSlice={0}
|
|
116
116
|
minX={0}
|
|
117
117
|
minY={0}
|
|
@@ -123,14 +123,14 @@ exports[`test icons render a solid information-circle icon in a gold color 1`] =
|
|
|
123
123
|
},
|
|
124
124
|
{
|
|
125
125
|
"flex": 0,
|
|
126
|
-
"height":
|
|
127
|
-
"width":
|
|
126
|
+
"height": 24,
|
|
127
|
+
"width": 24,
|
|
128
128
|
},
|
|
129
129
|
]
|
|
130
130
|
}
|
|
131
|
-
vbHeight={
|
|
132
|
-
vbWidth={
|
|
133
|
-
width=
|
|
131
|
+
vbHeight={18}
|
|
132
|
+
vbWidth={14}
|
|
133
|
+
width={24}
|
|
134
134
|
>
|
|
135
135
|
<RNSVGGroup
|
|
136
136
|
fill={null}
|
|
@@ -142,8 +142,8 @@ exports[`test icons render a solid information-circle icon in a gold color 1`] =
|
|
|
142
142
|
>
|
|
143
143
|
<RNSVGPath
|
|
144
144
|
clipRule={0}
|
|
145
|
-
d="
|
|
146
|
-
fill={
|
|
145
|
+
d="M0.400024 2.39995C0.400024 1.18493 1.385 0.199951 2.60002 0.199951H7.64439C8.22787 0.199951 8.78745 0.431736 9.20002 0.844316L12.9557 4.59995C13.3682 5.01253 13.6 5.57211 13.6 6.15559V15.5999C13.6 16.815 12.6151 17.7999 11.4 17.7999H2.60002C1.385 17.7999 0.400024 16.815 0.400024 15.5999V2.39995ZM2.60002 8.99995C2.60002 8.39244 3.09251 7.89995 3.70002 7.89995H10.3C10.9075 7.89995 11.4 8.39244 11.4 8.99995C11.4 9.60746 10.9075 10.1 10.3 10.1H3.70002C3.09251 10.1 2.60002 9.60746 2.60002 8.99995ZM3.70002 12.2999C3.09251 12.2999 2.60002 12.7924 2.60002 13.4C2.60002 14.0075 3.09251 14.5 3.70002 14.5H10.3C10.9075 14.5 11.4 14.0075 11.4 13.4C11.4 12.7924 10.9075 12.2999 10.3 12.2999H3.70002Z"
|
|
146
|
+
fill={4294967295}
|
|
147
147
|
fillRule={0}
|
|
148
148
|
propList={
|
|
149
149
|
[
|
|
@@ -156,14 +156,14 @@ exports[`test icons render a solid information-circle icon in a gold color 1`] =
|
|
|
156
156
|
</RNSVGSvgView>
|
|
157
157
|
`;
|
|
158
158
|
|
|
159
|
-
exports[`test icons render a solid
|
|
159
|
+
exports[`test icons render a solid eye off icon in a tomato color 1`] = `
|
|
160
160
|
<RNSVGSvgView
|
|
161
161
|
align="xMidYMid"
|
|
162
|
-
bbHeight=
|
|
163
|
-
bbWidth=
|
|
162
|
+
bbHeight={24}
|
|
163
|
+
bbWidth={24}
|
|
164
164
|
fill="none"
|
|
165
165
|
focusable={false}
|
|
166
|
-
height=
|
|
166
|
+
height={24}
|
|
167
167
|
meetOrSlice={0}
|
|
168
168
|
minX={0}
|
|
169
169
|
minY={0}
|
|
@@ -175,14 +175,14 @@ exports[`test icons render a solid pencil icon in a grey color 1`] = `
|
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
177
|
"flex": 0,
|
|
178
|
-
"height":
|
|
179
|
-
"width":
|
|
178
|
+
"height": 24,
|
|
179
|
+
"width": 24,
|
|
180
180
|
},
|
|
181
181
|
]
|
|
182
182
|
}
|
|
183
|
-
vbHeight={
|
|
184
|
-
vbWidth={
|
|
185
|
-
width=
|
|
183
|
+
vbHeight={18}
|
|
184
|
+
vbWidth={22}
|
|
185
|
+
width={24}
|
|
186
186
|
>
|
|
187
187
|
<RNSVGGroup
|
|
188
188
|
fill={null}
|
|
@@ -193,17 +193,20 @@ exports[`test icons render a solid pencil icon in a grey color 1`] = `
|
|
|
193
193
|
}
|
|
194
194
|
>
|
|
195
195
|
<RNSVGPath
|
|
196
|
-
|
|
197
|
-
|
|
196
|
+
clipRule={0}
|
|
197
|
+
d="M4.07779 0.522134C3.64822 0.092557 2.95174 0.092557 2.52216 0.522134C2.09258 0.95171 2.09258 1.64819 2.52216 2.07777L17.9222 17.4778C18.3517 17.9073 19.0482 17.9073 19.4778 17.4778C19.9074 17.0482 19.9074 16.3517 19.4778 15.9221L17.8573 14.3016C19.5486 12.9516 20.8329 11.1132 21.4966 8.99991C20.0949 4.53712 15.9256 1.29995 11.0002 1.29995C9.21429 1.29995 7.52776 1.72556 6.03654 2.48088L4.07779 0.522134ZM8.76492 5.20926L10.4302 6.87453C10.612 6.82588 10.8031 6.79995 11.0003 6.79995C12.2153 6.79995 13.2003 7.78492 13.2003 8.99995C13.2003 9.19711 13.1743 9.3882 13.1257 9.57002L14.791 11.2353C15.1781 10.5802 15.4003 9.81601 15.4003 8.99995C15.4003 6.5699 13.4303 4.59995 11.0003 4.59995C10.1842 4.59995 9.42002 4.82211 8.76492 5.20926Z"
|
|
198
|
+
fill={4294927175}
|
|
199
|
+
fillRule={0}
|
|
198
200
|
propList={
|
|
199
201
|
[
|
|
200
202
|
"fill",
|
|
203
|
+
"fillRule",
|
|
201
204
|
]
|
|
202
205
|
}
|
|
203
206
|
/>
|
|
204
207
|
<RNSVGPath
|
|
205
|
-
d="M13.
|
|
206
|
-
fill={
|
|
208
|
+
d="M13.6995 16.3663L10.7246 13.3915C8.51412 13.2548 6.74539 11.4861 6.60875 9.27561L2.56839 5.23525C1.65067 6.3294 0.941981 7.60481 0.503784 8.99999C1.90549 13.4628 6.0748 16.6999 11.0002 16.6999C11.9315 16.6999 12.8358 16.5842 13.6995 16.3663Z"
|
|
209
|
+
fill={4294927175}
|
|
207
210
|
propList={
|
|
208
211
|
[
|
|
209
212
|
"fill",
|
|
@@ -214,14 +217,14 @@ exports[`test icons render a solid pencil icon in a grey color 1`] = `
|
|
|
214
217
|
</RNSVGSvgView>
|
|
215
218
|
`;
|
|
216
219
|
|
|
217
|
-
exports[`test icons render a solid
|
|
220
|
+
exports[`test icons render a solid information-circle icon in a gold color 1`] = `
|
|
218
221
|
<RNSVGSvgView
|
|
219
222
|
align="xMidYMid"
|
|
220
|
-
bbHeight=
|
|
221
|
-
bbWidth=
|
|
223
|
+
bbHeight={24}
|
|
224
|
+
bbWidth={24}
|
|
222
225
|
fill="none"
|
|
223
226
|
focusable={false}
|
|
224
|
-
height=
|
|
227
|
+
height={24}
|
|
225
228
|
meetOrSlice={0}
|
|
226
229
|
minX={0}
|
|
227
230
|
minY={0}
|
|
@@ -233,14 +236,14 @@ exports[`test icons render a solid phone icon in an ivory color 1`] = `
|
|
|
233
236
|
},
|
|
234
237
|
{
|
|
235
238
|
"flex": 0,
|
|
236
|
-
"height":
|
|
237
|
-
"width":
|
|
239
|
+
"height": 24,
|
|
240
|
+
"width": 24,
|
|
238
241
|
},
|
|
239
242
|
]
|
|
240
243
|
}
|
|
241
|
-
vbHeight={
|
|
242
|
-
vbWidth={
|
|
243
|
-
width=
|
|
244
|
+
vbHeight={18}
|
|
245
|
+
vbWidth={18}
|
|
246
|
+
width={24}
|
|
244
247
|
>
|
|
245
248
|
<RNSVGGroup
|
|
246
249
|
fill={null}
|
|
@@ -251,11 +254,14 @@ exports[`test icons render a solid phone icon in an ivory color 1`] = `
|
|
|
251
254
|
}
|
|
252
255
|
>
|
|
253
256
|
<RNSVGPath
|
|
254
|
-
|
|
255
|
-
|
|
257
|
+
clipRule={0}
|
|
258
|
+
d="M17.7999 9.00001C17.7999 13.8601 13.8601 17.8 8.99995 17.8C4.13985 17.8 0.199951 13.8601 0.199951 9.00001C0.199951 4.13991 4.13985 0.200012 8.99995 0.200012C13.8601 0.200012 17.7999 4.13991 17.7999 9.00001ZM10.1 4.60001C10.1 5.20752 9.60746 5.70001 8.99995 5.70001C8.39244 5.70001 7.89995 5.20752 7.89995 4.60001C7.89995 3.9925 8.39244 3.50001 8.99995 3.50001C9.60746 3.50001 10.1 3.9925 10.1 4.60001ZM7.89995 7.90001C7.29244 7.90001 6.79995 8.3925 6.79995 9.00001C6.79995 9.60752 7.29244 10.1 7.89995 10.1V13.4C7.89995 14.0075 8.39244 14.5 8.99995 14.5H10.1C10.7075 14.5 11.2 14.0075 11.2 13.4C11.2 12.7925 10.7075 12.3 10.1 12.3V9.00001C10.1 8.3925 9.60746 7.90001 8.99995 7.90001H7.89995Z"
|
|
259
|
+
fill={4294956800}
|
|
260
|
+
fillRule={0}
|
|
256
261
|
propList={
|
|
257
262
|
[
|
|
258
263
|
"fill",
|
|
264
|
+
"fillRule",
|
|
259
265
|
]
|
|
260
266
|
}
|
|
261
267
|
/>
|
|
@@ -263,14 +269,14 @@ exports[`test icons render a solid phone icon in an ivory color 1`] = `
|
|
|
263
269
|
</RNSVGSvgView>
|
|
264
270
|
`;
|
|
265
271
|
|
|
266
|
-
exports[`test icons render a solid
|
|
272
|
+
exports[`test icons render a solid pencil icon in a grey color 1`] = `
|
|
267
273
|
<RNSVGSvgView
|
|
268
274
|
align="xMidYMid"
|
|
269
|
-
bbHeight=
|
|
270
|
-
bbWidth=
|
|
275
|
+
bbHeight={24}
|
|
276
|
+
bbWidth={24}
|
|
271
277
|
fill="none"
|
|
272
278
|
focusable={false}
|
|
273
|
-
height=
|
|
279
|
+
height={24}
|
|
274
280
|
meetOrSlice={0}
|
|
275
281
|
minX={0}
|
|
276
282
|
minY={0}
|
|
@@ -282,14 +288,14 @@ exports[`test icons render a solid refresh icon in the main color 1`] = `
|
|
|
282
288
|
},
|
|
283
289
|
{
|
|
284
290
|
"flex": 0,
|
|
285
|
-
"height":
|
|
286
|
-
"width":
|
|
291
|
+
"height": 24,
|
|
292
|
+
"width": 24,
|
|
287
293
|
},
|
|
288
294
|
]
|
|
289
295
|
}
|
|
290
|
-
vbHeight={
|
|
291
|
-
vbWidth={
|
|
292
|
-
width=
|
|
296
|
+
vbHeight={17}
|
|
297
|
+
vbWidth={16}
|
|
298
|
+
width={24}
|
|
293
299
|
>
|
|
294
300
|
<RNSVGGroup
|
|
295
301
|
fill={null}
|
|
@@ -300,8 +306,17 @@ exports[`test icons render a solid refresh icon in the main color 1`] = `
|
|
|
300
306
|
}
|
|
301
307
|
>
|
|
302
308
|
<RNSVGPath
|
|
303
|
-
d="
|
|
304
|
-
fill={
|
|
309
|
+
d="M11.9444 1.12367C12.8036 0.225461 14.1965 0.225461 15.0557 1.12367C15.9148 2.02187 15.9148 3.47815 15.0557 4.37636L14.1835 5.28818L11.0722 2.03549L11.9444 1.12367Z"
|
|
310
|
+
fill={4286611584}
|
|
311
|
+
propList={
|
|
312
|
+
[
|
|
313
|
+
"fill",
|
|
314
|
+
]
|
|
315
|
+
}
|
|
316
|
+
/>
|
|
317
|
+
<RNSVGPath
|
|
318
|
+
d="M9.5166 3.66184L0.300049 13.2973V16.55H3.41132L12.6279 6.91453L9.5166 3.66184Z"
|
|
319
|
+
fill={4286611584}
|
|
305
320
|
propList={
|
|
306
321
|
[
|
|
307
322
|
"fill",
|
|
@@ -312,14 +327,14 @@ exports[`test icons render a solid refresh icon in the main color 1`] = `
|
|
|
312
327
|
</RNSVGSvgView>
|
|
313
328
|
`;
|
|
314
329
|
|
|
315
|
-
exports[`test icons render a solid
|
|
330
|
+
exports[`test icons render a solid phone icon in an ivory color 1`] = `
|
|
316
331
|
<RNSVGSvgView
|
|
317
332
|
align="xMidYMid"
|
|
318
|
-
bbHeight=
|
|
319
|
-
bbWidth=
|
|
333
|
+
bbHeight={24}
|
|
334
|
+
bbWidth={24}
|
|
320
335
|
fill="none"
|
|
321
336
|
focusable={false}
|
|
322
|
-
height=
|
|
337
|
+
height={24}
|
|
323
338
|
meetOrSlice={0}
|
|
324
339
|
minX={0}
|
|
325
340
|
minY={0}
|
|
@@ -331,14 +346,14 @@ exports[`test icons render a solid status-online icon in a navy color 1`] = `
|
|
|
331
346
|
},
|
|
332
347
|
{
|
|
333
348
|
"flex": 0,
|
|
334
|
-
"height":
|
|
335
|
-
"width":
|
|
349
|
+
"height": 24,
|
|
350
|
+
"width": 24,
|
|
336
351
|
},
|
|
337
352
|
]
|
|
338
353
|
}
|
|
339
|
-
vbHeight={
|
|
340
|
-
vbWidth={
|
|
341
|
-
width=
|
|
354
|
+
vbHeight={18}
|
|
355
|
+
vbWidth={18}
|
|
356
|
+
width={24}
|
|
342
357
|
>
|
|
343
358
|
<RNSVGGroup
|
|
344
359
|
fill={null}
|
|
@@ -349,31 +364,26 @@ exports[`test icons render a solid status-online icon in a navy color 1`] = `
|
|
|
349
364
|
}
|
|
350
365
|
>
|
|
351
366
|
<RNSVGPath
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
fill={4278190208}
|
|
355
|
-
fillRule={0}
|
|
367
|
+
d="M0.199951 1.30001C0.199951 0.692499 0.692438 0.200012 1.29995 0.200012H3.66811C4.20583 0.200012 4.66474 0.588767 4.75314 1.11917L5.56639 5.99863C5.64578 6.47497 5.40521 6.94738 4.97329 7.16334L3.27034 8.01482C4.49827 11.0662 6.9338 13.5017 9.98514 14.7296L10.8366 13.0267C11.0526 12.5947 11.525 12.3542 12.0013 12.4336L16.8808 13.2468C17.4112 13.3352 17.7999 13.7941 17.7999 14.3319V16.7C17.7999 17.3075 17.3075 17.8 16.6999 17.8H14.5C6.60228 17.8 0.199951 11.3977 0.199951 3.50001V1.30001Z"
|
|
368
|
+
fill={4294967280}
|
|
356
369
|
propList={
|
|
357
370
|
[
|
|
358
371
|
"fill",
|
|
359
|
-
"fillRule",
|
|
360
|
-
"stroke",
|
|
361
372
|
]
|
|
362
373
|
}
|
|
363
|
-
stroke={4278190208}
|
|
364
374
|
/>
|
|
365
375
|
</RNSVGGroup>
|
|
366
376
|
</RNSVGSvgView>
|
|
367
377
|
`;
|
|
368
378
|
|
|
369
|
-
exports[`test icons render a solid
|
|
379
|
+
exports[`test icons render a solid refresh icon in the main color 1`] = `
|
|
370
380
|
<RNSVGSvgView
|
|
371
381
|
align="xMidYMid"
|
|
372
|
-
bbHeight=
|
|
373
|
-
bbWidth=
|
|
382
|
+
bbHeight={24}
|
|
383
|
+
bbWidth={24}
|
|
374
384
|
fill="none"
|
|
375
385
|
focusable={false}
|
|
376
|
-
height=
|
|
386
|
+
height={24}
|
|
377
387
|
meetOrSlice={0}
|
|
378
388
|
minX={0}
|
|
379
389
|
minY={0}
|
|
@@ -385,14 +395,14 @@ exports[`test icons render a solid trash icon in a tomato color 1`] = `
|
|
|
385
395
|
},
|
|
386
396
|
{
|
|
387
397
|
"flex": 0,
|
|
388
|
-
"height":
|
|
389
|
-
"width":
|
|
398
|
+
"height": 24,
|
|
399
|
+
"width": 24,
|
|
390
400
|
},
|
|
391
401
|
]
|
|
392
402
|
}
|
|
393
|
-
vbHeight={
|
|
394
|
-
vbWidth={
|
|
395
|
-
width=
|
|
403
|
+
vbHeight={18}
|
|
404
|
+
vbWidth={16}
|
|
405
|
+
width={24}
|
|
396
406
|
>
|
|
397
407
|
<RNSVGGroup
|
|
398
408
|
fill={null}
|
|
@@ -403,14 +413,11 @@ exports[`test icons render a solid trash icon in a tomato color 1`] = `
|
|
|
403
413
|
}
|
|
404
414
|
>
|
|
405
415
|
<RNSVGPath
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
fill={4294927175}
|
|
409
|
-
fillRule={0}
|
|
416
|
+
d="M1.40005 0.200012C2.00756 0.200012 2.50005 0.692499 2.50005 1.30001V3.61139C3.89715 2.18539 5.84462 1.30001 8.00005 1.30001C11.3544 1.30001 14.2051 3.44426 15.2616 6.43344C15.4641 7.00623 15.1639 7.63468 14.5911 7.83714C14.0183 8.03959 13.3898 7.73937 13.1874 7.16658C12.4318 5.02891 10.3931 3.50001 8.00005 3.50001C6.20162 3.50001 4.60329 4.36353 3.59934 5.70001H6.90005C7.50756 5.70001 8.00005 6.1925 8.00005 6.80001C8.00005 7.40752 7.50756 7.90001 6.90005 7.90001H1.40005C0.792536 7.90001 0.300049 7.40752 0.300049 6.80001V1.30001C0.300049 0.692499 0.792536 0.200012 1.40005 0.200012ZM1.40903 10.1629C1.98182 9.96044 2.61027 10.2607 2.81273 10.8334C3.56828 12.9711 5.60703 14.5 8.00005 14.5C9.79847 14.5 11.3968 13.6365 12.4008 12.3L9.10005 12.3C8.49254 12.3 8.00005 11.8075 8.00005 11.2C8.00005 10.5925 8.49254 10.1 9.10005 10.1H14.6C14.8918 10.1 15.1716 10.2159 15.3779 10.4222C15.5842 10.6285 15.7 10.9083 15.7 11.2V16.7C15.7 17.3075 15.2076 17.8 14.6 17.8C13.9925 17.8 13.5 17.3075 13.5 16.7V14.3886C12.1029 15.8146 10.1555 16.7 8.00005 16.7C4.6457 16.7 1.795 14.5558 0.738478 11.5666C0.536026 10.9938 0.836243 10.3653 1.40903 10.1629Z"
|
|
417
|
+
fill={4279837036}
|
|
410
418
|
propList={
|
|
411
419
|
[
|
|
412
420
|
"fill",
|
|
413
|
-
"fillRule",
|
|
414
421
|
]
|
|
415
422
|
}
|
|
416
423
|
/>
|
|
@@ -418,14 +425,14 @@ exports[`test icons render a solid trash icon in a tomato color 1`] = `
|
|
|
418
425
|
</RNSVGSvgView>
|
|
419
426
|
`;
|
|
420
427
|
|
|
421
|
-
exports[`test icons render
|
|
428
|
+
exports[`test icons render a solid status-online icon in a navy color 1`] = `
|
|
422
429
|
<RNSVGSvgView
|
|
423
430
|
align="xMidYMid"
|
|
424
|
-
bbHeight=
|
|
425
|
-
bbWidth=
|
|
431
|
+
bbHeight={24}
|
|
432
|
+
bbWidth={24}
|
|
426
433
|
fill="none"
|
|
427
434
|
focusable={false}
|
|
428
|
-
height=
|
|
435
|
+
height={24}
|
|
429
436
|
meetOrSlice={0}
|
|
430
437
|
minX={0}
|
|
431
438
|
minY={0}
|
|
@@ -437,14 +444,14 @@ exports[`test icons render an outlined calendar icon in the main color 1`] = `
|
|
|
437
444
|
},
|
|
438
445
|
{
|
|
439
446
|
"flex": 0,
|
|
440
|
-
"height":
|
|
441
|
-
"width":
|
|
447
|
+
"height": 24,
|
|
448
|
+
"width": 24,
|
|
442
449
|
},
|
|
443
450
|
]
|
|
444
451
|
}
|
|
445
|
-
vbHeight={
|
|
446
|
-
vbWidth={
|
|
447
|
-
width=
|
|
452
|
+
vbHeight={17}
|
|
453
|
+
vbWidth={20}
|
|
454
|
+
width={24}
|
|
448
455
|
>
|
|
449
456
|
<RNSVGGroup
|
|
450
457
|
fill={null}
|
|
@@ -455,32 +462,29 @@ exports[`test icons render an outlined calendar icon in the main color 1`] = `
|
|
|
455
462
|
}
|
|
456
463
|
>
|
|
457
464
|
<RNSVGPath
|
|
458
|
-
|
|
465
|
+
clipRule={0}
|
|
466
|
+
d="M4.55538 1.18119C4.98495 1.63029 4.98495 2.35843 4.55538 2.80753C1.54834 5.95125 1.54834 11.0482 4.55537 14.192C4.98495 14.6411 4.98495 15.3692 4.55537 15.8183C4.1258 16.2674 3.42932 16.2674 2.99974 15.8183C-0.86645 11.7764 -0.86645 5.22311 2.99974 1.18119C3.42932 0.732085 4.1258 0.732085 4.55538 1.18119ZM15.4448 1.18145C15.8744 0.732352 16.5709 0.732352 17.0005 1.18145C20.8667 5.22338 20.8667 11.7766 17.0005 15.8186C16.5709 16.2677 15.8744 16.2677 15.4448 15.8186C15.0153 15.3695 15.0153 14.6413 15.4448 14.1922C18.4519 11.0485 18.4519 5.95152 15.4448 2.8078C15.0153 2.3587 15.0153 1.63056 15.4448 1.18145ZM7.66665 4.43388C8.09623 4.88298 8.09623 5.61112 7.66665 6.06023C6.37792 7.40753 6.37792 9.59195 7.66665 10.9393C8.09623 11.3884 8.09623 12.1165 7.66665 12.5656C7.23707 13.0147 6.54059 13.0147 6.11102 12.5656C3.96313 10.3201 3.96313 6.67939 6.11102 4.43388C6.54059 3.98478 7.23708 3.98478 7.66665 4.43388ZM12.3336 4.43415C12.7631 3.98504 13.4596 3.98504 13.8892 4.43415C16.0371 6.67966 16.0371 10.3204 13.8892 12.5659C13.4596 13.015 12.7631 13.015 12.3336 12.5659C11.904 12.1168 11.904 11.3886 12.3336 10.9395C13.6223 9.59222 13.6223 7.4078 12.3336 6.06049C11.904 5.61139 11.904 4.88325 12.3336 4.43415ZM10.0001 7.35001C10.6076 7.35001 11.1001 7.86488 11.1001 8.50001V8.51151C11.1001 9.14664 10.6076 9.66151 10.0001 9.66151C9.39259 9.66151 8.9001 9.14664 8.9001 8.51151V8.50001C8.9001 7.86488 9.39259 7.35001 10.0001 7.35001Z"
|
|
467
|
+
fill={4278190208}
|
|
468
|
+
fillRule={0}
|
|
459
469
|
propList={
|
|
460
470
|
[
|
|
461
|
-
"
|
|
462
|
-
"
|
|
463
|
-
"strokeLinecap",
|
|
464
|
-
"strokeLinejoin",
|
|
471
|
+
"fill",
|
|
472
|
+
"fillRule",
|
|
465
473
|
]
|
|
466
474
|
}
|
|
467
|
-
stroke={4279837036}
|
|
468
|
-
strokeLinecap={1}
|
|
469
|
-
strokeLinejoin={1}
|
|
470
|
-
strokeWidth="2"
|
|
471
475
|
/>
|
|
472
476
|
</RNSVGGroup>
|
|
473
477
|
</RNSVGSvgView>
|
|
474
478
|
`;
|
|
475
479
|
|
|
476
|
-
exports[`test icons render
|
|
480
|
+
exports[`test icons render a solid trash icon in a tomato color 1`] = `
|
|
477
481
|
<RNSVGSvgView
|
|
478
482
|
align="xMidYMid"
|
|
479
|
-
bbHeight=
|
|
480
|
-
bbWidth=
|
|
483
|
+
bbHeight={24}
|
|
484
|
+
bbWidth={24}
|
|
481
485
|
fill="none"
|
|
482
486
|
focusable={false}
|
|
483
|
-
height=
|
|
487
|
+
height={24}
|
|
484
488
|
meetOrSlice={0}
|
|
485
489
|
minX={0}
|
|
486
490
|
minY={0}
|
|
@@ -492,14 +496,14 @@ exports[`test icons render an outlined chat icon in the main color 1`] = `
|
|
|
492
496
|
},
|
|
493
497
|
{
|
|
494
498
|
"flex": 0,
|
|
495
|
-
"height":
|
|
496
|
-
"width":
|
|
499
|
+
"height": 24,
|
|
500
|
+
"width": 24,
|
|
497
501
|
},
|
|
498
502
|
]
|
|
499
503
|
}
|
|
500
|
-
vbHeight={
|
|
501
|
-
vbWidth={
|
|
502
|
-
width=
|
|
504
|
+
vbHeight={18}
|
|
505
|
+
vbWidth={17}
|
|
506
|
+
width={24}
|
|
503
507
|
>
|
|
504
508
|
<RNSVGGroup
|
|
505
509
|
fill={null}
|
|
@@ -510,32 +514,29 @@ exports[`test icons render an outlined chat icon in the main color 1`] = `
|
|
|
510
514
|
}
|
|
511
515
|
>
|
|
512
516
|
<RNSVGPath
|
|
513
|
-
|
|
517
|
+
clipRule={0}
|
|
518
|
+
d="M7.34995 0.200012C6.91436 0.200012 6.51616 0.435415 6.32136 0.808077L5.48921 2.40001H1.59995C0.964824 2.40001 0.449951 2.8925 0.449951 3.50001C0.449951 4.10753 0.964824 4.60001 1.59995 4.60001L1.59995 15.6C1.59995 16.815 2.6297 17.8 3.89995 17.8H13.1C14.3702 17.8 15.4 16.815 15.4 15.6V4.60001C16.0351 4.60001 16.55 4.10753 16.55 3.50001C16.55 2.8925 16.0351 2.40001 15.4 2.40001H11.5107L10.6785 0.808077C10.4837 0.435415 10.0855 0.200012 9.64995 0.200012H7.34995ZM5.04995 6.80001C5.04995 6.1925 5.56482 5.70001 6.19995 5.70001C6.83508 5.70001 7.34995 6.1925 7.34995 6.80001V13.4C7.34995 14.0075 6.83508 14.5 6.19995 14.5C5.56482 14.5 5.04995 14.0075 5.04995 13.4V6.80001ZM10.8 5.70001C10.1648 5.70001 9.64995 6.1925 9.64995 6.80001V13.4C9.64995 14.0075 10.1648 14.5 10.8 14.5C11.4351 14.5 11.95 14.0075 11.95 13.4V6.80001C11.95 6.1925 11.4351 5.70001 10.8 5.70001Z"
|
|
519
|
+
fill={4294927175}
|
|
520
|
+
fillRule={0}
|
|
514
521
|
propList={
|
|
515
522
|
[
|
|
516
|
-
"
|
|
517
|
-
"
|
|
518
|
-
"strokeLinecap",
|
|
519
|
-
"strokeLinejoin",
|
|
523
|
+
"fill",
|
|
524
|
+
"fillRule",
|
|
520
525
|
]
|
|
521
526
|
}
|
|
522
|
-
stroke={4279837036}
|
|
523
|
-
strokeLinecap={1}
|
|
524
|
-
strokeLinejoin={1}
|
|
525
|
-
strokeWidth="2"
|
|
526
527
|
/>
|
|
527
528
|
</RNSVGGroup>
|
|
528
529
|
</RNSVGSvgView>
|
|
529
530
|
`;
|
|
530
531
|
|
|
531
|
-
exports[`test icons render an outlined
|
|
532
|
+
exports[`test icons render an outlined calendar icon in the main color 1`] = `
|
|
532
533
|
<RNSVGSvgView
|
|
533
534
|
align="xMidYMid"
|
|
534
|
-
bbHeight=
|
|
535
|
-
bbWidth=
|
|
535
|
+
bbHeight={24}
|
|
536
|
+
bbWidth={24}
|
|
536
537
|
fill="none"
|
|
537
538
|
focusable={false}
|
|
538
|
-
height=
|
|
539
|
+
height={24}
|
|
539
540
|
meetOrSlice={0}
|
|
540
541
|
minX={0}
|
|
541
542
|
minY={0}
|
|
@@ -547,14 +548,14 @@ exports[`test icons render an outlined chat-alt icon in a grey color 1`] = `
|
|
|
547
548
|
},
|
|
548
549
|
{
|
|
549
550
|
"flex": 0,
|
|
550
|
-
"height":
|
|
551
|
-
"width":
|
|
551
|
+
"height": 24,
|
|
552
|
+
"width": 24,
|
|
552
553
|
},
|
|
553
554
|
]
|
|
554
555
|
}
|
|
555
|
-
vbHeight={
|
|
556
|
-
vbWidth={
|
|
557
|
-
width=
|
|
556
|
+
vbHeight={24}
|
|
557
|
+
vbWidth={24}
|
|
558
|
+
width={24}
|
|
558
559
|
>
|
|
559
560
|
<RNSVGGroup
|
|
560
561
|
fill={null}
|
|
@@ -565,7 +566,7 @@ exports[`test icons render an outlined chat-alt icon in a grey color 1`] = `
|
|
|
565
566
|
}
|
|
566
567
|
>
|
|
567
568
|
<RNSVGPath
|
|
568
|
-
d="
|
|
569
|
+
d="M7.33333 6.16667V1.5M16.6667 6.16667V1.5M6.16667 10.8333H17.8333M3.83333 22.5H20.1667C21.4553 22.5 22.5 21.4553 22.5 20.1667V6.16667C22.5 4.878 21.4553 3.83333 20.1667 3.83333H3.83333C2.54467 3.83333 1.5 4.878 1.5 6.16667V20.1667C1.5 21.4553 2.54467 22.5 3.83333 22.5Z"
|
|
569
570
|
propList={
|
|
570
571
|
[
|
|
571
572
|
"stroke",
|
|
@@ -574,7 +575,7 @@ exports[`test icons render an outlined chat-alt icon in a grey color 1`] = `
|
|
|
574
575
|
"strokeLinejoin",
|
|
575
576
|
]
|
|
576
577
|
}
|
|
577
|
-
stroke={
|
|
578
|
+
stroke={4279837036}
|
|
578
579
|
strokeLinecap={1}
|
|
579
580
|
strokeLinejoin={1}
|
|
580
581
|
strokeWidth="2"
|
|
@@ -583,14 +584,14 @@ exports[`test icons render an outlined chat-alt icon in a grey color 1`] = `
|
|
|
583
584
|
</RNSVGSvgView>
|
|
584
585
|
`;
|
|
585
586
|
|
|
586
|
-
exports[`test icons render an outlined
|
|
587
|
+
exports[`test icons render an outlined chat icon in the main color 1`] = `
|
|
587
588
|
<RNSVGSvgView
|
|
588
589
|
align="xMidYMid"
|
|
589
|
-
bbHeight=
|
|
590
|
-
bbWidth=
|
|
590
|
+
bbHeight={24}
|
|
591
|
+
bbWidth={24}
|
|
591
592
|
fill="none"
|
|
592
593
|
focusable={false}
|
|
593
|
-
height=
|
|
594
|
+
height={24}
|
|
594
595
|
meetOrSlice={0}
|
|
595
596
|
minX={0}
|
|
596
597
|
minY={0}
|
|
@@ -602,14 +603,14 @@ exports[`test icons render an outlined check-circle icon in a grey color 1`] = `
|
|
|
602
603
|
},
|
|
603
604
|
{
|
|
604
605
|
"flex": 0,
|
|
605
|
-
"height":
|
|
606
|
-
"width":
|
|
606
|
+
"height": 24,
|
|
607
|
+
"width": 24,
|
|
607
608
|
},
|
|
608
609
|
]
|
|
609
610
|
}
|
|
610
|
-
vbHeight={
|
|
611
|
-
vbWidth={
|
|
612
|
-
width=
|
|
611
|
+
vbHeight={21}
|
|
612
|
+
vbWidth={23}
|
|
613
|
+
width={24}
|
|
613
614
|
>
|
|
614
615
|
<RNSVGGroup
|
|
615
616
|
fill={null}
|
|
@@ -620,7 +621,7 @@ exports[`test icons render an outlined check-circle icon in a grey color 1`] = `
|
|
|
620
621
|
}
|
|
621
622
|
>
|
|
622
623
|
<RNSVGPath
|
|
623
|
-
d="
|
|
624
|
+
d="M7 10.5H7.01125M11.5 10.5H11.5113M16 10.5H16.0113M21.625 10.5C21.625 15.4706 17.0919 19.5 11.5 19.5C9.76832 19.5 8.13818 19.1136 6.71275 18.4324L1.375 19.5L2.94436 15.315C1.95051 13.9226 1.375 12.2711 1.375 10.5C1.375 5.52944 5.90812 1.5 11.5 1.5C17.0919 1.5 21.625 5.52944 21.625 10.5Z"
|
|
624
625
|
propList={
|
|
625
626
|
[
|
|
626
627
|
"stroke",
|
|
@@ -629,7 +630,7 @@ exports[`test icons render an outlined check-circle icon in a grey color 1`] = `
|
|
|
629
630
|
"strokeLinejoin",
|
|
630
631
|
]
|
|
631
632
|
}
|
|
632
|
-
stroke={
|
|
633
|
+
stroke={4279837036}
|
|
633
634
|
strokeLinecap={1}
|
|
634
635
|
strokeLinejoin={1}
|
|
635
636
|
strokeWidth="2"
|
|
@@ -638,14 +639,14 @@ exports[`test icons render an outlined check-circle icon in a grey color 1`] = `
|
|
|
638
639
|
</RNSVGSvgView>
|
|
639
640
|
`;
|
|
640
641
|
|
|
641
|
-
exports[`test icons render an outlined
|
|
642
|
+
exports[`test icons render an outlined chat-alt icon in a grey color and a size of 20px 1`] = `
|
|
642
643
|
<RNSVGSvgView
|
|
643
644
|
align="xMidYMid"
|
|
644
|
-
bbHeight=
|
|
645
|
-
bbWidth=
|
|
645
|
+
bbHeight={20}
|
|
646
|
+
bbWidth={20}
|
|
646
647
|
fill="none"
|
|
647
648
|
focusable={false}
|
|
648
|
-
height=
|
|
649
|
+
height={20}
|
|
649
650
|
meetOrSlice={0}
|
|
650
651
|
minX={0}
|
|
651
652
|
minY={0}
|
|
@@ -657,14 +658,14 @@ exports[`test icons render an outlined chevron-left icon in a white color 1`] =
|
|
|
657
658
|
},
|
|
658
659
|
{
|
|
659
660
|
"flex": 0,
|
|
660
|
-
"height":
|
|
661
|
-
"width":
|
|
661
|
+
"height": 20,
|
|
662
|
+
"width": 20,
|
|
662
663
|
},
|
|
663
664
|
]
|
|
664
665
|
}
|
|
665
|
-
vbHeight={
|
|
666
|
-
vbWidth={
|
|
667
|
-
width=
|
|
666
|
+
vbHeight={22}
|
|
667
|
+
vbWidth={23}
|
|
668
|
+
width={20}
|
|
668
669
|
>
|
|
669
670
|
<RNSVGGroup
|
|
670
671
|
fill={null}
|
|
@@ -675,7 +676,7 @@ exports[`test icons render an outlined chevron-left icon in a white color 1`] =
|
|
|
675
676
|
}
|
|
676
677
|
>
|
|
677
678
|
<RNSVGPath
|
|
678
|
-
d="
|
|
679
|
+
d="M7 8.25H7.01125M11.5 8.25H11.5113M16 8.25H16.0113M8.125 15H3.625C2.38236 15 1.375 13.9926 1.375 12.75V3.75C1.375 2.50736 2.38236 1.5 3.625 1.5H19.375C20.6176 1.5 21.625 2.50736 21.625 3.75V12.75C21.625 13.9926 20.6176 15 19.375 15H13.75L8.125 20.625V15Z"
|
|
679
680
|
propList={
|
|
680
681
|
[
|
|
681
682
|
"stroke",
|
|
@@ -684,7 +685,7 @@ exports[`test icons render an outlined chevron-left icon in a white color 1`] =
|
|
|
684
685
|
"strokeLinejoin",
|
|
685
686
|
]
|
|
686
687
|
}
|
|
687
|
-
stroke={
|
|
688
|
+
stroke={4286611584}
|
|
688
689
|
strokeLinecap={1}
|
|
689
690
|
strokeLinejoin={1}
|
|
690
691
|
strokeWidth="2"
|
|
@@ -693,14 +694,14 @@ exports[`test icons render an outlined chevron-left icon in a white color 1`] =
|
|
|
693
694
|
</RNSVGSvgView>
|
|
694
695
|
`;
|
|
695
696
|
|
|
696
|
-
exports[`test icons render an outlined
|
|
697
|
+
exports[`test icons render an outlined check-circle icon in a grey color 1`] = `
|
|
697
698
|
<RNSVGSvgView
|
|
698
699
|
align="xMidYMid"
|
|
699
|
-
bbHeight=
|
|
700
|
-
bbWidth=
|
|
700
|
+
bbHeight={24}
|
|
701
|
+
bbWidth={24}
|
|
701
702
|
fill="none"
|
|
702
703
|
focusable={false}
|
|
703
|
-
height=
|
|
704
|
+
height={24}
|
|
704
705
|
meetOrSlice={0}
|
|
705
706
|
minX={0}
|
|
706
707
|
minY={0}
|
|
@@ -712,14 +713,14 @@ exports[`test icons render an outlined chevron-right icon in a white color 1`] =
|
|
|
712
713
|
},
|
|
713
714
|
{
|
|
714
715
|
"flex": 0,
|
|
715
|
-
"height":
|
|
716
|
-
"width":
|
|
716
|
+
"height": 24,
|
|
717
|
+
"width": 24,
|
|
717
718
|
},
|
|
718
719
|
]
|
|
719
720
|
}
|
|
720
|
-
vbHeight={
|
|
721
|
-
vbWidth={
|
|
722
|
-
width=
|
|
721
|
+
vbHeight={23}
|
|
722
|
+
vbWidth={23}
|
|
723
|
+
width={24}
|
|
723
724
|
>
|
|
724
725
|
<RNSVGGroup
|
|
725
726
|
fill={null}
|
|
@@ -730,7 +731,7 @@ exports[`test icons render an outlined chevron-right icon in a white color 1`] =
|
|
|
730
731
|
}
|
|
731
732
|
>
|
|
732
733
|
<RNSVGPath
|
|
733
|
-
d="
|
|
734
|
+
d="M8.125 11.5L10.375 13.75L14.875 9.25M21.625 11.5C21.625 17.0919 17.0919 21.625 11.5 21.625C5.90812 21.625 1.375 17.0919 1.375 11.5C1.375 5.90812 5.90812 1.375 11.5 1.375C17.0919 1.375 21.625 5.90812 21.625 11.5Z"
|
|
734
735
|
propList={
|
|
735
736
|
[
|
|
736
737
|
"stroke",
|
|
@@ -739,7 +740,7 @@ exports[`test icons render an outlined chevron-right icon in a white color 1`] =
|
|
|
739
740
|
"strokeLinejoin",
|
|
740
741
|
]
|
|
741
742
|
}
|
|
742
|
-
stroke={
|
|
743
|
+
stroke={4286611584}
|
|
743
744
|
strokeLinecap={1}
|
|
744
745
|
strokeLinejoin={1}
|
|
745
746
|
strokeWidth="2"
|
|
@@ -748,14 +749,14 @@ exports[`test icons render an outlined chevron-right icon in a white color 1`] =
|
|
|
748
749
|
</RNSVGSvgView>
|
|
749
750
|
`;
|
|
750
751
|
|
|
751
|
-
exports[`test icons render an outlined
|
|
752
|
+
exports[`test icons render an outlined chevron-left icon in a white color 1`] = `
|
|
752
753
|
<RNSVGSvgView
|
|
753
754
|
align="xMidYMid"
|
|
754
|
-
bbHeight=
|
|
755
|
-
bbWidth=
|
|
755
|
+
bbHeight={24}
|
|
756
|
+
bbWidth={24}
|
|
756
757
|
fill="none"
|
|
757
758
|
focusable={false}
|
|
758
|
-
height=
|
|
759
|
+
height={24}
|
|
759
760
|
meetOrSlice={0}
|
|
760
761
|
minX={0}
|
|
761
762
|
minY={0}
|
|
@@ -767,14 +768,14 @@ exports[`test icons render an outlined clock icon in the main color 1`] = `
|
|
|
767
768
|
},
|
|
768
769
|
{
|
|
769
770
|
"flex": 0,
|
|
770
|
-
"height":
|
|
771
|
-
"width":
|
|
771
|
+
"height": 24,
|
|
772
|
+
"width": 24,
|
|
772
773
|
},
|
|
773
774
|
]
|
|
774
775
|
}
|
|
775
|
-
vbHeight={
|
|
776
|
-
vbWidth={
|
|
777
|
-
width=
|
|
776
|
+
vbHeight={19}
|
|
777
|
+
vbWidth={10}
|
|
778
|
+
width={24}
|
|
778
779
|
>
|
|
779
780
|
<RNSVGGroup
|
|
780
781
|
fill={null}
|
|
@@ -785,7 +786,7 @@ exports[`test icons render an outlined clock icon in the main color 1`] = `
|
|
|
785
786
|
}
|
|
786
787
|
>
|
|
787
788
|
<RNSVGPath
|
|
788
|
-
d="
|
|
789
|
+
d="M8.875 17.375L1 9.5L8.875 1.625"
|
|
789
790
|
propList={
|
|
790
791
|
[
|
|
791
792
|
"stroke",
|
|
@@ -794,7 +795,7 @@ exports[`test icons render an outlined clock icon in the main color 1`] = `
|
|
|
794
795
|
"strokeLinejoin",
|
|
795
796
|
]
|
|
796
797
|
}
|
|
797
|
-
stroke={
|
|
798
|
+
stroke={4294967295}
|
|
798
799
|
strokeLinecap={1}
|
|
799
800
|
strokeLinejoin={1}
|
|
800
801
|
strokeWidth="2"
|
|
@@ -803,14 +804,14 @@ exports[`test icons render an outlined clock icon in the main color 1`] = `
|
|
|
803
804
|
</RNSVGSvgView>
|
|
804
805
|
`;
|
|
805
806
|
|
|
806
|
-
exports[`test icons render an outlined
|
|
807
|
+
exports[`test icons render an outlined chevron-right icon in a white color 1`] = `
|
|
807
808
|
<RNSVGSvgView
|
|
808
809
|
align="xMidYMid"
|
|
809
|
-
bbHeight=
|
|
810
|
-
bbWidth=
|
|
810
|
+
bbHeight={24}
|
|
811
|
+
bbWidth={24}
|
|
811
812
|
fill="none"
|
|
812
813
|
focusable={false}
|
|
813
|
-
height=
|
|
814
|
+
height={24}
|
|
814
815
|
meetOrSlice={0}
|
|
815
816
|
minX={0}
|
|
816
817
|
minY={0}
|
|
@@ -822,14 +823,14 @@ exports[`test icons render an outlined cloud-download icon in a grey color 1`] =
|
|
|
822
823
|
},
|
|
823
824
|
{
|
|
824
825
|
"flex": 0,
|
|
825
|
-
"height":
|
|
826
|
-
"width":
|
|
826
|
+
"height": 24,
|
|
827
|
+
"width": 24,
|
|
827
828
|
},
|
|
828
829
|
]
|
|
829
830
|
}
|
|
830
|
-
vbHeight={
|
|
831
|
-
vbWidth={
|
|
832
|
-
width=
|
|
831
|
+
vbHeight={19}
|
|
832
|
+
vbWidth={11}
|
|
833
|
+
width={24}
|
|
833
834
|
>
|
|
834
835
|
<RNSVGGroup
|
|
835
836
|
fill={null}
|
|
@@ -840,7 +841,7 @@ exports[`test icons render an outlined cloud-download icon in a grey color 1`] =
|
|
|
840
841
|
}
|
|
841
842
|
>
|
|
842
843
|
<RNSVGPath
|
|
843
|
-
d="
|
|
844
|
+
d="M1.75 1.625L9.33333 9.5L1.75 17.375"
|
|
844
845
|
propList={
|
|
845
846
|
[
|
|
846
847
|
"stroke",
|
|
@@ -849,7 +850,7 @@ exports[`test icons render an outlined cloud-download icon in a grey color 1`] =
|
|
|
849
850
|
"strokeLinejoin",
|
|
850
851
|
]
|
|
851
852
|
}
|
|
852
|
-
stroke={
|
|
853
|
+
stroke={4294967295}
|
|
853
854
|
strokeLinecap={1}
|
|
854
855
|
strokeLinejoin={1}
|
|
855
856
|
strokeWidth="2"
|
|
@@ -858,14 +859,14 @@ exports[`test icons render an outlined cloud-download icon in a grey color 1`] =
|
|
|
858
859
|
</RNSVGSvgView>
|
|
859
860
|
`;
|
|
860
861
|
|
|
861
|
-
exports[`test icons render an outlined
|
|
862
|
+
exports[`test icons render an outlined clock icon in the main color 1`] = `
|
|
862
863
|
<RNSVGSvgView
|
|
863
864
|
align="xMidYMid"
|
|
864
|
-
bbHeight=
|
|
865
|
-
bbWidth=
|
|
865
|
+
bbHeight={24}
|
|
866
|
+
bbWidth={24}
|
|
866
867
|
fill="none"
|
|
867
868
|
focusable={false}
|
|
868
|
-
height=
|
|
869
|
+
height={24}
|
|
869
870
|
meetOrSlice={0}
|
|
870
871
|
minX={0}
|
|
871
872
|
minY={0}
|
|
@@ -877,14 +878,14 @@ exports[`test icons render an outlined cross icon in the main color 1`] = `
|
|
|
877
878
|
},
|
|
878
879
|
{
|
|
879
880
|
"flex": 0,
|
|
880
|
-
"height":
|
|
881
|
-
"width":
|
|
881
|
+
"height": 24,
|
|
882
|
+
"width": 24,
|
|
882
883
|
},
|
|
883
884
|
]
|
|
884
885
|
}
|
|
885
|
-
vbHeight={
|
|
886
|
-
vbWidth={
|
|
887
|
-
width=
|
|
886
|
+
vbHeight={22}
|
|
887
|
+
vbWidth={23}
|
|
888
|
+
width={24}
|
|
888
889
|
>
|
|
889
890
|
<RNSVGGroup
|
|
890
891
|
fill={null}
|
|
@@ -895,7 +896,7 @@ exports[`test icons render an outlined cross icon in the main color 1`] = `
|
|
|
895
896
|
}
|
|
896
897
|
>
|
|
897
898
|
<RNSVGPath
|
|
898
|
-
d="
|
|
899
|
+
d="M11.5 6.66667V11L14.875 14.25M21.625 11C21.625 16.3848 17.0919 20.75 11.5 20.75C5.90812 20.75 1.375 16.3848 1.375 11C1.375 5.61522 5.90812 1.25 11.5 1.25C17.0919 1.25 21.625 5.61522 21.625 11Z"
|
|
899
900
|
propList={
|
|
900
901
|
[
|
|
901
902
|
"stroke",
|
|
@@ -913,14 +914,14 @@ exports[`test icons render an outlined cross icon in the main color 1`] = `
|
|
|
913
914
|
</RNSVGSvgView>
|
|
914
915
|
`;
|
|
915
916
|
|
|
916
|
-
exports[`test icons render an outlined
|
|
917
|
+
exports[`test icons render an outlined cloud-download icon in a grey color with a size of 16px 1`] = `
|
|
917
918
|
<RNSVGSvgView
|
|
918
919
|
align="xMidYMid"
|
|
919
|
-
bbHeight=
|
|
920
|
-
bbWidth=
|
|
920
|
+
bbHeight={16}
|
|
921
|
+
bbWidth={16}
|
|
921
922
|
fill="none"
|
|
922
923
|
focusable={false}
|
|
923
|
-
height=
|
|
924
|
+
height={16}
|
|
924
925
|
meetOrSlice={0}
|
|
925
926
|
minX={0}
|
|
926
927
|
minY={0}
|
|
@@ -932,14 +933,14 @@ exports[`test icons render an outlined currency-euro icon in a red color 1`] = `
|
|
|
932
933
|
},
|
|
933
934
|
{
|
|
934
935
|
"flex": 0,
|
|
935
|
-
"height":
|
|
936
|
-
"width":
|
|
936
|
+
"height": 16,
|
|
937
|
+
"width": 16,
|
|
937
938
|
},
|
|
938
939
|
]
|
|
939
940
|
}
|
|
940
|
-
vbHeight={
|
|
941
|
-
vbWidth={
|
|
942
|
-
width=
|
|
941
|
+
vbHeight={25}
|
|
942
|
+
vbWidth={23}
|
|
943
|
+
width={16}
|
|
943
944
|
>
|
|
944
945
|
<RNSVGGroup
|
|
945
946
|
fill={null}
|
|
@@ -950,7 +951,7 @@ exports[`test icons render an outlined currency-euro icon in a red color 1`] = `
|
|
|
950
951
|
}
|
|
951
952
|
>
|
|
952
953
|
<RNSVGPath
|
|
953
|
-
d="
|
|
954
|
+
d="M5.875 17C3.38972 17 1.375 14.9853 1.375 12.5C1.375 10.3546 2.87639 8.5598 4.8858 8.10907C4.7969 7.71194 4.75 7.29895 4.75 6.875C4.75 3.7684 7.2684 1.25 10.375 1.25C13.0967 1.25 15.3669 3.18303 15.8877 5.7511C15.925 5.75037 15.9625 5.75 16 5.75C19.1066 5.75 21.625 8.2684 21.625 11.375C21.625 14.0963 19.6925 16.3663 17.125 16.8875M8.125 20.375L11.5 23.75M11.5 23.75L14.875 20.375M11.5 23.75V10.25"
|
|
954
955
|
propList={
|
|
955
956
|
[
|
|
956
957
|
"stroke",
|
|
@@ -959,7 +960,7 @@ exports[`test icons render an outlined currency-euro icon in a red color 1`] = `
|
|
|
959
960
|
"strokeLinejoin",
|
|
960
961
|
]
|
|
961
962
|
}
|
|
962
|
-
stroke={
|
|
963
|
+
stroke={4286611584}
|
|
963
964
|
strokeLinecap={1}
|
|
964
965
|
strokeLinejoin={1}
|
|
965
966
|
strokeWidth="2"
|
|
@@ -968,14 +969,14 @@ exports[`test icons render an outlined currency-euro icon in a red color 1`] = `
|
|
|
968
969
|
</RNSVGSvgView>
|
|
969
970
|
`;
|
|
970
971
|
|
|
971
|
-
exports[`test icons render an outlined
|
|
972
|
+
exports[`test icons render an outlined currency-euro icon in a red color 1`] = `
|
|
972
973
|
<RNSVGSvgView
|
|
973
974
|
align="xMidYMid"
|
|
974
|
-
bbHeight=
|
|
975
|
-
bbWidth=
|
|
975
|
+
bbHeight={24}
|
|
976
|
+
bbWidth={24}
|
|
976
977
|
fill="none"
|
|
977
978
|
focusable={false}
|
|
978
|
-
height=
|
|
979
|
+
height={24}
|
|
979
980
|
meetOrSlice={0}
|
|
980
981
|
minX={0}
|
|
981
982
|
minY={0}
|
|
@@ -987,14 +988,14 @@ exports[`test icons render an outlined document-text icon in a white color 1`] =
|
|
|
987
988
|
},
|
|
988
989
|
{
|
|
989
990
|
"flex": 0,
|
|
990
|
-
"height":
|
|
991
|
-
"width":
|
|
991
|
+
"height": 24,
|
|
992
|
+
"width": 24,
|
|
992
993
|
},
|
|
993
994
|
]
|
|
994
995
|
}
|
|
995
|
-
vbHeight={
|
|
996
|
-
vbWidth={
|
|
997
|
-
width=
|
|
996
|
+
vbHeight={23}
|
|
997
|
+
vbWidth={22}
|
|
998
|
+
width={24}
|
|
998
999
|
>
|
|
999
1000
|
<RNSVGGroup
|
|
1000
1001
|
fill={null}
|
|
@@ -1005,7 +1006,7 @@ exports[`test icons render an outlined document-text icon in a white color 1`] =
|
|
|
1005
1006
|
}
|
|
1006
1007
|
>
|
|
1007
1008
|
<RNSVGPath
|
|
1008
|
-
d="
|
|
1009
|
+
d="M13.2981 15.4775C12.0289 17.6742 9.97111 17.6742 8.7019 15.4775C7.4327 13.2808 7.4327 9.71922 8.7019 7.52252C9.97111 5.32583 12.0289 5.32583 13.2981 7.52252M6.66667 9.8125H11M6.66667 13.1875H11M20.75 11.5C20.75 17.0919 16.3848 21.625 11 21.625C5.61522 21.625 1.25 17.0919 1.25 11.5C1.25 5.90812 5.61522 1.375 11 1.375C16.3848 1.375 20.75 5.90812 20.75 11.5Z"
|
|
1009
1010
|
propList={
|
|
1010
1011
|
[
|
|
1011
1012
|
"stroke",
|
|
@@ -1014,7 +1015,7 @@ exports[`test icons render an outlined document-text icon in a white color 1`] =
|
|
|
1014
1015
|
"strokeLinejoin",
|
|
1015
1016
|
]
|
|
1016
1017
|
}
|
|
1017
|
-
stroke={
|
|
1018
|
+
stroke={4294901760}
|
|
1018
1019
|
strokeLinecap={1}
|
|
1019
1020
|
strokeLinejoin={1}
|
|
1020
1021
|
strokeWidth="2"
|
|
@@ -1026,11 +1027,11 @@ exports[`test icons render an outlined document-text icon in a white color 1`] =
|
|
|
1026
1027
|
exports[`test icons render an outlined exclamation icon in a blue color 1`] = `
|
|
1027
1028
|
<RNSVGSvgView
|
|
1028
1029
|
align="xMidYMid"
|
|
1029
|
-
bbHeight=
|
|
1030
|
-
bbWidth=
|
|
1030
|
+
bbHeight={24}
|
|
1031
|
+
bbWidth={24}
|
|
1031
1032
|
fill="none"
|
|
1032
1033
|
focusable={false}
|
|
1033
|
-
height=
|
|
1034
|
+
height={24}
|
|
1034
1035
|
meetOrSlice={0}
|
|
1035
1036
|
minX={0}
|
|
1036
1037
|
minY={0}
|
|
@@ -1042,14 +1043,14 @@ exports[`test icons render an outlined exclamation icon in a blue color 1`] = `
|
|
|
1042
1043
|
},
|
|
1043
1044
|
{
|
|
1044
1045
|
"flex": 0,
|
|
1045
|
-
"height":
|
|
1046
|
-
"width":
|
|
1046
|
+
"height": 24,
|
|
1047
|
+
"width": 24,
|
|
1047
1048
|
},
|
|
1048
1049
|
]
|
|
1049
1050
|
}
|
|
1050
|
-
vbHeight={
|
|
1051
|
-
vbWidth={
|
|
1052
|
-
width=
|
|
1051
|
+
vbHeight={21}
|
|
1052
|
+
vbWidth={23}
|
|
1053
|
+
width={24}
|
|
1053
1054
|
>
|
|
1054
1055
|
<RNSVGGroup
|
|
1055
1056
|
fill={null}
|
|
@@ -1060,7 +1061,7 @@ exports[`test icons render an outlined exclamation icon in a blue color 1`] = `
|
|
|
1060
1061
|
}
|
|
1061
1062
|
>
|
|
1062
1063
|
<RNSVGPath
|
|
1063
|
-
d="
|
|
1064
|
+
d="M11.5 8.125V10.375M11.5 14.875H11.5113M3.70581 19.375H19.2943C21.0263 19.375 22.1088 17.5 21.2428 16L13.4486 2.5C12.5826 1 10.4175 1 9.55148 2.5L1.75725 16C0.891228 17.5 1.97376 19.375 3.70581 19.375Z"
|
|
1064
1065
|
propList={
|
|
1065
1066
|
[
|
|
1066
1067
|
"stroke",
|
|
@@ -1081,11 +1082,11 @@ exports[`test icons render an outlined exclamation icon in a blue color 1`] = `
|
|
|
1081
1082
|
exports[`test icons render an outlined exclamation-circle icon in a pink color 1`] = `
|
|
1082
1083
|
<RNSVGSvgView
|
|
1083
1084
|
align="xMidYMid"
|
|
1084
|
-
bbHeight=
|
|
1085
|
-
bbWidth=
|
|
1085
|
+
bbHeight={24}
|
|
1086
|
+
bbWidth={24}
|
|
1086
1087
|
fill="none"
|
|
1087
1088
|
focusable={false}
|
|
1088
|
-
height=
|
|
1089
|
+
height={24}
|
|
1089
1090
|
meetOrSlice={0}
|
|
1090
1091
|
minX={0}
|
|
1091
1092
|
minY={0}
|
|
@@ -1097,14 +1098,14 @@ exports[`test icons render an outlined exclamation-circle icon in a pink color 1
|
|
|
1097
1098
|
},
|
|
1098
1099
|
{
|
|
1099
1100
|
"flex": 0,
|
|
1100
|
-
"height":
|
|
1101
|
-
"width":
|
|
1101
|
+
"height": 24,
|
|
1102
|
+
"width": 24,
|
|
1102
1103
|
},
|
|
1103
1104
|
]
|
|
1104
1105
|
}
|
|
1105
|
-
vbHeight={
|
|
1106
|
-
vbWidth={
|
|
1107
|
-
width=
|
|
1106
|
+
vbHeight={23}
|
|
1107
|
+
vbWidth={22}
|
|
1108
|
+
width={24}
|
|
1108
1109
|
>
|
|
1109
1110
|
<RNSVGGroup
|
|
1110
1111
|
fill={null}
|
|
@@ -1115,7 +1116,7 @@ exports[`test icons render an outlined exclamation-circle icon in a pink color 1
|
|
|
1115
1116
|
}
|
|
1116
1117
|
>
|
|
1117
1118
|
<RNSVGPath
|
|
1118
|
-
d="
|
|
1119
|
+
d="M11 7V11.5M11 16H11.0108M20.75 11.5C20.75 17.0919 16.3848 21.625 11 21.625C5.61522 21.625 1.25 17.0919 1.25 11.5C1.25 5.90812 5.61522 1.375 11 1.375C16.3848 1.375 20.75 5.90812 20.75 11.5Z"
|
|
1119
1120
|
propList={
|
|
1120
1121
|
[
|
|
1121
1122
|
"stroke",
|
|
@@ -1136,11 +1137,11 @@ exports[`test icons render an outlined exclamation-circle icon in a pink color 1
|
|
|
1136
1137
|
exports[`test icons render an outlined eye icon in a purple color 1`] = `
|
|
1137
1138
|
<RNSVGSvgView
|
|
1138
1139
|
align="xMidYMid"
|
|
1139
|
-
bbHeight=
|
|
1140
|
-
bbWidth=
|
|
1140
|
+
bbHeight={24}
|
|
1141
|
+
bbWidth={24}
|
|
1141
1142
|
fill="none"
|
|
1142
1143
|
focusable={false}
|
|
1143
|
-
height=
|
|
1144
|
+
height={24}
|
|
1144
1145
|
meetOrSlice={0}
|
|
1145
1146
|
minX={0}
|
|
1146
1147
|
minY={0}
|
|
@@ -1152,14 +1153,14 @@ exports[`test icons render an outlined eye icon in a purple color 1`] = `
|
|
|
1152
1153
|
},
|
|
1153
1154
|
{
|
|
1154
1155
|
"flex": 0,
|
|
1155
|
-
"height":
|
|
1156
|
-
"width":
|
|
1156
|
+
"height": 24,
|
|
1157
|
+
"width": 24,
|
|
1157
1158
|
},
|
|
1158
1159
|
]
|
|
1159
1160
|
}
|
|
1160
|
-
vbHeight={
|
|
1161
|
-
vbWidth={
|
|
1162
|
-
width=
|
|
1161
|
+
vbHeight={19}
|
|
1162
|
+
vbWidth={25}
|
|
1163
|
+
width={24}
|
|
1163
1164
|
>
|
|
1164
1165
|
<RNSVGGroup
|
|
1165
1166
|
fill={null}
|
|
@@ -1170,7 +1171,7 @@ exports[`test icons render an outlined eye icon in a purple color 1`] = `
|
|
|
1170
1171
|
}
|
|
1171
1172
|
>
|
|
1172
1173
|
<RNSVGPath
|
|
1173
|
-
d="
|
|
1174
|
+
d="M15.875 9.5C15.875 11.364 14.3639 12.875 12.5 12.875C10.636 12.875 9.12497 11.364 9.12497 9.5C9.12497 7.63604 10.636 6.125 12.5 6.125C14.3639 6.125 15.875 7.63604 15.875 9.5Z"
|
|
1174
1175
|
propList={
|
|
1175
1176
|
[
|
|
1176
1177
|
"stroke",
|
|
@@ -1185,7 +1186,7 @@ exports[`test icons render an outlined eye icon in a purple color 1`] = `
|
|
|
1185
1186
|
strokeWidth="2"
|
|
1186
1187
|
/>
|
|
1187
1188
|
<RNSVGPath
|
|
1188
|
-
d="
|
|
1189
|
+
d="M1.7655 9.49996C3.19906 4.93574 7.46313 1.625 12.5005 1.625C17.5378 1.625 21.8019 4.93578 23.2354 9.50004C21.8019 14.0643 17.5378 17.375 12.5005 17.375C7.46313 17.375 3.19904 14.0642 1.7655 9.49996Z"
|
|
1189
1190
|
propList={
|
|
1190
1191
|
[
|
|
1191
1192
|
"stroke",
|
|
@@ -1206,11 +1207,11 @@ exports[`test icons render an outlined eye icon in a purple color 1`] = `
|
|
|
1206
1207
|
exports[`test icons render an outlined filter icon in the main color 1`] = `
|
|
1207
1208
|
<RNSVGSvgView
|
|
1208
1209
|
align="xMidYMid"
|
|
1209
|
-
bbHeight=
|
|
1210
|
-
bbWidth=
|
|
1210
|
+
bbHeight={24}
|
|
1211
|
+
bbWidth={24}
|
|
1211
1212
|
fill="none"
|
|
1212
1213
|
focusable={false}
|
|
1213
|
-
height=
|
|
1214
|
+
height={24}
|
|
1214
1215
|
meetOrSlice={0}
|
|
1215
1216
|
minX={0}
|
|
1216
1217
|
minY={0}
|
|
@@ -1222,14 +1223,14 @@ exports[`test icons render an outlined filter icon in the main color 1`] = `
|
|
|
1222
1223
|
},
|
|
1223
1224
|
{
|
|
1224
1225
|
"flex": 0,
|
|
1225
|
-
"height":
|
|
1226
|
-
"width":
|
|
1226
|
+
"height": 24,
|
|
1227
|
+
"width": 24,
|
|
1227
1228
|
},
|
|
1228
1229
|
]
|
|
1229
1230
|
}
|
|
1230
|
-
vbHeight={
|
|
1231
|
-
vbWidth={
|
|
1232
|
-
width=
|
|
1231
|
+
vbHeight={22}
|
|
1232
|
+
vbWidth={22}
|
|
1233
|
+
width={24}
|
|
1233
1234
|
>
|
|
1234
1235
|
<RNSVGGroup
|
|
1235
1236
|
fill={null}
|
|
@@ -1240,7 +1241,7 @@ exports[`test icons render an outlined filter icon in the main color 1`] = `
|
|
|
1240
1241
|
}
|
|
1241
1242
|
>
|
|
1242
1243
|
<RNSVGPath
|
|
1243
|
-
d="
|
|
1244
|
+
d="M1.25 2.25C1.25 1.69772 1.69772 1.25 2.25 1.25H19.75C20.3023 1.25 20.75 1.69772 20.75 2.25V5.16912C20.75 5.43434 20.6446 5.68869 20.4571 5.87623L13.4596 12.8738C13.272 13.0613 13.1667 13.3157 13.1667 13.5809V16.4167L8.83333 20.75V13.5809C8.83333 13.3157 8.72798 13.0613 8.54044 12.8738L1.54289 5.87623C1.35536 5.68869 1.25 5.43434 1.25 5.16912V2.25Z"
|
|
1244
1245
|
propList={
|
|
1245
1246
|
[
|
|
1246
1247
|
"stroke",
|
|
@@ -1261,11 +1262,11 @@ exports[`test icons render an outlined filter icon in the main color 1`] = `
|
|
|
1261
1262
|
exports[`test icons render an outlined information-circle icon in the main color 1`] = `
|
|
1262
1263
|
<RNSVGSvgView
|
|
1263
1264
|
align="xMidYMid"
|
|
1264
|
-
bbHeight=
|
|
1265
|
-
bbWidth=
|
|
1265
|
+
bbHeight={24}
|
|
1266
|
+
bbWidth={24}
|
|
1266
1267
|
fill="none"
|
|
1267
1268
|
focusable={false}
|
|
1268
|
-
height=
|
|
1269
|
+
height={24}
|
|
1269
1270
|
meetOrSlice={0}
|
|
1270
1271
|
minX={0}
|
|
1271
1272
|
minY={0}
|
|
@@ -1277,14 +1278,14 @@ exports[`test icons render an outlined information-circle icon in the main color
|
|
|
1277
1278
|
},
|
|
1278
1279
|
{
|
|
1279
1280
|
"flex": 0,
|
|
1280
|
-
"height":
|
|
1281
|
-
"width":
|
|
1281
|
+
"height": 24,
|
|
1282
|
+
"width": 24,
|
|
1282
1283
|
},
|
|
1283
1284
|
]
|
|
1284
1285
|
}
|
|
1285
|
-
vbHeight={
|
|
1286
|
-
vbWidth={
|
|
1287
|
-
width=
|
|
1286
|
+
vbHeight={22}
|
|
1287
|
+
vbWidth={22}
|
|
1288
|
+
width={24}
|
|
1288
1289
|
>
|
|
1289
1290
|
<RNSVGGroup
|
|
1290
1291
|
fill={null}
|
|
@@ -1295,7 +1296,7 @@ exports[`test icons render an outlined information-circle icon in the main color
|
|
|
1295
1296
|
}
|
|
1296
1297
|
>
|
|
1297
1298
|
<RNSVGPath
|
|
1298
|
-
d="
|
|
1299
|
+
d="M12.0833 15.3333H11V11H9.91667M11 6.66667H11.0108M20.75 11C20.75 16.3848 16.3848 20.75 11 20.75C5.61522 20.75 1.25 16.3848 1.25 11C1.25 5.61522 5.61522 1.25 11 1.25C16.3848 1.25 20.75 5.61522 20.75 11Z"
|
|
1299
1300
|
propList={
|
|
1300
1301
|
[
|
|
1301
1302
|
"stroke",
|
|
@@ -1316,11 +1317,11 @@ exports[`test icons render an outlined information-circle icon in the main color
|
|
|
1316
1317
|
exports[`test icons render an outlined logout icon in a red color 1`] = `
|
|
1317
1318
|
<RNSVGSvgView
|
|
1318
1319
|
align="xMidYMid"
|
|
1319
|
-
bbHeight=
|
|
1320
|
-
bbWidth=
|
|
1320
|
+
bbHeight={24}
|
|
1321
|
+
bbWidth={24}
|
|
1321
1322
|
fill="none"
|
|
1322
1323
|
focusable={false}
|
|
1323
|
-
height=
|
|
1324
|
+
height={24}
|
|
1324
1325
|
meetOrSlice={0}
|
|
1325
1326
|
minX={0}
|
|
1326
1327
|
minY={0}
|
|
@@ -1330,19 +1331,36 @@ exports[`test icons render an outlined logout icon in a red color 1`] = `
|
|
|
1330
1331
|
"backgroundColor": "transparent",
|
|
1331
1332
|
"borderWidth": 0,
|
|
1332
1333
|
},
|
|
1334
|
+
{
|
|
1335
|
+
"transform": [
|
|
1336
|
+
{
|
|
1337
|
+
"scaleX": -1,
|
|
1338
|
+
},
|
|
1339
|
+
],
|
|
1340
|
+
},
|
|
1333
1341
|
{
|
|
1334
1342
|
"flex": 0,
|
|
1335
|
-
"height":
|
|
1336
|
-
"width":
|
|
1343
|
+
"height": 24,
|
|
1344
|
+
"width": 24,
|
|
1337
1345
|
},
|
|
1338
1346
|
]
|
|
1339
1347
|
}
|
|
1340
|
-
vbHeight={
|
|
1341
|
-
vbWidth={
|
|
1342
|
-
width=
|
|
1348
|
+
vbHeight={21}
|
|
1349
|
+
vbWidth={22}
|
|
1350
|
+
width={24}
|
|
1343
1351
|
>
|
|
1344
1352
|
<RNSVGGroup
|
|
1345
1353
|
fill={null}
|
|
1354
|
+
matrix={
|
|
1355
|
+
[
|
|
1356
|
+
1,
|
|
1357
|
+
0,
|
|
1358
|
+
0,
|
|
1359
|
+
1,
|
|
1360
|
+
0,
|
|
1361
|
+
0,
|
|
1362
|
+
]
|
|
1363
|
+
}
|
|
1346
1364
|
propList={
|
|
1347
1365
|
[
|
|
1348
1366
|
"fill",
|
|
@@ -1350,7 +1368,7 @@ exports[`test icons render an outlined logout icon in a red color 1`] = `
|
|
|
1350
1368
|
}
|
|
1351
1369
|
>
|
|
1352
1370
|
<RNSVGPath
|
|
1353
|
-
d="
|
|
1371
|
+
d="M9.91667 15L5.58333 10.5M5.58333 10.5L9.91667 6M5.58333 10.5L20.75 10.5M15.3333 15V16.125C15.3333 17.989 13.8783 19.5 12.0833 19.5H4.5C2.70507 19.5 1.25 17.989 1.25 16.125V4.875C1.25 3.01104 2.70507 1.5 4.5 1.5H12.0833C13.8783 1.5 15.3333 3.01104 15.3333 4.875V6"
|
|
1354
1372
|
propList={
|
|
1355
1373
|
[
|
|
1356
1374
|
"stroke",
|
|
@@ -1371,11 +1389,11 @@ exports[`test icons render an outlined logout icon in a red color 1`] = `
|
|
|
1371
1389
|
exports[`test icons render an outlined mail icon in a brown color 1`] = `
|
|
1372
1390
|
<RNSVGSvgView
|
|
1373
1391
|
align="xMidYMid"
|
|
1374
|
-
bbHeight=
|
|
1375
|
-
bbWidth=
|
|
1392
|
+
bbHeight={24}
|
|
1393
|
+
bbWidth={24}
|
|
1376
1394
|
fill="none"
|
|
1377
1395
|
focusable={false}
|
|
1378
|
-
height=
|
|
1396
|
+
height={24}
|
|
1379
1397
|
meetOrSlice={0}
|
|
1380
1398
|
minX={0}
|
|
1381
1399
|
minY={0}
|
|
@@ -1387,14 +1405,14 @@ exports[`test icons render an outlined mail icon in a brown color 1`] = `
|
|
|
1387
1405
|
},
|
|
1388
1406
|
{
|
|
1389
1407
|
"flex": 0,
|
|
1390
|
-
"height":
|
|
1391
|
-
"width":
|
|
1408
|
+
"height": 24,
|
|
1409
|
+
"width": 24,
|
|
1392
1410
|
},
|
|
1393
1411
|
]
|
|
1394
1412
|
}
|
|
1395
|
-
vbHeight={
|
|
1396
|
-
vbWidth={
|
|
1397
|
-
width=
|
|
1413
|
+
vbHeight={19}
|
|
1414
|
+
vbWidth={23}
|
|
1415
|
+
width={24}
|
|
1398
1416
|
>
|
|
1399
1417
|
<RNSVGGroup
|
|
1400
1418
|
fill={null}
|
|
@@ -1405,7 +1423,7 @@ exports[`test icons render an outlined mail icon in a brown color 1`] = `
|
|
|
1405
1423
|
}
|
|
1406
1424
|
>
|
|
1407
1425
|
<RNSVGPath
|
|
1408
|
-
d="
|
|
1426
|
+
d="M1.375 5L10.2519 10.9179C11.0077 11.4218 11.9923 11.4218 12.7481 10.9179L21.625 5M3.625 17.375H19.375C20.6176 17.375 21.625 16.3676 21.625 15.125V3.875C21.625 2.63236 20.6176 1.625 19.375 1.625H3.625C2.38236 1.625 1.375 2.63236 1.375 3.875V15.125C1.375 16.3676 2.38236 17.375 3.625 17.375Z"
|
|
1409
1427
|
propList={
|
|
1410
1428
|
[
|
|
1411
1429
|
"stroke",
|
|
@@ -1426,11 +1444,11 @@ exports[`test icons render an outlined mail icon in a brown color 1`] = `
|
|
|
1426
1444
|
exports[`test icons render an outlined mail-open icon in a grey color 1`] = `
|
|
1427
1445
|
<RNSVGSvgView
|
|
1428
1446
|
align="xMidYMid"
|
|
1429
|
-
bbHeight=
|
|
1430
|
-
bbWidth=
|
|
1447
|
+
bbHeight={24}
|
|
1448
|
+
bbWidth={24}
|
|
1431
1449
|
fill="none"
|
|
1432
1450
|
focusable={false}
|
|
1433
|
-
height=
|
|
1451
|
+
height={24}
|
|
1434
1452
|
meetOrSlice={0}
|
|
1435
1453
|
minX={0}
|
|
1436
1454
|
minY={0}
|
|
@@ -1442,14 +1460,14 @@ exports[`test icons render an outlined mail-open icon in a grey color 1`] = `
|
|
|
1442
1460
|
},
|
|
1443
1461
|
{
|
|
1444
1462
|
"flex": 0,
|
|
1445
|
-
"height":
|
|
1446
|
-
"width":
|
|
1463
|
+
"height": 24,
|
|
1464
|
+
"width": 24,
|
|
1447
1465
|
},
|
|
1448
1466
|
]
|
|
1449
1467
|
}
|
|
1450
|
-
vbHeight={
|
|
1451
|
-
vbWidth={
|
|
1452
|
-
width=
|
|
1468
|
+
vbHeight={22}
|
|
1469
|
+
vbWidth={23}
|
|
1470
|
+
width={24}
|
|
1453
1471
|
>
|
|
1454
1472
|
<RNSVGGroup
|
|
1455
1473
|
fill={null}
|
|
@@ -1460,7 +1478,7 @@ exports[`test icons render an outlined mail-open icon in a grey color 1`] = `
|
|
|
1460
1478
|
}
|
|
1461
1479
|
>
|
|
1462
1480
|
<RNSVGPath
|
|
1463
|
-
d="
|
|
1481
|
+
d="M1.375 18.5833V8.90954C1.375 8.18511 1.75098 7.50861 2.37692 7.10676L10.2519 2.05121C11.0077 1.56602 11.9923 1.56602 12.7481 2.05121L20.6231 7.10676C21.249 7.50861 21.625 8.18511 21.625 8.90954V18.5833M1.375 18.5833C1.375 19.7799 2.38236 20.75 3.625 20.75H19.375C20.6176 20.75 21.625 19.7799 21.625 18.5833M1.375 18.5833L8.96875 13.7083M21.625 18.5833L14.0312 13.7083M1.375 8.83331L8.96875 13.7083M21.625 8.83331L14.0312 13.7083M14.0312 13.7083L12.7481 14.5321C11.9923 15.0173 11.0077 15.0173 10.2519 14.5321L8.96875 13.7083"
|
|
1464
1482
|
propList={
|
|
1465
1483
|
[
|
|
1466
1484
|
"stroke",
|
|
@@ -1481,11 +1499,11 @@ exports[`test icons render an outlined mail-open icon in a grey color 1`] = `
|
|
|
1481
1499
|
exports[`test icons render an outlined menu icon in the main color 1`] = `
|
|
1482
1500
|
<RNSVGSvgView
|
|
1483
1501
|
align="xMidYMid"
|
|
1484
|
-
bbHeight=
|
|
1485
|
-
bbWidth=
|
|
1502
|
+
bbHeight={24}
|
|
1503
|
+
bbWidth={24}
|
|
1486
1504
|
fill="none"
|
|
1487
1505
|
focusable={false}
|
|
1488
|
-
height=
|
|
1506
|
+
height={24}
|
|
1489
1507
|
meetOrSlice={0}
|
|
1490
1508
|
minX={0}
|
|
1491
1509
|
minY={0}
|
|
@@ -1497,14 +1515,14 @@ exports[`test icons render an outlined menu icon in the main color 1`] = `
|
|
|
1497
1515
|
},
|
|
1498
1516
|
{
|
|
1499
1517
|
"flex": 0,
|
|
1500
|
-
"height":
|
|
1501
|
-
"width":
|
|
1518
|
+
"height": 24,
|
|
1519
|
+
"width": 24,
|
|
1502
1520
|
},
|
|
1503
1521
|
]
|
|
1504
1522
|
}
|
|
1505
|
-
vbHeight={
|
|
1506
|
-
vbWidth={
|
|
1507
|
-
width=
|
|
1523
|
+
vbHeight={17}
|
|
1524
|
+
vbWidth={21}
|
|
1525
|
+
width={24}
|
|
1508
1526
|
>
|
|
1509
1527
|
<RNSVGGroup
|
|
1510
1528
|
fill={null}
|
|
@@ -1515,7 +1533,7 @@ exports[`test icons render an outlined menu icon in the main color 1`] = `
|
|
|
1515
1533
|
}
|
|
1516
1534
|
>
|
|
1517
1535
|
<RNSVGPath
|
|
1518
|
-
d="
|
|
1536
|
+
d="M1.5 1.75H19.5M1.5 8.5H19.5M1.5 15.25H19.5"
|
|
1519
1537
|
propList={
|
|
1520
1538
|
[
|
|
1521
1539
|
"stroke",
|
|
@@ -1536,11 +1554,11 @@ exports[`test icons render an outlined menu icon in the main color 1`] = `
|
|
|
1536
1554
|
exports[`test icons render an outlined minus-sm icon in the main color 1`] = `
|
|
1537
1555
|
<RNSVGSvgView
|
|
1538
1556
|
align="xMidYMid"
|
|
1539
|
-
bbHeight={
|
|
1540
|
-
bbWidth={
|
|
1557
|
+
bbHeight={24}
|
|
1558
|
+
bbWidth={24}
|
|
1541
1559
|
fill="none"
|
|
1542
1560
|
focusable={false}
|
|
1543
|
-
height={
|
|
1561
|
+
height={24}
|
|
1544
1562
|
meetOrSlice={0}
|
|
1545
1563
|
minX={0}
|
|
1546
1564
|
minY={0}
|
|
@@ -1552,14 +1570,14 @@ exports[`test icons render an outlined minus-sm icon in the main color 1`] = `
|
|
|
1552
1570
|
},
|
|
1553
1571
|
{
|
|
1554
1572
|
"flex": 0,
|
|
1555
|
-
"height":
|
|
1556
|
-
"width":
|
|
1573
|
+
"height": 24,
|
|
1574
|
+
"width": 24,
|
|
1557
1575
|
},
|
|
1558
1576
|
]
|
|
1559
1577
|
}
|
|
1560
|
-
vbHeight={
|
|
1561
|
-
vbWidth={
|
|
1562
|
-
width={
|
|
1578
|
+
vbHeight={3}
|
|
1579
|
+
vbWidth={16}
|
|
1580
|
+
width={24}
|
|
1563
1581
|
>
|
|
1564
1582
|
<RNSVGGroup
|
|
1565
1583
|
fill={null}
|
|
@@ -1570,7 +1588,7 @@ exports[`test icons render an outlined minus-sm icon in the main color 1`] = `
|
|
|
1570
1588
|
}
|
|
1571
1589
|
>
|
|
1572
1590
|
<RNSVGPath
|
|
1573
|
-
d="
|
|
1591
|
+
d="M14.5 1.5H1.5"
|
|
1574
1592
|
propList={
|
|
1575
1593
|
[
|
|
1576
1594
|
"stroke",
|
|
@@ -1591,11 +1609,11 @@ exports[`test icons render an outlined minus-sm icon in the main color 1`] = `
|
|
|
1591
1609
|
exports[`test icons render an outlined office-building icon in a green color 1`] = `
|
|
1592
1610
|
<RNSVGSvgView
|
|
1593
1611
|
align="xMidYMid"
|
|
1594
|
-
bbHeight=
|
|
1595
|
-
bbWidth=
|
|
1612
|
+
bbHeight={24}
|
|
1613
|
+
bbWidth={24}
|
|
1596
1614
|
fill="none"
|
|
1597
1615
|
focusable={false}
|
|
1598
|
-
height=
|
|
1616
|
+
height={24}
|
|
1599
1617
|
meetOrSlice={0}
|
|
1600
1618
|
minX={0}
|
|
1601
1619
|
minY={0}
|
|
@@ -1607,14 +1625,14 @@ exports[`test icons render an outlined office-building icon in a green color 1`]
|
|
|
1607
1625
|
},
|
|
1608
1626
|
{
|
|
1609
1627
|
"flex": 0,
|
|
1610
|
-
"height":
|
|
1611
|
-
"width":
|
|
1628
|
+
"height": 24,
|
|
1629
|
+
"width": 24,
|
|
1612
1630
|
},
|
|
1613
1631
|
]
|
|
1614
1632
|
}
|
|
1615
|
-
vbHeight={
|
|
1616
|
-
vbWidth={
|
|
1617
|
-
width=
|
|
1633
|
+
vbHeight={23}
|
|
1634
|
+
vbWidth={23}
|
|
1635
|
+
width={24}
|
|
1618
1636
|
>
|
|
1619
1637
|
<RNSVGGroup
|
|
1620
1638
|
fill={null}
|
|
@@ -1625,7 +1643,7 @@ exports[`test icons render an outlined office-building icon in a green color 1`]
|
|
|
1625
1643
|
}
|
|
1626
1644
|
>
|
|
1627
1645
|
<RNSVGPath
|
|
1628
|
-
d="
|
|
1646
|
+
d="M19.375 21.625V3.625C19.375 2.38236 18.3676 1.375 17.125 1.375H5.875C4.63236 1.375 3.625 2.38236 3.625 3.625V21.625M19.375 21.625L21.625 21.625M19.375 21.625H13.75M3.625 21.625L1.375 21.625M3.625 21.625H9.25M8.125 5.87497H9.25M8.125 10.375H9.25M13.75 5.87497H14.875M13.75 10.375H14.875M9.25 21.625V16C9.25 15.3787 9.75368 14.875 10.375 14.875H12.625C13.2463 14.875 13.75 15.3787 13.75 16V21.625M9.25 21.625H13.75"
|
|
1629
1647
|
propList={
|
|
1630
1648
|
[
|
|
1631
1649
|
"stroke",
|
|
@@ -1646,11 +1664,11 @@ exports[`test icons render an outlined office-building icon in a green color 1`]
|
|
|
1646
1664
|
exports[`test icons render an outlined paper-airplane icon in a white color 1`] = `
|
|
1647
1665
|
<RNSVGSvgView
|
|
1648
1666
|
align="xMidYMid"
|
|
1649
|
-
bbHeight=
|
|
1650
|
-
bbWidth=
|
|
1667
|
+
bbHeight={24}
|
|
1668
|
+
bbWidth={24}
|
|
1651
1669
|
fill="none"
|
|
1652
1670
|
focusable={false}
|
|
1653
|
-
height=
|
|
1671
|
+
height={24}
|
|
1654
1672
|
meetOrSlice={0}
|
|
1655
1673
|
minX={0}
|
|
1656
1674
|
minY={0}
|
|
@@ -1660,19 +1678,36 @@ exports[`test icons render an outlined paper-airplane icon in a white color 1`]
|
|
|
1660
1678
|
"backgroundColor": "transparent",
|
|
1661
1679
|
"borderWidth": 0,
|
|
1662
1680
|
},
|
|
1681
|
+
{
|
|
1682
|
+
"transform": [
|
|
1683
|
+
{
|
|
1684
|
+
"rotate": "90deg",
|
|
1685
|
+
},
|
|
1686
|
+
],
|
|
1687
|
+
},
|
|
1663
1688
|
{
|
|
1664
1689
|
"flex": 0,
|
|
1665
|
-
"height":
|
|
1666
|
-
"width":
|
|
1690
|
+
"height": 24,
|
|
1691
|
+
"width": 24,
|
|
1667
1692
|
},
|
|
1668
1693
|
]
|
|
1669
1694
|
}
|
|
1670
|
-
vbHeight={
|
|
1671
|
-
vbWidth={
|
|
1672
|
-
width=
|
|
1695
|
+
vbHeight={22}
|
|
1696
|
+
vbWidth={23}
|
|
1697
|
+
width={24}
|
|
1673
1698
|
>
|
|
1674
1699
|
<RNSVGGroup
|
|
1675
1700
|
fill={null}
|
|
1701
|
+
matrix={
|
|
1702
|
+
[
|
|
1703
|
+
1,
|
|
1704
|
+
0,
|
|
1705
|
+
0,
|
|
1706
|
+
1,
|
|
1707
|
+
0,
|
|
1708
|
+
0,
|
|
1709
|
+
]
|
|
1710
|
+
}
|
|
1676
1711
|
propList={
|
|
1677
1712
|
[
|
|
1678
1713
|
"fill",
|
|
@@ -1680,7 +1715,7 @@ exports[`test icons render an outlined paper-airplane icon in a white color 1`]
|
|
|
1680
1715
|
}
|
|
1681
1716
|
>
|
|
1682
1717
|
<RNSVGPath
|
|
1683
|
-
d="
|
|
1718
|
+
d="M11.5 18.5833L21.625 20.75L11.5 1.25L1.375 20.75L11.5 18.5833ZM11.5 18.5833V9.91667"
|
|
1684
1719
|
propList={
|
|
1685
1720
|
[
|
|
1686
1721
|
"stroke",
|
|
@@ -1701,11 +1736,11 @@ exports[`test icons render an outlined paper-airplane icon in a white color 1`]
|
|
|
1701
1736
|
exports[`test icons render an outlined paperclip icon in the main color 1`] = `
|
|
1702
1737
|
<RNSVGSvgView
|
|
1703
1738
|
align="xMidYMid"
|
|
1704
|
-
bbHeight=
|
|
1705
|
-
bbWidth=
|
|
1739
|
+
bbHeight={24}
|
|
1740
|
+
bbWidth={24}
|
|
1706
1741
|
fill="none"
|
|
1707
1742
|
focusable={false}
|
|
1708
|
-
height=
|
|
1743
|
+
height={24}
|
|
1709
1744
|
meetOrSlice={0}
|
|
1710
1745
|
minX={0}
|
|
1711
1746
|
minY={0}
|
|
@@ -1717,14 +1752,14 @@ exports[`test icons render an outlined paperclip icon in the main color 1`] = `
|
|
|
1717
1752
|
},
|
|
1718
1753
|
{
|
|
1719
1754
|
"flex": 0,
|
|
1720
|
-
"height":
|
|
1721
|
-
"width":
|
|
1755
|
+
"height": 24,
|
|
1756
|
+
"width": 24,
|
|
1722
1757
|
},
|
|
1723
1758
|
]
|
|
1724
1759
|
}
|
|
1725
|
-
vbHeight={
|
|
1726
|
-
vbWidth={
|
|
1727
|
-
width=
|
|
1760
|
+
vbHeight={22}
|
|
1761
|
+
vbWidth={21}
|
|
1762
|
+
width={24}
|
|
1728
1763
|
>
|
|
1729
1764
|
<RNSVGGroup
|
|
1730
1765
|
fill={null}
|
|
@@ -1735,7 +1770,7 @@ exports[`test icons render an outlined paperclip icon in the main color 1`] = `
|
|
|
1735
1770
|
}
|
|
1736
1771
|
>
|
|
1737
1772
|
<RNSVGPath
|
|
1738
|
-
d="
|
|
1773
|
+
d="M13.4359 5.58333L6.30125 12.7179C5.45511 13.5641 5.45511 14.9359 6.30125 15.7821C7.14739 16.6282 8.51924 16.6282 9.36538 15.7821L16.3141 8.64746C18.0064 6.95519 18.0064 4.21148 16.3141 2.5192C14.6218 0.826932 11.8781 0.826932 10.1859 2.5192L3.23712 9.65381C0.698711 12.1922 0.698711 16.3078 3.23712 18.8462C5.77553 21.3846 9.8911 21.3846 12.4295 18.8462L19.2083 12.0833"
|
|
1739
1774
|
propList={
|
|
1740
1775
|
[
|
|
1741
1776
|
"stroke",
|
|
@@ -1756,11 +1791,11 @@ exports[`test icons render an outlined paperclip icon in the main color 1`] = `
|
|
|
1756
1791
|
exports[`test icons render an outlined pencil icon in the main color 1`] = `
|
|
1757
1792
|
<RNSVGSvgView
|
|
1758
1793
|
align="xMidYMid"
|
|
1759
|
-
bbHeight=
|
|
1760
|
-
bbWidth=
|
|
1794
|
+
bbHeight={24}
|
|
1795
|
+
bbWidth={24}
|
|
1761
1796
|
fill="none"
|
|
1762
1797
|
focusable={false}
|
|
1763
|
-
height=
|
|
1798
|
+
height={24}
|
|
1764
1799
|
meetOrSlice={0}
|
|
1765
1800
|
minX={0}
|
|
1766
1801
|
minY={0}
|
|
@@ -1772,14 +1807,14 @@ exports[`test icons render an outlined pencil icon in the main color 1`] = `
|
|
|
1772
1807
|
},
|
|
1773
1808
|
{
|
|
1774
1809
|
"flex": 0,
|
|
1775
|
-
"height":
|
|
1776
|
-
"width":
|
|
1810
|
+
"height": 24,
|
|
1811
|
+
"width": 24,
|
|
1777
1812
|
},
|
|
1778
1813
|
]
|
|
1779
1814
|
}
|
|
1780
|
-
vbHeight={
|
|
1781
|
-
vbWidth={
|
|
1782
|
-
width=
|
|
1815
|
+
vbHeight={23}
|
|
1816
|
+
vbWidth={23}
|
|
1817
|
+
width={24}
|
|
1783
1818
|
>
|
|
1784
1819
|
<RNSVGGroup
|
|
1785
1820
|
fill={null}
|
|
@@ -1790,7 +1825,7 @@ exports[`test icons render an outlined pencil icon in the main color 1`] = `
|
|
|
1790
1825
|
}
|
|
1791
1826
|
>
|
|
1792
1827
|
<RNSVGPath
|
|
1793
|
-
d="
|
|
1828
|
+
d="M15.1363 3.88626L19.1137 7.86374M16.8238 2.19876C17.9221 1.10041 19.7029 1.10041 20.8012 2.19876C21.8996 3.29711 21.8996 5.07789 20.8012 6.17624L5.31256 21.6649H1.37506V17.6475L16.8238 2.19876Z"
|
|
1794
1829
|
propList={
|
|
1795
1830
|
[
|
|
1796
1831
|
"stroke",
|
|
@@ -1811,11 +1846,11 @@ exports[`test icons render an outlined pencil icon in the main color 1`] = `
|
|
|
1811
1846
|
exports[`test icons render an outlined phone icon in the main color 1`] = `
|
|
1812
1847
|
<RNSVGSvgView
|
|
1813
1848
|
align="xMidYMid"
|
|
1814
|
-
bbHeight=
|
|
1815
|
-
bbWidth=
|
|
1849
|
+
bbHeight={24}
|
|
1850
|
+
bbWidth={24}
|
|
1816
1851
|
fill="none"
|
|
1817
1852
|
focusable={false}
|
|
1818
|
-
height=
|
|
1853
|
+
height={24}
|
|
1819
1854
|
meetOrSlice={0}
|
|
1820
1855
|
minX={0}
|
|
1821
1856
|
minY={0}
|
|
@@ -1827,14 +1862,14 @@ exports[`test icons render an outlined phone icon in the main color 1`] = `
|
|
|
1827
1862
|
},
|
|
1828
1863
|
{
|
|
1829
1864
|
"flex": 0,
|
|
1830
|
-
"height":
|
|
1831
|
-
"width":
|
|
1865
|
+
"height": 24,
|
|
1866
|
+
"width": 24,
|
|
1832
1867
|
},
|
|
1833
1868
|
]
|
|
1834
1869
|
}
|
|
1835
|
-
vbHeight={
|
|
1836
|
-
vbWidth={
|
|
1837
|
-
width=
|
|
1870
|
+
vbHeight={22}
|
|
1871
|
+
vbWidth={23}
|
|
1872
|
+
width={24}
|
|
1838
1873
|
>
|
|
1839
1874
|
<RNSVGGroup
|
|
1840
1875
|
fill={null}
|
|
@@ -1845,7 +1880,7 @@ exports[`test icons render an outlined phone icon in the main color 1`] = `
|
|
|
1845
1880
|
}
|
|
1846
1881
|
>
|
|
1847
1882
|
<RNSVGPath
|
|
1848
|
-
d="
|
|
1883
|
+
d="M1.375 3.41667C1.375 2.22005 2.38236 1.25 3.625 1.25H7.31415C7.79838 1.25 8.22829 1.54838 8.38141 1.99075L10.0665 6.85865C10.2435 7.3701 10.0031 7.92909 9.5023 8.17019L6.96288 9.39287C8.20291 12.0413 10.4186 14.175 13.1689 15.3691L14.4387 12.9237C14.689 12.4415 15.2695 12.21 15.8006 12.3805L20.8558 14.0031C21.3151 14.1505 21.625 14.5645 21.625 15.0308V18.5833C21.625 19.7799 20.6176 20.75 19.375 20.75H18.25C8.93019 20.75 1.375 13.4746 1.375 4.5V3.41667Z"
|
|
1849
1884
|
propList={
|
|
1850
1885
|
[
|
|
1851
1886
|
"stroke",
|
|
@@ -1866,11 +1901,11 @@ exports[`test icons render an outlined phone icon in the main color 1`] = `
|
|
|
1866
1901
|
exports[`test icons render an outlined plus icon in a grey color 1`] = `
|
|
1867
1902
|
<RNSVGSvgView
|
|
1868
1903
|
align="xMidYMid"
|
|
1869
|
-
bbHeight=
|
|
1870
|
-
bbWidth=
|
|
1904
|
+
bbHeight={24}
|
|
1905
|
+
bbWidth={24}
|
|
1871
1906
|
fill="none"
|
|
1872
1907
|
focusable={false}
|
|
1873
|
-
height=
|
|
1908
|
+
height={24}
|
|
1874
1909
|
meetOrSlice={0}
|
|
1875
1910
|
minX={0}
|
|
1876
1911
|
minY={0}
|
|
@@ -1882,14 +1917,14 @@ exports[`test icons render an outlined plus icon in a grey color 1`] = `
|
|
|
1882
1917
|
},
|
|
1883
1918
|
{
|
|
1884
1919
|
"flex": 0,
|
|
1885
|
-
"height":
|
|
1886
|
-
"width":
|
|
1920
|
+
"height": 24,
|
|
1921
|
+
"width": 24,
|
|
1887
1922
|
},
|
|
1888
1923
|
]
|
|
1889
1924
|
}
|
|
1890
|
-
vbHeight={
|
|
1891
|
-
vbWidth={
|
|
1892
|
-
width=
|
|
1925
|
+
vbHeight={21}
|
|
1926
|
+
vbWidth={21}
|
|
1927
|
+
width={24}
|
|
1893
1928
|
>
|
|
1894
1929
|
<RNSVGGroup
|
|
1895
1930
|
fill={null}
|
|
@@ -1900,7 +1935,7 @@ exports[`test icons render an outlined plus icon in a grey color 1`] = `
|
|
|
1900
1935
|
}
|
|
1901
1936
|
>
|
|
1902
1937
|
<RNSVGPath
|
|
1903
|
-
d="
|
|
1938
|
+
d="M10.5 1.5V19.5M19.5 10.5L1.5 10.5"
|
|
1904
1939
|
propList={
|
|
1905
1940
|
[
|
|
1906
1941
|
"stroke",
|
|
@@ -1921,11 +1956,11 @@ exports[`test icons render an outlined plus icon in a grey color 1`] = `
|
|
|
1921
1956
|
exports[`test icons render an outlined plus-sm icon in a red color 1`] = `
|
|
1922
1957
|
<RNSVGSvgView
|
|
1923
1958
|
align="xMidYMid"
|
|
1924
|
-
bbHeight={
|
|
1925
|
-
bbWidth={
|
|
1959
|
+
bbHeight={24}
|
|
1960
|
+
bbWidth={24}
|
|
1926
1961
|
fill="none"
|
|
1927
1962
|
focusable={false}
|
|
1928
|
-
height={
|
|
1963
|
+
height={24}
|
|
1929
1964
|
meetOrSlice={0}
|
|
1930
1965
|
minX={0}
|
|
1931
1966
|
minY={0}
|
|
@@ -1937,14 +1972,14 @@ exports[`test icons render an outlined plus-sm icon in a red color 1`] = `
|
|
|
1937
1972
|
},
|
|
1938
1973
|
{
|
|
1939
1974
|
"flex": 0,
|
|
1940
|
-
"height":
|
|
1941
|
-
"width":
|
|
1975
|
+
"height": 24,
|
|
1976
|
+
"width": 24,
|
|
1942
1977
|
},
|
|
1943
1978
|
]
|
|
1944
1979
|
}
|
|
1945
|
-
vbHeight={
|
|
1946
|
-
vbWidth={
|
|
1947
|
-
width={
|
|
1980
|
+
vbHeight={17}
|
|
1981
|
+
vbWidth={17}
|
|
1982
|
+
width={24}
|
|
1948
1983
|
>
|
|
1949
1984
|
<RNSVGGroup
|
|
1950
1985
|
fill={null}
|
|
@@ -1955,7 +1990,7 @@ exports[`test icons render an outlined plus-sm icon in a red color 1`] = `
|
|
|
1955
1990
|
}
|
|
1956
1991
|
>
|
|
1957
1992
|
<RNSVGPath
|
|
1958
|
-
d="
|
|
1993
|
+
d="M8.5 1.75V8.5M8.5 8.5V15.25M8.5 8.5H15.25M8.5 8.5L1.75 8.5"
|
|
1959
1994
|
propList={
|
|
1960
1995
|
[
|
|
1961
1996
|
"stroke",
|
|
@@ -1976,11 +2011,11 @@ exports[`test icons render an outlined plus-sm icon in a red color 1`] = `
|
|
|
1976
2011
|
exports[`test icons render an outlined qrcode icon in a purple color 1`] = `
|
|
1977
2012
|
<RNSVGSvgView
|
|
1978
2013
|
align="xMidYMid"
|
|
1979
|
-
bbHeight=
|
|
1980
|
-
bbWidth=
|
|
2014
|
+
bbHeight={24}
|
|
2015
|
+
bbWidth={24}
|
|
1981
2016
|
fill="none"
|
|
1982
2017
|
focusable={false}
|
|
1983
|
-
height=
|
|
2018
|
+
height={24}
|
|
1984
2019
|
meetOrSlice={0}
|
|
1985
2020
|
minX={0}
|
|
1986
2021
|
minY={0}
|
|
@@ -1992,14 +2027,14 @@ exports[`test icons render an outlined qrcode icon in a purple color 1`] = `
|
|
|
1992
2027
|
},
|
|
1993
2028
|
{
|
|
1994
2029
|
"flex": 0,
|
|
1995
|
-
"height":
|
|
1996
|
-
"width":
|
|
2030
|
+
"height": 24,
|
|
2031
|
+
"width": 24,
|
|
1997
2032
|
},
|
|
1998
2033
|
]
|
|
1999
2034
|
}
|
|
2000
|
-
vbHeight={
|
|
2001
|
-
vbWidth={
|
|
2002
|
-
width=
|
|
2035
|
+
vbHeight={21}
|
|
2036
|
+
vbWidth={20}
|
|
2037
|
+
width={24}
|
|
2003
2038
|
>
|
|
2004
2039
|
<RNSVGGroup
|
|
2005
2040
|
fill={null}
|
|
@@ -2010,7 +2045,7 @@ exports[`test icons render an outlined qrcode icon in a purple color 1`] = `
|
|
|
2010
2045
|
}
|
|
2011
2046
|
>
|
|
2012
2047
|
<RNSVGPath
|
|
2013
|
-
d="
|
|
2048
|
+
d="M11 1.5C11 0.947715 10.5523 0.5 9.99998 0.5C9.44769 0.5 8.99998 0.947715 8.99998 1.5H11ZM8.99998 2.625C8.99998 3.17728 9.44769 3.625 9.99998 3.625C10.5523 3.625 11 3.17728 11 2.625H8.99998ZM16.5 14C15.9477 14 15.5 14.4477 15.5 15C15.5 15.5523 15.9477 16 16.5 16V14ZM18.6666 16C19.2189 16 19.6666 15.5523 19.6666 15C19.6666 14.4477 19.2189 14 18.6666 14V16ZM9.99998 15V14C9.44769 14 8.99998 14.4477 8.99998 15H9.99998ZM12.1666 16C12.7189 16 13.1666 15.5523 13.1666 15C13.1666 14.4477 12.7189 14 12.1666 14V16ZM8.99998 19.5C8.99998 20.0523 9.44769 20.5 9.99998 20.5C10.5523 20.5 11 20.0523 11 19.5H8.99998ZM11 7.125C11 6.57272 10.5523 6.125 9.99998 6.125C9.44769 6.125 8.99998 6.57272 8.99998 7.125H11ZM9.99998 10.5H8.99998C8.99998 11.0523 9.44769 11.5 9.99998 11.5V10.5ZM14.3333 18.5C13.781 18.5 13.3333 18.9477 13.3333 19.5C13.3333 20.0523 13.781 20.5 14.3333 20.5V18.5ZM18.6666 20.5C19.2189 20.5 19.6666 20.0523 19.6666 19.5C19.6666 18.9477 19.2189 18.5 18.6666 18.5V20.5ZM1.33331 9.5C0.781028 9.5 0.333313 9.94771 0.333313 10.5C0.333313 11.0523 0.781028 11.5 1.33331 11.5V9.5ZM5.66665 11.5C6.21893 11.5 6.66665 11.0523 6.66665 10.5C6.66665 9.94771 6.21893 9.5 5.66665 9.5V11.5ZM10.0108 11.5C10.5631 11.5 11.0108 11.0523 11.0108 10.5C11.0108 9.94771 10.5631 9.5 10.0108 9.5V11.5ZM14.3441 11.5C14.8964 11.5 15.3441 11.0523 15.3441 10.5C15.3441 9.94771 14.8964 9.5 14.3441 9.5V11.5ZM18.6666 9.5C18.1144 9.5 17.6666 9.94771 17.6666 10.5C17.6666 11.0523 18.1144 11.5 18.6666 11.5V9.5ZM18.6775 11.5C19.2298 11.5 19.6775 11.0523 19.6775 10.5C19.6775 9.94771 19.2298 9.5 18.6775 9.5V11.5ZM2.41665 2.5H4.58331V0.5H2.41665V2.5ZM4.66665 2.625V4.875H6.66665V2.625H4.66665ZM4.58331 5H2.41665V7H4.58331V5ZM2.33331 4.875V2.625H0.333313V4.875H2.33331ZM2.41665 5C2.40602 5 2.39043 4.9971 2.37093 4.97685C2.3508 4.95595 2.33331 4.92194 2.33331 4.875H0.333313C0.333313 6.0127 1.23082 7 2.41665 7V5ZM4.66665 4.875C4.66665 4.92194 4.64916 4.95595 4.62902 4.97685C4.60953 4.9971 4.59394 5 4.58331 5V7C5.76914 7 6.66665 6.0127 6.66665 4.875H4.66665ZM4.58331 2.5C4.59394 2.5 4.60953 2.5029 4.62902 2.52315C4.64916 2.54405 4.66665 2.57806 4.66665 2.625H6.66665C6.66665 1.4873 5.76914 0.5 4.58331 0.5V2.5ZM2.41665 0.5C1.23082 0.5 0.333313 1.4873 0.333313 2.625H2.33331C2.33331 2.57806 2.3508 2.54405 2.37093 2.52315C2.39043 2.5029 2.40602 2.5 2.41665 2.5V0.5ZM15.4166 2.5H17.5833V0.5H15.4166V2.5ZM17.6666 2.625V4.875H19.6666V2.625H17.6666ZM17.5833 5H15.4166V7H17.5833V5ZM15.3333 4.875V2.625H13.3333V4.875H15.3333ZM15.4166 5C15.406 5 15.3904 4.9971 15.3709 4.97685C15.3508 4.95595 15.3333 4.92194 15.3333 4.875H13.3333C13.3333 6.0127 14.2308 7 15.4166 7V5ZM17.6666 4.875C17.6666 4.92194 17.6492 4.95595 17.629 4.97685C17.6095 4.9971 17.5939 5 17.5833 5V7C18.7691 7 19.6666 6.0127 19.6666 4.875H17.6666ZM17.5833 2.5C17.5939 2.5 17.6095 2.5029 17.629 2.52315C17.6492 2.54405 17.6666 2.57806 17.6666 2.625H19.6666C19.6666 1.4873 18.7691 0.5 17.5833 0.5V2.5ZM15.4166 0.5C14.2308 0.5 13.3333 1.4873 13.3333 2.625H15.3333C15.3333 2.57806 15.3508 2.54405 15.3709 2.52315C15.3904 2.5029 15.406 2.5 15.4166 2.5V0.5ZM2.41665 16H4.58331V14H2.41665V16ZM4.66665 16.125V18.375H6.66665V16.125H4.66665ZM4.58331 18.5H2.41665V20.5H4.58331V18.5ZM2.33331 18.375V16.125H0.333313V18.375H2.33331ZM2.41665 18.5C2.40602 18.5 2.39043 18.4971 2.37093 18.4769C2.3508 18.4559 2.33331 18.4219 2.33331 18.375H0.333313C0.333313 19.5127 1.23082 20.5 2.41665 20.5V18.5ZM4.66665 18.375C4.66665 18.4219 4.64916 18.4559 4.62902 18.4769C4.60953 18.4971 4.59394 18.5 4.58331 18.5V20.5C5.76914 20.5 6.66665 19.5127 6.66665 18.375H4.66665ZM4.58331 16C4.59394 16 4.60953 16.0029 4.62902 16.0231C4.64916 16.0441 4.66665 16.0781 4.66665 16.125H6.66665C6.66665 14.9873 5.76914 14 4.58331 14V16ZM2.41665 14C1.23082 14 0.333313 14.9873 0.333313 16.125H2.33331C2.33331 16.0781 2.3508 16.0441 2.37093 16.0231C2.39043 16.0029 2.40602 16 2.41665 16V14ZM8.99998 1.5V2.625H11V1.5H8.99998ZM16.5 16H18.6666V14H16.5V16ZM9.99998 16H12.1666V14H9.99998V16ZM8.99998 15V19.5H11V15H8.99998ZM8.99998 7.125V10.5H11V7.125H8.99998ZM14.3333 20.5H18.6666V18.5H14.3333V20.5ZM1.33331 11.5H5.66665V9.5H1.33331V11.5ZM9.99998 11.5H10.0108V9.5H9.99998V11.5ZM18.6666 11.5H18.6775V9.5H18.6666V11.5ZM9.99998 11.5H14.3441V9.5H9.99998V11.5Z"
|
|
2014
2049
|
fill={4288684272}
|
|
2015
2050
|
propList={
|
|
2016
2051
|
[
|
|
@@ -2025,11 +2060,11 @@ exports[`test icons render an outlined qrcode icon in a purple color 1`] = `
|
|
|
2025
2060
|
exports[`test icons render an outlined refresh icon in a purple color 1`] = `
|
|
2026
2061
|
<RNSVGSvgView
|
|
2027
2062
|
align="xMidYMid"
|
|
2028
|
-
bbHeight=
|
|
2029
|
-
bbWidth=
|
|
2063
|
+
bbHeight={24}
|
|
2064
|
+
bbWidth={24}
|
|
2030
2065
|
fill="none"
|
|
2031
2066
|
focusable={false}
|
|
2032
|
-
height=
|
|
2067
|
+
height={24}
|
|
2033
2068
|
meetOrSlice={0}
|
|
2034
2069
|
minX={0}
|
|
2035
2070
|
minY={0}
|
|
@@ -2041,14 +2076,14 @@ exports[`test icons render an outlined refresh icon in a purple color 1`] = `
|
|
|
2041
2076
|
},
|
|
2042
2077
|
{
|
|
2043
2078
|
"flex": 0,
|
|
2044
|
-
"height":
|
|
2045
|
-
"width":
|
|
2079
|
+
"height": 24,
|
|
2080
|
+
"width": 24,
|
|
2046
2081
|
},
|
|
2047
2082
|
]
|
|
2048
2083
|
}
|
|
2049
|
-
vbHeight={
|
|
2050
|
-
vbWidth={
|
|
2051
|
-
width=
|
|
2084
|
+
vbHeight={21}
|
|
2085
|
+
vbWidth={20}
|
|
2086
|
+
width={24}
|
|
2052
2087
|
>
|
|
2053
2088
|
<RNSVGGroup
|
|
2054
2089
|
fill={null}
|
|
@@ -2059,7 +2094,7 @@ exports[`test icons render an outlined refresh icon in a purple color 1`] = `
|
|
|
2059
2094
|
}
|
|
2060
2095
|
>
|
|
2061
2096
|
<RNSVGPath
|
|
2062
|
-
d="
|
|
2097
|
+
d="M1.33337 1.5V7.125H1.96335M18.5997 9.375C18.0665 4.9354 14.4196 1.5 10 1.5C6.36288 1.5 3.24902 3.82669 1.96335 7.125M1.96335 7.125H6.75004M18.6667 19.5V13.875H18.0367M18.0367 13.875C16.7511 17.1733 13.6372 19.5 10 19.5C5.58045 19.5 1.93353 16.0646 1.40043 11.625M18.0367 13.875H13.25"
|
|
2063
2098
|
propList={
|
|
2064
2099
|
[
|
|
2065
2100
|
"stroke",
|
|
@@ -2080,11 +2115,11 @@ exports[`test icons render an outlined refresh icon in a purple color 1`] = `
|
|
|
2080
2115
|
exports[`test icons render an outlined search icon in a white color 1`] = `
|
|
2081
2116
|
<RNSVGSvgView
|
|
2082
2117
|
align="xMidYMid"
|
|
2083
|
-
bbHeight=
|
|
2084
|
-
bbWidth=
|
|
2118
|
+
bbHeight={24}
|
|
2119
|
+
bbWidth={24}
|
|
2085
2120
|
fill="none"
|
|
2086
2121
|
focusable={false}
|
|
2087
|
-
height=
|
|
2122
|
+
height={24}
|
|
2088
2123
|
meetOrSlice={0}
|
|
2089
2124
|
minX={0}
|
|
2090
2125
|
minY={0}
|
|
@@ -2096,14 +2131,14 @@ exports[`test icons render an outlined search icon in a white color 1`] = `
|
|
|
2096
2131
|
},
|
|
2097
2132
|
{
|
|
2098
2133
|
"flex": 0,
|
|
2099
|
-
"height":
|
|
2100
|
-
"width":
|
|
2134
|
+
"height": 24,
|
|
2135
|
+
"width": 24,
|
|
2101
2136
|
},
|
|
2102
2137
|
]
|
|
2103
2138
|
}
|
|
2104
|
-
vbHeight={
|
|
2105
|
-
vbWidth={
|
|
2106
|
-
width=
|
|
2139
|
+
vbHeight={23}
|
|
2140
|
+
vbWidth={23}
|
|
2141
|
+
width={24}
|
|
2107
2142
|
>
|
|
2108
2143
|
<RNSVGGroup
|
|
2109
2144
|
fill={null}
|
|
@@ -2114,7 +2149,7 @@ exports[`test icons render an outlined search icon in a white color 1`] = `
|
|
|
2114
2149
|
}
|
|
2115
2150
|
>
|
|
2116
2151
|
<RNSVGPath
|
|
2117
|
-
d="
|
|
2152
|
+
d="M21.625 21.625L14.875 14.875M17.125 9.25C17.125 13.5992 13.5992 17.125 9.25 17.125C4.90076 17.125 1.375 13.5992 1.375 9.25C1.375 4.90076 4.90076 1.375 9.25 1.375C13.5992 1.375 17.125 4.90076 17.125 9.25Z"
|
|
2118
2153
|
propList={
|
|
2119
2154
|
[
|
|
2120
2155
|
"stroke",
|
|
@@ -2135,11 +2170,11 @@ exports[`test icons render an outlined search icon in a white color 1`] = `
|
|
|
2135
2170
|
exports[`test icons render an outlined selector icon in the main color 1`] = `
|
|
2136
2171
|
<RNSVGSvgView
|
|
2137
2172
|
align="xMidYMid"
|
|
2138
|
-
bbHeight=
|
|
2139
|
-
bbWidth=
|
|
2173
|
+
bbHeight={24}
|
|
2174
|
+
bbWidth={24}
|
|
2140
2175
|
fill="none"
|
|
2141
2176
|
focusable={false}
|
|
2142
|
-
height=
|
|
2177
|
+
height={24}
|
|
2143
2178
|
meetOrSlice={0}
|
|
2144
2179
|
minX={0}
|
|
2145
2180
|
minY={0}
|
|
@@ -2151,14 +2186,14 @@ exports[`test icons render an outlined selector icon in the main color 1`] = `
|
|
|
2151
2186
|
},
|
|
2152
2187
|
{
|
|
2153
2188
|
"flex": 0,
|
|
2154
|
-
"height":
|
|
2155
|
-
"width":
|
|
2189
|
+
"height": 24,
|
|
2190
|
+
"width": 24,
|
|
2156
2191
|
},
|
|
2157
2192
|
]
|
|
2158
2193
|
}
|
|
2159
|
-
vbHeight={
|
|
2160
|
-
vbWidth={
|
|
2161
|
-
width=
|
|
2194
|
+
vbHeight={19}
|
|
2195
|
+
vbWidth={12}
|
|
2196
|
+
width={24}
|
|
2162
2197
|
>
|
|
2163
2198
|
<RNSVGGroup
|
|
2164
2199
|
fill={null}
|
|
@@ -2169,7 +2204,7 @@ exports[`test icons render an outlined selector icon in the main color 1`] = `
|
|
|
2169
2204
|
}
|
|
2170
2205
|
>
|
|
2171
2206
|
<RNSVGPath
|
|
2172
|
-
d="
|
|
2207
|
+
d="M1.66663 6.125L5.99996 1.625L10.3333 6.125M10.3333 12.875L5.99996 17.375L1.66663 12.875"
|
|
2173
2208
|
propList={
|
|
2174
2209
|
[
|
|
2175
2210
|
"stroke",
|
|
@@ -2190,11 +2225,11 @@ exports[`test icons render an outlined selector icon in the main color 1`] = `
|
|
|
2190
2225
|
exports[`test icons render an outlined sm-view-grid-add icon in a yellow color 1`] = `
|
|
2191
2226
|
<RNSVGSvgView
|
|
2192
2227
|
align="xMidYMid"
|
|
2193
|
-
bbHeight=
|
|
2194
|
-
bbWidth=
|
|
2228
|
+
bbHeight={24}
|
|
2229
|
+
bbWidth={24}
|
|
2195
2230
|
fill="none"
|
|
2196
2231
|
focusable={false}
|
|
2197
|
-
height=
|
|
2232
|
+
height={24}
|
|
2198
2233
|
meetOrSlice={0}
|
|
2199
2234
|
minX={0}
|
|
2200
2235
|
minY={0}
|
|
@@ -2206,14 +2241,14 @@ exports[`test icons render an outlined sm-view-grid-add icon in a yellow color 1
|
|
|
2206
2241
|
},
|
|
2207
2242
|
{
|
|
2208
2243
|
"flex": 0,
|
|
2209
|
-
"height":
|
|
2210
|
-
"width":
|
|
2244
|
+
"height": 24,
|
|
2245
|
+
"width": 24,
|
|
2211
2246
|
},
|
|
2212
2247
|
]
|
|
2213
2248
|
}
|
|
2214
|
-
vbHeight={
|
|
2215
|
-
vbWidth={
|
|
2216
|
-
width=
|
|
2249
|
+
vbHeight={20}
|
|
2250
|
+
vbWidth={20}
|
|
2251
|
+
width={24}
|
|
2217
2252
|
>
|
|
2218
2253
|
<RNSVGGroup
|
|
2219
2254
|
fill={null}
|
|
@@ -2224,7 +2259,7 @@ exports[`test icons render an outlined sm-view-grid-add icon in a yellow color 1
|
|
|
2224
2259
|
}
|
|
2225
2260
|
>
|
|
2226
2261
|
<RNSVGPath
|
|
2227
|
-
d="
|
|
2262
|
+
d="M15.4166 12.1667V18.6667M12.1666 15.4167H18.6666M3.49998 7.83337H5.66665C6.86326 7.83337 7.83331 6.86332 7.83331 5.66671V3.50004C7.83331 2.30342 6.86326 1.33337 5.66665 1.33337H3.49998C2.30336 1.33337 1.33331 2.30342 1.33331 3.50004V5.66671C1.33331 6.86332 2.30336 7.83337 3.49998 7.83337ZM14.3333 7.83337H16.5C17.6966 7.83337 18.6666 6.86332 18.6666 5.66671V3.50004C18.6666 2.30342 17.6966 1.33337 16.5 1.33337H14.3333C13.1367 1.33337 12.1666 2.30342 12.1666 3.50004V5.66671C12.1666 6.86332 13.1367 7.83337 14.3333 7.83337ZM3.49998 18.6667H5.66665C6.86326 18.6667 7.83331 17.6967 7.83331 16.5V14.3334C7.83331 13.1368 6.86326 12.1667 5.66665 12.1667H3.49998C2.30336 12.1667 1.33331 13.1368 1.33331 14.3334V16.5C1.33331 17.6967 2.30336 18.6667 3.49998 18.6667Z"
|
|
2228
2263
|
propList={
|
|
2229
2264
|
[
|
|
2230
2265
|
"stroke",
|
|
@@ -2245,11 +2280,11 @@ exports[`test icons render an outlined sm-view-grid-add icon in a yellow color 1
|
|
|
2245
2280
|
exports[`test icons render an outlined status-online icon in an orange color 1`] = `
|
|
2246
2281
|
<RNSVGSvgView
|
|
2247
2282
|
align="xMidYMid"
|
|
2248
|
-
bbHeight=
|
|
2249
|
-
bbWidth=
|
|
2283
|
+
bbHeight={24}
|
|
2284
|
+
bbWidth={24}
|
|
2250
2285
|
fill="none"
|
|
2251
2286
|
focusable={false}
|
|
2252
|
-
height=
|
|
2287
|
+
height={24}
|
|
2253
2288
|
meetOrSlice={0}
|
|
2254
2289
|
minX={0}
|
|
2255
2290
|
minY={0}
|
|
@@ -2261,14 +2296,14 @@ exports[`test icons render an outlined status-online icon in an orange color 1`]
|
|
|
2261
2296
|
},
|
|
2262
2297
|
{
|
|
2263
2298
|
"flex": 0,
|
|
2264
|
-
"height":
|
|
2265
|
-
"width":
|
|
2299
|
+
"height": 24,
|
|
2300
|
+
"width": 24,
|
|
2266
2301
|
},
|
|
2267
2302
|
]
|
|
2268
2303
|
}
|
|
2269
|
-
vbHeight={
|
|
2270
|
-
vbWidth={
|
|
2271
|
-
width=
|
|
2304
|
+
vbHeight={17}
|
|
2305
|
+
vbWidth={23}
|
|
2306
|
+
width={24}
|
|
2272
2307
|
>
|
|
2273
2308
|
<RNSVGGroup
|
|
2274
2309
|
fill={null}
|
|
@@ -2279,7 +2314,7 @@ exports[`test icons render an outlined status-online icon in an orange color 1`]
|
|
|
2279
2314
|
}
|
|
2280
2315
|
>
|
|
2281
2316
|
<RNSVGPath
|
|
2282
|
-
d="
|
|
2317
|
+
d="M4.34054 15.6595C0.386485 11.7054 0.386485 5.29464 4.34054 1.34058M18.6595 1.34058C22.6135 5.29464 22.6135 11.7054 18.6595 15.6595M7.52252 12.4775C5.32582 10.2808 5.32582 6.71926 7.52252 4.52256M15.4775 4.52256C17.6742 6.71926 17.6742 10.2808 15.4775 12.4775M12.625 8.50003C12.625 9.12135 12.1213 9.62503 11.5 9.62503C10.8787 9.62503 10.375 9.12135 10.375 8.50003C10.375 7.87871 10.8787 7.37503 11.5 7.37503C12.1213 7.37503 12.625 7.87871 12.625 8.50003Z"
|
|
2283
2318
|
propList={
|
|
2284
2319
|
[
|
|
2285
2320
|
"stroke",
|
|
@@ -2300,11 +2335,11 @@ exports[`test icons render an outlined status-online icon in an orange color 1`]
|
|
|
2300
2335
|
exports[`test icons render an outlined thumb-up icon in a blue color 1`] = `
|
|
2301
2336
|
<RNSVGSvgView
|
|
2302
2337
|
align="xMidYMid"
|
|
2303
|
-
bbHeight=
|
|
2304
|
-
bbWidth=
|
|
2338
|
+
bbHeight={24}
|
|
2339
|
+
bbWidth={24}
|
|
2305
2340
|
fill="none"
|
|
2306
2341
|
focusable={false}
|
|
2307
|
-
height=
|
|
2342
|
+
height={24}
|
|
2308
2343
|
meetOrSlice={0}
|
|
2309
2344
|
minX={0}
|
|
2310
2345
|
minY={0}
|
|
@@ -2316,14 +2351,14 @@ exports[`test icons render an outlined thumb-up icon in a blue color 1`] = `
|
|
|
2316
2351
|
},
|
|
2317
2352
|
{
|
|
2318
2353
|
"flex": 0,
|
|
2319
|
-
"height":
|
|
2320
|
-
"width":
|
|
2354
|
+
"height": 24,
|
|
2355
|
+
"width": 24,
|
|
2321
2356
|
},
|
|
2322
2357
|
]
|
|
2323
2358
|
}
|
|
2324
|
-
vbHeight={
|
|
2325
|
-
vbWidth={
|
|
2326
|
-
width=
|
|
2359
|
+
vbHeight={23}
|
|
2360
|
+
vbWidth={23}
|
|
2361
|
+
width={24}
|
|
2327
2362
|
>
|
|
2328
2363
|
<RNSVGGroup
|
|
2329
2364
|
fill={null}
|
|
@@ -2334,7 +2369,7 @@ exports[`test icons render an outlined thumb-up icon in a blue color 1`] = `
|
|
|
2334
2369
|
}
|
|
2335
2370
|
>
|
|
2336
2371
|
<RNSVGPath
|
|
2337
|
-
d="
|
|
2372
|
+
d="M13.75 9.25H19.1094C20.782 9.25 21.8699 11.0102 21.1219 12.5062L17.1844 20.3812C16.8033 21.1435 16.0242 21.625 15.1719 21.625H10.652C10.468 21.625 10.2848 21.6024 10.1063 21.5578L5.875 20.5M13.75 9.25V3.625C13.75 2.38236 12.7426 1.375 11.5 1.375H11.3926C10.8306 1.375 10.375 1.83059 10.375 2.39259C10.375 3.19618 10.1371 3.9818 9.69138 4.65043L5.875 10.375V20.5M13.75 9.25H11.5M5.875 20.5H3.625C2.38236 20.5 1.375 19.4926 1.375 18.25V11.5C1.375 10.2574 2.38236 9.25 3.625 9.25H6.4375"
|
|
2338
2373
|
propList={
|
|
2339
2374
|
[
|
|
2340
2375
|
"stroke",
|
|
@@ -2355,11 +2390,11 @@ exports[`test icons render an outlined thumb-up icon in a blue color 1`] = `
|
|
|
2355
2390
|
exports[`test icons render an outlined trash icon in a red color 1`] = `
|
|
2356
2391
|
<RNSVGSvgView
|
|
2357
2392
|
align="xMidYMid"
|
|
2358
|
-
bbHeight=
|
|
2359
|
-
bbWidth=
|
|
2393
|
+
bbHeight={24}
|
|
2394
|
+
bbWidth={24}
|
|
2360
2395
|
fill="none"
|
|
2361
2396
|
focusable={false}
|
|
2362
|
-
height=
|
|
2397
|
+
height={24}
|
|
2363
2398
|
meetOrSlice={0}
|
|
2364
2399
|
minX={0}
|
|
2365
2400
|
minY={0}
|
|
@@ -2371,14 +2406,14 @@ exports[`test icons render an outlined trash icon in a red color 1`] = `
|
|
|
2371
2406
|
},
|
|
2372
2407
|
{
|
|
2373
2408
|
"flex": 0,
|
|
2374
|
-
"height":
|
|
2375
|
-
"width":
|
|
2409
|
+
"height": 24,
|
|
2410
|
+
"width": 24,
|
|
2376
2411
|
},
|
|
2377
2412
|
]
|
|
2378
2413
|
}
|
|
2379
|
-
vbHeight={
|
|
2380
|
-
vbWidth={
|
|
2381
|
-
width=
|
|
2414
|
+
vbHeight={22}
|
|
2415
|
+
vbWidth={21}
|
|
2416
|
+
width={24}
|
|
2382
2417
|
>
|
|
2383
2418
|
<RNSVGGroup
|
|
2384
2419
|
fill={null}
|
|
@@ -2389,7 +2424,7 @@ exports[`test icons render an outlined trash icon in a red color 1`] = `
|
|
|
2389
2424
|
}
|
|
2390
2425
|
>
|
|
2391
2426
|
<RNSVGPath
|
|
2392
|
-
d="
|
|
2427
|
+
d="M18.375 5.58333L17.3993 18.7377C17.3152 19.8715 16.3354 20.75 15.155 20.75H5.84502C4.66458 20.75 3.68484 19.8715 3.60074 18.7377L2.625 5.58333M8.25 9.91667V16.4167M12.75 9.91667V16.4167M13.875 5.58333V2.33333C13.875 1.73502 13.3713 1.25 12.75 1.25H8.25C7.62868 1.25 7.125 1.73502 7.125 2.33333V5.58333M1.5 5.58333H19.5"
|
|
2393
2428
|
propList={
|
|
2394
2429
|
[
|
|
2395
2430
|
"stroke",
|
|
@@ -2410,11 +2445,11 @@ exports[`test icons render an outlined trash icon in a red color 1`] = `
|
|
|
2410
2445
|
exports[`test icons render an outlined user icon in the main color 1`] = `
|
|
2411
2446
|
<RNSVGSvgView
|
|
2412
2447
|
align="xMidYMid"
|
|
2413
|
-
bbHeight=
|
|
2414
|
-
bbWidth=
|
|
2448
|
+
bbHeight={24}
|
|
2449
|
+
bbWidth={24}
|
|
2415
2450
|
fill="none"
|
|
2416
2451
|
focusable={false}
|
|
2417
|
-
height=
|
|
2452
|
+
height={24}
|
|
2418
2453
|
meetOrSlice={0}
|
|
2419
2454
|
minX={0}
|
|
2420
2455
|
minY={0}
|
|
@@ -2426,14 +2461,14 @@ exports[`test icons render an outlined user icon in the main color 1`] = `
|
|
|
2426
2461
|
},
|
|
2427
2462
|
{
|
|
2428
2463
|
"flex": 0,
|
|
2429
|
-
"height":
|
|
2430
|
-
"width":
|
|
2464
|
+
"height": 24,
|
|
2465
|
+
"width": 24,
|
|
2431
2466
|
},
|
|
2432
2467
|
]
|
|
2433
2468
|
}
|
|
2434
|
-
vbHeight={
|
|
2435
|
-
vbWidth={
|
|
2436
|
-
width=
|
|
2469
|
+
vbHeight={23}
|
|
2470
|
+
vbWidth={19}
|
|
2471
|
+
width={24}
|
|
2437
2472
|
>
|
|
2438
2473
|
<RNSVGGroup
|
|
2439
2474
|
fill={null}
|
|
@@ -2444,7 +2479,7 @@ exports[`test icons render an outlined user icon in the main color 1`] = `
|
|
|
2444
2479
|
}
|
|
2445
2480
|
>
|
|
2446
2481
|
<RNSVGPath
|
|
2447
|
-
d="
|
|
2482
|
+
d="M14 5.875C14 8.36028 11.9853 10.375 9.5 10.375C7.01472 10.375 5 8.36028 5 5.875C5 3.38972 7.01472 1.375 9.5 1.375C11.9853 1.375 14 3.38972 14 5.875Z"
|
|
2448
2483
|
propList={
|
|
2449
2484
|
[
|
|
2450
2485
|
"stroke",
|
|
@@ -2459,7 +2494,7 @@ exports[`test icons render an outlined user icon in the main color 1`] = `
|
|
|
2459
2494
|
strokeWidth="2"
|
|
2460
2495
|
/>
|
|
2461
2496
|
<RNSVGPath
|
|
2462
|
-
d="
|
|
2497
|
+
d="M9.5 13.75C5.15076 13.75 1.625 17.2758 1.625 21.625H17.375C17.375 17.2758 13.8492 13.75 9.5 13.75Z"
|
|
2463
2498
|
propList={
|
|
2464
2499
|
[
|
|
2465
2500
|
"stroke",
|
|
@@ -2480,11 +2515,11 @@ exports[`test icons render an outlined user icon in the main color 1`] = `
|
|
|
2480
2515
|
exports[`test icons render an outlined user-group icon in a grey color 1`] = `
|
|
2481
2516
|
<RNSVGSvgView
|
|
2482
2517
|
align="xMidYMid"
|
|
2483
|
-
bbHeight=
|
|
2484
|
-
bbWidth=
|
|
2518
|
+
bbHeight={24}
|
|
2519
|
+
bbWidth={24}
|
|
2485
2520
|
fill="none"
|
|
2486
2521
|
focusable={false}
|
|
2487
|
-
height=
|
|
2522
|
+
height={24}
|
|
2488
2523
|
meetOrSlice={0}
|
|
2489
2524
|
minX={0}
|
|
2490
2525
|
minY={0}
|
|
@@ -2496,14 +2531,14 @@ exports[`test icons render an outlined user-group icon in a grey color 1`] = `
|
|
|
2496
2531
|
},
|
|
2497
2532
|
{
|
|
2498
2533
|
"flex": 0,
|
|
2499
|
-
"height":
|
|
2500
|
-
"width":
|
|
2534
|
+
"height": 24,
|
|
2535
|
+
"width": 24,
|
|
2501
2536
|
},
|
|
2502
2537
|
]
|
|
2503
2538
|
}
|
|
2504
|
-
vbHeight={
|
|
2505
|
-
vbWidth={
|
|
2506
|
-
width=
|
|
2539
|
+
vbHeight={21}
|
|
2540
|
+
vbWidth={25}
|
|
2541
|
+
width={24}
|
|
2507
2542
|
>
|
|
2508
2543
|
<RNSVGGroup
|
|
2509
2544
|
fill={null}
|
|
@@ -2514,7 +2549,7 @@ exports[`test icons render an outlined user-group icon in a grey color 1`] = `
|
|
|
2514
2549
|
}
|
|
2515
2550
|
>
|
|
2516
2551
|
<RNSVGPath
|
|
2517
|
-
d="
|
|
2552
|
+
d="M18.125 19.5H23.75V17.25C23.75 15.386 22.239 13.875 20.375 13.875C19.2999 13.875 18.3423 14.3776 17.7242 15.1608M18.125 19.5H6.875M18.125 19.5V17.25C18.125 16.5117 17.9828 15.8067 17.7242 15.1608M6.875 19.5H1.25V17.25C1.25 15.386 2.76104 13.875 4.625 13.875C5.70006 13.875 6.65772 14.3776 7.27578 15.1608M6.875 19.5V17.25C6.875 16.5117 7.01723 15.8067 7.27578 15.1608M7.27578 15.1608C8.10519 13.0887 10.1317 11.625 12.5 11.625C14.8683 11.625 16.8948 13.0887 17.7242 15.1608M15.875 4.875C15.875 6.73896 14.364 8.25 12.5 8.25C10.636 8.25 9.125 6.73896 9.125 4.875C9.125 3.01104 10.636 1.5 12.5 1.5C14.364 1.5 15.875 3.01104 15.875 4.875ZM22.625 8.25C22.625 9.49264 21.6176 10.5 20.375 10.5C19.1324 10.5 18.125 9.49264 18.125 8.25C18.125 7.00736 19.1324 6 20.375 6C21.6176 6 22.625 7.00736 22.625 8.25ZM6.875 8.25C6.875 9.49264 5.86764 10.5 4.625 10.5C3.38236 10.5 2.375 9.49264 2.375 8.25C2.375 7.00736 3.38236 6 4.625 6C5.86764 6 6.875 7.00736 6.875 8.25Z"
|
|
2518
2553
|
propList={
|
|
2519
2554
|
[
|
|
2520
2555
|
"stroke",
|
|
@@ -2535,11 +2570,11 @@ exports[`test icons render an outlined user-group icon in a grey color 1`] = `
|
|
|
2535
2570
|
exports[`test icons render an outlined users icon in a white color 1`] = `
|
|
2536
2571
|
<RNSVGSvgView
|
|
2537
2572
|
align="xMidYMid"
|
|
2538
|
-
bbHeight=
|
|
2539
|
-
bbWidth=
|
|
2573
|
+
bbHeight={24}
|
|
2574
|
+
bbWidth={24}
|
|
2540
2575
|
fill="none"
|
|
2541
2576
|
focusable={false}
|
|
2542
|
-
height=
|
|
2577
|
+
height={24}
|
|
2543
2578
|
meetOrSlice={0}
|
|
2544
2579
|
minX={0}
|
|
2545
2580
|
minY={0}
|
|
@@ -2551,14 +2586,14 @@ exports[`test icons render an outlined users icon in a white color 1`] = `
|
|
|
2551
2586
|
},
|
|
2552
2587
|
{
|
|
2553
2588
|
"flex": 0,
|
|
2554
|
-
"height":
|
|
2555
|
-
"width":
|
|
2589
|
+
"height": 24,
|
|
2590
|
+
"width": 24,
|
|
2556
2591
|
},
|
|
2557
2592
|
]
|
|
2558
2593
|
}
|
|
2559
|
-
vbHeight={
|
|
2560
|
-
vbWidth={
|
|
2561
|
-
width=
|
|
2594
|
+
vbHeight={26}
|
|
2595
|
+
vbWidth={26}
|
|
2596
|
+
width={24}
|
|
2562
2597
|
>
|
|
2563
2598
|
<RNSVGGroup
|
|
2564
2599
|
fill={null}
|
|
@@ -2569,7 +2604,7 @@ exports[`test icons render an outlined users icon in a white color 1`] = `
|
|
|
2569
2604
|
}
|
|
2570
2605
|
>
|
|
2571
2606
|
<RNSVGPath
|
|
2572
|
-
d="
|
|
2607
|
+
d="M13 2.80557C13.9773 1.69834 15.4071 1 17 1C19.9455 1 22.3333 3.38781 22.3333 6.33333C22.3333 9.27885 19.9455 11.6667 17 11.6667C15.4071 11.6667 13.9773 10.9683 13 9.8611M17 25H1V23.6667C1 19.2484 4.58172 15.6667 9 15.6667C13.4183 15.6667 17 19.2484 17 23.6667V25ZM17 25H25V23.6667C25 19.2484 21.4183 15.6667 17 15.6667C15.5429 15.6667 14.1767 16.0562 13 16.7369M14.3333 6.33333C14.3333 9.27885 11.9455 11.6667 9 11.6667C6.05448 11.6667 3.66667 9.27885 3.66667 6.33333C3.66667 3.38781 6.05448 1 9 1C11.9455 1 14.3333 3.38781 14.3333 6.33333Z"
|
|
2573
2608
|
propList={
|
|
2574
2609
|
[
|
|
2575
2610
|
"stroke",
|
|
@@ -2586,3 +2621,58 @@ exports[`test icons render an outlined users icon in a white color 1`] = `
|
|
|
2586
2621
|
</RNSVGGroup>
|
|
2587
2622
|
</RNSVGSvgView>
|
|
2588
2623
|
`;
|
|
2624
|
+
|
|
2625
|
+
exports[`test icons render an outlined xmark icon in the main color 1`] = `
|
|
2626
|
+
<RNSVGSvgView
|
|
2627
|
+
align="xMidYMid"
|
|
2628
|
+
bbHeight={24}
|
|
2629
|
+
bbWidth={24}
|
|
2630
|
+
fill="none"
|
|
2631
|
+
focusable={false}
|
|
2632
|
+
height={24}
|
|
2633
|
+
meetOrSlice={0}
|
|
2634
|
+
minX={0}
|
|
2635
|
+
minY={0}
|
|
2636
|
+
style={
|
|
2637
|
+
[
|
|
2638
|
+
{
|
|
2639
|
+
"backgroundColor": "transparent",
|
|
2640
|
+
"borderWidth": 0,
|
|
2641
|
+
},
|
|
2642
|
+
{
|
|
2643
|
+
"flex": 0,
|
|
2644
|
+
"height": 24,
|
|
2645
|
+
"width": 24,
|
|
2646
|
+
},
|
|
2647
|
+
]
|
|
2648
|
+
}
|
|
2649
|
+
vbHeight={17}
|
|
2650
|
+
vbWidth={17}
|
|
2651
|
+
width={24}
|
|
2652
|
+
>
|
|
2653
|
+
<RNSVGGroup
|
|
2654
|
+
fill={null}
|
|
2655
|
+
propList={
|
|
2656
|
+
[
|
|
2657
|
+
"fill",
|
|
2658
|
+
]
|
|
2659
|
+
}
|
|
2660
|
+
>
|
|
2661
|
+
<RNSVGPath
|
|
2662
|
+
d="M1.75 15.25L15.25 1.75M1.75 1.75L15.25 15.25"
|
|
2663
|
+
propList={
|
|
2664
|
+
[
|
|
2665
|
+
"stroke",
|
|
2666
|
+
"strokeWidth",
|
|
2667
|
+
"strokeLinecap",
|
|
2668
|
+
"strokeLinejoin",
|
|
2669
|
+
]
|
|
2670
|
+
}
|
|
2671
|
+
stroke={4279837036}
|
|
2672
|
+
strokeLinecap={1}
|
|
2673
|
+
strokeLinejoin={1}
|
|
2674
|
+
strokeWidth="2"
|
|
2675
|
+
/>
|
|
2676
|
+
</RNSVGGroup>
|
|
2677
|
+
</RNSVGSvgView>
|
|
2678
|
+
`;
|