firebird-icon-lib 1.1.2 → 1.1.3
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/firebird-icon-lib.js.js +10 -3
- package/dist/fonts/Untitled.otf +0 -0
- package/dist/fonts/Untitled.ttf +0 -0
- package/dist/fonts/Untitled.woff +0 -0
- package/dist/fonts/Untitled.woff2 +0 -0
- package/dist/style.css +251 -204
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -8,6 +8,14 @@
|
|
|
8
8
|
font-style: normal;
|
|
9
9
|
font-display: block;
|
|
10
10
|
}
|
|
11
|
+
@font-palette-values --palette0 {
|
|
12
|
+
font-family: 'Untitled';
|
|
13
|
+
base-palette: 0;
|
|
14
|
+
}
|
|
15
|
+
@font-palette-values --palette1 {
|
|
16
|
+
font-family: 'Untitled';
|
|
17
|
+
base-palette: 1;
|
|
18
|
+
}
|
|
11
19
|
.icon,
|
|
12
20
|
[class^='icon-'],
|
|
13
21
|
[class*=' icon-'] {
|
|
@@ -18,665 +26,704 @@
|
|
|
18
26
|
font-variant: normal;
|
|
19
27
|
text-transform: none;
|
|
20
28
|
line-height: 1;
|
|
29
|
+
font-palette: --palette1;
|
|
30
|
+
color: currentColor;
|
|
21
31
|
|
|
22
32
|
/* Better Font Rendering =========== */
|
|
23
33
|
-webkit-font-smoothing: antialiased;
|
|
24
34
|
-moz-osx-font-smoothing: grayscale;
|
|
25
35
|
}
|
|
26
|
-
|
|
36
|
+
@media (prefers-color-scheme: dark) {
|
|
37
|
+
.icon,
|
|
38
|
+
[class^='icon-'],
|
|
39
|
+
[class*=' icon-'] {
|
|
40
|
+
font-palette: --palette0;
|
|
41
|
+
color: currentColor;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
.palette0 {
|
|
45
|
+
font-palette: --palette0;
|
|
46
|
+
color: currentColor;
|
|
47
|
+
}
|
|
48
|
+
.palette1 {
|
|
49
|
+
font-palette: --palette1;
|
|
50
|
+
color: currentColor;
|
|
51
|
+
}
|
|
52
|
+
.icon-user_circle_fill:before {
|
|
53
|
+
content: '\f0c4';
|
|
54
|
+
}
|
|
55
|
+
.icon-template_fill:before {
|
|
27
56
|
content: '\f000';
|
|
28
57
|
}
|
|
29
|
-
.icon-
|
|
58
|
+
.icon-flowchart3:before {
|
|
30
59
|
content: '\f001';
|
|
31
60
|
}
|
|
32
|
-
.icon-
|
|
61
|
+
.icon-template:before {
|
|
33
62
|
content: '\f002';
|
|
34
63
|
}
|
|
35
|
-
.icon-
|
|
64
|
+
.icon-flowchart2:before {
|
|
36
65
|
content: '\f003';
|
|
37
66
|
}
|
|
38
|
-
.icon-
|
|
67
|
+
.icon-tag2:before {
|
|
39
68
|
content: '\f004';
|
|
40
69
|
}
|
|
41
|
-
.icon-
|
|
70
|
+
.icon-flowchart:before {
|
|
42
71
|
content: '\f005';
|
|
43
72
|
}
|
|
44
|
-
.icon-
|
|
73
|
+
.icon-tag:before {
|
|
45
74
|
content: '\f006';
|
|
46
75
|
}
|
|
47
|
-
.icon-
|
|
76
|
+
.icon-floppy_disk_save:before {
|
|
48
77
|
content: '\f007';
|
|
49
78
|
}
|
|
50
|
-
.icon-
|
|
79
|
+
.icon-switch_user_fill:before {
|
|
51
80
|
content: '\f008';
|
|
52
81
|
}
|
|
53
|
-
.icon-
|
|
82
|
+
.icon-filter_pending_fill:before {
|
|
54
83
|
content: '\f009';
|
|
55
84
|
}
|
|
56
|
-
.icon-
|
|
85
|
+
.icon-switch_user:before {
|
|
57
86
|
content: '\f00a';
|
|
58
87
|
}
|
|
59
|
-
.icon-
|
|
88
|
+
.icon-filter_pending:before {
|
|
60
89
|
content: '\f00b';
|
|
61
90
|
}
|
|
62
|
-
.icon-
|
|
91
|
+
.icon-sun:before {
|
|
63
92
|
content: '\f00c';
|
|
64
93
|
}
|
|
65
|
-
.icon-
|
|
94
|
+
.icon-filter3:before {
|
|
66
95
|
content: '\f00d';
|
|
67
96
|
}
|
|
68
|
-
.icon-
|
|
97
|
+
.icon-stop_circle:before {
|
|
69
98
|
content: '\f00e';
|
|
70
99
|
}
|
|
71
|
-
.icon-
|
|
100
|
+
.icon-filter2:before {
|
|
72
101
|
content: '\f00f';
|
|
73
102
|
}
|
|
74
|
-
.icon-
|
|
103
|
+
.icon-split3:before {
|
|
75
104
|
content: '\f010';
|
|
76
105
|
}
|
|
77
|
-
.icon-
|
|
106
|
+
.icon-filter:before {
|
|
78
107
|
content: '\f011';
|
|
79
108
|
}
|
|
80
|
-
.icon-
|
|
109
|
+
.icon-split2:before {
|
|
81
110
|
content: '\f012';
|
|
82
111
|
}
|
|
83
|
-
.icon-
|
|
112
|
+
.icon-eye:before {
|
|
84
113
|
content: '\f013';
|
|
85
114
|
}
|
|
86
|
-
.icon-
|
|
115
|
+
.icon-split:before {
|
|
87
116
|
content: '\f014';
|
|
88
117
|
}
|
|
89
|
-
.icon-
|
|
118
|
+
.icon-exchange:before {
|
|
90
119
|
content: '\f015';
|
|
91
120
|
}
|
|
92
|
-
.icon-
|
|
121
|
+
.icon-speaker_voice:before {
|
|
93
122
|
content: '\f016';
|
|
94
123
|
}
|
|
95
|
-
.icon-
|
|
124
|
+
.icon-error_exclamation_badge:before {
|
|
96
125
|
content: '\f017';
|
|
97
126
|
}
|
|
98
|
-
.icon-
|
|
127
|
+
.icon-spam_fill:before {
|
|
99
128
|
content: '\f018';
|
|
100
129
|
}
|
|
101
|
-
.icon-
|
|
130
|
+
.icon-editor:before {
|
|
102
131
|
content: '\f019';
|
|
103
132
|
}
|
|
104
|
-
.icon-
|
|
133
|
+
.icon-spam:before {
|
|
105
134
|
content: '\f01a';
|
|
106
135
|
}
|
|
107
|
-
.icon-
|
|
136
|
+
.icon-edit2:before {
|
|
108
137
|
content: '\f01b';
|
|
109
138
|
}
|
|
110
|
-
.icon-
|
|
139
|
+
.icon-spacer_spacing:before {
|
|
111
140
|
content: '\f01c';
|
|
112
141
|
}
|
|
113
|
-
.icon-
|
|
142
|
+
.icon-edit:before {
|
|
114
143
|
content: '\f01d';
|
|
115
144
|
}
|
|
116
|
-
.icon-
|
|
145
|
+
.icon-social:before {
|
|
117
146
|
content: '\f01e';
|
|
118
147
|
}
|
|
119
|
-
.icon-
|
|
148
|
+
.icon-dubble_check:before {
|
|
120
149
|
content: '\f01f';
|
|
121
150
|
}
|
|
122
|
-
.icon-
|
|
151
|
+
.icon-sms_fill:before {
|
|
123
152
|
content: '\f020';
|
|
124
153
|
}
|
|
125
|
-
.icon-
|
|
154
|
+
.icon-drawer_fill:before {
|
|
126
155
|
content: '\f021';
|
|
127
156
|
}
|
|
128
|
-
.icon-
|
|
157
|
+
.icon-sms_add:before {
|
|
129
158
|
content: '\f022';
|
|
130
159
|
}
|
|
131
|
-
.icon-
|
|
160
|
+
.icon-drawer:before {
|
|
132
161
|
content: '\f023';
|
|
133
162
|
}
|
|
134
|
-
.icon-
|
|
163
|
+
.icon-sms:before {
|
|
135
164
|
content: '\f024';
|
|
136
165
|
}
|
|
137
|
-
.icon-
|
|
166
|
+
.icon-download_circle:before {
|
|
138
167
|
content: '\f025';
|
|
139
168
|
}
|
|
140
|
-
.icon-
|
|
169
|
+
.icon-smile:before {
|
|
141
170
|
content: '\f026';
|
|
142
171
|
}
|
|
143
|
-
.icon-
|
|
172
|
+
.icon-download:before {
|
|
144
173
|
content: '\f027';
|
|
145
174
|
}
|
|
146
|
-
.icon-
|
|
175
|
+
.icon-shoping_cart:before {
|
|
147
176
|
content: '\f028';
|
|
148
177
|
}
|
|
149
|
-
.icon-
|
|
178
|
+
.icon-document_file_view:before {
|
|
150
179
|
content: '\f029';
|
|
151
180
|
}
|
|
152
|
-
.icon-
|
|
181
|
+
.icon-shapes_fill:before {
|
|
153
182
|
content: '\f02a';
|
|
154
183
|
}
|
|
155
|
-
.icon-
|
|
184
|
+
.icon-document_file_import:before {
|
|
156
185
|
content: '\f02b';
|
|
157
186
|
}
|
|
158
|
-
.icon-
|
|
187
|
+
.icon-shapes:before {
|
|
159
188
|
content: '\f02c';
|
|
160
189
|
}
|
|
161
|
-
.icon-
|
|
190
|
+
.icon-document:before {
|
|
162
191
|
content: '\f02d';
|
|
163
192
|
}
|
|
164
|
-
.icon-
|
|
193
|
+
.icon-settings_clock:before {
|
|
165
194
|
content: '\f02e';
|
|
166
195
|
}
|
|
167
|
-
.icon-
|
|
196
|
+
.icon-dnd_block:before {
|
|
168
197
|
content: '\f02f';
|
|
169
198
|
}
|
|
170
|
-
.icon-
|
|
199
|
+
.icon-settings:before {
|
|
171
200
|
content: '\f030';
|
|
172
201
|
}
|
|
173
|
-
.icon-
|
|
202
|
+
.icon-divider:before {
|
|
174
203
|
content: '\f031';
|
|
175
204
|
}
|
|
176
|
-
.icon-
|
|
205
|
+
.icon-server:before {
|
|
177
206
|
content: '\f032';
|
|
178
207
|
}
|
|
179
|
-
.icon-
|
|
208
|
+
.icon-dirham_currency:before {
|
|
180
209
|
content: '\f033';
|
|
181
210
|
}
|
|
182
|
-
.icon-
|
|
211
|
+
.icon-send:before {
|
|
183
212
|
content: '\f034';
|
|
184
213
|
}
|
|
185
|
-
.icon-
|
|
214
|
+
.icon-dirham_circle:before {
|
|
186
215
|
content: '\f035';
|
|
187
216
|
}
|
|
188
|
-
.icon-
|
|
217
|
+
.icon-search:before {
|
|
189
218
|
content: '\f036';
|
|
190
219
|
}
|
|
191
|
-
.icon-
|
|
220
|
+
.icon-dirham:before {
|
|
192
221
|
content: '\f037';
|
|
193
222
|
}
|
|
194
|
-
.icon-
|
|
223
|
+
.icon-route_fill:before {
|
|
195
224
|
content: '\f038';
|
|
196
225
|
}
|
|
197
|
-
.icon-
|
|
226
|
+
.icon-dialpad:before {
|
|
198
227
|
content: '\f039';
|
|
199
228
|
}
|
|
200
|
-
.icon-
|
|
229
|
+
.icon-route:before {
|
|
201
230
|
content: '\f03a';
|
|
202
231
|
}
|
|
203
|
-
.icon-
|
|
232
|
+
.icon-dialer_fill:before {
|
|
204
233
|
content: '\f03b';
|
|
205
234
|
}
|
|
206
|
-
.icon-
|
|
235
|
+
.icon-reset:before {
|
|
207
236
|
content: '\f03c';
|
|
208
237
|
}
|
|
209
|
-
.icon-
|
|
238
|
+
.icon-dialer:before {
|
|
210
239
|
content: '\f03d';
|
|
211
240
|
}
|
|
212
|
-
.icon-
|
|
241
|
+
.icon-reports2:before {
|
|
213
242
|
content: '\f03e';
|
|
214
243
|
}
|
|
215
|
-
.icon-
|
|
244
|
+
.icon-delete:before {
|
|
216
245
|
content: '\f03f';
|
|
217
246
|
}
|
|
218
|
-
.icon-
|
|
247
|
+
.icon-reports:before {
|
|
219
248
|
content: '\f040';
|
|
220
249
|
}
|
|
221
|
-
.icon-
|
|
250
|
+
.icon-database_setting_fill:before {
|
|
222
251
|
content: '\f041';
|
|
223
252
|
}
|
|
224
|
-
.icon-
|
|
253
|
+
.icon-reply:before {
|
|
225
254
|
content: '\f042';
|
|
226
255
|
}
|
|
227
|
-
.icon-
|
|
256
|
+
.icon-database_setting:before {
|
|
228
257
|
content: '\f043';
|
|
229
258
|
}
|
|
230
|
-
.icon-
|
|
259
|
+
.icon-reject_close_badge:before {
|
|
231
260
|
content: '\f044';
|
|
232
261
|
}
|
|
233
|
-
.icon-
|
|
262
|
+
.icon-cursor_rectangle_selection:before {
|
|
234
263
|
content: '\f045';
|
|
235
264
|
}
|
|
236
|
-
.icon-
|
|
265
|
+
.icon-register:before {
|
|
237
266
|
content: '\f046';
|
|
238
267
|
}
|
|
239
|
-
.icon-
|
|
268
|
+
.icon-credit_fill:before {
|
|
240
269
|
content: '\f047';
|
|
241
270
|
}
|
|
242
|
-
.icon-
|
|
271
|
+
.icon-refresh:before {
|
|
243
272
|
content: '\f048';
|
|
244
273
|
}
|
|
245
|
-
.icon-
|
|
274
|
+
.icon-credit:before {
|
|
246
275
|
content: '\f049';
|
|
247
276
|
}
|
|
248
|
-
.icon-
|
|
277
|
+
.icon-redo:before {
|
|
249
278
|
content: '\f04a';
|
|
250
279
|
}
|
|
251
|
-
.icon-
|
|
280
|
+
.icon-create_flowchart:before {
|
|
252
281
|
content: '\f04b';
|
|
253
282
|
}
|
|
254
|
-
.icon-
|
|
283
|
+
.icon-question_circle:before {
|
|
255
284
|
content: '\f04c';
|
|
256
285
|
}
|
|
257
|
-
.icon-
|
|
286
|
+
.icon-create:before {
|
|
258
287
|
content: '\f04d';
|
|
259
288
|
}
|
|
260
|
-
.icon-
|
|
289
|
+
.icon-property_search:before {
|
|
261
290
|
content: '\f04e';
|
|
262
291
|
}
|
|
263
|
-
.icon-
|
|
292
|
+
.icon-copy:before {
|
|
264
293
|
content: '\f04f';
|
|
265
294
|
}
|
|
266
|
-
.icon-
|
|
295
|
+
.icon-preference_filter_horizontal:before {
|
|
267
296
|
content: '\f050';
|
|
268
297
|
}
|
|
269
|
-
.icon-
|
|
298
|
+
.icon-configuration_setting_fill:before {
|
|
270
299
|
content: '\f051';
|
|
271
300
|
}
|
|
272
|
-
.icon-
|
|
301
|
+
.icon-play_circle2:before {
|
|
273
302
|
content: '\f052';
|
|
274
303
|
}
|
|
275
|
-
.icon-
|
|
304
|
+
.icon-configuration_setting:before {
|
|
276
305
|
content: '\f053';
|
|
277
306
|
}
|
|
278
|
-
.icon-
|
|
307
|
+
.icon-play_circle1:before {
|
|
279
308
|
content: '\f054';
|
|
280
309
|
}
|
|
281
|
-
.icon-
|
|
310
|
+
.icon-configuration_fill:before {
|
|
282
311
|
content: '\f055';
|
|
283
312
|
}
|
|
284
|
-
.icon-
|
|
313
|
+
.icon-phone_vibration:before {
|
|
285
314
|
content: '\f056';
|
|
286
315
|
}
|
|
287
|
-
.icon-
|
|
316
|
+
.icon-configuration:before {
|
|
288
317
|
content: '\f057';
|
|
289
318
|
}
|
|
290
|
-
.icon-
|
|
319
|
+
.icon-phonebook:before {
|
|
291
320
|
content: '\f058';
|
|
292
321
|
}
|
|
293
|
-
.icon-
|
|
322
|
+
.icon-computer:before {
|
|
294
323
|
content: '\f059';
|
|
295
324
|
}
|
|
296
|
-
.icon-
|
|
325
|
+
.icon-phone:before {
|
|
297
326
|
content: '\f05a';
|
|
298
327
|
}
|
|
299
|
-
.icon-
|
|
328
|
+
.icon-code_fill:before {
|
|
300
329
|
content: '\f05b';
|
|
301
330
|
}
|
|
302
|
-
.icon-
|
|
331
|
+
.icon-pause_circle:before {
|
|
303
332
|
content: '\f05c';
|
|
304
333
|
}
|
|
305
|
-
.icon-
|
|
334
|
+
.icon-code:before {
|
|
306
335
|
content: '\f05d';
|
|
307
336
|
}
|
|
308
|
-
.icon-
|
|
337
|
+
.icon-package_setting_fill:before {
|
|
309
338
|
content: '\f05e';
|
|
310
339
|
}
|
|
311
|
-
.icon-
|
|
340
|
+
.icon-cloud_upload:before {
|
|
312
341
|
content: '\f05f';
|
|
313
342
|
}
|
|
314
|
-
.icon-
|
|
343
|
+
.icon-package_setting:before {
|
|
315
344
|
content: '\f060';
|
|
316
345
|
}
|
|
317
|
-
.icon-
|
|
346
|
+
.icon-cloud:before {
|
|
318
347
|
content: '\f061';
|
|
319
348
|
}
|
|
320
|
-
.icon-
|
|
349
|
+
.icon-package_sent_fill:before {
|
|
321
350
|
content: '\f062';
|
|
322
351
|
}
|
|
323
|
-
.icon-
|
|
352
|
+
.icon-close_eye:before {
|
|
324
353
|
content: '\f063';
|
|
325
354
|
}
|
|
326
|
-
.icon-
|
|
355
|
+
.icon-package_sent:before {
|
|
327
356
|
content: '\f064';
|
|
328
357
|
}
|
|
329
|
-
.icon-
|
|
358
|
+
.icon-close:before {
|
|
330
359
|
content: '\f065';
|
|
331
360
|
}
|
|
332
|
-
.icon-
|
|
361
|
+
.icon-package_fill:before {
|
|
333
362
|
content: '\f066';
|
|
334
363
|
}
|
|
335
|
-
.icon-
|
|
364
|
+
.icon-clock_close:before {
|
|
336
365
|
content: '\f067';
|
|
337
366
|
}
|
|
338
|
-
.icon-
|
|
367
|
+
.icon-package:before {
|
|
339
368
|
content: '\f068';
|
|
340
369
|
}
|
|
341
|
-
.icon-
|
|
370
|
+
.icon-clock:before {
|
|
342
371
|
content: '\f069';
|
|
343
372
|
}
|
|
344
|
-
.icon-
|
|
373
|
+
.icon-notification_off:before {
|
|
345
374
|
content: '\f06a';
|
|
346
375
|
}
|
|
347
|
-
.icon-
|
|
376
|
+
.icon-check_square:before {
|
|
348
377
|
content: '\f06b';
|
|
349
378
|
}
|
|
350
|
-
.icon-
|
|
379
|
+
.icon-notification_check:before {
|
|
351
380
|
content: '\f06c';
|
|
352
381
|
}
|
|
353
|
-
.icon-
|
|
382
|
+
.icon-check_circle_fill:before {
|
|
354
383
|
content: '\f06d';
|
|
355
384
|
}
|
|
356
|
-
.icon-
|
|
385
|
+
.icon-notification_cancel:before {
|
|
357
386
|
content: '\f06e';
|
|
358
387
|
}
|
|
359
|
-
.icon-
|
|
388
|
+
.icon-check_circle:before {
|
|
360
389
|
content: '\f06f';
|
|
361
390
|
}
|
|
362
|
-
.icon-
|
|
391
|
+
.icon-notification:before {
|
|
363
392
|
content: '\f070';
|
|
364
393
|
}
|
|
365
|
-
.icon-
|
|
394
|
+
.icon-check:before {
|
|
366
395
|
content: '\f071';
|
|
367
396
|
}
|
|
368
|
-
.icon-
|
|
397
|
+
.icon-more_square:before {
|
|
369
398
|
content: '\f072';
|
|
370
399
|
}
|
|
371
400
|
.icon-chart_fill:before {
|
|
372
401
|
content: '\f073';
|
|
373
402
|
}
|
|
374
|
-
.icon-
|
|
403
|
+
.icon-more:before {
|
|
375
404
|
content: '\f074';
|
|
376
405
|
}
|
|
377
406
|
.icon-chart:before {
|
|
378
407
|
content: '\f075';
|
|
379
408
|
}
|
|
380
|
-
.icon-
|
|
409
|
+
.icon-moon:before {
|
|
381
410
|
content: '\f076';
|
|
382
411
|
}
|
|
383
412
|
.icon-center_focus:before {
|
|
384
413
|
content: '\f077';
|
|
385
414
|
}
|
|
386
|
-
.icon-
|
|
415
|
+
.icon-microscope:before {
|
|
387
416
|
content: '\f078';
|
|
388
417
|
}
|
|
389
418
|
.icon-cash_fill:before {
|
|
390
419
|
content: '\f079';
|
|
391
420
|
}
|
|
392
|
-
.icon-
|
|
421
|
+
.icon-message_sent:before {
|
|
393
422
|
content: '\f07a';
|
|
394
423
|
}
|
|
395
424
|
.icon-cash:before {
|
|
396
425
|
content: '\f07b';
|
|
397
426
|
}
|
|
398
|
-
.icon-
|
|
427
|
+
.icon-message_clock:before {
|
|
399
428
|
content: '\f07c';
|
|
400
429
|
}
|
|
401
430
|
.icon-cancel_circle:before {
|
|
402
431
|
content: '\f07d';
|
|
403
432
|
}
|
|
404
|
-
.icon-
|
|
433
|
+
.icon-message_check:before {
|
|
405
434
|
content: '\f07e';
|
|
406
435
|
}
|
|
407
436
|
.icon-campaign_fill:before {
|
|
408
437
|
content: '\f07f';
|
|
409
438
|
}
|
|
410
|
-
.icon-
|
|
439
|
+
.icon-message_cancel:before {
|
|
411
440
|
content: '\f080';
|
|
412
441
|
}
|
|
413
442
|
.icon-campaign:before {
|
|
414
443
|
content: '\f081';
|
|
415
444
|
}
|
|
416
|
-
.icon-
|
|
445
|
+
.icon-menu_collapse:before {
|
|
417
446
|
content: '\f082';
|
|
418
447
|
}
|
|
419
448
|
.icon-camera:before {
|
|
420
449
|
content: '\f083';
|
|
421
450
|
}
|
|
422
|
-
.icon-
|
|
451
|
+
.icon-menu:before {
|
|
423
452
|
content: '\f084';
|
|
424
453
|
}
|
|
425
454
|
.icon-call_outgoing:before {
|
|
426
455
|
content: '\f085';
|
|
427
456
|
}
|
|
428
|
-
.icon-
|
|
457
|
+
.icon-megaphone:before {
|
|
429
458
|
content: '\f086';
|
|
430
459
|
}
|
|
431
460
|
.icon-call_check:before {
|
|
432
461
|
content: '\f087';
|
|
433
462
|
}
|
|
434
|
-
.icon-
|
|
463
|
+
.icon-map_search:before {
|
|
435
464
|
content: '\f088';
|
|
436
465
|
}
|
|
437
466
|
.icon-call_cancel:before {
|
|
438
467
|
content: '\f089';
|
|
439
468
|
}
|
|
440
|
-
.icon-
|
|
469
|
+
.icon-map:before {
|
|
441
470
|
content: '\f08a';
|
|
442
471
|
}
|
|
443
472
|
.icon-call2:before {
|
|
444
473
|
content: '\f08b';
|
|
445
474
|
}
|
|
446
|
-
.icon-
|
|
475
|
+
.icon-mail_sent:before {
|
|
447
476
|
content: '\f08c';
|
|
448
477
|
}
|
|
449
478
|
.icon-call:before {
|
|
450
479
|
content: '\f08d';
|
|
451
480
|
}
|
|
452
|
-
.icon-
|
|
481
|
+
.icon-mail_check:before {
|
|
453
482
|
content: '\f08e';
|
|
454
483
|
}
|
|
455
484
|
.icon-calendar:before {
|
|
456
485
|
content: '\f08f';
|
|
457
486
|
}
|
|
458
|
-
.icon-
|
|
487
|
+
.icon-mail_cancel:before {
|
|
459
488
|
content: '\f090';
|
|
460
489
|
}
|
|
461
490
|
.icon-button:before {
|
|
462
491
|
content: '\f091';
|
|
463
492
|
}
|
|
464
|
-
.icon-
|
|
493
|
+
.icon-mail:before {
|
|
465
494
|
content: '\f092';
|
|
466
495
|
}
|
|
467
496
|
.icon-book_setting_fill:before {
|
|
468
497
|
content: '\f093';
|
|
469
498
|
}
|
|
470
|
-
.icon-
|
|
499
|
+
.icon-wrapper:before {
|
|
471
500
|
content: '\f094';
|
|
472
501
|
}
|
|
473
|
-
.icon-
|
|
502
|
+
.icon-logout2:before {
|
|
474
503
|
content: '\f095';
|
|
475
504
|
}
|
|
476
|
-
.icon-
|
|
505
|
+
.icon-book_setting:before {
|
|
477
506
|
content: '\f096';
|
|
478
507
|
}
|
|
479
|
-
.icon-
|
|
508
|
+
.icon-whatsapp_id_fill:before {
|
|
480
509
|
content: '\f097';
|
|
481
510
|
}
|
|
482
|
-
.icon-
|
|
511
|
+
.icon-logout:before {
|
|
483
512
|
content: '\f098';
|
|
484
513
|
}
|
|
485
|
-
.icon-
|
|
514
|
+
.icon-bookmark_fill:before {
|
|
486
515
|
content: '\f099';
|
|
487
516
|
}
|
|
488
|
-
.icon-
|
|
517
|
+
.icon-whatsapp_id:before {
|
|
489
518
|
content: '\f09a';
|
|
490
519
|
}
|
|
491
|
-
.icon-
|
|
520
|
+
.icon-login2:before {
|
|
492
521
|
content: '\f09b';
|
|
493
522
|
}
|
|
494
|
-
.icon-
|
|
523
|
+
.icon-bookmark:before {
|
|
495
524
|
content: '\f09c';
|
|
496
525
|
}
|
|
497
|
-
.icon-
|
|
526
|
+
.icon-whatsapp_fill:before {
|
|
498
527
|
content: '\f09d';
|
|
499
528
|
}
|
|
500
|
-
.icon-
|
|
529
|
+
.icon-login:before {
|
|
501
530
|
content: '\f09e';
|
|
502
531
|
}
|
|
503
|
-
.icon-
|
|
532
|
+
.icon-bank:before {
|
|
504
533
|
content: '\f09f';
|
|
505
534
|
}
|
|
506
|
-
.icon-
|
|
535
|
+
.icon-whatsapp:before {
|
|
507
536
|
content: '\f0a0';
|
|
508
537
|
}
|
|
509
|
-
.icon-
|
|
538
|
+
.icon-lock:before {
|
|
510
539
|
content: '\f0a1';
|
|
511
540
|
}
|
|
512
|
-
.icon-
|
|
541
|
+
.icon-audit_fill:before {
|
|
513
542
|
content: '\f0a2';
|
|
514
543
|
}
|
|
515
|
-
.icon-
|
|
544
|
+
.icon-webhook:before {
|
|
516
545
|
content: '\f0a3';
|
|
517
546
|
}
|
|
518
|
-
.icon-
|
|
547
|
+
.icon-list_fill:before {
|
|
519
548
|
content: '\f0a4';
|
|
520
549
|
}
|
|
521
|
-
.icon-
|
|
550
|
+
.icon-audit:before {
|
|
522
551
|
content: '\f0a5';
|
|
523
552
|
}
|
|
524
|
-
.icon-
|
|
553
|
+
.icon-web:before {
|
|
525
554
|
content: '\f0a6';
|
|
526
555
|
}
|
|
527
|
-
.icon-
|
|
556
|
+
.icon-list:before {
|
|
528
557
|
content: '\f0a7';
|
|
529
558
|
}
|
|
530
|
-
.icon-
|
|
559
|
+
.icon-arrow_up:before {
|
|
531
560
|
content: '\f0a8';
|
|
532
561
|
}
|
|
533
|
-
.icon-
|
|
562
|
+
.icon-wallet_fill:before {
|
|
534
563
|
content: '\f0a9';
|
|
535
564
|
}
|
|
536
|
-
.icon-
|
|
565
|
+
.icon-line:before {
|
|
537
566
|
content: '\f0aa';
|
|
538
567
|
}
|
|
539
|
-
.icon-
|
|
568
|
+
.icon-arrow_turn_forward:before {
|
|
540
569
|
content: '\f0ab';
|
|
541
570
|
}
|
|
542
|
-
.icon-
|
|
571
|
+
.icon-wallet:before {
|
|
543
572
|
content: '\f0ac';
|
|
544
573
|
}
|
|
545
|
-
.icon-
|
|
574
|
+
.icon-left_right_arrow:before {
|
|
546
575
|
content: '\f0ad';
|
|
547
576
|
}
|
|
548
|
-
.icon-
|
|
577
|
+
.icon-arrow_turn_backward:before {
|
|
549
578
|
content: '\f0ae';
|
|
550
579
|
}
|
|
551
|
-
.icon-
|
|
580
|
+
.icon-video:before {
|
|
552
581
|
content: '\f0af';
|
|
553
582
|
}
|
|
554
|
-
.icon-
|
|
583
|
+
.icon-Language:before {
|
|
555
584
|
content: '\f0b0';
|
|
556
585
|
}
|
|
557
|
-
.icon-
|
|
586
|
+
.icon-arrow_right_circle:before {
|
|
558
587
|
content: '\f0b1';
|
|
559
588
|
}
|
|
560
|
-
.icon-
|
|
589
|
+
.icon-user_subtract:before {
|
|
561
590
|
content: '\f0b2';
|
|
562
591
|
}
|
|
563
|
-
.icon-
|
|
592
|
+
.icon-key:before {
|
|
564
593
|
content: '\f0b3';
|
|
565
594
|
}
|
|
566
|
-
.icon-
|
|
595
|
+
.icon-arrow_right2:before {
|
|
567
596
|
content: '\f0b4';
|
|
568
597
|
}
|
|
569
|
-
.icon-
|
|
598
|
+
.icon-user_setting_fill:before {
|
|
570
599
|
content: '\f0b5';
|
|
571
600
|
}
|
|
572
|
-
.icon-
|
|
601
|
+
.icon-info_circle:before {
|
|
573
602
|
content: '\f0b6';
|
|
574
603
|
}
|
|
575
|
-
.icon-
|
|
604
|
+
.icon-arrow_right:before {
|
|
576
605
|
content: '\f0b7';
|
|
577
606
|
}
|
|
578
|
-
.icon-
|
|
607
|
+
.icon-user_setting:before {
|
|
579
608
|
content: '\f0b8';
|
|
580
609
|
}
|
|
581
|
-
.icon-
|
|
610
|
+
.icon-image:before {
|
|
582
611
|
content: '\f0b9';
|
|
583
612
|
}
|
|
584
|
-
.icon-
|
|
613
|
+
.icon-arrow_move_up_right:before {
|
|
585
614
|
content: '\f0ba';
|
|
586
615
|
}
|
|
587
|
-
.icon-
|
|
616
|
+
.icon-user_info:before {
|
|
588
617
|
content: '\f0bb';
|
|
589
618
|
}
|
|
590
|
-
.icon-
|
|
619
|
+
.icon-id_fill:before {
|
|
591
620
|
content: '\f0bc';
|
|
592
621
|
}
|
|
593
|
-
.icon-
|
|
622
|
+
.icon-arrow_move_up_left:before {
|
|
594
623
|
content: '\f0bd';
|
|
595
624
|
}
|
|
596
|
-
.icon-
|
|
625
|
+
.icon-user_frame:before {
|
|
597
626
|
content: '\f0be';
|
|
598
627
|
}
|
|
599
|
-
.icon-
|
|
628
|
+
.icon-id:before {
|
|
600
629
|
content: '\f0bf';
|
|
601
630
|
}
|
|
602
|
-
.icon-
|
|
631
|
+
.icon-arrow_left_circle:before {
|
|
603
632
|
content: '\f0c0';
|
|
604
633
|
}
|
|
605
|
-
.icon-
|
|
634
|
+
.icon-user_fill:before {
|
|
606
635
|
content: '\f0c1';
|
|
607
636
|
}
|
|
608
|
-
.icon-
|
|
637
|
+
.icon-group_fill:before {
|
|
609
638
|
content: '\f0c2';
|
|
610
639
|
}
|
|
611
|
-
.icon-
|
|
640
|
+
.icon-arrow_left2:before {
|
|
612
641
|
content: '\f0c3';
|
|
613
642
|
}
|
|
614
|
-
.icon-
|
|
615
|
-
content: '\f0c4';
|
|
616
|
-
}
|
|
617
|
-
.icon-arrow_diagonal:before {
|
|
643
|
+
.icon-group_add:before {
|
|
618
644
|
content: '\f0c5';
|
|
619
645
|
}
|
|
620
|
-
.icon-
|
|
646
|
+
.icon-arrow_left:before {
|
|
621
647
|
content: '\f0c6';
|
|
622
648
|
}
|
|
623
|
-
.icon-
|
|
649
|
+
.icon-user_circle:before {
|
|
624
650
|
content: '\f0c7';
|
|
625
651
|
}
|
|
626
|
-
.icon-
|
|
652
|
+
.icon-group2:before {
|
|
627
653
|
content: '\f0c8';
|
|
628
654
|
}
|
|
629
|
-
.icon-
|
|
655
|
+
.icon-arrow_down:before {
|
|
630
656
|
content: '\f0c9';
|
|
631
657
|
}
|
|
632
|
-
.icon-
|
|
658
|
+
.icon-user_check:before {
|
|
633
659
|
content: '\f0ca';
|
|
634
660
|
}
|
|
635
|
-
.icon-
|
|
661
|
+
.icon-group:before {
|
|
636
662
|
content: '\f0cb';
|
|
637
663
|
}
|
|
638
|
-
.icon-
|
|
664
|
+
.icon-arrow_diagonal:before {
|
|
639
665
|
content: '\f0cc';
|
|
640
666
|
}
|
|
641
|
-
.icon-
|
|
667
|
+
.icon-user:before {
|
|
642
668
|
content: '\f0cd';
|
|
643
669
|
}
|
|
644
|
-
.icon-
|
|
670
|
+
.icon-graph3:before {
|
|
645
671
|
content: '\f0ce';
|
|
646
672
|
}
|
|
647
|
-
.icon-
|
|
673
|
+
.icon-approved_badge:before {
|
|
648
674
|
content: '\f0cf';
|
|
649
675
|
}
|
|
650
|
-
.icon-
|
|
676
|
+
.icon-upload:before {
|
|
651
677
|
content: '\f0d0';
|
|
652
678
|
}
|
|
653
|
-
.icon-
|
|
679
|
+
.icon-graph2:before {
|
|
654
680
|
content: '\f0d1';
|
|
655
681
|
}
|
|
656
|
-
.icon-
|
|
682
|
+
.icon-analyze_graph_fill:before {
|
|
657
683
|
content: '\f0d2';
|
|
658
684
|
}
|
|
659
|
-
.icon-
|
|
685
|
+
.icon-unlock:before {
|
|
660
686
|
content: '\f0d3';
|
|
661
687
|
}
|
|
662
|
-
.icon-
|
|
688
|
+
.icon-graph:before {
|
|
663
689
|
content: '\f0d4';
|
|
664
690
|
}
|
|
665
|
-
.icon-
|
|
691
|
+
.icon-analyze_graph:before {
|
|
666
692
|
content: '\f0d5';
|
|
667
693
|
}
|
|
668
|
-
.icon-
|
|
694
|
+
.icon-undo:before {
|
|
669
695
|
content: '\f0d6';
|
|
670
696
|
}
|
|
671
|
-
.icon-
|
|
697
|
+
.icon-gears_fill:before {
|
|
672
698
|
content: '\f0d7';
|
|
673
699
|
}
|
|
674
|
-
.icon-
|
|
700
|
+
.icon-analytics:before {
|
|
675
701
|
content: '\f0d8';
|
|
676
702
|
}
|
|
677
|
-
.icon-
|
|
703
|
+
.icon-touch:before {
|
|
678
704
|
content: '\f0d9';
|
|
679
705
|
}
|
|
680
|
-
.icon-
|
|
706
|
+
.icon-gears:before {
|
|
681
707
|
content: '\f0da';
|
|
682
708
|
}
|
|
709
|
+
.icon-add_contact:before {
|
|
710
|
+
content: '\f0db';
|
|
711
|
+
}
|
|
712
|
+
.icon-time_clock_reset_redo:before {
|
|
713
|
+
content: '\f0dc';
|
|
714
|
+
}
|
|
715
|
+
.icon-full_screen:before {
|
|
716
|
+
content: '\f0dd';
|
|
717
|
+
}
|
|
718
|
+
.icon-add_circle:before {
|
|
719
|
+
content: '\f0de';
|
|
720
|
+
}
|
|
721
|
+
.icon-text:before {
|
|
722
|
+
content: '\f0df';
|
|
723
|
+
}
|
|
724
|
+
.icon-folder_details:before {
|
|
725
|
+
content: '\f0e0';
|
|
726
|
+
}
|
|
727
|
+
.icon-add:before {
|
|
728
|
+
content: '\f0e1';
|
|
729
|
+
}
|