@unifesto/unicon 1.0.5 → 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.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/dist/index.d.ts CHANGED
@@ -15,8 +15,12 @@ export type IconName =
15
15
  | "at"
16
16
  | "calendar"
17
17
  | "camera"
18
+ | "file-text"
19
+ | "github"
20
+ | "globe"
18
21
  | "google"
19
22
  | "instagram"
23
+ | "linkedin"
20
24
  | "mail"
21
25
  | "megaphone"
22
26
  | "notification"
@@ -28,8 +32,10 @@ export type IconName =
28
32
  | "signout"
29
33
  | "support"
30
34
  | "tag"
35
+ | "unifesto"
31
36
  | "verified-blue"
32
- | "verified-green";
37
+ | "verified-green"
38
+ | "x";
33
39
 
34
40
  /**
35
41
  * Icon categories for organization and search
@@ -63,6 +63,30 @@
63
63
  "category": "system",
64
64
  "tags": []
65
65
  },
66
+ "file-text": {
67
+ "path": "icons/file-text.png",
68
+ "format": "png",
69
+ "width": 1024,
70
+ "height": 1024,
71
+ "category": "system",
72
+ "tags": []
73
+ },
74
+ "github": {
75
+ "path": "icons/github.png",
76
+ "format": "png",
77
+ "width": 1024,
78
+ "height": 1024,
79
+ "category": "system",
80
+ "tags": []
81
+ },
82
+ "globe": {
83
+ "path": "icons/globe.png",
84
+ "format": "png",
85
+ "width": 1024,
86
+ "height": 1024,
87
+ "category": "system",
88
+ "tags": []
89
+ },
66
90
  "google": {
67
91
  "path": "icons/google.png",
68
92
  "format": "png",
@@ -87,6 +111,14 @@
87
111
  "photo"
88
112
  ]
89
113
  },
114
+ "linkedin": {
115
+ "path": "icons/linkedin.png",
116
+ "format": "png",
117
+ "width": 1024,
118
+ "height": 1024,
119
+ "category": "system",
120
+ "tags": []
121
+ },
90
122
  "mail": {
91
123
  "path": "icons/mail.png",
92
124
  "format": "png",
@@ -203,6 +235,14 @@
203
235
  "category": "system",
204
236
  "tags": []
205
237
  },
238
+ "unifesto": {
239
+ "path": "icons/unifesto.png",
240
+ "format": "png",
241
+ "width": 1024,
242
+ "height": 1024,
243
+ "category": "system",
244
+ "tags": []
245
+ },
206
246
  "verified-blue": {
207
247
  "path": "icons/verified-blue.png",
208
248
  "format": "png",
@@ -218,5 +258,13 @@
218
258
  "height": 1024,
219
259
  "category": "system",
220
260
  "tags": []
261
+ },
262
+ "x": {
263
+ "path": "icons/x.png",
264
+ "format": "png",
265
+ "width": 1024,
266
+ "height": 1024,
267
+ "category": "system",
268
+ "tags": []
221
269
  }
222
270
  }
@@ -111,8 +111,12 @@ export const iconNames = [
111
111
  "at",
112
112
  "calendar",
113
113
  "camera",
114
+ "file-text",
115
+ "github",
116
+ "globe",
114
117
  "google",
115
118
  "instagram",
119
+ "linkedin",
116
120
  "mail",
117
121
  "megaphone",
118
122
  "notification",
@@ -124,8 +128,10 @@ export const iconNames = [
124
128
  "signout",
125
129
  "support",
126
130
  "tag",
131
+ "unifesto",
127
132
  "verified-blue",
128
- "verified-green"
133
+ "verified-green",
134
+ "x"
129
135
  ];
130
136
 
131
137
  export default UnIcon;
@@ -17,8 +17,12 @@ const iconMap = {
17
17
  "at": require("../icons/at.png"),
18
18
  "calendar": require("../icons/calendar.png"),
19
19
  "camera": require("../icons/camera.png"),
20
+ "file-text": require("../icons/file-text.png"),
21
+ "github": require("../icons/github.png"),
22
+ "globe": require("../icons/globe.png"),
20
23
  "google": require("../icons/google.png"),
21
24
  "instagram": require("../icons/instagram.png"),
25
+ "linkedin": require("../icons/linkedin.png"),
22
26
  "mail": require("../icons/mail.png"),
23
27
  "megaphone": require("../icons/megaphone.png"),
24
28
  "notification": require("../icons/notification.png"),
@@ -30,8 +34,10 @@ const iconMap = {
30
34
  "signout": require("../icons/signout.png"),
31
35
  "support": require("../icons/support.png"),
32
36
  "tag": require("../icons/tag.png"),
37
+ "unifesto": require("../icons/unifesto.png"),
33
38
  "verified-blue": require("../icons/verified-blue.png"),
34
- "verified-green": require("../icons/verified-green.png")
39
+ "verified-green": require("../icons/verified-green.png"),
40
+ "x": require("../icons/x.png")
35
41
  };
36
42
 
37
43
  /**
@@ -141,8 +147,12 @@ export const iconNames = [
141
147
  "at",
142
148
  "calendar",
143
149
  "camera",
150
+ "file-text",
151
+ "github",
152
+ "globe",
144
153
  "google",
145
154
  "instagram",
155
+ "linkedin",
146
156
  "mail",
147
157
  "megaphone",
148
158
  "notification",
@@ -154,8 +164,10 @@ export const iconNames = [
154
164
  "signout",
155
165
  "support",
156
166
  "tag",
167
+ "unifesto",
157
168
  "verified-blue",
158
- "verified-green"
169
+ "verified-green",
170
+ "x"
159
171
  ];
160
172
 
161
173
  export default UnIcon;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unifesto/unicon",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "Cross-platform icon library for React, Next.js, Expo and React Native",
5
5
  "author": "Unifesto Private Limited",
6
6
  "license": "UNLICENSED",