@unifesto/unicon 1.0.6 → 1.0.7
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/dist/icons/unifesto.png +0 -0
- package/dist/icons/x.png +0 -0
- package/dist/index.d.ts +3 -1
- package/dist/manifest.json +16 -0
- package/dist/react/index.js +3 -1
- package/dist/react-native/index.js +6 -2
- package/package.json +1 -1
|
Binary file
|
package/dist/icons/x.png
ADDED
|
Binary file
|
package/dist/index.d.ts
CHANGED
package/dist/manifest.json
CHANGED
|
@@ -235,6 +235,14 @@
|
|
|
235
235
|
"category": "system",
|
|
236
236
|
"tags": []
|
|
237
237
|
},
|
|
238
|
+
"unifesto": {
|
|
239
|
+
"path": "icons/unifesto.png",
|
|
240
|
+
"format": "png",
|
|
241
|
+
"width": 1024,
|
|
242
|
+
"height": 1024,
|
|
243
|
+
"category": "system",
|
|
244
|
+
"tags": []
|
|
245
|
+
},
|
|
238
246
|
"verified-blue": {
|
|
239
247
|
"path": "icons/verified-blue.png",
|
|
240
248
|
"format": "png",
|
|
@@ -250,5 +258,13 @@
|
|
|
250
258
|
"height": 1024,
|
|
251
259
|
"category": "system",
|
|
252
260
|
"tags": []
|
|
261
|
+
},
|
|
262
|
+
"x": {
|
|
263
|
+
"path": "icons/x.png",
|
|
264
|
+
"format": "png",
|
|
265
|
+
"width": 1024,
|
|
266
|
+
"height": 1024,
|
|
267
|
+
"category": "system",
|
|
268
|
+
"tags": []
|
|
253
269
|
}
|
|
254
270
|
}
|
package/dist/react/index.js
CHANGED
|
@@ -34,8 +34,10 @@ const iconMap = {
|
|
|
34
34
|
"signout": require("../icons/signout.png"),
|
|
35
35
|
"support": require("../icons/support.png"),
|
|
36
36
|
"tag": require("../icons/tag.png"),
|
|
37
|
+
"unifesto": require("../icons/unifesto.png"),
|
|
37
38
|
"verified-blue": require("../icons/verified-blue.png"),
|
|
38
|
-
"verified-green": require("../icons/verified-green.png")
|
|
39
|
+
"verified-green": require("../icons/verified-green.png"),
|
|
40
|
+
"x": require("../icons/x.png")
|
|
39
41
|
};
|
|
40
42
|
|
|
41
43
|
/**
|
|
@@ -162,8 +164,10 @@ export const iconNames = [
|
|
|
162
164
|
"signout",
|
|
163
165
|
"support",
|
|
164
166
|
"tag",
|
|
167
|
+
"unifesto",
|
|
165
168
|
"verified-blue",
|
|
166
|
-
"verified-green"
|
|
169
|
+
"verified-green",
|
|
170
|
+
"x"
|
|
167
171
|
];
|
|
168
172
|
|
|
169
173
|
export default UnIcon;
|