@tactics/toddle-styleguide 0.0.1
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/.expo-shared/assets.json +4 -0
- package/.github/workflows/run-tests.yml +16 -0
- package/.prettierrc.js +9 -0
- package/.yarnrc.yml +1 -0
- package/App.tsx +221 -0
- package/app.json +33 -0
- package/assets/adaptive-icon.png +0 -0
- package/assets/components/avatar/baby.png +0 -0
- package/assets/favicon.png +0 -0
- package/assets/fonts/montserrat/bold.ttf +0 -0
- package/assets/fonts/montserrat/regular.ttf +0 -0
- package/assets/fonts/source-sans-pro/bold.ttf +0 -0
- package/assets/fonts/source-sans-pro/regular.ttf +0 -0
- package/assets/icon.png +0 -0
- package/assets/splash.png +0 -0
- package/babel.config.js +6 -0
- package/jest.config.js +22 -0
- package/package.json +53 -0
- package/src/components/atoms/avatar/__snapshots__/avatar.test.js.snap +85 -0
- package/src/components/atoms/avatar/avatar.component.tsx +35 -0
- package/src/components/atoms/avatar/avatar.preview.tsx +38 -0
- package/src/components/atoms/avatar/avatar.styles.js +55 -0
- package/src/components/atoms/avatar/avatar.test.js +22 -0
- package/src/components/atoms/button/__snapshots__/button.test.js.snap +307 -0
- package/src/components/atoms/button/button.component.tsx +27 -0
- package/src/components/atoms/button/button.preview.tsx +34 -0
- package/src/components/atoms/button/button.styles.js +25 -0
- package/src/components/atoms/button/button.test.js +35 -0
- package/src/components/atoms/cancel-link/__snapshots__/cancel-link.test.js.snap +89 -0
- package/src/components/atoms/cancel-link/cancel-link.component.tsx +24 -0
- package/src/components/atoms/cancel-link/cancel-link.preview.tsx +20 -0
- package/src/components/atoms/cancel-link/cancel-link.styles.js +20 -0
- package/src/components/atoms/cancel-link/cancel-link.test.js +28 -0
- package/src/components/atoms/check-switch/__snapshots__/check-switch.test.js.snap +67 -0
- package/src/components/atoms/check-switch/check-switch.component.tsx +46 -0
- package/src/components/atoms/check-switch/check-switch.preview.tsx +31 -0
- package/src/components/atoms/check-switch/check-switch.styles.js +36 -0
- package/src/components/atoms/check-switch/check-switch.test.js +13 -0
- package/src/components/atoms/checkbox/__snapshots__/checkbox.test.js.snap +120 -0
- package/src/components/atoms/checkbox/checkbox.component.tsx +26 -0
- package/src/components/atoms/checkbox/checkbox.preview.tsx +46 -0
- package/src/components/atoms/checkbox/checkbox.styles.js +35 -0
- package/src/components/atoms/checkbox/checkbox.test.js +30 -0
- package/src/components/atoms/child-list-item/__snapshots__/child-list-item.test.js.snap +635 -0
- package/src/components/atoms/child-list-item/child-list-item.component.tsx +81 -0
- package/src/components/atoms/child-list-item/child-list-item.preview.tsx +65 -0
- package/src/components/atoms/child-list-item/child-list-item.styles.js +82 -0
- package/src/components/atoms/child-list-item/child-list-item.test.js +73 -0
- package/src/components/atoms/contact-item/__snapshots__/contact-item.test.js.snap +321 -0
- package/src/components/atoms/contact-item/contact-item.component.tsx +61 -0
- package/src/components/atoms/contact-item/contact-item.preview.tsx +30 -0
- package/src/components/atoms/contact-item/contact-item.styles.js +26 -0
- package/src/components/atoms/contact-item/contact-item.test.js +20 -0
- package/src/components/atoms/filter-tab/__snapshots__/filter-tab.test.js.snap +415 -0
- package/src/components/atoms/filter-tab/filter-tab.component.tsx +93 -0
- package/src/components/atoms/filter-tab/filter-tab.preview.tsx +37 -0
- package/src/components/atoms/filter-tab/filter-tab.styles.js +64 -0
- package/src/components/atoms/filter-tab/filter-tab.test.js +38 -0
- package/src/components/atoms/form-actions/__snapshots__/form-action.test.js.snap +176 -0
- package/src/components/atoms/form-actions/form-action.component.tsx +25 -0
- package/src/components/atoms/form-actions/form-action.preview.tsx +29 -0
- package/src/components/atoms/form-actions/form-action.styles.js +19 -0
- package/src/components/atoms/form-actions/form-action.test.js +32 -0
- package/src/components/atoms/image-bubble/__snapshots__/image-bubble.test.js.snap +67 -0
- package/src/components/atoms/image-bubble/image-bubble.component.tsx +25 -0
- package/src/components/atoms/image-bubble/image-bubble.preview.tsx +19 -0
- package/src/components/atoms/image-bubble/image-bubble.styles.js +31 -0
- package/src/components/atoms/image-bubble/image-bubble.test.js +20 -0
- package/src/components/atoms/info/__snapshots__/info.test.js.snap +43 -0
- package/src/components/atoms/info/info.component.tsx +22 -0
- package/src/components/atoms/info/info.preview.tsx +20 -0
- package/src/components/atoms/info/info.styles.js +25 -0
- package/src/components/atoms/info/info.test.js +18 -0
- package/src/components/atoms/pill/__snapshots__/pill.test.js.snap +141 -0
- package/src/components/atoms/pill/pill.component.tsx +23 -0
- package/src/components/atoms/pill/pill.preview.tsx +21 -0
- package/src/components/atoms/pill/pill.styles.js +32 -0
- package/src/components/atoms/pill/pill.test.js +34 -0
- package/src/components/atoms/popover/components/backdrop/backdrop.component.tsx +40 -0
- package/src/components/atoms/popover/components/backdrop/backdrop.styles.js +15 -0
- package/src/components/atoms/popover/components/foreground/foreground.component.tsx +17 -0
- package/src/components/atoms/popover/components/foreground/foreground.styles.js +17 -0
- package/src/components/atoms/popover/components/index.js +5 -0
- package/src/components/atoms/popover/components/modal/close/close.component.tsx +21 -0
- package/src/components/atoms/popover/components/modal/close/close.styles.js +13 -0
- package/src/components/atoms/popover/components/modal/heading/heading.component.tsx +22 -0
- package/src/components/atoms/popover/components/modal/heading/heading.styles.js +24 -0
- package/src/components/atoms/popover/components/modal/modal.component.tsx +87 -0
- package/src/components/atoms/popover/components/modal/modal.styles.js +23 -0
- package/src/components/atoms/popover/components/modal/scroll-content/scroll-content.component.tsx +18 -0
- package/src/components/atoms/popover/components/modal/scroll-content/scroll-content.styles.js +10 -0
- package/src/components/atoms/popover/popover.component.tsx +60 -0
- package/src/components/atoms/popover/popover.preview.tsx +135 -0
- package/src/components/atoms/popover/popover.styles.js +12 -0
- package/src/components/atoms/popover-heading/__snapshots__/popover_heading.test.js.snap +35 -0
- package/src/components/atoms/popover-heading/popover-heading.component.tsx +22 -0
- package/src/components/atoms/popover-heading/popover-heading.preview.tsx +18 -0
- package/src/components/atoms/popover-heading/popover-heading.styles.js +19 -0
- package/src/components/atoms/popover-heading/popover_heading.test.js +11 -0
- package/src/components/atoms/pressable-icon/__snapshots__/pressable-icon.test.js.snap +364 -0
- package/src/components/atoms/pressable-icon/pressable-icon.component.tsx +48 -0
- package/src/components/atoms/pressable-icon/pressable-icon.preview.tsx +37 -0
- package/src/components/atoms/pressable-icon/pressable-icon.styles.js +25 -0
- package/src/components/atoms/pressable-icon/pressable-icon.test.js +47 -0
- package/src/components/atoms/quick-filter/__snapshots__/quick-filter.test.js.snap +465 -0
- package/src/components/atoms/quick-filter/quick-filter.component.tsx +32 -0
- package/src/components/atoms/quick-filter/quick-filter.prevriew.tsx +46 -0
- package/src/components/atoms/quick-filter/quick-filter.styles.js +68 -0
- package/src/components/atoms/quick-filter/quick-filter.test.js +127 -0
- package/src/components/atoms/select-list-item/__snapshots__/select-list-item.test.js.snap +391 -0
- package/src/components/atoms/select-list-item/select-list-item-preview.tsx +31 -0
- package/src/components/atoms/select-list-item/select-list-item.test.js +38 -0
- package/src/components/atoms/select-list-item/select-list.component-item.tsx +52 -0
- package/src/components/atoms/select-list-item/select-list.styles-item.js +40 -0
- package/src/components/atoms/snackbar/__snapshots__/snackbar.test.js.snap +493 -0
- package/src/components/atoms/snackbar/snackbar.component.tsx +28 -0
- package/src/components/atoms/snackbar/snackbar.preview.tsx +33 -0
- package/src/components/atoms/snackbar/snackbar.styles.js +82 -0
- package/src/components/atoms/snackbar/snackbar.test.js +35 -0
- package/src/components/atoms/tag/__snapshots__/tag.test.js.snap +87 -0
- package/src/components/atoms/tag/tag.component.tsx +37 -0
- package/src/components/atoms/tag/tag.preview.tsx +27 -0
- package/src/components/atoms/tag/tag.styles.js +22 -0
- package/src/components/atoms/tag/tag.test.js +24 -0
- package/src/components/atoms/text-bubble/__snapshots__/text-bubble.test.js.snap +337 -0
- package/src/components/atoms/text-bubble/text-bubble.component.tsx +32 -0
- package/src/components/atoms/text-bubble/text-bubble.preview.tsx +27 -0
- package/src/components/atoms/text-bubble/text-bubble.styles.js +64 -0
- package/src/components/atoms/text-bubble/text-bubble.test.js +84 -0
- package/src/components/atoms/text-input/__snapshots__/text-input.test.js.snap +68 -0
- package/src/components/atoms/text-input/text-input.component.tsx +32 -0
- package/src/components/atoms/text-input/text-input.preview.tsx +24 -0
- package/src/components/atoms/text-input/text-input.styles.js +26 -0
- package/src/components/atoms/text-input/text-input.test.js +32 -0
- package/src/components/atoms/time-tracker/__snapshots__/time-tracker.test.js.snap +206 -0
- package/src/components/atoms/time-tracker/time-tracker.component.tsx +24 -0
- package/src/components/atoms/time-tracker/time-tracker.preview.tsx +15 -0
- package/src/components/atoms/time-tracker/time-tracker.styles.js +36 -0
- package/src/components/atoms/time-tracker/time-tracker.test.js +37 -0
- package/src/components/atoms/wide-button/__snapshots__/wide-button.test.js.snap +92 -0
- package/src/components/atoms/wide-button/wide-button.component.tsx +23 -0
- package/src/components/atoms/wide-button/wide-button.preview.tsx +18 -0
- package/src/components/atoms/wide-button/wide-button.styles.js +22 -0
- package/src/components/atoms/wide-button/wide-button.test.js +16 -0
- package/src/context/theme.context.ts +49 -0
- package/src/gradients/main/main.gradient.tsx +20 -0
- package/src/gradients/main/main.styles.js +11 -0
- package/src/icons/__snapshots__/icons.test.js.snap +2588 -0
- package/src/icons/icons.test.js +245 -0
- package/src/icons/index.tsx +7 -0
- package/src/icons/outline/calendar/calendar.icon.tsx +20 -0
- package/src/icons/outline/chat/chat.icon.tsx +20 -0
- package/src/icons/outline/chat-alt/chat-alt.icon.tsx +20 -0
- package/src/icons/outline/check-circle/check-circle.icon.tsx +20 -0
- package/src/icons/outline/chevron-left/chevron-left.icon.tsx +20 -0
- package/src/icons/outline/chevron-right/chevron-right.icon.tsx +20 -0
- package/src/icons/outline/clock/clock.icon.tsx +20 -0
- package/src/icons/outline/cloud-download/cloud-download.icon.tsx +20 -0
- package/src/icons/outline/cross/cross.icon.tsx +20 -0
- package/src/icons/outline/currency-euro/currency-euro.icon.tsx +20 -0
- package/src/icons/outline/document-text/document-text.icon.tsx +20 -0
- package/src/icons/outline/exclamation/exclamation.icon.tsx +20 -0
- package/src/icons/outline/exclamation-circle/exclamation-circle.icon.tsx +20 -0
- package/src/icons/outline/eye/eye.icon.tsx +27 -0
- package/src/icons/outline/filter/filter.icon.tsx +59 -0
- package/src/icons/outline/information-circle/information-circle.icon.tsx +20 -0
- package/src/icons/outline/logout/logout.icon.tsx +20 -0
- package/src/icons/outline/mail/mail.icon.tsx +20 -0
- package/src/icons/outline/mail-open/mail-open.icon.tsx +20 -0
- package/src/icons/outline/menu/menu.icon.tsx +20 -0
- package/src/icons/outline/minus-sm/minus-sm.icon.tsx +20 -0
- package/src/icons/outline/office-building/office-building.icon.tsx +20 -0
- package/src/icons/outline/outline-default.preview.tsx +99 -0
- package/src/icons/outline/outline-grey.preview.tsx +100 -0
- package/src/icons/outline/outline-white.preview.tsx +100 -0
- package/src/icons/outline/outline.tsx +81 -0
- package/src/icons/outline/paper-airplane/paper-airplane.icon.tsx +20 -0
- package/src/icons/outline/paperclip/paperclip.icon.tsx +20 -0
- package/src/icons/outline/pencil/pencil.icon.tsx +20 -0
- package/src/icons/outline/phone/phone.icon.tsx +20 -0
- package/src/icons/outline/plus/plus.icon.tsx +20 -0
- package/src/icons/outline/plus-sm/plus-sm.icon.tsx +20 -0
- package/src/icons/outline/qrcode/qrcode.icon.tsx +17 -0
- package/src/icons/outline/refresh/refresh.icon.tsx +20 -0
- package/src/icons/outline/search/search.icon.tsx +20 -0
- package/src/icons/outline/selector/selector.icon.tsx +20 -0
- package/src/icons/outline/sm-view-grid-add/sm-view-grid-add.icon.tsx +20 -0
- package/src/icons/outline/status-online/status-online.icon.tsx +20 -0
- package/src/icons/outline/thumb-up/thumb-up.icon.tsx +20 -0
- package/src/icons/outline/trash/trash.icon.tsx +20 -0
- package/src/icons/outline/user/user.icon.tsx +27 -0
- package/src/icons/outline/user-group/user-group.icon.tsx +20 -0
- package/src/icons/outline/users/users.icon.tsx +20 -0
- package/src/icons/solid/chat-alt/chat-alt-solid.icon.tsx +20 -0
- package/src/icons/solid/clock/clock-solid.icon.tsx +20 -0
- package/src/icons/solid/information-circle/information-circle-solid.icon.tsx +20 -0
- package/src/icons/solid/pencil/pencil-solid.icon.tsx +22 -0
- package/src/icons/solid/phone/phone-solid.icon.tsx +18 -0
- package/src/icons/solid/refresh/refresh-solid.icon.tsx +20 -0
- package/src/icons/solid/solid.preview.tsx +73 -0
- package/src/icons/solid/solid.tsx +19 -0
- package/src/icons/solid/status-online/status-online-solid.icon.tsx +24 -0
- package/src/icons/solid/trash/trash-solid.icon.tsx +20 -0
- package/src/models/hex-color.model.ts +25 -0
- package/src/models/hex-color.test.js +20 -0
- package/src/models/initials.model.ts +32 -0
- package/src/models/initials.test.js +23 -0
- package/src/theme/font/font.ts +72 -0
- package/src/theme/font/index.ts +4 -0
- package/src/theme/font/load-fonts.ts +10 -0
- package/src/theme/provider/index.ts +4 -0
- package/src/theme/provider/parent.theme.ts +45 -0
- package/src/theme/provider/staff-member.theme.ts +45 -0
- package/src/theme/scale/index.ts +14 -0
- package/src/types/bubble-alignment.enum.ts +4 -0
- package/src/types/icontype.type.ts +3 -0
- package/src/types/keyboard-types.enum.ts +9 -0
- package/src/types/size.enum.ts +5 -0
- package/src/types/visual-state.enum.ts +6 -0
- package/tsconfig.json +7 -0
|
@@ -0,0 +1,2588 @@
|
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
+
|
|
3
|
+
exports[`test icons render a solid chat-alt icon in a coral color 1`] = `
|
|
4
|
+
<RNSVGSvgView
|
|
5
|
+
align="xMidYMid"
|
|
6
|
+
bbHeight="28"
|
|
7
|
+
bbWidth="28"
|
|
8
|
+
fill="none"
|
|
9
|
+
focusable={false}
|
|
10
|
+
height="28"
|
|
11
|
+
meetOrSlice={0}
|
|
12
|
+
minX={0}
|
|
13
|
+
minY={0}
|
|
14
|
+
style={
|
|
15
|
+
[
|
|
16
|
+
{
|
|
17
|
+
"backgroundColor": "transparent",
|
|
18
|
+
"borderWidth": 0,
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"flex": 0,
|
|
22
|
+
"height": 28,
|
|
23
|
+
"width": 28,
|
|
24
|
+
},
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
vbHeight={32}
|
|
28
|
+
vbWidth={32}
|
|
29
|
+
width="28"
|
|
30
|
+
>
|
|
31
|
+
<RNSVGGroup
|
|
32
|
+
fill={null}
|
|
33
|
+
propList={
|
|
34
|
+
[
|
|
35
|
+
"fill",
|
|
36
|
+
]
|
|
37
|
+
}
|
|
38
|
+
>
|
|
39
|
+
<RNSVGPath
|
|
40
|
+
clipRule={0}
|
|
41
|
+
d="M28.2428 7.9998V20.7998C28.2428 22.5671 26.8724 23.9998 25.1819 23.9998H17.5298L9.8776 30.3998V23.9998H6.81673C5.12626 23.9998 3.75586 22.5671 3.75586 20.7998V7.9998C3.75586 6.23249 5.12626 4.7998 6.81673 4.7998H25.1819C26.8724 4.7998 28.2428 6.23249 28.2428 7.9998ZM11.408 12.7998H8.34716V15.9998H11.408V12.7998ZM14.4689 12.7998H17.5298V15.9998H14.4689V12.7998ZM23.6515 12.7998H20.5906V15.9998H23.6515V12.7998Z"
|
|
42
|
+
fill={4294934352}
|
|
43
|
+
fillRule={0}
|
|
44
|
+
propList={
|
|
45
|
+
[
|
|
46
|
+
"fill",
|
|
47
|
+
"fillRule",
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
/>
|
|
51
|
+
</RNSVGGroup>
|
|
52
|
+
</RNSVGSvgView>
|
|
53
|
+
`;
|
|
54
|
+
|
|
55
|
+
exports[`test icons render a solid clock icon in a darkcyan color 1`] = `
|
|
56
|
+
<RNSVGSvgView
|
|
57
|
+
align="xMidYMid"
|
|
58
|
+
bbHeight="28"
|
|
59
|
+
bbWidth="28"
|
|
60
|
+
fill="none"
|
|
61
|
+
focusable={false}
|
|
62
|
+
height="28"
|
|
63
|
+
meetOrSlice={0}
|
|
64
|
+
minX={0}
|
|
65
|
+
minY={0}
|
|
66
|
+
style={
|
|
67
|
+
[
|
|
68
|
+
{
|
|
69
|
+
"backgroundColor": "transparent",
|
|
70
|
+
"borderWidth": 0,
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"flex": 0,
|
|
74
|
+
"height": 28,
|
|
75
|
+
"width": 28,
|
|
76
|
+
},
|
|
77
|
+
]
|
|
78
|
+
}
|
|
79
|
+
vbHeight={22}
|
|
80
|
+
vbWidth={22}
|
|
81
|
+
width="28"
|
|
82
|
+
>
|
|
83
|
+
<RNSVGGroup
|
|
84
|
+
fill={null}
|
|
85
|
+
propList={
|
|
86
|
+
[
|
|
87
|
+
"fill",
|
|
88
|
+
]
|
|
89
|
+
}
|
|
90
|
+
>
|
|
91
|
+
<RNSVGPath
|
|
92
|
+
clipRule={0}
|
|
93
|
+
d="M11 19.8C15.8601 19.8 19.7999 15.8601 19.7999 11C19.7999 6.13991 15.8601 2.20001 11 2.20001C6.13985 2.20001 2.19995 6.13991 2.19995 11C2.19995 15.8601 6.13985 19.8 11 19.8ZM12 6.60001C12 6.04773 11.5522 5.60001 11 5.60001C10.4477 5.60001 9.99995 6.04773 9.99995 6.60001V11C9.99995 11.2652 10.1053 11.5196 10.2928 11.7071L13.4041 14.8184C13.7946 15.2089 14.4278 15.2089 14.8183 14.8184C15.2089 14.4279 15.2089 13.7947 14.8183 13.4042L12 10.5858V6.60001Z"
|
|
94
|
+
fill={4278225803}
|
|
95
|
+
fillRule={0}
|
|
96
|
+
propList={
|
|
97
|
+
[
|
|
98
|
+
"fill",
|
|
99
|
+
"fillRule",
|
|
100
|
+
]
|
|
101
|
+
}
|
|
102
|
+
/>
|
|
103
|
+
</RNSVGGroup>
|
|
104
|
+
</RNSVGSvgView>
|
|
105
|
+
`;
|
|
106
|
+
|
|
107
|
+
exports[`test icons render a solid information-circle icon in a gold color 1`] = `
|
|
108
|
+
<RNSVGSvgView
|
|
109
|
+
align="xMidYMid"
|
|
110
|
+
bbHeight="28"
|
|
111
|
+
bbWidth="28"
|
|
112
|
+
fill="none"
|
|
113
|
+
focusable={false}
|
|
114
|
+
height="28"
|
|
115
|
+
meetOrSlice={0}
|
|
116
|
+
minX={0}
|
|
117
|
+
minY={0}
|
|
118
|
+
style={
|
|
119
|
+
[
|
|
120
|
+
{
|
|
121
|
+
"backgroundColor": "transparent",
|
|
122
|
+
"borderWidth": 0,
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"flex": 0,
|
|
126
|
+
"height": 28,
|
|
127
|
+
"width": 28,
|
|
128
|
+
},
|
|
129
|
+
]
|
|
130
|
+
}
|
|
131
|
+
vbHeight={22}
|
|
132
|
+
vbWidth={22}
|
|
133
|
+
width="28"
|
|
134
|
+
>
|
|
135
|
+
<RNSVGGroup
|
|
136
|
+
fill={null}
|
|
137
|
+
propList={
|
|
138
|
+
[
|
|
139
|
+
"fill",
|
|
140
|
+
]
|
|
141
|
+
}
|
|
142
|
+
>
|
|
143
|
+
<RNSVGPath
|
|
144
|
+
clipRule={0}
|
|
145
|
+
d="M11 19.8C15.8601 19.8 19.7999 15.8601 19.7999 11C19.7999 6.13991 15.8601 2.20001 11 2.20001C6.13985 2.20001 2.19995 6.13991 2.19995 11C2.19995 15.8601 6.13985 19.8 11 19.8ZM12 6.60001C12 6.04773 11.5522 5.60001 11 5.60001C10.4477 5.60001 9.99995 6.04773 9.99995 6.60001V11C9.99995 11.2652 10.1053 11.5196 10.2928 11.7071L13.4041 14.8184C13.7946 15.2089 14.4278 15.2089 14.8183 14.8184C15.2089 14.4279 15.2089 13.7947 14.8183 13.4042L12 10.5858V6.60001Z"
|
|
146
|
+
fill={4294956800}
|
|
147
|
+
fillRule={0}
|
|
148
|
+
propList={
|
|
149
|
+
[
|
|
150
|
+
"fill",
|
|
151
|
+
"fillRule",
|
|
152
|
+
]
|
|
153
|
+
}
|
|
154
|
+
/>
|
|
155
|
+
</RNSVGGroup>
|
|
156
|
+
</RNSVGSvgView>
|
|
157
|
+
`;
|
|
158
|
+
|
|
159
|
+
exports[`test icons render a solid pencil icon in a grey color 1`] = `
|
|
160
|
+
<RNSVGSvgView
|
|
161
|
+
align="xMidYMid"
|
|
162
|
+
bbHeight="28"
|
|
163
|
+
bbWidth="28"
|
|
164
|
+
fill="none"
|
|
165
|
+
focusable={false}
|
|
166
|
+
height="28"
|
|
167
|
+
meetOrSlice={0}
|
|
168
|
+
minX={0}
|
|
169
|
+
minY={0}
|
|
170
|
+
style={
|
|
171
|
+
[
|
|
172
|
+
{
|
|
173
|
+
"backgroundColor": "transparent",
|
|
174
|
+
"borderWidth": 0,
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"flex": 0,
|
|
178
|
+
"height": 28,
|
|
179
|
+
"width": 28,
|
|
180
|
+
},
|
|
181
|
+
]
|
|
182
|
+
}
|
|
183
|
+
vbHeight={23}
|
|
184
|
+
vbWidth={23}
|
|
185
|
+
width="28"
|
|
186
|
+
>
|
|
187
|
+
<RNSVGGroup
|
|
188
|
+
fill={null}
|
|
189
|
+
propList={
|
|
190
|
+
[
|
|
191
|
+
"fill",
|
|
192
|
+
]
|
|
193
|
+
}
|
|
194
|
+
>
|
|
195
|
+
<RNSVGPath
|
|
196
|
+
d="M15.4442 4.12385C16.3033 3.22564 17.6963 3.22564 18.5554 4.12385C19.4146 5.02206 19.4146 6.47833 18.5554 7.37654L17.6833 8.28837L14.572 5.03568L15.4442 4.12385Z"
|
|
197
|
+
fill={4286611584}
|
|
198
|
+
propList={
|
|
199
|
+
[
|
|
200
|
+
"fill",
|
|
201
|
+
]
|
|
202
|
+
}
|
|
203
|
+
/>
|
|
204
|
+
<RNSVGPath
|
|
205
|
+
d="M13.0164 6.66202L3.7998 16.2975V19.5502H6.91107L16.1276 9.91471L13.0164 6.66202Z"
|
|
206
|
+
fill={4286611584}
|
|
207
|
+
propList={
|
|
208
|
+
[
|
|
209
|
+
"fill",
|
|
210
|
+
]
|
|
211
|
+
}
|
|
212
|
+
/>
|
|
213
|
+
</RNSVGGroup>
|
|
214
|
+
</RNSVGSvgView>
|
|
215
|
+
`;
|
|
216
|
+
|
|
217
|
+
exports[`test icons render a solid phone icon in an ivory color 1`] = `
|
|
218
|
+
<RNSVGSvgView
|
|
219
|
+
align="xMidYMid"
|
|
220
|
+
bbHeight="28"
|
|
221
|
+
bbWidth="28"
|
|
222
|
+
fill="none"
|
|
223
|
+
focusable={false}
|
|
224
|
+
height="28"
|
|
225
|
+
meetOrSlice={0}
|
|
226
|
+
minX={0}
|
|
227
|
+
minY={0}
|
|
228
|
+
style={
|
|
229
|
+
[
|
|
230
|
+
{
|
|
231
|
+
"backgroundColor": "transparent",
|
|
232
|
+
"borderWidth": 0,
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"flex": 0,
|
|
236
|
+
"height": 28,
|
|
237
|
+
"width": 28,
|
|
238
|
+
},
|
|
239
|
+
]
|
|
240
|
+
}
|
|
241
|
+
vbHeight={22}
|
|
242
|
+
vbWidth={22}
|
|
243
|
+
width="28"
|
|
244
|
+
>
|
|
245
|
+
<RNSVGGroup
|
|
246
|
+
fill={null}
|
|
247
|
+
propList={
|
|
248
|
+
[
|
|
249
|
+
"fill",
|
|
250
|
+
]
|
|
251
|
+
}
|
|
252
|
+
>
|
|
253
|
+
<RNSVGPath
|
|
254
|
+
d="M2.19995 3.30001C2.19995 2.6925 2.69244 2.20001 3.29995 2.20001H5.66811C6.20583 2.20001 6.66474 2.58877 6.75314 3.11917L7.56639 7.99863C7.64578 8.47497 7.40521 8.94738 6.97329 9.16334L5.27034 10.0148C6.49827 13.0662 8.9338 15.5017 11.9851 16.7296L12.8366 15.0267C13.0526 14.5947 13.525 14.3542 14.0013 14.4336L18.8808 15.2468C19.4112 15.3352 19.7999 15.7941 19.7999 16.3319V18.7C19.7999 19.3075 19.3075 19.8 18.6999 19.8H16.5C8.60228 19.8 2.19995 13.3977 2.19995 5.50001V3.30001Z"
|
|
255
|
+
fill={4294967280}
|
|
256
|
+
propList={
|
|
257
|
+
[
|
|
258
|
+
"fill",
|
|
259
|
+
]
|
|
260
|
+
}
|
|
261
|
+
/>
|
|
262
|
+
</RNSVGGroup>
|
|
263
|
+
</RNSVGSvgView>
|
|
264
|
+
`;
|
|
265
|
+
|
|
266
|
+
exports[`test icons render a solid refresh icon in the main color 1`] = `
|
|
267
|
+
<RNSVGSvgView
|
|
268
|
+
align="xMidYMid"
|
|
269
|
+
bbHeight="28"
|
|
270
|
+
bbWidth="28"
|
|
271
|
+
fill="none"
|
|
272
|
+
focusable={false}
|
|
273
|
+
height="28"
|
|
274
|
+
meetOrSlice={0}
|
|
275
|
+
minX={0}
|
|
276
|
+
minY={0}
|
|
277
|
+
style={
|
|
278
|
+
[
|
|
279
|
+
{
|
|
280
|
+
"backgroundColor": "transparent",
|
|
281
|
+
"borderWidth": 0,
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"flex": 0,
|
|
285
|
+
"height": 28,
|
|
286
|
+
"width": 28,
|
|
287
|
+
},
|
|
288
|
+
]
|
|
289
|
+
}
|
|
290
|
+
vbHeight={22}
|
|
291
|
+
vbWidth={22}
|
|
292
|
+
width="28"
|
|
293
|
+
>
|
|
294
|
+
<RNSVGGroup
|
|
295
|
+
fill={null}
|
|
296
|
+
propList={
|
|
297
|
+
[
|
|
298
|
+
"fill",
|
|
299
|
+
]
|
|
300
|
+
}
|
|
301
|
+
>
|
|
302
|
+
<RNSVGPath
|
|
303
|
+
d="M4.40005 2.20001C5.00756 2.20001 5.50005 2.6925 5.50005 3.30001V5.61139C6.89715 4.18539 8.84462 3.30001 11 3.30001C14.3544 3.30001 17.2051 5.44426 18.2616 8.43344C18.4641 9.00623 18.1639 9.63468 17.5911 9.83714C17.0183 10.0396 16.3898 9.73937 16.1874 9.16658C15.4318 7.02891 13.3931 5.50001 11 5.50001C9.20162 5.50001 7.60329 6.36353 6.59934 7.70001H9.90005C10.5076 7.70001 11 8.1925 11 8.80001C11 9.40752 10.5076 9.90001 9.90005 9.90001H4.40005C3.79254 9.90001 3.30005 9.40752 3.30005 8.80001V3.30001C3.30005 2.6925 3.79254 2.20001 4.40005 2.20001ZM4.40903 12.1629C4.98182 11.9604 5.61027 12.2607 5.81273 12.8334C6.56828 14.9711 8.60703 16.5 11 16.5C12.7985 16.5 14.3968 15.6365 15.4008 14.3L12.1 14.3C11.4925 14.3 11 13.8075 11 13.2C11 12.5925 11.4925 12.1 12.1 12.1H17.6C17.8918 12.1 18.1716 12.2159 18.3779 12.4222C18.5842 12.6285 18.7 12.9083 18.7 13.2V18.7C18.7 19.3075 18.2076 19.8 17.6 19.8C16.9925 19.8 16.5 19.3075 16.5 18.7V16.3886C15.1029 17.8146 13.1555 18.7 11 18.7C7.6457 18.7 4.795 16.5558 3.73848 13.5666C3.53603 12.9938 3.83624 12.3653 4.40903 12.1629Z"
|
|
304
|
+
fill={4279837036}
|
|
305
|
+
propList={
|
|
306
|
+
[
|
|
307
|
+
"fill",
|
|
308
|
+
]
|
|
309
|
+
}
|
|
310
|
+
/>
|
|
311
|
+
</RNSVGGroup>
|
|
312
|
+
</RNSVGSvgView>
|
|
313
|
+
`;
|
|
314
|
+
|
|
315
|
+
exports[`test icons render a solid status-online icon in a navy color 1`] = `
|
|
316
|
+
<RNSVGSvgView
|
|
317
|
+
align="xMidYMid"
|
|
318
|
+
bbHeight="28"
|
|
319
|
+
bbWidth="28"
|
|
320
|
+
fill="none"
|
|
321
|
+
focusable={false}
|
|
322
|
+
height="28"
|
|
323
|
+
meetOrSlice={0}
|
|
324
|
+
minX={0}
|
|
325
|
+
minY={0}
|
|
326
|
+
style={
|
|
327
|
+
[
|
|
328
|
+
{
|
|
329
|
+
"backgroundColor": "transparent",
|
|
330
|
+
"borderWidth": 0,
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"flex": 0,
|
|
334
|
+
"height": 28,
|
|
335
|
+
"width": 28,
|
|
336
|
+
},
|
|
337
|
+
]
|
|
338
|
+
}
|
|
339
|
+
vbHeight={62}
|
|
340
|
+
vbWidth={62}
|
|
341
|
+
width="28"
|
|
342
|
+
>
|
|
343
|
+
<RNSVGGroup
|
|
344
|
+
fill={null}
|
|
345
|
+
propList={
|
|
346
|
+
[
|
|
347
|
+
"fill",
|
|
348
|
+
]
|
|
349
|
+
}
|
|
350
|
+
>
|
|
351
|
+
<RNSVGPath
|
|
352
|
+
clipRule={0}
|
|
353
|
+
d="M15.6564 11.2713C16.867 12.4819 16.867 14.4447 15.6564 15.6553C7.18199 24.1297 7.18199 37.8694 15.6564 46.3438C16.867 47.5544 16.867 49.5172 15.6564 50.7278C14.4457 51.9384 12.4829 51.9384 11.2723 50.7278C0.376679 39.8322 0.37668 22.1669 11.2723 11.2712C12.4829 10.0606 14.4457 10.0606 15.6564 11.2713ZM46.3448 11.272C47.5555 10.0613 49.5183 10.0613 50.7289 11.272C61.6245 22.1676 61.6245 39.8329 50.7289 50.7285C49.5183 51.9392 47.5555 51.9392 46.3448 50.7285C45.1342 49.5179 45.1342 47.5551 46.3448 46.3445C54.8192 37.8701 54.8192 24.1304 46.3448 15.656C45.1342 14.4454 45.1342 12.4826 46.3448 11.272ZM24.4245 20.0394C25.6351 21.25 25.6351 23.2128 24.4245 24.4234C20.7926 28.0553 20.7926 33.9437 24.4245 37.5756C25.6351 38.7863 25.6351 40.7491 24.4245 41.9597C23.2139 43.1703 21.2511 43.1703 20.0404 41.9597C13.9873 35.9066 13.9873 26.0925 20.0404 20.0394C21.2511 18.8288 23.2139 18.8288 24.4245 20.0394ZM37.5767 20.0401C38.7873 18.8295 40.7501 18.8295 41.9608 20.0401C48.0139 26.0932 48.0139 35.9073 41.9608 41.9604C40.7501 43.171 38.7873 43.171 37.5767 41.9604C36.3661 40.7498 36.3661 38.787 37.5767 37.5763C41.2086 33.9445 41.2086 28.056 37.5767 24.4242C36.3661 23.2135 36.3661 21.2507 37.5767 20.0401ZM31.0006 27.9002C32.7127 27.9002 34.1006 29.2882 34.1006 31.0002V31.0312C34.1006 32.7433 32.7127 34.1312 31.0006 34.1312C29.2885 34.1312 27.9006 32.7433 27.9006 31.0312V31.0002C27.9006 29.2882 29.2885 27.9002 31.0006 27.9002Z"
|
|
354
|
+
fill={4278190208}
|
|
355
|
+
fillRule={0}
|
|
356
|
+
propList={
|
|
357
|
+
[
|
|
358
|
+
"fill",
|
|
359
|
+
"fillRule",
|
|
360
|
+
"stroke",
|
|
361
|
+
]
|
|
362
|
+
}
|
|
363
|
+
stroke={4278190208}
|
|
364
|
+
/>
|
|
365
|
+
</RNSVGGroup>
|
|
366
|
+
</RNSVGSvgView>
|
|
367
|
+
`;
|
|
368
|
+
|
|
369
|
+
exports[`test icons render a solid trash icon in a tomato color 1`] = `
|
|
370
|
+
<RNSVGSvgView
|
|
371
|
+
align="xMidYMid"
|
|
372
|
+
bbHeight="28"
|
|
373
|
+
bbWidth="28"
|
|
374
|
+
fill="none"
|
|
375
|
+
focusable={false}
|
|
376
|
+
height="28"
|
|
377
|
+
meetOrSlice={0}
|
|
378
|
+
minX={0}
|
|
379
|
+
minY={0}
|
|
380
|
+
style={
|
|
381
|
+
[
|
|
382
|
+
{
|
|
383
|
+
"backgroundColor": "transparent",
|
|
384
|
+
"borderWidth": 0,
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"flex": 0,
|
|
388
|
+
"height": 28,
|
|
389
|
+
"width": 28,
|
|
390
|
+
},
|
|
391
|
+
]
|
|
392
|
+
}
|
|
393
|
+
vbHeight={22}
|
|
394
|
+
vbWidth={24}
|
|
395
|
+
width="28"
|
|
396
|
+
>
|
|
397
|
+
<RNSVGGroup
|
|
398
|
+
fill={null}
|
|
399
|
+
propList={
|
|
400
|
+
[
|
|
401
|
+
"fill",
|
|
402
|
+
]
|
|
403
|
+
}
|
|
404
|
+
>
|
|
405
|
+
<RNSVGPath
|
|
406
|
+
clipRule={0}
|
|
407
|
+
d="M10.8502 2.2002C10.4146 2.2002 10.0164 2.4356 9.8216 2.80826L8.98946 4.4002H5.1002C4.46507 4.4002 3.9502 4.89268 3.9502 5.5002C3.9502 6.10771 4.46507 6.6002 5.1002 6.6002L5.1002 17.6002C5.1002 18.8152 6.12994 19.8002 7.4002 19.8002H16.6002C17.8705 19.8002 18.9002 18.8152 18.9002 17.6002V6.6002C19.5353 6.6002 20.0502 6.10771 20.0502 5.5002C20.0502 4.89268 19.5353 4.4002 18.9002 4.4002H15.0109L14.1788 2.80826C13.984 2.4356 13.5858 2.2002 13.1502 2.2002H10.8502ZM8.5502 8.8002C8.5502 8.19268 9.06507 7.7002 9.7002 7.7002C10.3353 7.7002 10.8502 8.19268 10.8502 8.8002V15.4002C10.8502 16.0077 10.3353 16.5002 9.7002 16.5002C9.06507 16.5002 8.5502 16.0077 8.5502 15.4002V8.8002ZM14.3002 7.7002C13.6651 7.7002 13.1502 8.19268 13.1502 8.8002V15.4002C13.1502 16.0077 13.6651 16.5002 14.3002 16.5002C14.9353 16.5002 15.4502 16.0077 15.4502 15.4002V8.8002C15.4502 8.19268 14.9353 7.7002 14.3002 7.7002Z"
|
|
408
|
+
fill={4294927175}
|
|
409
|
+
fillRule={0}
|
|
410
|
+
propList={
|
|
411
|
+
[
|
|
412
|
+
"fill",
|
|
413
|
+
"fillRule",
|
|
414
|
+
]
|
|
415
|
+
}
|
|
416
|
+
/>
|
|
417
|
+
</RNSVGGroup>
|
|
418
|
+
</RNSVGSvgView>
|
|
419
|
+
`;
|
|
420
|
+
|
|
421
|
+
exports[`test icons render an outlined calendar icon in the main color 1`] = `
|
|
422
|
+
<RNSVGSvgView
|
|
423
|
+
align="xMidYMid"
|
|
424
|
+
bbHeight="28"
|
|
425
|
+
bbWidth="28"
|
|
426
|
+
fill="none"
|
|
427
|
+
focusable={false}
|
|
428
|
+
height="28"
|
|
429
|
+
meetOrSlice={0}
|
|
430
|
+
minX={0}
|
|
431
|
+
minY={0}
|
|
432
|
+
style={
|
|
433
|
+
[
|
|
434
|
+
{
|
|
435
|
+
"backgroundColor": "transparent",
|
|
436
|
+
"borderWidth": 0,
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"flex": 0,
|
|
440
|
+
"height": 28,
|
|
441
|
+
"width": 28,
|
|
442
|
+
},
|
|
443
|
+
]
|
|
444
|
+
}
|
|
445
|
+
vbHeight={27}
|
|
446
|
+
vbWidth={27}
|
|
447
|
+
width="28"
|
|
448
|
+
>
|
|
449
|
+
<RNSVGGroup
|
|
450
|
+
fill={null}
|
|
451
|
+
propList={
|
|
452
|
+
[
|
|
453
|
+
"fill",
|
|
454
|
+
]
|
|
455
|
+
}
|
|
456
|
+
>
|
|
457
|
+
<RNSVGPath
|
|
458
|
+
d="M9.16667 7.875V3.375M17.8333 7.875V3.375M8.08333 12.375H18.9167M5.91667 23.625H21.0833C22.28 23.625 23.25 22.6176 23.25 21.375V7.875C23.25 6.63236 22.28 5.625 21.0833 5.625H5.91667C4.72005 5.625 3.75 6.63236 3.75 7.875V21.375C3.75 22.6176 4.72005 23.625 5.91667 23.625Z"
|
|
459
|
+
propList={
|
|
460
|
+
[
|
|
461
|
+
"stroke",
|
|
462
|
+
"strokeWidth",
|
|
463
|
+
"strokeLinecap",
|
|
464
|
+
"strokeLinejoin",
|
|
465
|
+
]
|
|
466
|
+
}
|
|
467
|
+
stroke={4279837036}
|
|
468
|
+
strokeLinecap={1}
|
|
469
|
+
strokeLinejoin={1}
|
|
470
|
+
strokeWidth="2"
|
|
471
|
+
/>
|
|
472
|
+
</RNSVGGroup>
|
|
473
|
+
</RNSVGSvgView>
|
|
474
|
+
`;
|
|
475
|
+
|
|
476
|
+
exports[`test icons render an outlined chat icon in the main color 1`] = `
|
|
477
|
+
<RNSVGSvgView
|
|
478
|
+
align="xMidYMid"
|
|
479
|
+
bbHeight="28"
|
|
480
|
+
bbWidth="28"
|
|
481
|
+
fill="none"
|
|
482
|
+
focusable={false}
|
|
483
|
+
height="28"
|
|
484
|
+
meetOrSlice={0}
|
|
485
|
+
minX={0}
|
|
486
|
+
minY={0}
|
|
487
|
+
style={
|
|
488
|
+
[
|
|
489
|
+
{
|
|
490
|
+
"backgroundColor": "transparent",
|
|
491
|
+
"borderWidth": 0,
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"flex": 0,
|
|
495
|
+
"height": 28,
|
|
496
|
+
"width": 28,
|
|
497
|
+
},
|
|
498
|
+
]
|
|
499
|
+
}
|
|
500
|
+
vbHeight={28}
|
|
501
|
+
vbWidth={28}
|
|
502
|
+
width="28"
|
|
503
|
+
>
|
|
504
|
+
<RNSVGGroup
|
|
505
|
+
fill={null}
|
|
506
|
+
propList={
|
|
507
|
+
[
|
|
508
|
+
"fill",
|
|
509
|
+
]
|
|
510
|
+
}
|
|
511
|
+
>
|
|
512
|
+
<RNSVGPath
|
|
513
|
+
d="M9.5 14H9.51125M14 14H14.0113M18.5 14H18.5113M24.125 14C24.125 18.9706 19.5919 23 14 23C12.2683 23 10.6382 22.6136 9.21275 21.9324L3.875 23L5.44436 18.815C4.45051 17.4226 3.875 15.7711 3.875 14C3.875 9.02944 8.40812 5 14 5C19.5919 5 24.125 9.02944 24.125 14Z"
|
|
514
|
+
propList={
|
|
515
|
+
[
|
|
516
|
+
"stroke",
|
|
517
|
+
"strokeWidth",
|
|
518
|
+
"strokeLinecap",
|
|
519
|
+
"strokeLinejoin",
|
|
520
|
+
]
|
|
521
|
+
}
|
|
522
|
+
stroke={4279837036}
|
|
523
|
+
strokeLinecap={1}
|
|
524
|
+
strokeLinejoin={1}
|
|
525
|
+
strokeWidth="2"
|
|
526
|
+
/>
|
|
527
|
+
</RNSVGGroup>
|
|
528
|
+
</RNSVGSvgView>
|
|
529
|
+
`;
|
|
530
|
+
|
|
531
|
+
exports[`test icons render an outlined chat-alt icon in a grey color 1`] = `
|
|
532
|
+
<RNSVGSvgView
|
|
533
|
+
align="xMidYMid"
|
|
534
|
+
bbHeight="28"
|
|
535
|
+
bbWidth="28"
|
|
536
|
+
fill="none"
|
|
537
|
+
focusable={false}
|
|
538
|
+
height="28"
|
|
539
|
+
meetOrSlice={0}
|
|
540
|
+
minX={0}
|
|
541
|
+
minY={0}
|
|
542
|
+
style={
|
|
543
|
+
[
|
|
544
|
+
{
|
|
545
|
+
"backgroundColor": "transparent",
|
|
546
|
+
"borderWidth": 0,
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"flex": 0,
|
|
550
|
+
"height": 28,
|
|
551
|
+
"width": 28,
|
|
552
|
+
},
|
|
553
|
+
]
|
|
554
|
+
}
|
|
555
|
+
vbHeight={27}
|
|
556
|
+
vbWidth={27}
|
|
557
|
+
width="28"
|
|
558
|
+
>
|
|
559
|
+
<RNSVGGroup
|
|
560
|
+
fill={null}
|
|
561
|
+
propList={
|
|
562
|
+
[
|
|
563
|
+
"fill",
|
|
564
|
+
]
|
|
565
|
+
}
|
|
566
|
+
>
|
|
567
|
+
<RNSVGPath
|
|
568
|
+
d="M9 11.25H9.01125M13.5 11.25H13.5113M18 11.25H18.0113M10.125 18H5.625C4.38236 18 3.375 16.9926 3.375 15.75V6.75C3.375 5.50736 4.38236 4.5 5.625 4.5H21.375C22.6176 4.5 23.625 5.50736 23.625 6.75V15.75C23.625 16.9926 22.6176 18 21.375 18H15.75L10.125 23.625V18Z"
|
|
569
|
+
propList={
|
|
570
|
+
[
|
|
571
|
+
"stroke",
|
|
572
|
+
"strokeWidth",
|
|
573
|
+
"strokeLinecap",
|
|
574
|
+
"strokeLinejoin",
|
|
575
|
+
]
|
|
576
|
+
}
|
|
577
|
+
stroke={4286611584}
|
|
578
|
+
strokeLinecap={1}
|
|
579
|
+
strokeLinejoin={1}
|
|
580
|
+
strokeWidth="2"
|
|
581
|
+
/>
|
|
582
|
+
</RNSVGGroup>
|
|
583
|
+
</RNSVGSvgView>
|
|
584
|
+
`;
|
|
585
|
+
|
|
586
|
+
exports[`test icons render an outlined check-circle icon in a grey color 1`] = `
|
|
587
|
+
<RNSVGSvgView
|
|
588
|
+
align="xMidYMid"
|
|
589
|
+
bbHeight="28"
|
|
590
|
+
bbWidth="28"
|
|
591
|
+
fill="none"
|
|
592
|
+
focusable={false}
|
|
593
|
+
height="28"
|
|
594
|
+
meetOrSlice={0}
|
|
595
|
+
minX={0}
|
|
596
|
+
minY={0}
|
|
597
|
+
style={
|
|
598
|
+
[
|
|
599
|
+
{
|
|
600
|
+
"backgroundColor": "transparent",
|
|
601
|
+
"borderWidth": 0,
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"flex": 0,
|
|
605
|
+
"height": 28,
|
|
606
|
+
"width": 28,
|
|
607
|
+
},
|
|
608
|
+
]
|
|
609
|
+
}
|
|
610
|
+
vbHeight={27}
|
|
611
|
+
vbWidth={27}
|
|
612
|
+
width="28"
|
|
613
|
+
>
|
|
614
|
+
<RNSVGGroup
|
|
615
|
+
fill={null}
|
|
616
|
+
propList={
|
|
617
|
+
[
|
|
618
|
+
"fill",
|
|
619
|
+
]
|
|
620
|
+
}
|
|
621
|
+
>
|
|
622
|
+
<RNSVGPath
|
|
623
|
+
d="M10.125 13.5L12.375 15.75L16.875 11.25M23.625 13.5C23.625 19.0919 19.0919 23.625 13.5 23.625C7.90812 23.625 3.375 19.0919 3.375 13.5C3.375 7.90812 7.90812 3.375 13.5 3.375C19.0919 3.375 23.625 7.90812 23.625 13.5Z"
|
|
624
|
+
propList={
|
|
625
|
+
[
|
|
626
|
+
"stroke",
|
|
627
|
+
"strokeWidth",
|
|
628
|
+
"strokeLinecap",
|
|
629
|
+
"strokeLinejoin",
|
|
630
|
+
]
|
|
631
|
+
}
|
|
632
|
+
stroke={4286611584}
|
|
633
|
+
strokeLinecap={1}
|
|
634
|
+
strokeLinejoin={1}
|
|
635
|
+
strokeWidth="2"
|
|
636
|
+
/>
|
|
637
|
+
</RNSVGGroup>
|
|
638
|
+
</RNSVGSvgView>
|
|
639
|
+
`;
|
|
640
|
+
|
|
641
|
+
exports[`test icons render an outlined chevron-left icon in a white color 1`] = `
|
|
642
|
+
<RNSVGSvgView
|
|
643
|
+
align="xMidYMid"
|
|
644
|
+
bbHeight="28"
|
|
645
|
+
bbWidth="28"
|
|
646
|
+
fill="none"
|
|
647
|
+
focusable={false}
|
|
648
|
+
height="28"
|
|
649
|
+
meetOrSlice={0}
|
|
650
|
+
minX={0}
|
|
651
|
+
minY={0}
|
|
652
|
+
style={
|
|
653
|
+
[
|
|
654
|
+
{
|
|
655
|
+
"backgroundColor": "transparent",
|
|
656
|
+
"borderWidth": 0,
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"flex": 0,
|
|
660
|
+
"height": 28,
|
|
661
|
+
"width": 28,
|
|
662
|
+
},
|
|
663
|
+
]
|
|
664
|
+
}
|
|
665
|
+
vbHeight={27}
|
|
666
|
+
vbWidth={27}
|
|
667
|
+
width="28"
|
|
668
|
+
>
|
|
669
|
+
<RNSVGGroup
|
|
670
|
+
fill={null}
|
|
671
|
+
propList={
|
|
672
|
+
[
|
|
673
|
+
"fill",
|
|
674
|
+
]
|
|
675
|
+
}
|
|
676
|
+
>
|
|
677
|
+
<RNSVGPath
|
|
678
|
+
d="M16.875 21.375L9 13.5L16.875 5.625"
|
|
679
|
+
propList={
|
|
680
|
+
[
|
|
681
|
+
"stroke",
|
|
682
|
+
"strokeWidth",
|
|
683
|
+
"strokeLinecap",
|
|
684
|
+
"strokeLinejoin",
|
|
685
|
+
]
|
|
686
|
+
}
|
|
687
|
+
stroke={4294967295}
|
|
688
|
+
strokeLinecap={1}
|
|
689
|
+
strokeLinejoin={1}
|
|
690
|
+
strokeWidth="2"
|
|
691
|
+
/>
|
|
692
|
+
</RNSVGGroup>
|
|
693
|
+
</RNSVGSvgView>
|
|
694
|
+
`;
|
|
695
|
+
|
|
696
|
+
exports[`test icons render an outlined chevron-right icon in a white color 1`] = `
|
|
697
|
+
<RNSVGSvgView
|
|
698
|
+
align="xMidYMid"
|
|
699
|
+
bbHeight="28"
|
|
700
|
+
bbWidth="28"
|
|
701
|
+
fill="none"
|
|
702
|
+
focusable={false}
|
|
703
|
+
height="28"
|
|
704
|
+
meetOrSlice={0}
|
|
705
|
+
minX={0}
|
|
706
|
+
minY={0}
|
|
707
|
+
style={
|
|
708
|
+
[
|
|
709
|
+
{
|
|
710
|
+
"backgroundColor": "transparent",
|
|
711
|
+
"borderWidth": 0,
|
|
712
|
+
},
|
|
713
|
+
{
|
|
714
|
+
"flex": 0,
|
|
715
|
+
"height": 28,
|
|
716
|
+
"width": 28,
|
|
717
|
+
},
|
|
718
|
+
]
|
|
719
|
+
}
|
|
720
|
+
vbHeight={27}
|
|
721
|
+
vbWidth={26}
|
|
722
|
+
width="28"
|
|
723
|
+
>
|
|
724
|
+
<RNSVGGroup
|
|
725
|
+
fill={null}
|
|
726
|
+
propList={
|
|
727
|
+
[
|
|
728
|
+
"fill",
|
|
729
|
+
]
|
|
730
|
+
}
|
|
731
|
+
>
|
|
732
|
+
<RNSVGPath
|
|
733
|
+
d="M9.75 5.625L17.3333 13.5L9.75 21.375"
|
|
734
|
+
propList={
|
|
735
|
+
[
|
|
736
|
+
"stroke",
|
|
737
|
+
"strokeWidth",
|
|
738
|
+
"strokeLinecap",
|
|
739
|
+
"strokeLinejoin",
|
|
740
|
+
]
|
|
741
|
+
}
|
|
742
|
+
stroke={4294967295}
|
|
743
|
+
strokeLinecap={1}
|
|
744
|
+
strokeLinejoin={1}
|
|
745
|
+
strokeWidth="2"
|
|
746
|
+
/>
|
|
747
|
+
</RNSVGGroup>
|
|
748
|
+
</RNSVGSvgView>
|
|
749
|
+
`;
|
|
750
|
+
|
|
751
|
+
exports[`test icons render an outlined clock icon in the main color 1`] = `
|
|
752
|
+
<RNSVGSvgView
|
|
753
|
+
align="xMidYMid"
|
|
754
|
+
bbHeight="28"
|
|
755
|
+
bbWidth="28"
|
|
756
|
+
fill="none"
|
|
757
|
+
focusable={false}
|
|
758
|
+
height="28"
|
|
759
|
+
meetOrSlice={0}
|
|
760
|
+
minX={0}
|
|
761
|
+
minY={0}
|
|
762
|
+
style={
|
|
763
|
+
[
|
|
764
|
+
{
|
|
765
|
+
"backgroundColor": "transparent",
|
|
766
|
+
"borderWidth": 0,
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
"flex": 0,
|
|
770
|
+
"height": 28,
|
|
771
|
+
"width": 28,
|
|
772
|
+
},
|
|
773
|
+
]
|
|
774
|
+
}
|
|
775
|
+
vbHeight={26}
|
|
776
|
+
vbWidth={27}
|
|
777
|
+
width="28"
|
|
778
|
+
>
|
|
779
|
+
<RNSVGGroup
|
|
780
|
+
fill={null}
|
|
781
|
+
propList={
|
|
782
|
+
[
|
|
783
|
+
"fill",
|
|
784
|
+
]
|
|
785
|
+
}
|
|
786
|
+
>
|
|
787
|
+
<RNSVGPath
|
|
788
|
+
d="M13.5 8.66667V13L16.875 16.25M23.625 13C23.625 18.3848 19.0919 22.75 13.5 22.75C7.90812 22.75 3.375 18.3848 3.375 13C3.375 7.61522 7.90812 3.25 13.5 3.25C19.0919 3.25 23.625 7.61522 23.625 13Z"
|
|
789
|
+
propList={
|
|
790
|
+
[
|
|
791
|
+
"stroke",
|
|
792
|
+
"strokeWidth",
|
|
793
|
+
"strokeLinecap",
|
|
794
|
+
"strokeLinejoin",
|
|
795
|
+
]
|
|
796
|
+
}
|
|
797
|
+
stroke={4279837036}
|
|
798
|
+
strokeLinecap={1}
|
|
799
|
+
strokeLinejoin={1}
|
|
800
|
+
strokeWidth="2"
|
|
801
|
+
/>
|
|
802
|
+
</RNSVGGroup>
|
|
803
|
+
</RNSVGSvgView>
|
|
804
|
+
`;
|
|
805
|
+
|
|
806
|
+
exports[`test icons render an outlined cloud-download icon in a grey color 1`] = `
|
|
807
|
+
<RNSVGSvgView
|
|
808
|
+
align="xMidYMid"
|
|
809
|
+
bbHeight="28"
|
|
810
|
+
bbWidth="28"
|
|
811
|
+
fill="none"
|
|
812
|
+
focusable={false}
|
|
813
|
+
height="28"
|
|
814
|
+
meetOrSlice={0}
|
|
815
|
+
minX={0}
|
|
816
|
+
minY={0}
|
|
817
|
+
style={
|
|
818
|
+
[
|
|
819
|
+
{
|
|
820
|
+
"backgroundColor": "transparent",
|
|
821
|
+
"borderWidth": 0,
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"flex": 0,
|
|
825
|
+
"height": 28,
|
|
826
|
+
"width": 28,
|
|
827
|
+
},
|
|
828
|
+
]
|
|
829
|
+
}
|
|
830
|
+
vbHeight={27}
|
|
831
|
+
vbWidth={27}
|
|
832
|
+
width="28"
|
|
833
|
+
>
|
|
834
|
+
<RNSVGGroup
|
|
835
|
+
fill={null}
|
|
836
|
+
propList={
|
|
837
|
+
[
|
|
838
|
+
"fill",
|
|
839
|
+
]
|
|
840
|
+
}
|
|
841
|
+
>
|
|
842
|
+
<RNSVGPath
|
|
843
|
+
d="M7.875 18C5.38972 18 3.375 15.9853 3.375 13.5C3.375 11.3546 4.87639 9.5598 6.8858 9.10907C6.7969 8.71194 6.75 8.29895 6.75 7.875C6.75 4.7684 9.2684 2.25 12.375 2.25C15.0967 2.25 17.3669 4.18303 17.8877 6.7511C17.925 6.75037 17.9625 6.75 18 6.75C21.1066 6.75 23.625 9.2684 23.625 12.375C23.625 15.0963 21.6925 17.3663 19.125 17.8875M10.125 21.375L13.5 24.75M13.5 24.75L16.875 21.375M13.5 24.75V11.25"
|
|
844
|
+
propList={
|
|
845
|
+
[
|
|
846
|
+
"stroke",
|
|
847
|
+
"strokeWidth",
|
|
848
|
+
"strokeLinecap",
|
|
849
|
+
"strokeLinejoin",
|
|
850
|
+
]
|
|
851
|
+
}
|
|
852
|
+
stroke={4286611584}
|
|
853
|
+
strokeLinecap={1}
|
|
854
|
+
strokeLinejoin={1}
|
|
855
|
+
strokeWidth="2"
|
|
856
|
+
/>
|
|
857
|
+
</RNSVGGroup>
|
|
858
|
+
</RNSVGSvgView>
|
|
859
|
+
`;
|
|
860
|
+
|
|
861
|
+
exports[`test icons render an outlined cross icon in the main color 1`] = `
|
|
862
|
+
<RNSVGSvgView
|
|
863
|
+
align="xMidYMid"
|
|
864
|
+
bbHeight="28"
|
|
865
|
+
bbWidth="28"
|
|
866
|
+
fill="none"
|
|
867
|
+
focusable={false}
|
|
868
|
+
height="28"
|
|
869
|
+
meetOrSlice={0}
|
|
870
|
+
minX={0}
|
|
871
|
+
minY={0}
|
|
872
|
+
style={
|
|
873
|
+
[
|
|
874
|
+
{
|
|
875
|
+
"backgroundColor": "transparent",
|
|
876
|
+
"borderWidth": 0,
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"flex": 0,
|
|
880
|
+
"height": 28,
|
|
881
|
+
"width": 28,
|
|
882
|
+
},
|
|
883
|
+
]
|
|
884
|
+
}
|
|
885
|
+
vbHeight={27}
|
|
886
|
+
vbWidth={27}
|
|
887
|
+
width="28"
|
|
888
|
+
>
|
|
889
|
+
<RNSVGGroup
|
|
890
|
+
fill={null}
|
|
891
|
+
propList={
|
|
892
|
+
[
|
|
893
|
+
"fill",
|
|
894
|
+
]
|
|
895
|
+
}
|
|
896
|
+
>
|
|
897
|
+
<RNSVGPath
|
|
898
|
+
d="M6.75 20.25L20.25 6.75M6.75 6.75L20.25 20.25"
|
|
899
|
+
propList={
|
|
900
|
+
[
|
|
901
|
+
"stroke",
|
|
902
|
+
"strokeWidth",
|
|
903
|
+
"strokeLinecap",
|
|
904
|
+
"strokeLinejoin",
|
|
905
|
+
]
|
|
906
|
+
}
|
|
907
|
+
stroke={4279837036}
|
|
908
|
+
strokeLinecap={1}
|
|
909
|
+
strokeLinejoin={1}
|
|
910
|
+
strokeWidth="2"
|
|
911
|
+
/>
|
|
912
|
+
</RNSVGGroup>
|
|
913
|
+
</RNSVGSvgView>
|
|
914
|
+
`;
|
|
915
|
+
|
|
916
|
+
exports[`test icons render an outlined currency-euro icon in a red color 1`] = `
|
|
917
|
+
<RNSVGSvgView
|
|
918
|
+
align="xMidYMid"
|
|
919
|
+
bbHeight="28"
|
|
920
|
+
bbWidth="28"
|
|
921
|
+
fill="none"
|
|
922
|
+
focusable={false}
|
|
923
|
+
height="28"
|
|
924
|
+
meetOrSlice={0}
|
|
925
|
+
minX={0}
|
|
926
|
+
minY={0}
|
|
927
|
+
style={
|
|
928
|
+
[
|
|
929
|
+
{
|
|
930
|
+
"backgroundColor": "transparent",
|
|
931
|
+
"borderWidth": 0,
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
"flex": 0,
|
|
935
|
+
"height": 28,
|
|
936
|
+
"width": 28,
|
|
937
|
+
},
|
|
938
|
+
]
|
|
939
|
+
}
|
|
940
|
+
vbHeight={27}
|
|
941
|
+
vbWidth={26}
|
|
942
|
+
width="28"
|
|
943
|
+
>
|
|
944
|
+
<RNSVGGroup
|
|
945
|
+
fill={null}
|
|
946
|
+
propList={
|
|
947
|
+
[
|
|
948
|
+
"fill",
|
|
949
|
+
]
|
|
950
|
+
}
|
|
951
|
+
>
|
|
952
|
+
<RNSVGPath
|
|
953
|
+
d="M15.2981 17.4775C14.0289 19.6742 11.9711 19.6742 10.7019 17.4775C9.4327 15.2808 9.4327 11.7192 10.7019 9.52252C11.9711 7.32583 14.0289 7.32583 15.2981 9.52252M8.66667 11.8125H13M8.66667 15.1875H13M22.75 13.5C22.75 19.0919 18.3848 23.625 13 23.625C7.61522 23.625 3.25 19.0919 3.25 13.5C3.25 7.90812 7.61522 3.375 13 3.375C18.3848 3.375 22.75 7.90812 22.75 13.5Z"
|
|
954
|
+
propList={
|
|
955
|
+
[
|
|
956
|
+
"stroke",
|
|
957
|
+
"strokeWidth",
|
|
958
|
+
"strokeLinecap",
|
|
959
|
+
"strokeLinejoin",
|
|
960
|
+
]
|
|
961
|
+
}
|
|
962
|
+
stroke={4294901760}
|
|
963
|
+
strokeLinecap={1}
|
|
964
|
+
strokeLinejoin={1}
|
|
965
|
+
strokeWidth="2"
|
|
966
|
+
/>
|
|
967
|
+
</RNSVGGroup>
|
|
968
|
+
</RNSVGSvgView>
|
|
969
|
+
`;
|
|
970
|
+
|
|
971
|
+
exports[`test icons render an outlined document-text icon in a white color 1`] = `
|
|
972
|
+
<RNSVGSvgView
|
|
973
|
+
align="xMidYMid"
|
|
974
|
+
bbHeight="28"
|
|
975
|
+
bbWidth="28"
|
|
976
|
+
fill="none"
|
|
977
|
+
focusable={false}
|
|
978
|
+
height="28"
|
|
979
|
+
meetOrSlice={0}
|
|
980
|
+
minX={0}
|
|
981
|
+
minY={0}
|
|
982
|
+
style={
|
|
983
|
+
[
|
|
984
|
+
{
|
|
985
|
+
"backgroundColor": "transparent",
|
|
986
|
+
"borderWidth": 0,
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"flex": 0,
|
|
990
|
+
"height": 28,
|
|
991
|
+
"width": 28,
|
|
992
|
+
},
|
|
993
|
+
]
|
|
994
|
+
}
|
|
995
|
+
vbHeight={32}
|
|
996
|
+
vbWidth={32}
|
|
997
|
+
width="28"
|
|
998
|
+
>
|
|
999
|
+
<RNSVGGroup
|
|
1000
|
+
fill={null}
|
|
1001
|
+
propList={
|
|
1002
|
+
[
|
|
1003
|
+
"fill",
|
|
1004
|
+
]
|
|
1005
|
+
}
|
|
1006
|
+
>
|
|
1007
|
+
<RNSVGPath
|
|
1008
|
+
d="M12 16H20M12 21.3333H20M22.6667 28H9.33332C7.86056 28 6.66666 26.8061 6.66666 25.3333V6.66667C6.66666 5.19391 7.86056 4 9.33332 4H16.781C17.1347 4 17.4738 4.14048 17.7238 4.39052L24.9428 11.6095C25.1928 11.8595 25.3333 12.1987 25.3333 12.5523V25.3333C25.3333 26.8061 24.1394 28 22.6667 28Z"
|
|
1009
|
+
propList={
|
|
1010
|
+
[
|
|
1011
|
+
"stroke",
|
|
1012
|
+
"strokeWidth",
|
|
1013
|
+
"strokeLinecap",
|
|
1014
|
+
"strokeLinejoin",
|
|
1015
|
+
]
|
|
1016
|
+
}
|
|
1017
|
+
stroke={4294967295}
|
|
1018
|
+
strokeLinecap={1}
|
|
1019
|
+
strokeLinejoin={1}
|
|
1020
|
+
strokeWidth="2"
|
|
1021
|
+
/>
|
|
1022
|
+
</RNSVGGroup>
|
|
1023
|
+
</RNSVGSvgView>
|
|
1024
|
+
`;
|
|
1025
|
+
|
|
1026
|
+
exports[`test icons render an outlined exclamation icon in a blue color 1`] = `
|
|
1027
|
+
<RNSVGSvgView
|
|
1028
|
+
align="xMidYMid"
|
|
1029
|
+
bbHeight="28"
|
|
1030
|
+
bbWidth="28"
|
|
1031
|
+
fill="none"
|
|
1032
|
+
focusable={false}
|
|
1033
|
+
height="28"
|
|
1034
|
+
meetOrSlice={0}
|
|
1035
|
+
minX={0}
|
|
1036
|
+
minY={0}
|
|
1037
|
+
style={
|
|
1038
|
+
[
|
|
1039
|
+
{
|
|
1040
|
+
"backgroundColor": "transparent",
|
|
1041
|
+
"borderWidth": 0,
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
"flex": 0,
|
|
1045
|
+
"height": 28,
|
|
1046
|
+
"width": 28,
|
|
1047
|
+
},
|
|
1048
|
+
]
|
|
1049
|
+
}
|
|
1050
|
+
vbHeight={27}
|
|
1051
|
+
vbWidth={27}
|
|
1052
|
+
width="28"
|
|
1053
|
+
>
|
|
1054
|
+
<RNSVGGroup
|
|
1055
|
+
fill={null}
|
|
1056
|
+
propList={
|
|
1057
|
+
[
|
|
1058
|
+
"fill",
|
|
1059
|
+
]
|
|
1060
|
+
}
|
|
1061
|
+
>
|
|
1062
|
+
<RNSVGPath
|
|
1063
|
+
d="M13.4997 10.125V12.375M13.4997 16.875H13.511M5.70551 21.375H21.294C23.026 21.375 24.1085 19.5 23.2425 18L15.4483 4.5C14.5823 3 12.4172 3 11.5512 4.5L3.75695 18C2.89092 19.5 3.97345 21.375 5.70551 21.375Z"
|
|
1064
|
+
propList={
|
|
1065
|
+
[
|
|
1066
|
+
"stroke",
|
|
1067
|
+
"strokeWidth",
|
|
1068
|
+
"strokeLinecap",
|
|
1069
|
+
"strokeLinejoin",
|
|
1070
|
+
]
|
|
1071
|
+
}
|
|
1072
|
+
stroke={4278190335}
|
|
1073
|
+
strokeLinecap={1}
|
|
1074
|
+
strokeLinejoin={1}
|
|
1075
|
+
strokeWidth="2"
|
|
1076
|
+
/>
|
|
1077
|
+
</RNSVGGroup>
|
|
1078
|
+
</RNSVGSvgView>
|
|
1079
|
+
`;
|
|
1080
|
+
|
|
1081
|
+
exports[`test icons render an outlined exclamation-circle icon in a pink color 1`] = `
|
|
1082
|
+
<RNSVGSvgView
|
|
1083
|
+
align="xMidYMid"
|
|
1084
|
+
bbHeight="28"
|
|
1085
|
+
bbWidth="28"
|
|
1086
|
+
fill="none"
|
|
1087
|
+
focusable={false}
|
|
1088
|
+
height="28"
|
|
1089
|
+
meetOrSlice={0}
|
|
1090
|
+
minX={0}
|
|
1091
|
+
minY={0}
|
|
1092
|
+
style={
|
|
1093
|
+
[
|
|
1094
|
+
{
|
|
1095
|
+
"backgroundColor": "transparent",
|
|
1096
|
+
"borderWidth": 0,
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"flex": 0,
|
|
1100
|
+
"height": 28,
|
|
1101
|
+
"width": 28,
|
|
1102
|
+
},
|
|
1103
|
+
]
|
|
1104
|
+
}
|
|
1105
|
+
vbHeight={27}
|
|
1106
|
+
vbWidth={26}
|
|
1107
|
+
width="28"
|
|
1108
|
+
>
|
|
1109
|
+
<RNSVGGroup
|
|
1110
|
+
fill={null}
|
|
1111
|
+
propList={
|
|
1112
|
+
[
|
|
1113
|
+
"fill",
|
|
1114
|
+
]
|
|
1115
|
+
}
|
|
1116
|
+
>
|
|
1117
|
+
<RNSVGPath
|
|
1118
|
+
d="M13 9V13.5M13 18H13.0108M22.75 13.5C22.75 19.0919 18.3848 23.625 13 23.625C7.61522 23.625 3.25 19.0919 3.25 13.5C3.25 7.90812 7.61522 3.375 13 3.375C18.3848 3.375 22.75 7.90812 22.75 13.5Z"
|
|
1119
|
+
propList={
|
|
1120
|
+
[
|
|
1121
|
+
"stroke",
|
|
1122
|
+
"strokeWidth",
|
|
1123
|
+
"strokeLinecap",
|
|
1124
|
+
"strokeLinejoin",
|
|
1125
|
+
]
|
|
1126
|
+
}
|
|
1127
|
+
stroke={4294951115}
|
|
1128
|
+
strokeLinecap={1}
|
|
1129
|
+
strokeLinejoin={1}
|
|
1130
|
+
strokeWidth="2"
|
|
1131
|
+
/>
|
|
1132
|
+
</RNSVGGroup>
|
|
1133
|
+
</RNSVGSvgView>
|
|
1134
|
+
`;
|
|
1135
|
+
|
|
1136
|
+
exports[`test icons render an outlined eye icon in a purple color 1`] = `
|
|
1137
|
+
<RNSVGSvgView
|
|
1138
|
+
align="xMidYMid"
|
|
1139
|
+
bbHeight="28"
|
|
1140
|
+
bbWidth="28"
|
|
1141
|
+
fill="none"
|
|
1142
|
+
focusable={false}
|
|
1143
|
+
height="28"
|
|
1144
|
+
meetOrSlice={0}
|
|
1145
|
+
minX={0}
|
|
1146
|
+
minY={0}
|
|
1147
|
+
style={
|
|
1148
|
+
[
|
|
1149
|
+
{
|
|
1150
|
+
"backgroundColor": "transparent",
|
|
1151
|
+
"borderWidth": 0,
|
|
1152
|
+
},
|
|
1153
|
+
{
|
|
1154
|
+
"flex": 0,
|
|
1155
|
+
"height": 28,
|
|
1156
|
+
"width": 28,
|
|
1157
|
+
},
|
|
1158
|
+
]
|
|
1159
|
+
}
|
|
1160
|
+
vbHeight={27}
|
|
1161
|
+
vbWidth={27}
|
|
1162
|
+
width="28"
|
|
1163
|
+
>
|
|
1164
|
+
<RNSVGGroup
|
|
1165
|
+
fill={null}
|
|
1166
|
+
propList={
|
|
1167
|
+
[
|
|
1168
|
+
"fill",
|
|
1169
|
+
]
|
|
1170
|
+
}
|
|
1171
|
+
>
|
|
1172
|
+
<RNSVGPath
|
|
1173
|
+
d="M16.875 13.5C16.875 15.364 15.3639 16.875 13.5 16.875C11.636 16.875 10.125 15.364 10.125 13.5C10.125 11.636 11.636 10.125 13.5 10.125C15.3639 10.125 16.875 11.636 16.875 13.5Z"
|
|
1174
|
+
propList={
|
|
1175
|
+
[
|
|
1176
|
+
"stroke",
|
|
1177
|
+
"strokeWidth",
|
|
1178
|
+
"strokeLinecap",
|
|
1179
|
+
"strokeLinejoin",
|
|
1180
|
+
]
|
|
1181
|
+
}
|
|
1182
|
+
stroke={4286578816}
|
|
1183
|
+
strokeLinecap={1}
|
|
1184
|
+
strokeLinejoin={1}
|
|
1185
|
+
strokeWidth="2"
|
|
1186
|
+
/>
|
|
1187
|
+
<RNSVGPath
|
|
1188
|
+
d="M2.7655 13.5C4.19906 8.93574 8.46313 5.625 13.5005 5.625C18.5378 5.625 22.8019 8.93578 24.2354 13.5C22.8019 18.0643 18.5378 21.375 13.5005 21.375C8.46313 21.375 4.19904 18.0642 2.7655 13.5Z"
|
|
1189
|
+
propList={
|
|
1190
|
+
[
|
|
1191
|
+
"stroke",
|
|
1192
|
+
"strokeWidth",
|
|
1193
|
+
"strokeLinecap",
|
|
1194
|
+
"strokeLinejoin",
|
|
1195
|
+
]
|
|
1196
|
+
}
|
|
1197
|
+
stroke={4286578816}
|
|
1198
|
+
strokeLinecap={1}
|
|
1199
|
+
strokeLinejoin={1}
|
|
1200
|
+
strokeWidth="2"
|
|
1201
|
+
/>
|
|
1202
|
+
</RNSVGGroup>
|
|
1203
|
+
</RNSVGSvgView>
|
|
1204
|
+
`;
|
|
1205
|
+
|
|
1206
|
+
exports[`test icons render an outlined filter icon in the main color 1`] = `
|
|
1207
|
+
<RNSVGSvgView
|
|
1208
|
+
align="xMidYMid"
|
|
1209
|
+
bbHeight="28"
|
|
1210
|
+
bbWidth="28"
|
|
1211
|
+
fill="none"
|
|
1212
|
+
focusable={false}
|
|
1213
|
+
height="28"
|
|
1214
|
+
meetOrSlice={0}
|
|
1215
|
+
minX={0}
|
|
1216
|
+
minY={0}
|
|
1217
|
+
style={
|
|
1218
|
+
[
|
|
1219
|
+
{
|
|
1220
|
+
"backgroundColor": "transparent",
|
|
1221
|
+
"borderWidth": 0,
|
|
1222
|
+
},
|
|
1223
|
+
{
|
|
1224
|
+
"flex": 0,
|
|
1225
|
+
"height": 28,
|
|
1226
|
+
"width": 28,
|
|
1227
|
+
},
|
|
1228
|
+
]
|
|
1229
|
+
}
|
|
1230
|
+
vbHeight={26}
|
|
1231
|
+
vbWidth={26}
|
|
1232
|
+
width="28"
|
|
1233
|
+
>
|
|
1234
|
+
<RNSVGGroup
|
|
1235
|
+
fill={null}
|
|
1236
|
+
propList={
|
|
1237
|
+
[
|
|
1238
|
+
"fill",
|
|
1239
|
+
]
|
|
1240
|
+
}
|
|
1241
|
+
>
|
|
1242
|
+
<RNSVGPath
|
|
1243
|
+
d="M3.25 4.25C3.25 3.69772 3.69772 3.25 4.25 3.25H21.75C22.3023 3.25 22.75 3.69772 22.75 4.25V7.16912C22.75 7.43434 22.6446 7.68869 22.4571 7.87623L15.4596 14.8738C15.272 15.0613 15.1667 15.3157 15.1667 15.5809V18.4167L10.8333 22.75V15.5809C10.8333 15.3157 10.728 15.0613 10.5404 14.8738L3.54289 7.87623C3.35536 7.68869 3.25 7.43434 3.25 7.16912V4.25Z"
|
|
1244
|
+
propList={
|
|
1245
|
+
[
|
|
1246
|
+
"stroke",
|
|
1247
|
+
"strokeWidth",
|
|
1248
|
+
"strokeLinecap",
|
|
1249
|
+
"strokeLinejoin",
|
|
1250
|
+
]
|
|
1251
|
+
}
|
|
1252
|
+
stroke={4279837036}
|
|
1253
|
+
strokeLinecap={1}
|
|
1254
|
+
strokeLinejoin={1}
|
|
1255
|
+
strokeWidth="2"
|
|
1256
|
+
/>
|
|
1257
|
+
</RNSVGGroup>
|
|
1258
|
+
</RNSVGSvgView>
|
|
1259
|
+
`;
|
|
1260
|
+
|
|
1261
|
+
exports[`test icons render an outlined information-circle icon in the main color 1`] = `
|
|
1262
|
+
<RNSVGSvgView
|
|
1263
|
+
align="xMidYMid"
|
|
1264
|
+
bbHeight="28"
|
|
1265
|
+
bbWidth="28"
|
|
1266
|
+
fill="none"
|
|
1267
|
+
focusable={false}
|
|
1268
|
+
height="28"
|
|
1269
|
+
meetOrSlice={0}
|
|
1270
|
+
minX={0}
|
|
1271
|
+
minY={0}
|
|
1272
|
+
style={
|
|
1273
|
+
[
|
|
1274
|
+
{
|
|
1275
|
+
"backgroundColor": "transparent",
|
|
1276
|
+
"borderWidth": 0,
|
|
1277
|
+
},
|
|
1278
|
+
{
|
|
1279
|
+
"flex": 0,
|
|
1280
|
+
"height": 28,
|
|
1281
|
+
"width": 28,
|
|
1282
|
+
},
|
|
1283
|
+
]
|
|
1284
|
+
}
|
|
1285
|
+
vbHeight={26}
|
|
1286
|
+
vbWidth={26}
|
|
1287
|
+
width="28"
|
|
1288
|
+
>
|
|
1289
|
+
<RNSVGGroup
|
|
1290
|
+
fill={null}
|
|
1291
|
+
propList={
|
|
1292
|
+
[
|
|
1293
|
+
"fill",
|
|
1294
|
+
]
|
|
1295
|
+
}
|
|
1296
|
+
>
|
|
1297
|
+
<RNSVGPath
|
|
1298
|
+
d="M14.0833 17.3333H13V13H11.9167M13 8.66667H13.0108M22.75 13C22.75 18.3848 18.3848 22.75 13 22.75C7.61522 22.75 3.25 18.3848 3.25 13C3.25 7.61522 7.61522 3.25 13 3.25C18.3848 3.25 22.75 7.61522 22.75 13Z"
|
|
1299
|
+
propList={
|
|
1300
|
+
[
|
|
1301
|
+
"stroke",
|
|
1302
|
+
"strokeWidth",
|
|
1303
|
+
"strokeLinecap",
|
|
1304
|
+
"strokeLinejoin",
|
|
1305
|
+
]
|
|
1306
|
+
}
|
|
1307
|
+
stroke={4279837036}
|
|
1308
|
+
strokeLinecap={1}
|
|
1309
|
+
strokeLinejoin={1}
|
|
1310
|
+
strokeWidth="2"
|
|
1311
|
+
/>
|
|
1312
|
+
</RNSVGGroup>
|
|
1313
|
+
</RNSVGSvgView>
|
|
1314
|
+
`;
|
|
1315
|
+
|
|
1316
|
+
exports[`test icons render an outlined logout icon in a red color 1`] = `
|
|
1317
|
+
<RNSVGSvgView
|
|
1318
|
+
align="xMidYMid"
|
|
1319
|
+
bbHeight="28"
|
|
1320
|
+
bbWidth="28"
|
|
1321
|
+
fill="none"
|
|
1322
|
+
focusable={false}
|
|
1323
|
+
height="28"
|
|
1324
|
+
meetOrSlice={0}
|
|
1325
|
+
minX={0}
|
|
1326
|
+
minY={0}
|
|
1327
|
+
style={
|
|
1328
|
+
[
|
|
1329
|
+
{
|
|
1330
|
+
"backgroundColor": "transparent",
|
|
1331
|
+
"borderWidth": 0,
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
"flex": 0,
|
|
1335
|
+
"height": 28,
|
|
1336
|
+
"width": 28,
|
|
1337
|
+
},
|
|
1338
|
+
]
|
|
1339
|
+
}
|
|
1340
|
+
vbHeight={34}
|
|
1341
|
+
vbWidth={32}
|
|
1342
|
+
width="28"
|
|
1343
|
+
>
|
|
1344
|
+
<RNSVGGroup
|
|
1345
|
+
fill={null}
|
|
1346
|
+
propList={
|
|
1347
|
+
[
|
|
1348
|
+
"fill",
|
|
1349
|
+
]
|
|
1350
|
+
}
|
|
1351
|
+
>
|
|
1352
|
+
<RNSVGPath
|
|
1353
|
+
d="M17.3333 11.077L22.6667 16.6155M22.6667 16.6155L17.3333 22.1539M22.6667 16.6155L4 16.6155M10.6667 11.077V9.69238C10.6667 7.39828 12.4575 5.53854 14.6667 5.53854H24C26.2091 5.53854 28 7.39828 28 9.69238L28 23.5385C28 25.8326 26.2091 27.6924 24 27.6924H14.6667C12.4575 27.6924 10.6667 25.8326 10.6667 23.5385V22.1539"
|
|
1354
|
+
propList={
|
|
1355
|
+
[
|
|
1356
|
+
"stroke",
|
|
1357
|
+
"strokeWidth",
|
|
1358
|
+
"strokeLinecap",
|
|
1359
|
+
"strokeLinejoin",
|
|
1360
|
+
]
|
|
1361
|
+
}
|
|
1362
|
+
stroke={4294901760}
|
|
1363
|
+
strokeLinecap={1}
|
|
1364
|
+
strokeLinejoin={1}
|
|
1365
|
+
strokeWidth="2"
|
|
1366
|
+
/>
|
|
1367
|
+
</RNSVGGroup>
|
|
1368
|
+
</RNSVGSvgView>
|
|
1369
|
+
`;
|
|
1370
|
+
|
|
1371
|
+
exports[`test icons render an outlined mail icon in a brown color 1`] = `
|
|
1372
|
+
<RNSVGSvgView
|
|
1373
|
+
align="xMidYMid"
|
|
1374
|
+
bbHeight="28"
|
|
1375
|
+
bbWidth="28"
|
|
1376
|
+
fill="none"
|
|
1377
|
+
focusable={false}
|
|
1378
|
+
height="28"
|
|
1379
|
+
meetOrSlice={0}
|
|
1380
|
+
minX={0}
|
|
1381
|
+
minY={0}
|
|
1382
|
+
style={
|
|
1383
|
+
[
|
|
1384
|
+
{
|
|
1385
|
+
"backgroundColor": "transparent",
|
|
1386
|
+
"borderWidth": 0,
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
"flex": 0,
|
|
1390
|
+
"height": 28,
|
|
1391
|
+
"width": 28,
|
|
1392
|
+
},
|
|
1393
|
+
]
|
|
1394
|
+
}
|
|
1395
|
+
vbHeight={28}
|
|
1396
|
+
vbWidth={28}
|
|
1397
|
+
width="28"
|
|
1398
|
+
>
|
|
1399
|
+
<RNSVGGroup
|
|
1400
|
+
fill={null}
|
|
1401
|
+
propList={
|
|
1402
|
+
[
|
|
1403
|
+
"fill",
|
|
1404
|
+
]
|
|
1405
|
+
}
|
|
1406
|
+
>
|
|
1407
|
+
<RNSVGPath
|
|
1408
|
+
d="M3.875 9.5L12.7519 15.4179C13.5077 15.9218 14.4923 15.9218 15.2481 15.4179L24.125 9.5M6.125 21.875H21.875C23.1176 21.875 24.125 20.8676 24.125 19.625V8.375C24.125 7.13236 23.1176 6.125 21.875 6.125H6.125C4.88236 6.125 3.875 7.13236 3.875 8.375V19.625C3.875 20.8676 4.88236 21.875 6.125 21.875Z"
|
|
1409
|
+
propList={
|
|
1410
|
+
[
|
|
1411
|
+
"stroke",
|
|
1412
|
+
"strokeWidth",
|
|
1413
|
+
"strokeLinecap",
|
|
1414
|
+
"strokeLinejoin",
|
|
1415
|
+
]
|
|
1416
|
+
}
|
|
1417
|
+
stroke={4289014314}
|
|
1418
|
+
strokeLinecap={1}
|
|
1419
|
+
strokeLinejoin={1}
|
|
1420
|
+
strokeWidth="2"
|
|
1421
|
+
/>
|
|
1422
|
+
</RNSVGGroup>
|
|
1423
|
+
</RNSVGSvgView>
|
|
1424
|
+
`;
|
|
1425
|
+
|
|
1426
|
+
exports[`test icons render an outlined mail-open icon in a grey color 1`] = `
|
|
1427
|
+
<RNSVGSvgView
|
|
1428
|
+
align="xMidYMid"
|
|
1429
|
+
bbHeight="28"
|
|
1430
|
+
bbWidth="28"
|
|
1431
|
+
fill="none"
|
|
1432
|
+
focusable={false}
|
|
1433
|
+
height="28"
|
|
1434
|
+
meetOrSlice={0}
|
|
1435
|
+
minX={0}
|
|
1436
|
+
minY={0}
|
|
1437
|
+
style={
|
|
1438
|
+
[
|
|
1439
|
+
{
|
|
1440
|
+
"backgroundColor": "transparent",
|
|
1441
|
+
"borderWidth": 0,
|
|
1442
|
+
},
|
|
1443
|
+
{
|
|
1444
|
+
"flex": 0,
|
|
1445
|
+
"height": 28,
|
|
1446
|
+
"width": 28,
|
|
1447
|
+
},
|
|
1448
|
+
]
|
|
1449
|
+
}
|
|
1450
|
+
vbHeight={26}
|
|
1451
|
+
vbWidth={27}
|
|
1452
|
+
width="28"
|
|
1453
|
+
>
|
|
1454
|
+
<RNSVGGroup
|
|
1455
|
+
fill={null}
|
|
1456
|
+
propList={
|
|
1457
|
+
[
|
|
1458
|
+
"fill",
|
|
1459
|
+
]
|
|
1460
|
+
}
|
|
1461
|
+
>
|
|
1462
|
+
<RNSVGPath
|
|
1463
|
+
d="M3.375 20.5833V10.9095C3.375 10.1851 3.75098 9.50861 4.37692 9.10676L12.2519 4.05121C13.0077 3.56602 13.9923 3.56602 14.7481 4.05121L22.6231 9.10676C23.249 9.50861 23.625 10.1851 23.625 10.9095V20.5833M3.375 20.5833C3.375 21.7799 4.38236 22.75 5.625 22.75H21.375C22.6176 22.75 23.625 21.7799 23.625 20.5833M3.375 20.5833L10.9688 15.7083M23.625 20.5833L16.0312 15.7083M3.375 10.8333L10.9688 15.7083M23.625 10.8333L16.0312 15.7083M16.0312 15.7083L14.7481 16.5321C13.9923 17.0173 13.0077 17.0173 12.2519 16.5321L10.9688 15.7083"
|
|
1464
|
+
propList={
|
|
1465
|
+
[
|
|
1466
|
+
"stroke",
|
|
1467
|
+
"strokeWidth",
|
|
1468
|
+
"strokeLinecap",
|
|
1469
|
+
"strokeLinejoin",
|
|
1470
|
+
]
|
|
1471
|
+
}
|
|
1472
|
+
stroke={4286611584}
|
|
1473
|
+
strokeLinecap={1}
|
|
1474
|
+
strokeLinejoin={1}
|
|
1475
|
+
strokeWidth="2"
|
|
1476
|
+
/>
|
|
1477
|
+
</RNSVGGroup>
|
|
1478
|
+
</RNSVGSvgView>
|
|
1479
|
+
`;
|
|
1480
|
+
|
|
1481
|
+
exports[`test icons render an outlined menu icon in the main color 1`] = `
|
|
1482
|
+
<RNSVGSvgView
|
|
1483
|
+
align="xMidYMid"
|
|
1484
|
+
bbHeight="28"
|
|
1485
|
+
bbWidth="28"
|
|
1486
|
+
fill="none"
|
|
1487
|
+
focusable={false}
|
|
1488
|
+
height="28"
|
|
1489
|
+
meetOrSlice={0}
|
|
1490
|
+
minX={0}
|
|
1491
|
+
minY={0}
|
|
1492
|
+
style={
|
|
1493
|
+
[
|
|
1494
|
+
{
|
|
1495
|
+
"backgroundColor": "transparent",
|
|
1496
|
+
"borderWidth": 0,
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
"flex": 0,
|
|
1500
|
+
"height": 28,
|
|
1501
|
+
"width": 28,
|
|
1502
|
+
},
|
|
1503
|
+
]
|
|
1504
|
+
}
|
|
1505
|
+
vbHeight={27}
|
|
1506
|
+
vbWidth={27}
|
|
1507
|
+
width="28"
|
|
1508
|
+
>
|
|
1509
|
+
<RNSVGGroup
|
|
1510
|
+
fill={null}
|
|
1511
|
+
propList={
|
|
1512
|
+
[
|
|
1513
|
+
"fill",
|
|
1514
|
+
]
|
|
1515
|
+
}
|
|
1516
|
+
>
|
|
1517
|
+
<RNSVGPath
|
|
1518
|
+
d="M4.5 6.75H22.5M4.5 13.5H22.5M4.5 20.25H22.5"
|
|
1519
|
+
propList={
|
|
1520
|
+
[
|
|
1521
|
+
"stroke",
|
|
1522
|
+
"strokeWidth",
|
|
1523
|
+
"strokeLinecap",
|
|
1524
|
+
"strokeLinejoin",
|
|
1525
|
+
]
|
|
1526
|
+
}
|
|
1527
|
+
stroke={4279837036}
|
|
1528
|
+
strokeLinecap={1}
|
|
1529
|
+
strokeLinejoin={1}
|
|
1530
|
+
strokeWidth="2"
|
|
1531
|
+
/>
|
|
1532
|
+
</RNSVGGroup>
|
|
1533
|
+
</RNSVGSvgView>
|
|
1534
|
+
`;
|
|
1535
|
+
|
|
1536
|
+
exports[`test icons render an outlined minus-sm icon in the main color 1`] = `
|
|
1537
|
+
<RNSVGSvgView
|
|
1538
|
+
align="xMidYMid"
|
|
1539
|
+
bbHeight="28"
|
|
1540
|
+
bbWidth="28"
|
|
1541
|
+
fill="none"
|
|
1542
|
+
focusable={false}
|
|
1543
|
+
height="28"
|
|
1544
|
+
meetOrSlice={0}
|
|
1545
|
+
minX={0}
|
|
1546
|
+
minY={0}
|
|
1547
|
+
style={
|
|
1548
|
+
[
|
|
1549
|
+
{
|
|
1550
|
+
"backgroundColor": "transparent",
|
|
1551
|
+
"borderWidth": 0,
|
|
1552
|
+
},
|
|
1553
|
+
{
|
|
1554
|
+
"flex": 0,
|
|
1555
|
+
"height": 28,
|
|
1556
|
+
"width": 28,
|
|
1557
|
+
},
|
|
1558
|
+
]
|
|
1559
|
+
}
|
|
1560
|
+
vbHeight={26}
|
|
1561
|
+
vbWidth={26}
|
|
1562
|
+
width="28"
|
|
1563
|
+
>
|
|
1564
|
+
<RNSVGGroup
|
|
1565
|
+
fill={null}
|
|
1566
|
+
propList={
|
|
1567
|
+
[
|
|
1568
|
+
"fill",
|
|
1569
|
+
]
|
|
1570
|
+
}
|
|
1571
|
+
>
|
|
1572
|
+
<RNSVGPath
|
|
1573
|
+
d="M19.4006 13H6.60059"
|
|
1574
|
+
propList={
|
|
1575
|
+
[
|
|
1576
|
+
"stroke",
|
|
1577
|
+
"strokeWidth",
|
|
1578
|
+
"strokeLinecap",
|
|
1579
|
+
"strokeLinejoin",
|
|
1580
|
+
]
|
|
1581
|
+
}
|
|
1582
|
+
stroke={4279837036}
|
|
1583
|
+
strokeLinecap={1}
|
|
1584
|
+
strokeLinejoin={1}
|
|
1585
|
+
strokeWidth="2"
|
|
1586
|
+
/>
|
|
1587
|
+
</RNSVGGroup>
|
|
1588
|
+
</RNSVGSvgView>
|
|
1589
|
+
`;
|
|
1590
|
+
|
|
1591
|
+
exports[`test icons render an outlined office-building icon in a green color 1`] = `
|
|
1592
|
+
<RNSVGSvgView
|
|
1593
|
+
align="xMidYMid"
|
|
1594
|
+
bbHeight="28"
|
|
1595
|
+
bbWidth="28"
|
|
1596
|
+
fill="none"
|
|
1597
|
+
focusable={false}
|
|
1598
|
+
height="28"
|
|
1599
|
+
meetOrSlice={0}
|
|
1600
|
+
minX={0}
|
|
1601
|
+
minY={0}
|
|
1602
|
+
style={
|
|
1603
|
+
[
|
|
1604
|
+
{
|
|
1605
|
+
"backgroundColor": "transparent",
|
|
1606
|
+
"borderWidth": 0,
|
|
1607
|
+
},
|
|
1608
|
+
{
|
|
1609
|
+
"flex": 0,
|
|
1610
|
+
"height": 28,
|
|
1611
|
+
"width": 28,
|
|
1612
|
+
},
|
|
1613
|
+
]
|
|
1614
|
+
}
|
|
1615
|
+
vbHeight={27}
|
|
1616
|
+
vbWidth={27}
|
|
1617
|
+
width="28"
|
|
1618
|
+
>
|
|
1619
|
+
<RNSVGGroup
|
|
1620
|
+
fill={null}
|
|
1621
|
+
propList={
|
|
1622
|
+
[
|
|
1623
|
+
"fill",
|
|
1624
|
+
]
|
|
1625
|
+
}
|
|
1626
|
+
>
|
|
1627
|
+
<RNSVGPath
|
|
1628
|
+
d="M21.375 23.625V5.625C21.375 4.38236 20.3676 3.375 19.125 3.375H7.875C6.63236 3.375 5.625 4.38236 5.625 5.625V23.625M21.375 23.625L23.625 23.625M21.375 23.625H15.75M5.625 23.625L3.375 23.625M5.625 23.625H11.25M10.125 7.87497H11.25M10.125 12.375H11.25M15.75 7.87497H16.875M15.75 12.375H16.875M11.25 23.625V18C11.25 17.3787 11.7537 16.875 12.375 16.875H14.625C15.2463 16.875 15.75 17.3787 15.75 18V23.625M11.25 23.625H15.75"
|
|
1629
|
+
propList={
|
|
1630
|
+
[
|
|
1631
|
+
"stroke",
|
|
1632
|
+
"strokeWidth",
|
|
1633
|
+
"strokeLinecap",
|
|
1634
|
+
"strokeLinejoin",
|
|
1635
|
+
]
|
|
1636
|
+
}
|
|
1637
|
+
stroke={4278222848}
|
|
1638
|
+
strokeLinecap={1}
|
|
1639
|
+
strokeLinejoin={1}
|
|
1640
|
+
strokeWidth="2"
|
|
1641
|
+
/>
|
|
1642
|
+
</RNSVGGroup>
|
|
1643
|
+
</RNSVGSvgView>
|
|
1644
|
+
`;
|
|
1645
|
+
|
|
1646
|
+
exports[`test icons render an outlined paper-airplane icon in a white color 1`] = `
|
|
1647
|
+
<RNSVGSvgView
|
|
1648
|
+
align="xMidYMid"
|
|
1649
|
+
bbHeight="28"
|
|
1650
|
+
bbWidth="28"
|
|
1651
|
+
fill="none"
|
|
1652
|
+
focusable={false}
|
|
1653
|
+
height="28"
|
|
1654
|
+
meetOrSlice={0}
|
|
1655
|
+
minX={0}
|
|
1656
|
+
minY={0}
|
|
1657
|
+
style={
|
|
1658
|
+
[
|
|
1659
|
+
{
|
|
1660
|
+
"backgroundColor": "transparent",
|
|
1661
|
+
"borderWidth": 0,
|
|
1662
|
+
},
|
|
1663
|
+
{
|
|
1664
|
+
"flex": 0,
|
|
1665
|
+
"height": 28,
|
|
1666
|
+
"width": 28,
|
|
1667
|
+
},
|
|
1668
|
+
]
|
|
1669
|
+
}
|
|
1670
|
+
vbHeight={28}
|
|
1671
|
+
vbWidth={27}
|
|
1672
|
+
width="28"
|
|
1673
|
+
>
|
|
1674
|
+
<RNSVGGroup
|
|
1675
|
+
fill={null}
|
|
1676
|
+
propList={
|
|
1677
|
+
[
|
|
1678
|
+
"fill",
|
|
1679
|
+
]
|
|
1680
|
+
}
|
|
1681
|
+
>
|
|
1682
|
+
<RNSVGPath
|
|
1683
|
+
d="M6.29167 14L4.125 24.125L23.625 14L4.125 3.875L6.29167 14ZM6.29167 14L14.9583 14"
|
|
1684
|
+
propList={
|
|
1685
|
+
[
|
|
1686
|
+
"stroke",
|
|
1687
|
+
"strokeWidth",
|
|
1688
|
+
"strokeLinecap",
|
|
1689
|
+
"strokeLinejoin",
|
|
1690
|
+
]
|
|
1691
|
+
}
|
|
1692
|
+
stroke={4294967295}
|
|
1693
|
+
strokeLinecap={1}
|
|
1694
|
+
strokeLinejoin={1}
|
|
1695
|
+
strokeWidth="2"
|
|
1696
|
+
/>
|
|
1697
|
+
</RNSVGGroup>
|
|
1698
|
+
</RNSVGSvgView>
|
|
1699
|
+
`;
|
|
1700
|
+
|
|
1701
|
+
exports[`test icons render an outlined paperclip icon in the main color 1`] = `
|
|
1702
|
+
<RNSVGSvgView
|
|
1703
|
+
align="xMidYMid"
|
|
1704
|
+
bbHeight="28"
|
|
1705
|
+
bbWidth="28"
|
|
1706
|
+
fill="none"
|
|
1707
|
+
focusable={false}
|
|
1708
|
+
height="28"
|
|
1709
|
+
meetOrSlice={0}
|
|
1710
|
+
minX={0}
|
|
1711
|
+
minY={0}
|
|
1712
|
+
style={
|
|
1713
|
+
[
|
|
1714
|
+
{
|
|
1715
|
+
"backgroundColor": "transparent",
|
|
1716
|
+
"borderWidth": 0,
|
|
1717
|
+
},
|
|
1718
|
+
{
|
|
1719
|
+
"flex": 0,
|
|
1720
|
+
"height": 28,
|
|
1721
|
+
"width": 28,
|
|
1722
|
+
},
|
|
1723
|
+
]
|
|
1724
|
+
}
|
|
1725
|
+
vbHeight={26}
|
|
1726
|
+
vbWidth={26}
|
|
1727
|
+
width="28"
|
|
1728
|
+
>
|
|
1729
|
+
<RNSVGGroup
|
|
1730
|
+
fill={null}
|
|
1731
|
+
propList={
|
|
1732
|
+
[
|
|
1733
|
+
"fill",
|
|
1734
|
+
]
|
|
1735
|
+
}
|
|
1736
|
+
>
|
|
1737
|
+
<RNSVGPath
|
|
1738
|
+
d="M16.4359 7.58333L9.30125 14.7179C8.45511 15.5641 8.45511 16.9359 9.30125 17.7821C10.1474 18.6282 11.5192 18.6282 12.3654 17.7821L19.3141 10.6475C21.0064 8.95519 21.0064 6.21148 19.3141 4.5192C17.6218 2.82693 14.8781 2.82693 13.1859 4.5192L6.23712 11.6538C3.69871 14.1922 3.69871 18.3078 6.23712 20.8462C8.77553 23.3846 12.8911 23.3846 15.4295 20.8462L22.2083 14.0833"
|
|
1739
|
+
propList={
|
|
1740
|
+
[
|
|
1741
|
+
"stroke",
|
|
1742
|
+
"strokeWidth",
|
|
1743
|
+
"strokeLinecap",
|
|
1744
|
+
"strokeLinejoin",
|
|
1745
|
+
]
|
|
1746
|
+
}
|
|
1747
|
+
stroke={4279837036}
|
|
1748
|
+
strokeLinecap={1}
|
|
1749
|
+
strokeLinejoin={1}
|
|
1750
|
+
strokeWidth="2"
|
|
1751
|
+
/>
|
|
1752
|
+
</RNSVGGroup>
|
|
1753
|
+
</RNSVGSvgView>
|
|
1754
|
+
`;
|
|
1755
|
+
|
|
1756
|
+
exports[`test icons render an outlined pencil icon in the main color 1`] = `
|
|
1757
|
+
<RNSVGSvgView
|
|
1758
|
+
align="xMidYMid"
|
|
1759
|
+
bbHeight="28"
|
|
1760
|
+
bbWidth="28"
|
|
1761
|
+
fill="none"
|
|
1762
|
+
focusable={false}
|
|
1763
|
+
height="28"
|
|
1764
|
+
meetOrSlice={0}
|
|
1765
|
+
minX={0}
|
|
1766
|
+
minY={0}
|
|
1767
|
+
style={
|
|
1768
|
+
[
|
|
1769
|
+
{
|
|
1770
|
+
"backgroundColor": "transparent",
|
|
1771
|
+
"borderWidth": 0,
|
|
1772
|
+
},
|
|
1773
|
+
{
|
|
1774
|
+
"flex": 0,
|
|
1775
|
+
"height": 28,
|
|
1776
|
+
"width": 28,
|
|
1777
|
+
},
|
|
1778
|
+
]
|
|
1779
|
+
}
|
|
1780
|
+
vbHeight={28}
|
|
1781
|
+
vbWidth={28}
|
|
1782
|
+
width="28"
|
|
1783
|
+
>
|
|
1784
|
+
<RNSVGGroup
|
|
1785
|
+
fill={null}
|
|
1786
|
+
propList={
|
|
1787
|
+
[
|
|
1788
|
+
"fill",
|
|
1789
|
+
]
|
|
1790
|
+
}
|
|
1791
|
+
>
|
|
1792
|
+
<RNSVGPath
|
|
1793
|
+
d="M17.6362 6.38626L21.6137 10.3637M19.3237 4.69876C20.422 3.60041 22.2028 3.60041 23.3012 4.69876C24.3995 5.79711 24.3995 7.57789 23.3012 8.67624L7.8125 24.1649H3.875V20.1475L19.3237 4.69876Z"
|
|
1794
|
+
propList={
|
|
1795
|
+
[
|
|
1796
|
+
"stroke",
|
|
1797
|
+
"strokeWidth",
|
|
1798
|
+
"strokeLinecap",
|
|
1799
|
+
"strokeLinejoin",
|
|
1800
|
+
]
|
|
1801
|
+
}
|
|
1802
|
+
stroke={4279837036}
|
|
1803
|
+
strokeLinecap={1}
|
|
1804
|
+
strokeLinejoin={1}
|
|
1805
|
+
strokeWidth="2"
|
|
1806
|
+
/>
|
|
1807
|
+
</RNSVGGroup>
|
|
1808
|
+
</RNSVGSvgView>
|
|
1809
|
+
`;
|
|
1810
|
+
|
|
1811
|
+
exports[`test icons render an outlined phone icon in the main color 1`] = `
|
|
1812
|
+
<RNSVGSvgView
|
|
1813
|
+
align="xMidYMid"
|
|
1814
|
+
bbHeight="28"
|
|
1815
|
+
bbWidth="28"
|
|
1816
|
+
fill="none"
|
|
1817
|
+
focusable={false}
|
|
1818
|
+
height="28"
|
|
1819
|
+
meetOrSlice={0}
|
|
1820
|
+
minX={0}
|
|
1821
|
+
minY={0}
|
|
1822
|
+
style={
|
|
1823
|
+
[
|
|
1824
|
+
{
|
|
1825
|
+
"backgroundColor": "transparent",
|
|
1826
|
+
"borderWidth": 0,
|
|
1827
|
+
},
|
|
1828
|
+
{
|
|
1829
|
+
"flex": 0,
|
|
1830
|
+
"height": 28,
|
|
1831
|
+
"width": 28,
|
|
1832
|
+
},
|
|
1833
|
+
]
|
|
1834
|
+
}
|
|
1835
|
+
vbHeight={26}
|
|
1836
|
+
vbWidth={27}
|
|
1837
|
+
width="28"
|
|
1838
|
+
>
|
|
1839
|
+
<RNSVGGroup
|
|
1840
|
+
fill={null}
|
|
1841
|
+
propList={
|
|
1842
|
+
[
|
|
1843
|
+
"fill",
|
|
1844
|
+
]
|
|
1845
|
+
}
|
|
1846
|
+
>
|
|
1847
|
+
<RNSVGPath
|
|
1848
|
+
d="M3.375 5.41667C3.375 4.22005 4.38236 3.25 5.625 3.25H9.31415C9.79838 3.25 10.2283 3.54838 10.3814 3.99075L12.0665 8.85865C12.2435 9.3701 12.0031 9.92909 11.5023 10.1702L8.96288 11.3929C10.2029 14.0413 12.4186 16.175 15.1689 17.3691L16.4387 14.9237C16.689 14.4415 17.2695 14.21 17.8006 14.3805L22.8558 16.0031C23.3151 16.1505 23.625 16.5645 23.625 17.0308V20.5833C23.625 21.7799 22.6176 22.75 21.375 22.75H20.25C10.9302 22.75 3.375 15.4746 3.375 6.5V5.41667Z"
|
|
1849
|
+
propList={
|
|
1850
|
+
[
|
|
1851
|
+
"stroke",
|
|
1852
|
+
"strokeWidth",
|
|
1853
|
+
"strokeLinecap",
|
|
1854
|
+
"strokeLinejoin",
|
|
1855
|
+
]
|
|
1856
|
+
}
|
|
1857
|
+
stroke={4279837036}
|
|
1858
|
+
strokeLinecap={1}
|
|
1859
|
+
strokeLinejoin={1}
|
|
1860
|
+
strokeWidth="2"
|
|
1861
|
+
/>
|
|
1862
|
+
</RNSVGGroup>
|
|
1863
|
+
</RNSVGSvgView>
|
|
1864
|
+
`;
|
|
1865
|
+
|
|
1866
|
+
exports[`test icons render an outlined plus icon in a grey color 1`] = `
|
|
1867
|
+
<RNSVGSvgView
|
|
1868
|
+
align="xMidYMid"
|
|
1869
|
+
bbHeight="28"
|
|
1870
|
+
bbWidth="28"
|
|
1871
|
+
fill="none"
|
|
1872
|
+
focusable={false}
|
|
1873
|
+
height="28"
|
|
1874
|
+
meetOrSlice={0}
|
|
1875
|
+
minX={0}
|
|
1876
|
+
minY={0}
|
|
1877
|
+
style={
|
|
1878
|
+
[
|
|
1879
|
+
{
|
|
1880
|
+
"backgroundColor": "transparent",
|
|
1881
|
+
"borderWidth": 0,
|
|
1882
|
+
},
|
|
1883
|
+
{
|
|
1884
|
+
"flex": 0,
|
|
1885
|
+
"height": 28,
|
|
1886
|
+
"width": 28,
|
|
1887
|
+
},
|
|
1888
|
+
]
|
|
1889
|
+
}
|
|
1890
|
+
vbHeight={28}
|
|
1891
|
+
vbWidth={28}
|
|
1892
|
+
width="28"
|
|
1893
|
+
>
|
|
1894
|
+
<RNSVGGroup
|
|
1895
|
+
fill={null}
|
|
1896
|
+
propList={
|
|
1897
|
+
[
|
|
1898
|
+
"fill",
|
|
1899
|
+
]
|
|
1900
|
+
}
|
|
1901
|
+
>
|
|
1902
|
+
<RNSVGPath
|
|
1903
|
+
d="M14 5V23M23 14L5 14"
|
|
1904
|
+
propList={
|
|
1905
|
+
[
|
|
1906
|
+
"stroke",
|
|
1907
|
+
"strokeWidth",
|
|
1908
|
+
"strokeLinecap",
|
|
1909
|
+
"strokeLinejoin",
|
|
1910
|
+
]
|
|
1911
|
+
}
|
|
1912
|
+
stroke={4286611584}
|
|
1913
|
+
strokeLinecap={1}
|
|
1914
|
+
strokeLinejoin={1}
|
|
1915
|
+
strokeWidth="2"
|
|
1916
|
+
/>
|
|
1917
|
+
</RNSVGGroup>
|
|
1918
|
+
</RNSVGSvgView>
|
|
1919
|
+
`;
|
|
1920
|
+
|
|
1921
|
+
exports[`test icons render an outlined plus-sm icon in a red color 1`] = `
|
|
1922
|
+
<RNSVGSvgView
|
|
1923
|
+
align="xMidYMid"
|
|
1924
|
+
bbHeight="28"
|
|
1925
|
+
bbWidth="28"
|
|
1926
|
+
fill="none"
|
|
1927
|
+
focusable={false}
|
|
1928
|
+
height="28"
|
|
1929
|
+
meetOrSlice={0}
|
|
1930
|
+
minX={0}
|
|
1931
|
+
minY={0}
|
|
1932
|
+
style={
|
|
1933
|
+
[
|
|
1934
|
+
{
|
|
1935
|
+
"backgroundColor": "transparent",
|
|
1936
|
+
"borderWidth": 0,
|
|
1937
|
+
},
|
|
1938
|
+
{
|
|
1939
|
+
"flex": 0,
|
|
1940
|
+
"height": 28,
|
|
1941
|
+
"width": 28,
|
|
1942
|
+
},
|
|
1943
|
+
]
|
|
1944
|
+
}
|
|
1945
|
+
vbHeight={27}
|
|
1946
|
+
vbWidth={27}
|
|
1947
|
+
width="28"
|
|
1948
|
+
>
|
|
1949
|
+
<RNSVGGroup
|
|
1950
|
+
fill={null}
|
|
1951
|
+
propList={
|
|
1952
|
+
[
|
|
1953
|
+
"fill",
|
|
1954
|
+
]
|
|
1955
|
+
}
|
|
1956
|
+
>
|
|
1957
|
+
<RNSVGPath
|
|
1958
|
+
d="M13.5 6.75V13.5M13.5 13.5V20.25M13.5 13.5H20.25M13.5 13.5L6.75 13.5"
|
|
1959
|
+
propList={
|
|
1960
|
+
[
|
|
1961
|
+
"stroke",
|
|
1962
|
+
"strokeWidth",
|
|
1963
|
+
"strokeLinecap",
|
|
1964
|
+
"strokeLinejoin",
|
|
1965
|
+
]
|
|
1966
|
+
}
|
|
1967
|
+
stroke={4294901760}
|
|
1968
|
+
strokeLinecap={1}
|
|
1969
|
+
strokeLinejoin={1}
|
|
1970
|
+
strokeWidth="2"
|
|
1971
|
+
/>
|
|
1972
|
+
</RNSVGGroup>
|
|
1973
|
+
</RNSVGSvgView>
|
|
1974
|
+
`;
|
|
1975
|
+
|
|
1976
|
+
exports[`test icons render an outlined qrcode icon in a purple color 1`] = `
|
|
1977
|
+
<RNSVGSvgView
|
|
1978
|
+
align="xMidYMid"
|
|
1979
|
+
bbHeight="28"
|
|
1980
|
+
bbWidth="28"
|
|
1981
|
+
fill="none"
|
|
1982
|
+
focusable={false}
|
|
1983
|
+
height="28"
|
|
1984
|
+
meetOrSlice={0}
|
|
1985
|
+
minX={0}
|
|
1986
|
+
minY={0}
|
|
1987
|
+
style={
|
|
1988
|
+
[
|
|
1989
|
+
{
|
|
1990
|
+
"backgroundColor": "transparent",
|
|
1991
|
+
"borderWidth": 0,
|
|
1992
|
+
},
|
|
1993
|
+
{
|
|
1994
|
+
"flex": 0,
|
|
1995
|
+
"height": 28,
|
|
1996
|
+
"width": 28,
|
|
1997
|
+
},
|
|
1998
|
+
]
|
|
1999
|
+
}
|
|
2000
|
+
vbHeight={27}
|
|
2001
|
+
vbWidth={26}
|
|
2002
|
+
width="28"
|
|
2003
|
+
>
|
|
2004
|
+
<RNSVGGroup
|
|
2005
|
+
fill={null}
|
|
2006
|
+
propList={
|
|
2007
|
+
[
|
|
2008
|
+
"fill",
|
|
2009
|
+
]
|
|
2010
|
+
}
|
|
2011
|
+
>
|
|
2012
|
+
<RNSVGPath
|
|
2013
|
+
d="M14 4.5C14 3.94772 13.5523 3.5 13 3.5C12.4477 3.5 12 3.94772 12 4.5H14ZM12 5.625C12 6.17728 12.4477 6.625 13 6.625C13.5523 6.625 14 6.17728 14 5.625H12ZM19.5 17C18.9477 17 18.5 17.4477 18.5 18C18.5 18.5523 18.9477 19 19.5 19V17ZM21.6666 19C22.2189 19 22.6666 18.5523 22.6666 18C22.6666 17.4477 22.2189 17 21.6666 17V19ZM13 18V17C12.4477 17 12 17.4477 12 18H13ZM15.1666 19C15.7189 19 16.1666 18.5523 16.1666 18C16.1666 17.4477 15.7189 17 15.1666 17V19ZM12 22.5C12 23.0523 12.4477 23.5 13 23.5C13.5523 23.5 14 23.0523 14 22.5H12ZM14 10.125C14 9.57272 13.5523 9.125 13 9.125C12.4477 9.125 12 9.57272 12 10.125H14ZM13 13.5H12C12 14.0523 12.4477 14.5 13 14.5V13.5ZM17.3333 21.5C16.781 21.5 16.3333 21.9477 16.3333 22.5C16.3333 23.0523 16.781 23.5 17.3333 23.5V21.5ZM21.6666 23.5C22.2189 23.5 22.6666 23.0523 22.6666 22.5C22.6666 21.9477 22.2189 21.5 21.6666 21.5V23.5ZM4.33331 12.5C3.78103 12.5 3.33331 12.9477 3.33331 13.5C3.33331 14.0523 3.78103 14.5 4.33331 14.5V12.5ZM8.66665 14.5C9.21893 14.5 9.66665 14.0523 9.66665 13.5C9.66665 12.9477 9.21893 12.5 8.66665 12.5V14.5ZM13.0108 14.5C13.5631 14.5 14.0108 14.0523 14.0108 13.5C14.0108 12.9477 13.5631 12.5 13.0108 12.5V14.5ZM17.3441 14.5C17.8964 14.5 18.3441 14.0523 18.3441 13.5C18.3441 12.9477 17.8964 12.5 17.3441 12.5V14.5ZM21.6666 12.5C21.1144 12.5 20.6666 12.9477 20.6666 13.5C20.6666 14.0523 21.1144 14.5 21.6666 14.5V12.5ZM21.6775 14.5C22.2298 14.5 22.6775 14.0523 22.6775 13.5C22.6775 12.9477 22.2298 12.5 21.6775 12.5V14.5ZM5.41665 5.5H7.58331V3.5H5.41665V5.5ZM7.66665 5.625V7.875H9.66665V5.625H7.66665ZM7.58331 8H5.41665V10H7.58331V8ZM5.33331 7.875V5.625H3.33331V7.875H5.33331ZM5.41665 8C5.40602 8 5.39043 7.9971 5.37093 7.97685C5.3508 7.95595 5.33331 7.92194 5.33331 7.875H3.33331C3.33331 9.0127 4.23082 10 5.41665 10V8ZM7.66665 7.875C7.66665 7.92194 7.64916 7.95595 7.62902 7.97685C7.60953 7.9971 7.59394 8 7.58331 8V10C8.76914 10 9.66665 9.0127 9.66665 7.875H7.66665ZM7.58331 5.5C7.59394 5.5 7.60953 5.5029 7.62902 5.52315C7.64916 5.54405 7.66665 5.57806 7.66665 5.625H9.66665C9.66665 4.4873 8.76914 3.5 7.58331 3.5V5.5ZM5.41665 3.5C4.23082 3.5 3.33331 4.4873 3.33331 5.625H5.33331C5.33331 5.57806 5.3508 5.54405 5.37093 5.52315C5.39043 5.5029 5.40602 5.5 5.41665 5.5V3.5ZM18.4166 5.5H20.5833V3.5H18.4166V5.5ZM20.6666 5.625V7.875H22.6666V5.625H20.6666ZM20.5833 8H18.4166V10H20.5833V8ZM18.3333 7.875V5.625H16.3333V7.875H18.3333ZM18.4166 8C18.406 8 18.3904 7.9971 18.3709 7.97685C18.3508 7.95595 18.3333 7.92194 18.3333 7.875H16.3333C16.3333 9.0127 17.2308 10 18.4166 10V8ZM20.6666 7.875C20.6666 7.92194 20.6492 7.95595 20.629 7.97685C20.6095 7.9971 20.5939 8 20.5833 8V10C21.7691 10 22.6666 9.0127 22.6666 7.875H20.6666ZM20.5833 5.5C20.5939 5.5 20.6095 5.5029 20.629 5.52315C20.6492 5.54405 20.6666 5.57806 20.6666 5.625H22.6666C22.6666 4.4873 21.7691 3.5 20.5833 3.5V5.5ZM18.4166 3.5C17.2308 3.5 16.3333 4.4873 16.3333 5.625H18.3333C18.3333 5.57806 18.3508 5.54405 18.3709 5.52315C18.3904 5.5029 18.406 5.5 18.4166 5.5V3.5ZM5.41665 19H7.58331V17H5.41665V19ZM7.66665 19.125V21.375H9.66665V19.125H7.66665ZM7.58331 21.5H5.41665V23.5H7.58331V21.5ZM5.33331 21.375V19.125H3.33331V21.375H5.33331ZM5.41665 21.5C5.40602 21.5 5.39043 21.4971 5.37093 21.4769C5.3508 21.4559 5.33331 21.4219 5.33331 21.375H3.33331C3.33331 22.5127 4.23082 23.5 5.41665 23.5V21.5ZM7.66665 21.375C7.66665 21.4219 7.64916 21.4559 7.62902 21.4769C7.60953 21.4971 7.59394 21.5 7.58331 21.5V23.5C8.76914 23.5 9.66665 22.5127 9.66665 21.375H7.66665ZM7.58331 19C7.59394 19 7.60953 19.0029 7.62902 19.0231C7.64916 19.0441 7.66665 19.0781 7.66665 19.125H9.66665C9.66665 17.9873 8.76914 17 7.58331 17V19ZM5.41665 17C4.23082 17 3.33331 17.9873 3.33331 19.125H5.33331C5.33331 19.0781 5.3508 19.0441 5.37093 19.0231C5.39043 19.0029 5.40602 19 5.41665 19V17ZM12 4.5V5.625H14V4.5H12ZM19.5 19H21.6666V17H19.5V19ZM13 19H15.1666V17H13V19ZM12 18V22.5H14V18H12ZM12 10.125V13.5H14V10.125H12ZM17.3333 23.5H21.6666V21.5H17.3333V23.5ZM4.33331 14.5H8.66665V12.5H4.33331V14.5ZM13 14.5H13.0108V12.5H13V14.5ZM21.6666 14.5H21.6775V12.5H21.6666V14.5ZM13 14.5H17.3441V12.5H13V14.5Z"
|
|
2014
|
+
fill={4286578816}
|
|
2015
|
+
propList={
|
|
2016
|
+
[
|
|
2017
|
+
"fill",
|
|
2018
|
+
]
|
|
2019
|
+
}
|
|
2020
|
+
/>
|
|
2021
|
+
</RNSVGGroup>
|
|
2022
|
+
</RNSVGSvgView>
|
|
2023
|
+
`;
|
|
2024
|
+
|
|
2025
|
+
exports[`test icons render an outlined refresh icon in a purple color 1`] = `
|
|
2026
|
+
<RNSVGSvgView
|
|
2027
|
+
align="xMidYMid"
|
|
2028
|
+
bbHeight="28"
|
|
2029
|
+
bbWidth="28"
|
|
2030
|
+
fill="none"
|
|
2031
|
+
focusable={false}
|
|
2032
|
+
height="28"
|
|
2033
|
+
meetOrSlice={0}
|
|
2034
|
+
minX={0}
|
|
2035
|
+
minY={0}
|
|
2036
|
+
style={
|
|
2037
|
+
[
|
|
2038
|
+
{
|
|
2039
|
+
"backgroundColor": "transparent",
|
|
2040
|
+
"borderWidth": 0,
|
|
2041
|
+
},
|
|
2042
|
+
{
|
|
2043
|
+
"flex": 0,
|
|
2044
|
+
"height": 28,
|
|
2045
|
+
"width": 28,
|
|
2046
|
+
},
|
|
2047
|
+
]
|
|
2048
|
+
}
|
|
2049
|
+
vbHeight={27}
|
|
2050
|
+
vbWidth={26}
|
|
2051
|
+
width="28"
|
|
2052
|
+
>
|
|
2053
|
+
<RNSVGGroup
|
|
2054
|
+
fill={null}
|
|
2055
|
+
propList={
|
|
2056
|
+
[
|
|
2057
|
+
"fill",
|
|
2058
|
+
]
|
|
2059
|
+
}
|
|
2060
|
+
>
|
|
2061
|
+
<RNSVGPath
|
|
2062
|
+
d="M4.33301 4.5V10.125H4.96298M21.5993 12.375C21.0662 7.9354 17.4193 4.5 12.9997 4.5C9.36251 4.5 6.24866 6.82669 4.96298 10.125M4.96298 10.125H9.74967M21.6663 22.5V16.875H21.0364M21.0364 16.875C19.7507 20.1733 16.6368 22.5 12.9997 22.5C8.58009 22.5 4.93317 19.0646 4.40006 14.625M21.0364 16.875H16.2497"
|
|
2063
|
+
propList={
|
|
2064
|
+
[
|
|
2065
|
+
"stroke",
|
|
2066
|
+
"strokeWidth",
|
|
2067
|
+
"strokeLinecap",
|
|
2068
|
+
"strokeLinejoin",
|
|
2069
|
+
]
|
|
2070
|
+
}
|
|
2071
|
+
stroke={4286578816}
|
|
2072
|
+
strokeLinecap={1}
|
|
2073
|
+
strokeLinejoin={1}
|
|
2074
|
+
strokeWidth="2"
|
|
2075
|
+
/>
|
|
2076
|
+
</RNSVGGroup>
|
|
2077
|
+
</RNSVGSvgView>
|
|
2078
|
+
`;
|
|
2079
|
+
|
|
2080
|
+
exports[`test icons render an outlined search icon in a white color 1`] = `
|
|
2081
|
+
<RNSVGSvgView
|
|
2082
|
+
align="xMidYMid"
|
|
2083
|
+
bbHeight="28"
|
|
2084
|
+
bbWidth="28"
|
|
2085
|
+
fill="none"
|
|
2086
|
+
focusable={false}
|
|
2087
|
+
height="28"
|
|
2088
|
+
meetOrSlice={0}
|
|
2089
|
+
minX={0}
|
|
2090
|
+
minY={0}
|
|
2091
|
+
style={
|
|
2092
|
+
[
|
|
2093
|
+
{
|
|
2094
|
+
"backgroundColor": "transparent",
|
|
2095
|
+
"borderWidth": 0,
|
|
2096
|
+
},
|
|
2097
|
+
{
|
|
2098
|
+
"flex": 0,
|
|
2099
|
+
"height": 28,
|
|
2100
|
+
"width": 28,
|
|
2101
|
+
},
|
|
2102
|
+
]
|
|
2103
|
+
}
|
|
2104
|
+
vbHeight={27}
|
|
2105
|
+
vbWidth={27}
|
|
2106
|
+
width="28"
|
|
2107
|
+
>
|
|
2108
|
+
<RNSVGGroup
|
|
2109
|
+
fill={null}
|
|
2110
|
+
propList={
|
|
2111
|
+
[
|
|
2112
|
+
"fill",
|
|
2113
|
+
]
|
|
2114
|
+
}
|
|
2115
|
+
>
|
|
2116
|
+
<RNSVGPath
|
|
2117
|
+
d="M23.625 23.625L16.875 16.875M19.125 11.25C19.125 15.5992 15.5992 19.125 11.25 19.125C6.90076 19.125 3.375 15.5992 3.375 11.25C3.375 6.90076 6.90076 3.375 11.25 3.375C15.5992 3.375 19.125 6.90076 19.125 11.25Z"
|
|
2118
|
+
propList={
|
|
2119
|
+
[
|
|
2120
|
+
"stroke",
|
|
2121
|
+
"strokeWidth",
|
|
2122
|
+
"strokeLinecap",
|
|
2123
|
+
"strokeLinejoin",
|
|
2124
|
+
]
|
|
2125
|
+
}
|
|
2126
|
+
stroke={4294967295}
|
|
2127
|
+
strokeLinecap={1}
|
|
2128
|
+
strokeLinejoin={1}
|
|
2129
|
+
strokeWidth="2"
|
|
2130
|
+
/>
|
|
2131
|
+
</RNSVGGroup>
|
|
2132
|
+
</RNSVGSvgView>
|
|
2133
|
+
`;
|
|
2134
|
+
|
|
2135
|
+
exports[`test icons render an outlined selector icon in the main color 1`] = `
|
|
2136
|
+
<RNSVGSvgView
|
|
2137
|
+
align="xMidYMid"
|
|
2138
|
+
bbHeight="28"
|
|
2139
|
+
bbWidth="28"
|
|
2140
|
+
fill="none"
|
|
2141
|
+
focusable={false}
|
|
2142
|
+
height="28"
|
|
2143
|
+
meetOrSlice={0}
|
|
2144
|
+
minX={0}
|
|
2145
|
+
minY={0}
|
|
2146
|
+
style={
|
|
2147
|
+
[
|
|
2148
|
+
{
|
|
2149
|
+
"backgroundColor": "transparent",
|
|
2150
|
+
"borderWidth": 0,
|
|
2151
|
+
},
|
|
2152
|
+
{
|
|
2153
|
+
"flex": 0,
|
|
2154
|
+
"height": 28,
|
|
2155
|
+
"width": 28,
|
|
2156
|
+
},
|
|
2157
|
+
]
|
|
2158
|
+
}
|
|
2159
|
+
vbHeight={27}
|
|
2160
|
+
vbWidth={26}
|
|
2161
|
+
width="28"
|
|
2162
|
+
>
|
|
2163
|
+
<RNSVGGroup
|
|
2164
|
+
fill={null}
|
|
2165
|
+
propList={
|
|
2166
|
+
[
|
|
2167
|
+
"fill",
|
|
2168
|
+
]
|
|
2169
|
+
}
|
|
2170
|
+
>
|
|
2171
|
+
<RNSVGPath
|
|
2172
|
+
d="M8.66663 10.125L13 5.625L17.3333 10.125M17.3333 16.875L13 21.375L8.66663 16.875"
|
|
2173
|
+
propList={
|
|
2174
|
+
[
|
|
2175
|
+
"stroke",
|
|
2176
|
+
"strokeWidth",
|
|
2177
|
+
"strokeLinecap",
|
|
2178
|
+
"strokeLinejoin",
|
|
2179
|
+
]
|
|
2180
|
+
}
|
|
2181
|
+
stroke={4279837036}
|
|
2182
|
+
strokeLinecap={1}
|
|
2183
|
+
strokeLinejoin={1}
|
|
2184
|
+
strokeWidth="2"
|
|
2185
|
+
/>
|
|
2186
|
+
</RNSVGGroup>
|
|
2187
|
+
</RNSVGSvgView>
|
|
2188
|
+
`;
|
|
2189
|
+
|
|
2190
|
+
exports[`test icons render an outlined sm-view-grid-add icon in a yellow color 1`] = `
|
|
2191
|
+
<RNSVGSvgView
|
|
2192
|
+
align="xMidYMid"
|
|
2193
|
+
bbHeight="28"
|
|
2194
|
+
bbWidth="28"
|
|
2195
|
+
fill="none"
|
|
2196
|
+
focusable={false}
|
|
2197
|
+
height="28"
|
|
2198
|
+
meetOrSlice={0}
|
|
2199
|
+
minX={0}
|
|
2200
|
+
minY={0}
|
|
2201
|
+
style={
|
|
2202
|
+
[
|
|
2203
|
+
{
|
|
2204
|
+
"backgroundColor": "transparent",
|
|
2205
|
+
"borderWidth": 0,
|
|
2206
|
+
},
|
|
2207
|
+
{
|
|
2208
|
+
"flex": 0,
|
|
2209
|
+
"height": 28,
|
|
2210
|
+
"width": 28,
|
|
2211
|
+
},
|
|
2212
|
+
]
|
|
2213
|
+
}
|
|
2214
|
+
vbHeight={26}
|
|
2215
|
+
vbWidth={26}
|
|
2216
|
+
width="28"
|
|
2217
|
+
>
|
|
2218
|
+
<RNSVGGroup
|
|
2219
|
+
fill={null}
|
|
2220
|
+
propList={
|
|
2221
|
+
[
|
|
2222
|
+
"fill",
|
|
2223
|
+
]
|
|
2224
|
+
}
|
|
2225
|
+
>
|
|
2226
|
+
<RNSVGPath
|
|
2227
|
+
d="M18.4163 15.1663V21.6663M15.1663 18.4163H21.6663M6.49967 10.833H8.66634C9.86296 10.833 10.833 9.86296 10.833 8.66634V6.49967C10.833 5.30306 9.86296 4.33301 8.66634 4.33301H6.49967C5.30306 4.33301 4.33301 5.30306 4.33301 6.49967V8.66634C4.33301 9.86296 5.30306 10.833 6.49967 10.833ZM17.333 10.833H19.4997C20.6963 10.833 21.6663 9.86296 21.6663 8.66634V6.49967C21.6663 5.30306 20.6963 4.33301 19.4997 4.33301H17.333C16.1364 4.33301 15.1663 5.30306 15.1663 6.49967V8.66634C15.1663 9.86296 16.1364 10.833 17.333 10.833ZM6.49967 21.6663H8.66634C9.86296 21.6663 10.833 20.6963 10.833 19.4997V17.333C10.833 16.1364 9.86296 15.1663 8.66634 15.1663H6.49967C5.30306 15.1663 4.33301 16.1364 4.33301 17.333V19.4997C4.33301 20.6963 5.30306 21.6663 6.49967 21.6663Z"
|
|
2228
|
+
propList={
|
|
2229
|
+
[
|
|
2230
|
+
"stroke",
|
|
2231
|
+
"strokeWidth",
|
|
2232
|
+
"strokeLinecap",
|
|
2233
|
+
"strokeLinejoin",
|
|
2234
|
+
]
|
|
2235
|
+
}
|
|
2236
|
+
stroke={4294967040}
|
|
2237
|
+
strokeLinecap={1}
|
|
2238
|
+
strokeLinejoin={1}
|
|
2239
|
+
strokeWidth="2"
|
|
2240
|
+
/>
|
|
2241
|
+
</RNSVGGroup>
|
|
2242
|
+
</RNSVGSvgView>
|
|
2243
|
+
`;
|
|
2244
|
+
|
|
2245
|
+
exports[`test icons render an outlined status-online icon in an orange color 1`] = `
|
|
2246
|
+
<RNSVGSvgView
|
|
2247
|
+
align="xMidYMid"
|
|
2248
|
+
bbHeight="28"
|
|
2249
|
+
bbWidth="28"
|
|
2250
|
+
fill="none"
|
|
2251
|
+
focusable={false}
|
|
2252
|
+
height="28"
|
|
2253
|
+
meetOrSlice={0}
|
|
2254
|
+
minX={0}
|
|
2255
|
+
minY={0}
|
|
2256
|
+
style={
|
|
2257
|
+
[
|
|
2258
|
+
{
|
|
2259
|
+
"backgroundColor": "transparent",
|
|
2260
|
+
"borderWidth": 0,
|
|
2261
|
+
},
|
|
2262
|
+
{
|
|
2263
|
+
"flex": 0,
|
|
2264
|
+
"height": 28,
|
|
2265
|
+
"width": 28,
|
|
2266
|
+
},
|
|
2267
|
+
]
|
|
2268
|
+
}
|
|
2269
|
+
vbHeight={27}
|
|
2270
|
+
vbWidth={27}
|
|
2271
|
+
width="28"
|
|
2272
|
+
>
|
|
2273
|
+
<RNSVGGroup
|
|
2274
|
+
fill={null}
|
|
2275
|
+
propList={
|
|
2276
|
+
[
|
|
2277
|
+
"fill",
|
|
2278
|
+
]
|
|
2279
|
+
}
|
|
2280
|
+
>
|
|
2281
|
+
<RNSVGPath
|
|
2282
|
+
d="M6.34054 20.6595C2.38649 16.7054 2.38649 10.2946 6.34054 6.34058M20.6595 6.34058C24.6135 10.2946 24.6135 16.7054 20.6595 20.6595M9.52252 17.4775C7.32582 15.2808 7.32582 11.7193 9.52252 9.52256M17.4775 9.52256C19.6742 11.7193 19.6742 15.2808 17.4775 17.4775M14.625 13.5C14.625 14.1214 14.1213 14.625 13.5 14.625C12.8787 14.625 12.375 14.1214 12.375 13.5C12.375 12.8787 12.8787 12.375 13.5 12.375C14.1213 12.375 14.625 12.8787 14.625 13.5Z"
|
|
2283
|
+
propList={
|
|
2284
|
+
[
|
|
2285
|
+
"stroke",
|
|
2286
|
+
"strokeWidth",
|
|
2287
|
+
"strokeLinecap",
|
|
2288
|
+
"strokeLinejoin",
|
|
2289
|
+
]
|
|
2290
|
+
}
|
|
2291
|
+
stroke={4294944000}
|
|
2292
|
+
strokeLinecap={1}
|
|
2293
|
+
strokeLinejoin={1}
|
|
2294
|
+
strokeWidth="2"
|
|
2295
|
+
/>
|
|
2296
|
+
</RNSVGGroup>
|
|
2297
|
+
</RNSVGSvgView>
|
|
2298
|
+
`;
|
|
2299
|
+
|
|
2300
|
+
exports[`test icons render an outlined thumb-up icon in a blue color 1`] = `
|
|
2301
|
+
<RNSVGSvgView
|
|
2302
|
+
align="xMidYMid"
|
|
2303
|
+
bbHeight="28"
|
|
2304
|
+
bbWidth="28"
|
|
2305
|
+
fill="none"
|
|
2306
|
+
focusable={false}
|
|
2307
|
+
height="28"
|
|
2308
|
+
meetOrSlice={0}
|
|
2309
|
+
minX={0}
|
|
2310
|
+
minY={0}
|
|
2311
|
+
style={
|
|
2312
|
+
[
|
|
2313
|
+
{
|
|
2314
|
+
"backgroundColor": "transparent",
|
|
2315
|
+
"borderWidth": 0,
|
|
2316
|
+
},
|
|
2317
|
+
{
|
|
2318
|
+
"flex": 0,
|
|
2319
|
+
"height": 28,
|
|
2320
|
+
"width": 28,
|
|
2321
|
+
},
|
|
2322
|
+
]
|
|
2323
|
+
}
|
|
2324
|
+
vbHeight={27}
|
|
2325
|
+
vbWidth={27}
|
|
2326
|
+
width="28"
|
|
2327
|
+
>
|
|
2328
|
+
<RNSVGGroup
|
|
2329
|
+
fill={null}
|
|
2330
|
+
propList={
|
|
2331
|
+
[
|
|
2332
|
+
"fill",
|
|
2333
|
+
]
|
|
2334
|
+
}
|
|
2335
|
+
>
|
|
2336
|
+
<RNSVGPath
|
|
2337
|
+
d="M11.25 11.25H5.8906C4.21799 11.25 3.13012 13.0102 3.87814 14.5062L7.81564 22.3812C8.19677 23.1435 8.97586 23.625 9.8281 23.625H14.348C14.532 23.625 14.7153 23.6024 14.8937 23.5578L19.125 22.5M11.25 11.25V5.625C11.25 4.38236 12.2574 3.375 13.5 3.375H13.6074C14.1694 3.375 14.625 3.83059 14.625 4.39259C14.625 5.19618 14.8629 5.9818 15.3086 6.65043L19.125 12.375V22.5M11.25 11.25H13.5M19.125 22.5H21.375C22.6177 22.5 23.625 21.4926 23.625 20.25V13.5C23.625 12.2574 22.6177 11.25 21.375 11.25H18.5625"
|
|
2338
|
+
propList={
|
|
2339
|
+
[
|
|
2340
|
+
"stroke",
|
|
2341
|
+
"strokeWidth",
|
|
2342
|
+
"strokeLinecap",
|
|
2343
|
+
"strokeLinejoin",
|
|
2344
|
+
]
|
|
2345
|
+
}
|
|
2346
|
+
stroke={4278190335}
|
|
2347
|
+
strokeLinecap={1}
|
|
2348
|
+
strokeLinejoin={1}
|
|
2349
|
+
strokeWidth="2"
|
|
2350
|
+
/>
|
|
2351
|
+
</RNSVGGroup>
|
|
2352
|
+
</RNSVGSvgView>
|
|
2353
|
+
`;
|
|
2354
|
+
|
|
2355
|
+
exports[`test icons render an outlined trash icon in a red color 1`] = `
|
|
2356
|
+
<RNSVGSvgView
|
|
2357
|
+
align="xMidYMid"
|
|
2358
|
+
bbHeight="28"
|
|
2359
|
+
bbWidth="28"
|
|
2360
|
+
fill="none"
|
|
2361
|
+
focusable={false}
|
|
2362
|
+
height="28"
|
|
2363
|
+
meetOrSlice={0}
|
|
2364
|
+
minX={0}
|
|
2365
|
+
minY={0}
|
|
2366
|
+
style={
|
|
2367
|
+
[
|
|
2368
|
+
{
|
|
2369
|
+
"backgroundColor": "transparent",
|
|
2370
|
+
"borderWidth": 0,
|
|
2371
|
+
},
|
|
2372
|
+
{
|
|
2373
|
+
"flex": 0,
|
|
2374
|
+
"height": 28,
|
|
2375
|
+
"width": 28,
|
|
2376
|
+
},
|
|
2377
|
+
]
|
|
2378
|
+
}
|
|
2379
|
+
vbHeight={28}
|
|
2380
|
+
vbWidth={28}
|
|
2381
|
+
width="28"
|
|
2382
|
+
>
|
|
2383
|
+
<RNSVGGroup
|
|
2384
|
+
fill={null}
|
|
2385
|
+
propList={
|
|
2386
|
+
[
|
|
2387
|
+
"fill",
|
|
2388
|
+
]
|
|
2389
|
+
}
|
|
2390
|
+
>
|
|
2391
|
+
<RNSVGPath
|
|
2392
|
+
d="M21.875 8.375L20.8993 22.0353C20.8152 23.2127 19.8354 24.125 18.655 24.125H9.34502C8.16458 24.125 7.18484 23.2127 7.10074 22.0353L6.125 8.375M11.75 12.875V19.625M16.25 12.875V19.625M17.375 8.375V5C17.375 4.37868 16.8713 3.875 16.25 3.875H11.75C11.1287 3.875 10.625 4.37868 10.625 5V8.375M5 8.375H23"
|
|
2393
|
+
propList={
|
|
2394
|
+
[
|
|
2395
|
+
"stroke",
|
|
2396
|
+
"strokeWidth",
|
|
2397
|
+
"strokeLinecap",
|
|
2398
|
+
"strokeLinejoin",
|
|
2399
|
+
]
|
|
2400
|
+
}
|
|
2401
|
+
stroke={4294901760}
|
|
2402
|
+
strokeLinecap={1}
|
|
2403
|
+
strokeLinejoin={1}
|
|
2404
|
+
strokeWidth="2"
|
|
2405
|
+
/>
|
|
2406
|
+
</RNSVGGroup>
|
|
2407
|
+
</RNSVGSvgView>
|
|
2408
|
+
`;
|
|
2409
|
+
|
|
2410
|
+
exports[`test icons render an outlined user icon in the main color 1`] = `
|
|
2411
|
+
<RNSVGSvgView
|
|
2412
|
+
align="xMidYMid"
|
|
2413
|
+
bbHeight="28"
|
|
2414
|
+
bbWidth="28"
|
|
2415
|
+
fill="none"
|
|
2416
|
+
focusable={false}
|
|
2417
|
+
height="28"
|
|
2418
|
+
meetOrSlice={0}
|
|
2419
|
+
minX={0}
|
|
2420
|
+
minY={0}
|
|
2421
|
+
style={
|
|
2422
|
+
[
|
|
2423
|
+
{
|
|
2424
|
+
"backgroundColor": "transparent",
|
|
2425
|
+
"borderWidth": 0,
|
|
2426
|
+
},
|
|
2427
|
+
{
|
|
2428
|
+
"flex": 0,
|
|
2429
|
+
"height": 28,
|
|
2430
|
+
"width": 28,
|
|
2431
|
+
},
|
|
2432
|
+
]
|
|
2433
|
+
}
|
|
2434
|
+
vbHeight={27}
|
|
2435
|
+
vbWidth={27}
|
|
2436
|
+
width="28"
|
|
2437
|
+
>
|
|
2438
|
+
<RNSVGGroup
|
|
2439
|
+
fill={null}
|
|
2440
|
+
propList={
|
|
2441
|
+
[
|
|
2442
|
+
"fill",
|
|
2443
|
+
]
|
|
2444
|
+
}
|
|
2445
|
+
>
|
|
2446
|
+
<RNSVGPath
|
|
2447
|
+
d="M18 7.875C18 10.3603 15.9853 12.375 13.5 12.375C11.0147 12.375 9 10.3603 9 7.875C9 5.38972 11.0147 3.375 13.5 3.375C15.9853 3.375 18 5.38972 18 7.875Z"
|
|
2448
|
+
propList={
|
|
2449
|
+
[
|
|
2450
|
+
"stroke",
|
|
2451
|
+
"strokeWidth",
|
|
2452
|
+
"strokeLinecap",
|
|
2453
|
+
"strokeLinejoin",
|
|
2454
|
+
]
|
|
2455
|
+
}
|
|
2456
|
+
stroke={4279837036}
|
|
2457
|
+
strokeLinecap={1}
|
|
2458
|
+
strokeLinejoin={1}
|
|
2459
|
+
strokeWidth="2"
|
|
2460
|
+
/>
|
|
2461
|
+
<RNSVGPath
|
|
2462
|
+
d="M13.5 15.75C9.15076 15.75 5.625 19.2758 5.625 23.625H21.375C21.375 19.2758 17.8492 15.75 13.5 15.75Z"
|
|
2463
|
+
propList={
|
|
2464
|
+
[
|
|
2465
|
+
"stroke",
|
|
2466
|
+
"strokeWidth",
|
|
2467
|
+
"strokeLinecap",
|
|
2468
|
+
"strokeLinejoin",
|
|
2469
|
+
]
|
|
2470
|
+
}
|
|
2471
|
+
stroke={4279837036}
|
|
2472
|
+
strokeLinecap={1}
|
|
2473
|
+
strokeLinejoin={1}
|
|
2474
|
+
strokeWidth="2"
|
|
2475
|
+
/>
|
|
2476
|
+
</RNSVGGroup>
|
|
2477
|
+
</RNSVGSvgView>
|
|
2478
|
+
`;
|
|
2479
|
+
|
|
2480
|
+
exports[`test icons render an outlined user-group icon in a grey color 1`] = `
|
|
2481
|
+
<RNSVGSvgView
|
|
2482
|
+
align="xMidYMid"
|
|
2483
|
+
bbHeight="28"
|
|
2484
|
+
bbWidth="28"
|
|
2485
|
+
fill="none"
|
|
2486
|
+
focusable={false}
|
|
2487
|
+
height="28"
|
|
2488
|
+
meetOrSlice={0}
|
|
2489
|
+
minX={0}
|
|
2490
|
+
minY={0}
|
|
2491
|
+
style={
|
|
2492
|
+
[
|
|
2493
|
+
{
|
|
2494
|
+
"backgroundColor": "transparent",
|
|
2495
|
+
"borderWidth": 0,
|
|
2496
|
+
},
|
|
2497
|
+
{
|
|
2498
|
+
"flex": 0,
|
|
2499
|
+
"height": 28,
|
|
2500
|
+
"width": 28,
|
|
2501
|
+
},
|
|
2502
|
+
]
|
|
2503
|
+
}
|
|
2504
|
+
vbHeight={27}
|
|
2505
|
+
vbWidth={27}
|
|
2506
|
+
width="28"
|
|
2507
|
+
>
|
|
2508
|
+
<RNSVGGroup
|
|
2509
|
+
fill={null}
|
|
2510
|
+
propList={
|
|
2511
|
+
[
|
|
2512
|
+
"fill",
|
|
2513
|
+
]
|
|
2514
|
+
}
|
|
2515
|
+
>
|
|
2516
|
+
<RNSVGPath
|
|
2517
|
+
d="M19.125 22.5H24.75V20.25C24.75 18.386 23.239 16.875 21.375 16.875C20.2999 16.875 19.3423 17.3776 18.7242 18.1608M19.125 22.5H7.875M19.125 22.5V20.25C19.125 19.5117 18.9828 18.8067 18.7242 18.1608M7.875 22.5H2.25V20.25C2.25 18.386 3.76104 16.875 5.625 16.875C6.70006 16.875 7.65772 17.3776 8.27578 18.1608M7.875 22.5V20.25C7.875 19.5117 8.01723 18.8067 8.27578 18.1608M8.27578 18.1608C9.10519 16.0887 11.1317 14.625 13.5 14.625C15.8683 14.625 17.8948 16.0887 18.7242 18.1608M16.875 7.875C16.875 9.73896 15.364 11.25 13.5 11.25C11.636 11.25 10.125 9.73896 10.125 7.875C10.125 6.01104 11.636 4.5 13.5 4.5C15.364 4.5 16.875 6.01104 16.875 7.875ZM23.625 11.25C23.625 12.4926 22.6176 13.5 21.375 13.5C20.1324 13.5 19.125 12.4926 19.125 11.25C19.125 10.0074 20.1324 9 21.375 9C22.6176 9 23.625 10.0074 23.625 11.25ZM7.875 11.25C7.875 12.4926 6.86764 13.5 5.625 13.5C4.38236 13.5 3.375 12.4926 3.375 11.25C3.375 10.0074 4.38236 9 5.625 9C6.86764 9 7.875 10.0074 7.875 11.25Z"
|
|
2518
|
+
propList={
|
|
2519
|
+
[
|
|
2520
|
+
"stroke",
|
|
2521
|
+
"strokeWidth",
|
|
2522
|
+
"strokeLinecap",
|
|
2523
|
+
"strokeLinejoin",
|
|
2524
|
+
]
|
|
2525
|
+
}
|
|
2526
|
+
stroke={4286611584}
|
|
2527
|
+
strokeLinecap={1}
|
|
2528
|
+
strokeLinejoin={1}
|
|
2529
|
+
strokeWidth="2"
|
|
2530
|
+
/>
|
|
2531
|
+
</RNSVGGroup>
|
|
2532
|
+
</RNSVGSvgView>
|
|
2533
|
+
`;
|
|
2534
|
+
|
|
2535
|
+
exports[`test icons render an outlined users icon in a white color 1`] = `
|
|
2536
|
+
<RNSVGSvgView
|
|
2537
|
+
align="xMidYMid"
|
|
2538
|
+
bbHeight="28"
|
|
2539
|
+
bbWidth="28"
|
|
2540
|
+
fill="none"
|
|
2541
|
+
focusable={false}
|
|
2542
|
+
height="28"
|
|
2543
|
+
meetOrSlice={0}
|
|
2544
|
+
minX={0}
|
|
2545
|
+
minY={0}
|
|
2546
|
+
style={
|
|
2547
|
+
[
|
|
2548
|
+
{
|
|
2549
|
+
"backgroundColor": "transparent",
|
|
2550
|
+
"borderWidth": 0,
|
|
2551
|
+
},
|
|
2552
|
+
{
|
|
2553
|
+
"flex": 0,
|
|
2554
|
+
"height": 28,
|
|
2555
|
+
"width": 28,
|
|
2556
|
+
},
|
|
2557
|
+
]
|
|
2558
|
+
}
|
|
2559
|
+
vbHeight={32}
|
|
2560
|
+
vbWidth={32}
|
|
2561
|
+
width="28"
|
|
2562
|
+
>
|
|
2563
|
+
<RNSVGGroup
|
|
2564
|
+
fill={null}
|
|
2565
|
+
propList={
|
|
2566
|
+
[
|
|
2567
|
+
"fill",
|
|
2568
|
+
]
|
|
2569
|
+
}
|
|
2570
|
+
>
|
|
2571
|
+
<RNSVGPath
|
|
2572
|
+
d="M16 5.80557C16.9773 4.69834 18.4071 4 20 4C22.9455 4 25.3333 6.38781 25.3333 9.33333C25.3333 12.2789 22.9455 14.6667 20 14.6667C18.4071 14.6667 16.9773 13.9683 16 12.8611M20 28H4V26.6667C4 22.2484 7.58172 18.6667 12 18.6667C16.4183 18.6667 20 22.2484 20 26.6667V28ZM20 28H28V26.6667C28 22.2484 24.4183 18.6667 20 18.6667C18.5429 18.6667 17.1767 19.0562 16 19.7369M17.3333 9.33333C17.3333 12.2789 14.9455 14.6667 12 14.6667C9.05448 14.6667 6.66667 12.2789 6.66667 9.33333C6.66667 6.38781 9.05448 4 12 4C14.9455 4 17.3333 6.38781 17.3333 9.33333Z"
|
|
2573
|
+
propList={
|
|
2574
|
+
[
|
|
2575
|
+
"stroke",
|
|
2576
|
+
"strokeWidth",
|
|
2577
|
+
"strokeLinecap",
|
|
2578
|
+
"strokeLinejoin",
|
|
2579
|
+
]
|
|
2580
|
+
}
|
|
2581
|
+
stroke={4294967295}
|
|
2582
|
+
strokeLinecap={1}
|
|
2583
|
+
strokeLinejoin={1}
|
|
2584
|
+
strokeWidth="2"
|
|
2585
|
+
/>
|
|
2586
|
+
</RNSVGGroup>
|
|
2587
|
+
</RNSVGSvgView>
|
|
2588
|
+
`;
|