react-native-ico-basic 4.1.5 → 7.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/README.md +19 -15
- package/package.json +8 -3
- package/src/data.js +206 -206
- package/static/diary.png +0 -0
- package/static/name.png +0 -0
- package/static/trash.png +0 -0
- package/typings.d.ts +219 -207
package/static/diary.png
ADDED
|
Binary file
|
package/static/name.png
ADDED
|
Binary file
|
package/static/trash.png
ADDED
|
Binary file
|
package/typings.d.ts
CHANGED
|
@@ -1,247 +1,257 @@
|
|
|
1
1
|
declare module 'react-native-ico-basic' {
|
|
2
2
|
import { ReactNode } from 'react';
|
|
3
|
-
import { SvgProps
|
|
3
|
+
import { SvgProps } from 'react-native-svg';
|
|
4
4
|
|
|
5
|
-
type
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
'
|
|
13
|
-
'
|
|
14
|
-
'
|
|
15
|
-
'
|
|
5
|
+
type AdditionalProps = {
|
|
6
|
+
onError?: (error: Error) => void;
|
|
7
|
+
onLoad?: () => void;
|
|
8
|
+
fallback?: ReactNode;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
type iconNames = 'crop' |
|
|
12
|
+
'message' |
|
|
13
|
+
'low-volume' |
|
|
14
|
+
'name' |
|
|
15
|
+
'diary' |
|
|
16
|
+
'trash' |
|
|
17
|
+
'wristwatch-2' |
|
|
18
|
+
'users' |
|
|
16
19
|
'backwards' |
|
|
17
|
-
'
|
|
18
|
-
'
|
|
19
|
-
'
|
|
20
|
-
'
|
|
20
|
+
'video' |
|
|
21
|
+
'present-1' |
|
|
22
|
+
'forward' |
|
|
23
|
+
'search' |
|
|
24
|
+
'wall-clock' |
|
|
25
|
+
'usb' |
|
|
26
|
+
'recycle-3' |
|
|
27
|
+
'user-13' |
|
|
28
|
+
'backward' |
|
|
29
|
+
'note-1' |
|
|
21
30
|
'bell' |
|
|
22
|
-
'
|
|
23
|
-
'
|
|
24
|
-
'
|
|
25
|
-
'
|
|
26
|
-
'
|
|
27
|
-
'
|
|
31
|
+
'flask-1' |
|
|
32
|
+
'menu' |
|
|
33
|
+
'user-2' |
|
|
34
|
+
'zoom-in' |
|
|
35
|
+
'monitor' |
|
|
36
|
+
'zoom' |
|
|
37
|
+
'compress' |
|
|
38
|
+
'resume' |
|
|
39
|
+
'upload-2' |
|
|
40
|
+
'left-arrow' |
|
|
41
|
+
'eye' |
|
|
42
|
+
'center-align' |
|
|
28
43
|
'box' |
|
|
44
|
+
'flag-1' |
|
|
45
|
+
'eye-1' |
|
|
46
|
+
'mute' |
|
|
47
|
+
'organization' |
|
|
29
48
|
'briefcase' |
|
|
49
|
+
'magnet' |
|
|
50
|
+
'gear-1' |
|
|
51
|
+
'presentation' |
|
|
30
52
|
'brush' |
|
|
31
|
-
'
|
|
32
|
-
'
|
|
33
|
-
'
|
|
34
|
-
'
|
|
35
|
-
'
|
|
36
|
-
'
|
|
37
|
-
'
|
|
38
|
-
'
|
|
39
|
-
'
|
|
40
|
-
'
|
|
53
|
+
'block-user' |
|
|
54
|
+
'gym' |
|
|
55
|
+
'ban' |
|
|
56
|
+
'writing-4' |
|
|
57
|
+
'squares' |
|
|
58
|
+
'tissue-roll' |
|
|
59
|
+
'monitor-1' |
|
|
60
|
+
'user-1' |
|
|
61
|
+
'rulers' |
|
|
62
|
+
'zoom-out' |
|
|
63
|
+
'user-8' |
|
|
64
|
+
'test-tube' |
|
|
65
|
+
'user' |
|
|
66
|
+
'syringe' |
|
|
67
|
+
'tick' |
|
|
68
|
+
'recycle-4' |
|
|
41
69
|
'tick-1' |
|
|
42
|
-
'writing' |
|
|
43
|
-
'writing-1' |
|
|
44
|
-
'chemistry' |
|
|
45
|
-
'chemistry-1' |
|
|
46
70
|
'tubes' |
|
|
47
|
-
'
|
|
48
|
-
'
|
|
71
|
+
'bluetooth' |
|
|
72
|
+
'add' |
|
|
73
|
+
'down-arrow-1' |
|
|
74
|
+
'delete-user' |
|
|
75
|
+
'video-camera' |
|
|
76
|
+
'share' |
|
|
77
|
+
'present' |
|
|
78
|
+
'book-1' |
|
|
79
|
+
'chemistry-1' |
|
|
80
|
+
'thunder' |
|
|
81
|
+
'compress-1' |
|
|
82
|
+
'sand-clock-2' |
|
|
49
83
|
'code-1' |
|
|
84
|
+
'star' |
|
|
85
|
+
'writing-5' |
|
|
86
|
+
'clock' |
|
|
87
|
+
'shopping-cart' |
|
|
88
|
+
'pages' |
|
|
89
|
+
'log-out' |
|
|
50
90
|
'gear' |
|
|
51
|
-
'compass' |
|
|
52
|
-
'compress' |
|
|
53
|
-
'monitor' |
|
|
54
|
-
'compress-1' |
|
|
55
|
-
'contact-book' |
|
|
56
|
-
'cpu' |
|
|
57
|
-
'crop' |
|
|
58
|
-
'headphones' |
|
|
59
|
-
'curriculum' |
|
|
60
|
-
'pendrive' |
|
|
61
91
|
'calendar-1' |
|
|
62
|
-
'
|
|
63
|
-
'
|
|
64
|
-
'
|
|
65
|
-
'
|
|
66
|
-
'
|
|
67
|
-
'
|
|
68
|
-
'
|
|
69
|
-
'
|
|
70
|
-
'archives' |
|
|
92
|
+
'play' |
|
|
93
|
+
'user-3' |
|
|
94
|
+
'monitor-2' |
|
|
95
|
+
'left-alignment' |
|
|
96
|
+
'badge' |
|
|
97
|
+
'calendar' |
|
|
98
|
+
'pin' |
|
|
99
|
+
'paper' |
|
|
71
100
|
'down-arrow' |
|
|
72
|
-
'
|
|
101
|
+
'router' |
|
|
102
|
+
'user-5' |
|
|
103
|
+
'bar' |
|
|
104
|
+
'user-7' |
|
|
105
|
+
'refresh' |
|
|
106
|
+
'tie' |
|
|
107
|
+
'anchor' |
|
|
108
|
+
'wristwatch-1' |
|
|
109
|
+
'in' |
|
|
110
|
+
'code' |
|
|
73
111
|
'drink' |
|
|
74
|
-
'writing-2' |
|
|
75
|
-
'writing-3' |
|
|
76
|
-
'writing-4' |
|
|
77
|
-
'edit' |
|
|
78
|
-
'pen' |
|
|
79
|
-
'pen-1' |
|
|
80
|
-
'calendar-3' |
|
|
81
|
-
'calendar-4' |
|
|
82
|
-
'calendar-5' |
|
|
83
|
-
'calendar-6' |
|
|
84
|
-
'event' |
|
|
85
|
-
'event-1' |
|
|
86
|
-
'tube' |
|
|
87
|
-
'eye' |
|
|
88
|
-
'backward' |
|
|
89
|
-
'forward' |
|
|
90
|
-
'paper' |
|
|
91
|
-
'flag-1' |
|
|
92
|
-
'flag-2' |
|
|
93
|
-
'thunder' |
|
|
94
|
-
'flask' |
|
|
95
|
-
'flask-1' |
|
|
96
|
-
'diagram' |
|
|
97
|
-
'folder' |
|
|
98
|
-
'folder-1' |
|
|
99
|
-
'cutlery' |
|
|
100
|
-
'forward-1' |
|
|
101
|
-
'full-battery-1' |
|
|
102
|
-
'present' |
|
|
103
|
-
'present-1' |
|
|
104
|
-
'squares' |
|
|
105
|
-
'gym' |
|
|
106
|
-
'headphones-1' |
|
|
107
112
|
'blind' |
|
|
113
|
+
'anchor-point' |
|
|
114
|
+
'chronometer' |
|
|
108
115
|
'identification-1' |
|
|
109
|
-
'
|
|
110
|
-
'
|
|
111
|
-
'
|
|
112
|
-
'
|
|
113
|
-
'
|
|
114
|
-
'
|
|
115
|
-
'
|
|
116
|
-
'
|
|
117
|
-
'left-alignment' |
|
|
118
|
-
'left-arrow' |
|
|
119
|
-
'lamp' |
|
|
120
|
-
'placeholder' |
|
|
121
|
-
'placeholder-1' |
|
|
122
|
-
'in-1' |
|
|
116
|
+
'router-1' |
|
|
117
|
+
'cutlery' |
|
|
118
|
+
'book' |
|
|
119
|
+
'drop' |
|
|
120
|
+
'flag-2' |
|
|
121
|
+
'calendar-2' |
|
|
122
|
+
'contact-book' |
|
|
123
|
+
'pen-1' |
|
|
123
124
|
'out' |
|
|
124
|
-
'
|
|
125
|
-
'
|
|
126
|
-
'
|
|
127
|
-
'
|
|
128
|
-
'
|
|
129
|
-
'
|
|
130
|
-
'
|
|
131
|
-
'
|
|
132
|
-
'mobile' |
|
|
133
|
-
'monitor-1' |
|
|
134
|
-
'more' |
|
|
135
|
-
'note' |
|
|
136
|
-
'notepad' |
|
|
137
|
-
'note-1' |
|
|
125
|
+
'attach' |
|
|
126
|
+
'contacs' |
|
|
127
|
+
'diagram' |
|
|
128
|
+
'event' |
|
|
129
|
+
'full-battery-1' |
|
|
130
|
+
'ticket' |
|
|
131
|
+
'stethoscope' |
|
|
132
|
+
'recycle' |
|
|
138
133
|
'slider' |
|
|
134
|
+
'board' |
|
|
135
|
+
'physics' |
|
|
136
|
+
'shopping-bag' |
|
|
139
137
|
'slider-1' |
|
|
140
|
-
'
|
|
141
|
-
'
|
|
142
|
-
'package' |
|
|
138
|
+
'inbox' |
|
|
139
|
+
'top-alignment' |
|
|
143
140
|
'page' |
|
|
144
|
-
'
|
|
145
|
-
'
|
|
146
|
-
'
|
|
147
|
-
'
|
|
148
|
-
'
|
|
149
|
-
'placeholder-2' |
|
|
150
|
-
'play' |
|
|
151
|
-
'presentation' |
|
|
152
|
-
'profile' |
|
|
153
|
-
'profile-1' |
|
|
154
|
-
'book-1' |
|
|
155
|
-
'recycle' |
|
|
156
|
-
'recycle-1' |
|
|
157
|
-
'recycle-2' |
|
|
158
|
-
'refresh' |
|
|
159
|
-
'resume' |
|
|
141
|
+
'user-11' |
|
|
142
|
+
'wand' |
|
|
143
|
+
'contact-information' |
|
|
144
|
+
'usb-cable' |
|
|
145
|
+
'syringe-1' |
|
|
160
146
|
'ribbon' |
|
|
161
|
-
'
|
|
162
|
-
'
|
|
147
|
+
'note' |
|
|
148
|
+
'identification' |
|
|
149
|
+
'achievement' |
|
|
150
|
+
'user-4' |
|
|
163
151
|
'roller' |
|
|
164
|
-
'
|
|
152
|
+
'chemistry' |
|
|
153
|
+
'writing' |
|
|
154
|
+
'user-15' |
|
|
155
|
+
'archives' |
|
|
156
|
+
'web' |
|
|
165
157
|
'ruler' |
|
|
166
|
-
'
|
|
167
|
-
'
|
|
168
|
-
'
|
|
169
|
-
'
|
|
158
|
+
'calendar-5' |
|
|
159
|
+
'aim' |
|
|
160
|
+
'folder-1' |
|
|
161
|
+
'calendar-3' |
|
|
162
|
+
'flag' |
|
|
163
|
+
'notebook' |
|
|
164
|
+
'tag' |
|
|
165
|
+
'lamp' |
|
|
170
166
|
'set-square' |
|
|
171
|
-
'
|
|
172
|
-
'share' |
|
|
173
|
-
'shield' |
|
|
174
|
-
'shopping-bag' |
|
|
175
|
-
'shopping-cart' |
|
|
167
|
+
'minimize' |
|
|
176
168
|
'shopping-cart-1' |
|
|
169
|
+
'pen' |
|
|
170
|
+
'user-9' |
|
|
171
|
+
'call' |
|
|
172
|
+
'measurement' |
|
|
173
|
+
'headphones' |
|
|
174
|
+
'calendar-4' |
|
|
175
|
+
'user-6' |
|
|
176
|
+
'cart' |
|
|
177
|
+
'user-17' |
|
|
178
|
+
'writing-6' |
|
|
179
|
+
'right' |
|
|
180
|
+
'image-1' |
|
|
181
|
+
'torch' |
|
|
182
|
+
'tablet' |
|
|
177
183
|
'wristwatch' |
|
|
178
|
-
'star' |
|
|
179
184
|
'street-light' |
|
|
180
|
-
'
|
|
181
|
-
'
|
|
182
|
-
'
|
|
183
|
-
'
|
|
185
|
+
'diamond' |
|
|
186
|
+
'headphones-1' |
|
|
187
|
+
'low-battery' |
|
|
188
|
+
'compass' |
|
|
189
|
+
'center-align-1' |
|
|
184
190
|
'document' |
|
|
185
|
-
'
|
|
186
|
-
'
|
|
187
|
-
'
|
|
188
|
-
'
|
|
189
|
-
'
|
|
190
|
-
'
|
|
191
|
-
'
|
|
192
|
-
'
|
|
193
|
-
'
|
|
194
|
-
'
|
|
195
|
-
'
|
|
196
|
-
'
|
|
191
|
+
'image' |
|
|
192
|
+
'pause' |
|
|
193
|
+
'in-1' |
|
|
194
|
+
'microphone' |
|
|
195
|
+
'more' |
|
|
196
|
+
'writing-1' |
|
|
197
|
+
'recycle-1' |
|
|
198
|
+
'cancel' |
|
|
199
|
+
'right-alignment' |
|
|
200
|
+
'event-1' |
|
|
201
|
+
'telephone' |
|
|
202
|
+
'placeholder-1' |
|
|
203
|
+
'profile' |
|
|
204
|
+
'smartphone' |
|
|
197
205
|
'upload' |
|
|
198
|
-
'
|
|
199
|
-
'
|
|
200
|
-
'
|
|
201
|
-
'
|
|
206
|
+
'trolley' |
|
|
207
|
+
'placeholder' |
|
|
208
|
+
'curriculum' |
|
|
209
|
+
'verified' |
|
|
210
|
+
'edit' |
|
|
202
211
|
'add-user' |
|
|
203
|
-
'
|
|
204
|
-
'
|
|
205
|
-
'
|
|
206
|
-
'
|
|
207
|
-
'
|
|
208
|
-
'
|
|
209
|
-
'
|
|
210
|
-
'
|
|
211
|
-
'
|
|
212
|
-
'
|
|
213
|
-
'user-9' |
|
|
214
|
-
'contact-information' |
|
|
215
|
-
'user-10' |
|
|
216
|
-
'user-11' |
|
|
212
|
+
'profile-1' |
|
|
213
|
+
'writing-2' |
|
|
214
|
+
'placeholder-2' |
|
|
215
|
+
'calendar-6' |
|
|
216
|
+
'letter' |
|
|
217
|
+
'layers' |
|
|
218
|
+
'folder' |
|
|
219
|
+
'mobile' |
|
|
220
|
+
'shield' |
|
|
221
|
+
'sand-clock-1' |
|
|
217
222
|
'user-12' |
|
|
218
|
-
'
|
|
219
|
-
'user-13' |
|
|
223
|
+
'atm-card' |
|
|
220
224
|
'user-14' |
|
|
221
|
-
'
|
|
222
|
-
'
|
|
223
|
-
'
|
|
224
|
-
'
|
|
225
|
+
'full-battery' |
|
|
226
|
+
'recycle-2' |
|
|
227
|
+
'postal' |
|
|
228
|
+
'flask' |
|
|
229
|
+
'tube' |
|
|
230
|
+
'package' |
|
|
231
|
+
'sand-clock' |
|
|
232
|
+
'bag' |
|
|
225
233
|
'vector' |
|
|
226
|
-
'
|
|
227
|
-
'
|
|
228
|
-
'
|
|
229
|
-
'
|
|
230
|
-
'
|
|
231
|
-
'
|
|
232
|
-
'
|
|
233
|
-
'
|
|
234
|
-
'
|
|
235
|
-
'
|
|
236
|
-
'
|
|
237
|
-
'
|
|
238
|
-
'
|
|
239
|
-
'
|
|
240
|
-
|
|
241
|
-
|
|
234
|
+
'binocular' |
|
|
235
|
+
'upload-1' |
|
|
236
|
+
'cpu' |
|
|
237
|
+
'pendrive' |
|
|
238
|
+
'approved' |
|
|
239
|
+
'archive' |
|
|
240
|
+
'notepad' |
|
|
241
|
+
'user-16' |
|
|
242
|
+
'writing-3' |
|
|
243
|
+
'bookmark' |
|
|
244
|
+
'up-arrow' |
|
|
245
|
+
'user-10' |
|
|
246
|
+
'forward-1' |
|
|
247
|
+
'mute-1';
|
|
248
|
+
|
|
249
|
+
type iconColors = ;
|
|
242
250
|
|
|
243
251
|
type backgroundType = 'circle' | 'rect' | 'button';
|
|
244
252
|
|
|
253
|
+
type colorsType = Record<iconColors, string>;
|
|
254
|
+
|
|
245
255
|
type positionType = 'top' | 'bottom' | 'right' | 'left' |
|
|
246
256
|
'top_right' | 'top_left' | 'bottom_right' | 'bottom_left';
|
|
247
257
|
|
|
@@ -257,6 +267,7 @@ declare module 'react-native-ico-basic' {
|
|
|
257
267
|
fontSize?: string;
|
|
258
268
|
position?: positionType;
|
|
259
269
|
color?: string;
|
|
270
|
+
colors: colorsType;
|
|
260
271
|
backgroundColor?: string;
|
|
261
272
|
radius?: number;
|
|
262
273
|
};
|
|
@@ -266,6 +277,7 @@ declare module 'react-native-ico-basic' {
|
|
|
266
277
|
width?: number;
|
|
267
278
|
height?: number;
|
|
268
279
|
color?: string;
|
|
280
|
+
colors?: colorsType;
|
|
269
281
|
stroke?: number;
|
|
270
282
|
background?: backgroundType | backgroundTypeObj;
|
|
271
283
|
badge?: number | string | badgeTypeObj;
|