@anemona/aif-icons 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/README.md +24 -0
- package/esm2022/anemona-aif-icons.mjs +5 -0
- package/esm2022/lib/ai-icon.component.mjs +15 -0
- package/esm2022/public-api.mjs +6 -0
- package/fesm2022/anemona-aif-icons.mjs +27 -0
- package/fesm2022/anemona-aif-icons.mjs.map +1 -0
- package/fonts/aif.eot +0 -0
- package/fonts/aif.svg +292 -0
- package/fonts/aif.ttf +0 -0
- package/fonts/aif.woff +0 -0
- package/index.d.ts +5 -0
- package/lib/ai-icon.component.d.ts +7 -0
- package/package.json +25 -0
- package/public-api.d.ts +1 -0
- package/style.css +873 -0
- package/style.scss +1440 -0
- package/variables.scss +286 -0
package/style.css
ADDED
|
@@ -0,0 +1,873 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'aif';
|
|
3
|
+
src: url('fonts/aif.eot?w7qpdo');
|
|
4
|
+
src: url('fonts/aif.eot?w7qpdo#iefix') format('embedded-opentype'),
|
|
5
|
+
url('fonts/aif.ttf?w7qpdo') format('truetype'),
|
|
6
|
+
url('fonts/aif.woff?w7qpdo') format('woff'),
|
|
7
|
+
url('fonts/aif.svg?w7qpdo#aif') format('svg');
|
|
8
|
+
font-weight: normal;
|
|
9
|
+
font-style: normal;
|
|
10
|
+
font-display: block;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.ai {
|
|
14
|
+
/* use !important to prevent issues with browser extensions that change fonts */
|
|
15
|
+
font-family: 'aif' !important;
|
|
16
|
+
speak: never;
|
|
17
|
+
font-style: normal;
|
|
18
|
+
font-weight: normal;
|
|
19
|
+
font-variant: normal;
|
|
20
|
+
text-transform: none;
|
|
21
|
+
line-height: 1;
|
|
22
|
+
|
|
23
|
+
/* Better Font Rendering =========== */
|
|
24
|
+
-webkit-font-smoothing: antialiased;
|
|
25
|
+
-moz-osx-font-smoothing: grayscale;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.ai-user-box:before {
|
|
29
|
+
content: "\f0006";
|
|
30
|
+
}
|
|
31
|
+
.ai-alarm:before {
|
|
32
|
+
content: "\f0020";
|
|
33
|
+
}
|
|
34
|
+
.ai-apple:before {
|
|
35
|
+
content: "\f0035";
|
|
36
|
+
}
|
|
37
|
+
.ai-apps:before {
|
|
38
|
+
content: "\f003b";
|
|
39
|
+
}
|
|
40
|
+
.ai-barcode:before {
|
|
41
|
+
content: "\f0071";
|
|
42
|
+
}
|
|
43
|
+
.ai-barcode-scan:before {
|
|
44
|
+
content: "\f0072";
|
|
45
|
+
}
|
|
46
|
+
.ai-book-open:before {
|
|
47
|
+
content: "\f00bd";
|
|
48
|
+
}
|
|
49
|
+
.ai-book-open-blank-variant:before {
|
|
50
|
+
content: "\f00be";
|
|
51
|
+
}
|
|
52
|
+
.ai-cart-filled:before {
|
|
53
|
+
content: "\f0110";
|
|
54
|
+
}
|
|
55
|
+
.ai-cart:before {
|
|
56
|
+
content: "\f0111";
|
|
57
|
+
}
|
|
58
|
+
.ai-cart-plus:before {
|
|
59
|
+
content: "\f0112";
|
|
60
|
+
}
|
|
61
|
+
.ai-exclamation:before {
|
|
62
|
+
content: "\f0205";
|
|
63
|
+
}
|
|
64
|
+
.ai-classroom:before {
|
|
65
|
+
content: "\f02c0";
|
|
66
|
+
}
|
|
67
|
+
.ai-information:before {
|
|
68
|
+
content: "\f02fd";
|
|
69
|
+
}
|
|
70
|
+
.ai-laptop:before {
|
|
71
|
+
content: "\f0323";
|
|
72
|
+
}
|
|
73
|
+
.ai-qrcode:before {
|
|
74
|
+
content: "\f0432";
|
|
75
|
+
}
|
|
76
|
+
.ai-qrcode-scan:before {
|
|
77
|
+
content: "\f0433";
|
|
78
|
+
}
|
|
79
|
+
.ai-school:before {
|
|
80
|
+
content: "\f0474";
|
|
81
|
+
}
|
|
82
|
+
.ai-shopping-filled:before {
|
|
83
|
+
content: "\f049a";
|
|
84
|
+
}
|
|
85
|
+
.ai-book-open-page-variant:before {
|
|
86
|
+
content: "\f05da";
|
|
87
|
+
}
|
|
88
|
+
.ai-cart-filled-off:before {
|
|
89
|
+
content: "\f066b";
|
|
90
|
+
}
|
|
91
|
+
.ai-teach:before {
|
|
92
|
+
content: "\f0890";
|
|
93
|
+
}
|
|
94
|
+
.ai-book-open-outline:before {
|
|
95
|
+
content: "\f0b63";
|
|
96
|
+
}
|
|
97
|
+
.ai-cart-minus:before {
|
|
98
|
+
content: "\f0d68";
|
|
99
|
+
}
|
|
100
|
+
.ai-cart-remove:before {
|
|
101
|
+
content: "\f0d69";
|
|
102
|
+
}
|
|
103
|
+
.ai-school-outline:before {
|
|
104
|
+
content: "\f1180";
|
|
105
|
+
}
|
|
106
|
+
.ai-shopping:before {
|
|
107
|
+
content: "\f11d5";
|
|
108
|
+
}
|
|
109
|
+
.ai-book-open-variant:before {
|
|
110
|
+
content: "\f14f7";
|
|
111
|
+
}
|
|
112
|
+
.ai-file:before {
|
|
113
|
+
content: "\f15b";
|
|
114
|
+
}
|
|
115
|
+
.ai-file-text:before {
|
|
116
|
+
content: "\f15e";
|
|
117
|
+
}
|
|
118
|
+
.ai-thumbs-up:before {
|
|
119
|
+
content: "\f164";
|
|
120
|
+
}
|
|
121
|
+
.ai-file-pdf:before {
|
|
122
|
+
content: "\f1c2";
|
|
123
|
+
}
|
|
124
|
+
.ai-file-word:before {
|
|
125
|
+
content: "\f1c3";
|
|
126
|
+
}
|
|
127
|
+
.ai-file-excel:before {
|
|
128
|
+
content: "\f1c4";
|
|
129
|
+
}
|
|
130
|
+
.ai-file-powerpoint:before {
|
|
131
|
+
content: "\f1c5";
|
|
132
|
+
}
|
|
133
|
+
.ai-file-image:before {
|
|
134
|
+
content: "\f1c8";
|
|
135
|
+
}
|
|
136
|
+
.ai-file-archive:before {
|
|
137
|
+
content: "\f1cb";
|
|
138
|
+
}
|
|
139
|
+
.ai-file-audio:before {
|
|
140
|
+
content: "\f1cc";
|
|
141
|
+
}
|
|
142
|
+
.ai-file-video:before {
|
|
143
|
+
content: "\f1cd";
|
|
144
|
+
}
|
|
145
|
+
.ai-file-code:before {
|
|
146
|
+
content: "\f1cf";
|
|
147
|
+
}
|
|
148
|
+
.ai-android:before {
|
|
149
|
+
content: "\e90f";
|
|
150
|
+
}
|
|
151
|
+
.ai-angular:before {
|
|
152
|
+
content: "\e910";
|
|
153
|
+
}
|
|
154
|
+
.ai-dropbox:before {
|
|
155
|
+
content: "\e923";
|
|
156
|
+
}
|
|
157
|
+
.ai-facebook:before {
|
|
158
|
+
content: "\e927";
|
|
159
|
+
}
|
|
160
|
+
.ai-github:before {
|
|
161
|
+
content: "\e92e";
|
|
162
|
+
}
|
|
163
|
+
.ai-google:before {
|
|
164
|
+
content: "\e92f";
|
|
165
|
+
}
|
|
166
|
+
.ai-instagram:before {
|
|
167
|
+
content: "\e933";
|
|
168
|
+
}
|
|
169
|
+
.ai-linkedin:before {
|
|
170
|
+
content: "\e93c";
|
|
171
|
+
}
|
|
172
|
+
.ai-paypal:before {
|
|
173
|
+
content: "\e948";
|
|
174
|
+
}
|
|
175
|
+
.ai-pinterest:before {
|
|
176
|
+
content: "\e94a";
|
|
177
|
+
}
|
|
178
|
+
.ai-play-store:before {
|
|
179
|
+
content: "\e94b";
|
|
180
|
+
}
|
|
181
|
+
.ai-reddit:before {
|
|
182
|
+
content: "\e950";
|
|
183
|
+
}
|
|
184
|
+
.ai-skype:before {
|
|
185
|
+
content: "\e954";
|
|
186
|
+
}
|
|
187
|
+
.ai-snapchat:before {
|
|
188
|
+
content: "\e957";
|
|
189
|
+
}
|
|
190
|
+
.ai-telegram:before {
|
|
191
|
+
content: "\e95d";
|
|
192
|
+
}
|
|
193
|
+
.ai-tumblr:before {
|
|
194
|
+
content: "\e95f";
|
|
195
|
+
}
|
|
196
|
+
.ai-twitter:before {
|
|
197
|
+
content: "\e961";
|
|
198
|
+
}
|
|
199
|
+
.ai-visa:before {
|
|
200
|
+
content: "\e964";
|
|
201
|
+
}
|
|
202
|
+
.ai-windows:before {
|
|
203
|
+
content: "\e96a";
|
|
204
|
+
}
|
|
205
|
+
.ai-youtube:before {
|
|
206
|
+
content: "\e96f";
|
|
207
|
+
}
|
|
208
|
+
.ai-alarm-off:before {
|
|
209
|
+
content: "\e975";
|
|
210
|
+
}
|
|
211
|
+
.ai-bar-chart-box:before {
|
|
212
|
+
content: "\e98d";
|
|
213
|
+
}
|
|
214
|
+
.ai-bx-book-content:before {
|
|
215
|
+
content: "\e9a0";
|
|
216
|
+
}
|
|
217
|
+
.ai-box:before {
|
|
218
|
+
content: "\e9ae";
|
|
219
|
+
}
|
|
220
|
+
.ai-briefcase:before {
|
|
221
|
+
content: "\e9af";
|
|
222
|
+
}
|
|
223
|
+
.ai-buildings:before {
|
|
224
|
+
content: "\e9bb";
|
|
225
|
+
}
|
|
226
|
+
.ai-calendar-full:before {
|
|
227
|
+
content: "\e9c2";
|
|
228
|
+
}
|
|
229
|
+
.ai-chalkboard:before {
|
|
230
|
+
content: "\e9d7";
|
|
231
|
+
}
|
|
232
|
+
.ai-chats:before {
|
|
233
|
+
content: "\e9d9";
|
|
234
|
+
}
|
|
235
|
+
.ai-cog:before {
|
|
236
|
+
content: "\e9fc";
|
|
237
|
+
}
|
|
238
|
+
.ai-credit-card:before {
|
|
239
|
+
content: "\ea0a";
|
|
240
|
+
}
|
|
241
|
+
.ai-credit-card-alt:before {
|
|
242
|
+
content: "\ea0b";
|
|
243
|
+
}
|
|
244
|
+
.ai-data-base:before {
|
|
245
|
+
content: "\ea16";
|
|
246
|
+
}
|
|
247
|
+
.ai-desktop:before {
|
|
248
|
+
content: "\ea17";
|
|
249
|
+
}
|
|
250
|
+
.ai-dollar:before {
|
|
251
|
+
content: "\ea27";
|
|
252
|
+
}
|
|
253
|
+
.ai-dots-horizontal:before {
|
|
254
|
+
content: "\ea2a";
|
|
255
|
+
}
|
|
256
|
+
.ai-dots-vertical:before {
|
|
257
|
+
content: "\ea2c";
|
|
258
|
+
}
|
|
259
|
+
.ai-mail-closed:before {
|
|
260
|
+
content: "\ea38";
|
|
261
|
+
}
|
|
262
|
+
.ai-error:before {
|
|
263
|
+
content: "\ea3c";
|
|
264
|
+
}
|
|
265
|
+
.ai-euro:before {
|
|
266
|
+
content: "\ea3d";
|
|
267
|
+
}
|
|
268
|
+
.ai-fingerprint:before {
|
|
269
|
+
content: "\ea4e";
|
|
270
|
+
}
|
|
271
|
+
.ai-grid-alt:before {
|
|
272
|
+
content: "\ea6b";
|
|
273
|
+
}
|
|
274
|
+
.ai-grid-horizontal:before {
|
|
275
|
+
content: "\ea6c";
|
|
276
|
+
}
|
|
277
|
+
.ai-grid-small:before {
|
|
278
|
+
content: "\ea6d";
|
|
279
|
+
}
|
|
280
|
+
.ai-group:before {
|
|
281
|
+
content: "\ea6f";
|
|
282
|
+
}
|
|
283
|
+
.ai-key:before {
|
|
284
|
+
content: "\ea92";
|
|
285
|
+
}
|
|
286
|
+
.ai-link:before {
|
|
287
|
+
content: "\eaa2";
|
|
288
|
+
}
|
|
289
|
+
.ai-link-alt:before {
|
|
290
|
+
content: "\eaa3";
|
|
291
|
+
}
|
|
292
|
+
.ai-link-external:before {
|
|
293
|
+
content: "\eaa4";
|
|
294
|
+
}
|
|
295
|
+
.ai-loader-alt:before {
|
|
296
|
+
content: "\eaac";
|
|
297
|
+
}
|
|
298
|
+
.ai-loader-circle:before {
|
|
299
|
+
content: "\eaad";
|
|
300
|
+
}
|
|
301
|
+
.ai-log-in:before {
|
|
302
|
+
content: "\eab2";
|
|
303
|
+
}
|
|
304
|
+
.ai-mail-send:before {
|
|
305
|
+
content: "\eab7";
|
|
306
|
+
}
|
|
307
|
+
.ai-message-rounded:before {
|
|
308
|
+
content: "\eac8";
|
|
309
|
+
}
|
|
310
|
+
.ai-message-rounded-dots:before {
|
|
311
|
+
content: "\eac9";
|
|
312
|
+
}
|
|
313
|
+
.ai-purchase-tag:before {
|
|
314
|
+
content: "\eb07";
|
|
315
|
+
}
|
|
316
|
+
.ai-search-alt:before {
|
|
317
|
+
content: "\eb2c";
|
|
318
|
+
}
|
|
319
|
+
.ai-server:before {
|
|
320
|
+
content: "\eb32";
|
|
321
|
+
}
|
|
322
|
+
.ai-sidebar:before {
|
|
323
|
+
content: "\eb42";
|
|
324
|
+
}
|
|
325
|
+
.ai-slider-alt:before {
|
|
326
|
+
content: "\eb4a";
|
|
327
|
+
}
|
|
328
|
+
.ai-sort-a-z:before {
|
|
329
|
+
content: "\eb4e";
|
|
330
|
+
}
|
|
331
|
+
.ai-sort-down:before {
|
|
332
|
+
content: "\eb4f";
|
|
333
|
+
}
|
|
334
|
+
.ai-sort-up:before {
|
|
335
|
+
content: "\eb50";
|
|
336
|
+
}
|
|
337
|
+
.ai-sort-z-a:before {
|
|
338
|
+
content: "\eb51";
|
|
339
|
+
}
|
|
340
|
+
.ai-support:before {
|
|
341
|
+
content: "\eb65";
|
|
342
|
+
}
|
|
343
|
+
.ai-sync:before {
|
|
344
|
+
content: "\eb67";
|
|
345
|
+
}
|
|
346
|
+
.ai-table-alt:before {
|
|
347
|
+
content: "\eb69";
|
|
348
|
+
}
|
|
349
|
+
.ai-toggle-left:before {
|
|
350
|
+
content: "\eb76";
|
|
351
|
+
}
|
|
352
|
+
.ai-toggle-right:before {
|
|
353
|
+
content: "\eb77";
|
|
354
|
+
}
|
|
355
|
+
.ai-trophy:before {
|
|
356
|
+
content: "\eb80";
|
|
357
|
+
}
|
|
358
|
+
.ai-tv:before {
|
|
359
|
+
content: "\eb81";
|
|
360
|
+
}
|
|
361
|
+
.ai-unlink:before {
|
|
362
|
+
content: "\eb84";
|
|
363
|
+
}
|
|
364
|
+
.ai-user:before {
|
|
365
|
+
content: "\eb8c";
|
|
366
|
+
}
|
|
367
|
+
.ai-world:before {
|
|
368
|
+
content: "\ebac";
|
|
369
|
+
}
|
|
370
|
+
.ai-bank:before {
|
|
371
|
+
content: "\ebc7";
|
|
372
|
+
}
|
|
373
|
+
.ai-bar-chart-alt:before {
|
|
374
|
+
content: "\ebc8";
|
|
375
|
+
}
|
|
376
|
+
.ai-book-bookmark:before {
|
|
377
|
+
content: "\ebda";
|
|
378
|
+
}
|
|
379
|
+
.ai-book-content:before {
|
|
380
|
+
content: "\ebdb";
|
|
381
|
+
}
|
|
382
|
+
.ai-briefcase-filled:before {
|
|
383
|
+
content: "\ebe5";
|
|
384
|
+
}
|
|
385
|
+
.ai-business:before {
|
|
386
|
+
content: "\ebf4";
|
|
387
|
+
}
|
|
388
|
+
.ai-calendar-filled:before {
|
|
389
|
+
content: "\ebf7";
|
|
390
|
+
}
|
|
391
|
+
.ai-contact:before {
|
|
392
|
+
content: "\ec2b";
|
|
393
|
+
}
|
|
394
|
+
.ai-conversation:before {
|
|
395
|
+
content: "\ec2c";
|
|
396
|
+
}
|
|
397
|
+
.ai-dashboard:before {
|
|
398
|
+
content: "\ec39";
|
|
399
|
+
}
|
|
400
|
+
.ai-download-alt:before {
|
|
401
|
+
content: "\ec4e";
|
|
402
|
+
}
|
|
403
|
+
.ai-error-filled:before {
|
|
404
|
+
content: "\ec5b";
|
|
405
|
+
}
|
|
406
|
+
.ai-graduation:before {
|
|
407
|
+
content: "\ec82";
|
|
408
|
+
}
|
|
409
|
+
.ai-group-filled:before {
|
|
410
|
+
content: "\ec85";
|
|
411
|
+
}
|
|
412
|
+
.ai-landmark:before {
|
|
413
|
+
content: "\eca6";
|
|
414
|
+
}
|
|
415
|
+
.ai-layout:before {
|
|
416
|
+
content: "\ecaa";
|
|
417
|
+
}
|
|
418
|
+
.ai-purchase-tag-filled:before {
|
|
419
|
+
content: "\ecfd";
|
|
420
|
+
}
|
|
421
|
+
.ai-quotes:before {
|
|
422
|
+
content: "\ecff";
|
|
423
|
+
}
|
|
424
|
+
.ai-school-alt:before {
|
|
425
|
+
content: "\ed14";
|
|
426
|
+
}
|
|
427
|
+
.ai-search-filled:before {
|
|
428
|
+
content: "\ed15";
|
|
429
|
+
}
|
|
430
|
+
.ai-spreadsheet:before {
|
|
431
|
+
content: "\ed2b";
|
|
432
|
+
}
|
|
433
|
+
.ai-toggle-left-filled:before {
|
|
434
|
+
content: "\ed3d";
|
|
435
|
+
}
|
|
436
|
+
.ai-toggle-right-filled:before {
|
|
437
|
+
content: "\ed3e";
|
|
438
|
+
}
|
|
439
|
+
.ai-user-filled:before {
|
|
440
|
+
content: "\ed50";
|
|
441
|
+
}
|
|
442
|
+
.ai-user-circle:before {
|
|
443
|
+
content: "\ed53";
|
|
444
|
+
}
|
|
445
|
+
.ai-widget:before {
|
|
446
|
+
content: "\ed69";
|
|
447
|
+
}
|
|
448
|
+
.ai-archive:before {
|
|
449
|
+
content: "\f109";
|
|
450
|
+
}
|
|
451
|
+
.ai-arrow-down:before {
|
|
452
|
+
content: "\f10c";
|
|
453
|
+
}
|
|
454
|
+
.ai-arrow-left:before {
|
|
455
|
+
content: "\f10d";
|
|
456
|
+
}
|
|
457
|
+
.ai-arrow-right:before {
|
|
458
|
+
content: "\f10e";
|
|
459
|
+
}
|
|
460
|
+
.ai-arrow-up:before {
|
|
461
|
+
content: "\f111";
|
|
462
|
+
}
|
|
463
|
+
.ai-at:before {
|
|
464
|
+
content: "\f112";
|
|
465
|
+
}
|
|
466
|
+
.ai-bell-off:before {
|
|
467
|
+
content: "\f11e";
|
|
468
|
+
}
|
|
469
|
+
.ai-bell:before {
|
|
470
|
+
content: "\f120";
|
|
471
|
+
}
|
|
472
|
+
.ai-bookmark:before {
|
|
473
|
+
content: "\f127";
|
|
474
|
+
}
|
|
475
|
+
.ai-briefcase-alt:before {
|
|
476
|
+
content: "\f12a";
|
|
477
|
+
}
|
|
478
|
+
.ai-bulb-alt:before {
|
|
479
|
+
content: "\f12b";
|
|
480
|
+
}
|
|
481
|
+
.ai-bulb:before {
|
|
482
|
+
content: "\f12c";
|
|
483
|
+
}
|
|
484
|
+
.ai-calendar:before {
|
|
485
|
+
content: "\f132";
|
|
486
|
+
}
|
|
487
|
+
.ai-camera-off:before {
|
|
488
|
+
content: "\f133";
|
|
489
|
+
}
|
|
490
|
+
.ai-camera:before {
|
|
491
|
+
content: "\f134";
|
|
492
|
+
}
|
|
493
|
+
.ai-cast:before {
|
|
494
|
+
content: "\f139";
|
|
495
|
+
}
|
|
496
|
+
.ai-chart:before {
|
|
497
|
+
content: "\f13a";
|
|
498
|
+
}
|
|
499
|
+
.ai-chat:before {
|
|
500
|
+
content: "\f13b";
|
|
501
|
+
}
|
|
502
|
+
.ai-check:before {
|
|
503
|
+
content: "\f13d";
|
|
504
|
+
}
|
|
505
|
+
.ai-checks:before {
|
|
506
|
+
content: "\f13e";
|
|
507
|
+
}
|
|
508
|
+
.ai-chevron-down:before {
|
|
509
|
+
content: "\f13f";
|
|
510
|
+
}
|
|
511
|
+
.ai-chevron-left:before {
|
|
512
|
+
content: "\f140";
|
|
513
|
+
}
|
|
514
|
+
.ai-chevron-right:before {
|
|
515
|
+
content: "\f141";
|
|
516
|
+
}
|
|
517
|
+
.ai-chevron-up:before {
|
|
518
|
+
content: "\f142";
|
|
519
|
+
}
|
|
520
|
+
.ai-chevrons-down:before {
|
|
521
|
+
content: "\f143";
|
|
522
|
+
}
|
|
523
|
+
.ai-chevrons-left:before {
|
|
524
|
+
content: "\f144";
|
|
525
|
+
}
|
|
526
|
+
.ai-chevrons-right:before {
|
|
527
|
+
content: "\f145";
|
|
528
|
+
}
|
|
529
|
+
.ai-chevrons-up:before {
|
|
530
|
+
content: "\f146";
|
|
531
|
+
}
|
|
532
|
+
.ai-alert-alt:before {
|
|
533
|
+
content: "\f148";
|
|
534
|
+
}
|
|
535
|
+
.ai-circle-check-filled:before {
|
|
536
|
+
content: "\f14d";
|
|
537
|
+
}
|
|
538
|
+
.ai-circle-check:before {
|
|
539
|
+
content: "\f14e";
|
|
540
|
+
}
|
|
541
|
+
.ai-help:before {
|
|
542
|
+
content: "\f14f";
|
|
543
|
+
}
|
|
544
|
+
.ai-info:before {
|
|
545
|
+
content: "\f150";
|
|
546
|
+
}
|
|
547
|
+
.ai-circle-slash:before {
|
|
548
|
+
content: "\f153";
|
|
549
|
+
}
|
|
550
|
+
.ai-clock:before {
|
|
551
|
+
content: "\f156";
|
|
552
|
+
}
|
|
553
|
+
.ai-cloud-upload:before {
|
|
554
|
+
content: "\f15c";
|
|
555
|
+
}
|
|
556
|
+
.ai-cloud:before {
|
|
557
|
+
content: "\f15d";
|
|
558
|
+
}
|
|
559
|
+
.ai-code:before {
|
|
560
|
+
content: "\f15f";
|
|
561
|
+
}
|
|
562
|
+
.ai-cross-alt:before {
|
|
563
|
+
content: "\f166";
|
|
564
|
+
}
|
|
565
|
+
.ai-cross:before {
|
|
566
|
+
content: "\f167";
|
|
567
|
+
}
|
|
568
|
+
.ai-cup-hot:before {
|
|
569
|
+
content: "\f169";
|
|
570
|
+
}
|
|
571
|
+
.ai-cup:before {
|
|
572
|
+
content: "\f16a";
|
|
573
|
+
}
|
|
574
|
+
.ai-database:before {
|
|
575
|
+
content: "\f16c";
|
|
576
|
+
}
|
|
577
|
+
.ai-dots:before {
|
|
578
|
+
content: "\f176";
|
|
579
|
+
}
|
|
580
|
+
.ai-download:before {
|
|
581
|
+
content: "\f177";
|
|
582
|
+
}
|
|
583
|
+
.ai-drawer:before {
|
|
584
|
+
content: "\f178";
|
|
585
|
+
}
|
|
586
|
+
.ai-edit-alt:before {
|
|
587
|
+
content: "\f17d";
|
|
588
|
+
}
|
|
589
|
+
.ai-edit:before {
|
|
590
|
+
content: "\f17e";
|
|
591
|
+
}
|
|
592
|
+
.ai-emoji-happy:before {
|
|
593
|
+
content: "\f17f";
|
|
594
|
+
}
|
|
595
|
+
.ai-emoji-meh:before {
|
|
596
|
+
content: "\f180";
|
|
597
|
+
}
|
|
598
|
+
.ai-emoji-sad:before {
|
|
599
|
+
content: "\f181";
|
|
600
|
+
}
|
|
601
|
+
.ai-emoji-smile:before {
|
|
602
|
+
content: "\f182";
|
|
603
|
+
}
|
|
604
|
+
.ai-emoji-surprise:before {
|
|
605
|
+
content: "\f183";
|
|
606
|
+
}
|
|
607
|
+
.ai-external-link:before {
|
|
608
|
+
content: "\f186";
|
|
609
|
+
}
|
|
610
|
+
.ai-fast-forward:before {
|
|
611
|
+
content: "\f188";
|
|
612
|
+
}
|
|
613
|
+
.ai-filter:before {
|
|
614
|
+
content: "\f18d";
|
|
615
|
+
}
|
|
616
|
+
.ai-flag:before {
|
|
617
|
+
content: "\f18e";
|
|
618
|
+
}
|
|
619
|
+
.ai-folder:before {
|
|
620
|
+
content: "\f193";
|
|
621
|
+
}
|
|
622
|
+
.ai-fruit:before {
|
|
623
|
+
content: "\f195";
|
|
624
|
+
}
|
|
625
|
+
.ai-globe:before {
|
|
626
|
+
content: "\f198";
|
|
627
|
+
}
|
|
628
|
+
.ai-grid:before {
|
|
629
|
+
content: "\f19c";
|
|
630
|
+
}
|
|
631
|
+
.ai-hard-drive:before {
|
|
632
|
+
content: "\f19e";
|
|
633
|
+
}
|
|
634
|
+
.ai-heart-filled:before {
|
|
635
|
+
content: "\f1a2";
|
|
636
|
+
}
|
|
637
|
+
.ai-heart:before {
|
|
638
|
+
content: "\f1a3";
|
|
639
|
+
}
|
|
640
|
+
.ai-hide:before {
|
|
641
|
+
content: "\f1a5";
|
|
642
|
+
}
|
|
643
|
+
.ai-home:before {
|
|
644
|
+
content: "\f1a6";
|
|
645
|
+
}
|
|
646
|
+
.ai-image:before {
|
|
647
|
+
content: "\f1aa";
|
|
648
|
+
}
|
|
649
|
+
.ai-lock-closed:before {
|
|
650
|
+
content: "\f1b9";
|
|
651
|
+
}
|
|
652
|
+
.ai-lock-open:before {
|
|
653
|
+
content: "\f1ba";
|
|
654
|
+
}
|
|
655
|
+
.ai-login:before {
|
|
656
|
+
content: "\f1bb";
|
|
657
|
+
}
|
|
658
|
+
.ai-logout:before {
|
|
659
|
+
content: "\f1bc";
|
|
660
|
+
}
|
|
661
|
+
.ai-mail-filled:before {
|
|
662
|
+
content: "\f1bd";
|
|
663
|
+
}
|
|
664
|
+
.ai-mail:before {
|
|
665
|
+
content: "\f1be";
|
|
666
|
+
}
|
|
667
|
+
.ai-map-pin:before {
|
|
668
|
+
content: "\f1bf";
|
|
669
|
+
}
|
|
670
|
+
.ai-map:before {
|
|
671
|
+
content: "\f1c0";
|
|
672
|
+
}
|
|
673
|
+
.ai-maximize:before {
|
|
674
|
+
content: "\f1c1";
|
|
675
|
+
}
|
|
676
|
+
.ai-message:before {
|
|
677
|
+
content: "\f1c6";
|
|
678
|
+
}
|
|
679
|
+
.ai-messages:before {
|
|
680
|
+
content: "\f1c7";
|
|
681
|
+
}
|
|
682
|
+
.ai-microphone-off:before {
|
|
683
|
+
content: "\f1c9";
|
|
684
|
+
}
|
|
685
|
+
.ai-microphone:before {
|
|
686
|
+
content: "\f1ca";
|
|
687
|
+
}
|
|
688
|
+
.ai-moon:before {
|
|
689
|
+
content: "\f1ce";
|
|
690
|
+
}
|
|
691
|
+
.ai-note:before {
|
|
692
|
+
content: "\f1d1";
|
|
693
|
+
}
|
|
694
|
+
.ai-book-open-alt:before {
|
|
695
|
+
content: "\f1d5";
|
|
696
|
+
}
|
|
697
|
+
.ai-paperclip:before {
|
|
698
|
+
content: "\f1d7";
|
|
699
|
+
}
|
|
700
|
+
.ai-pause:before {
|
|
701
|
+
content: "\f1da";
|
|
702
|
+
}
|
|
703
|
+
.ai-pencil:before {
|
|
704
|
+
content: "\f1dd";
|
|
705
|
+
}
|
|
706
|
+
.ai-phone-call:before {
|
|
707
|
+
content: "\f1de";
|
|
708
|
+
}
|
|
709
|
+
.ai-phone:before {
|
|
710
|
+
content: "\f1e2";
|
|
711
|
+
}
|
|
712
|
+
.ai-chart-pie:before {
|
|
713
|
+
content: "\f1e3";
|
|
714
|
+
}
|
|
715
|
+
.ai-pin:before {
|
|
716
|
+
content: "\f1e4";
|
|
717
|
+
}
|
|
718
|
+
.ai-play-filled:before {
|
|
719
|
+
content: "\f1e7";
|
|
720
|
+
}
|
|
721
|
+
.ai-play-next:before {
|
|
722
|
+
content: "\f1e8";
|
|
723
|
+
}
|
|
724
|
+
.ai-play-previous:before {
|
|
725
|
+
content: "\f1e9";
|
|
726
|
+
}
|
|
727
|
+
.ai-play:before {
|
|
728
|
+
content: "\f1ea";
|
|
729
|
+
}
|
|
730
|
+
.ai-plus:before {
|
|
731
|
+
content: "\f1ec";
|
|
732
|
+
}
|
|
733
|
+
.ai-power:before {
|
|
734
|
+
content: "\f1ed";
|
|
735
|
+
}
|
|
736
|
+
.ai-printer:before {
|
|
737
|
+
content: "\f1ee";
|
|
738
|
+
}
|
|
739
|
+
.ai-quotes-alt:before {
|
|
740
|
+
content: "\f1f1";
|
|
741
|
+
}
|
|
742
|
+
.ai-refresh:before {
|
|
743
|
+
content: "\f1f4";
|
|
744
|
+
}
|
|
745
|
+
.ai-rewind:before {
|
|
746
|
+
content: "\f1f6";
|
|
747
|
+
}
|
|
748
|
+
.ai-rotate-right:before {
|
|
749
|
+
content: "\f1f9";
|
|
750
|
+
}
|
|
751
|
+
.ai-save:before {
|
|
752
|
+
content: "\f1fc";
|
|
753
|
+
}
|
|
754
|
+
.ai-scan:before {
|
|
755
|
+
content: "\f1fd";
|
|
756
|
+
}
|
|
757
|
+
.ai-search:before {
|
|
758
|
+
content: "\f1ff";
|
|
759
|
+
}
|
|
760
|
+
.ai-send:before {
|
|
761
|
+
content: "\f200";
|
|
762
|
+
}
|
|
763
|
+
.ai-settings-filled:before {
|
|
764
|
+
content: "\f202";
|
|
765
|
+
}
|
|
766
|
+
.ai-settings:before {
|
|
767
|
+
content: "\f203";
|
|
768
|
+
}
|
|
769
|
+
.ai-share:before {
|
|
770
|
+
content: "\f204";
|
|
771
|
+
}
|
|
772
|
+
.ai-shield:before {
|
|
773
|
+
content: "\f205";
|
|
774
|
+
}
|
|
775
|
+
.ai-show:before {
|
|
776
|
+
content: "\f207";
|
|
777
|
+
}
|
|
778
|
+
.ai-slider:before {
|
|
779
|
+
content: "\f20c";
|
|
780
|
+
}
|
|
781
|
+
.ai-info-alt:before {
|
|
782
|
+
content: "\f214";
|
|
783
|
+
}
|
|
784
|
+
.ai-square-plus:before {
|
|
785
|
+
content: "\f216";
|
|
786
|
+
}
|
|
787
|
+
.ai-square-x:before {
|
|
788
|
+
content: "\f217";
|
|
789
|
+
}
|
|
790
|
+
.ai-square:before {
|
|
791
|
+
content: "\f218";
|
|
792
|
+
}
|
|
793
|
+
.ai-star-filled:before {
|
|
794
|
+
content: "\f21b";
|
|
795
|
+
}
|
|
796
|
+
.ai-star-half:before {
|
|
797
|
+
content: "\f21c";
|
|
798
|
+
}
|
|
799
|
+
.ai-star:before {
|
|
800
|
+
content: "\f21d";
|
|
801
|
+
}
|
|
802
|
+
.ai-sun:before {
|
|
803
|
+
content: "\f221";
|
|
804
|
+
}
|
|
805
|
+
.ai-table-row:before {
|
|
806
|
+
content: "\f223";
|
|
807
|
+
}
|
|
808
|
+
.ai-table:before {
|
|
809
|
+
content: "\f224";
|
|
810
|
+
}
|
|
811
|
+
.ai-time:before {
|
|
812
|
+
content: "\f22b";
|
|
813
|
+
}
|
|
814
|
+
.ai-toggle-left-alt:before {
|
|
815
|
+
content: "\f22d";
|
|
816
|
+
}
|
|
817
|
+
.ai-toggle-right-alt:before {
|
|
818
|
+
content: "\f22e";
|
|
819
|
+
}
|
|
820
|
+
.ai-tool:before {
|
|
821
|
+
content: "\f22f";
|
|
822
|
+
}
|
|
823
|
+
.ai-trash:before {
|
|
824
|
+
content: "\f231";
|
|
825
|
+
}
|
|
826
|
+
.ai-alert:before {
|
|
827
|
+
content: "\f233";
|
|
828
|
+
}
|
|
829
|
+
.ai-undo:before {
|
|
830
|
+
content: "\f237";
|
|
831
|
+
}
|
|
832
|
+
.ai-upload:before {
|
|
833
|
+
content: "\f238";
|
|
834
|
+
}
|
|
835
|
+
.ai-video-off:before {
|
|
836
|
+
content: "\f243";
|
|
837
|
+
}
|
|
838
|
+
.ai-video:before {
|
|
839
|
+
content: "\f244";
|
|
840
|
+
}
|
|
841
|
+
.ai-volume-1:before {
|
|
842
|
+
content: "\f247";
|
|
843
|
+
}
|
|
844
|
+
.ai-volume-2:before {
|
|
845
|
+
content: "\f248";
|
|
846
|
+
}
|
|
847
|
+
.ai-volume-x:before {
|
|
848
|
+
content: "\f249";
|
|
849
|
+
}
|
|
850
|
+
.ai-volume:before {
|
|
851
|
+
content: "\f24a";
|
|
852
|
+
}
|
|
853
|
+
.ai-vote-down:before {
|
|
854
|
+
content: "\f24b";
|
|
855
|
+
}
|
|
856
|
+
.ai-vote-up:before {
|
|
857
|
+
content: "\f24c";
|
|
858
|
+
}
|
|
859
|
+
.ai-whatsapp:before {
|
|
860
|
+
content: "\f250";
|
|
861
|
+
}
|
|
862
|
+
.ai-wifi-off:before {
|
|
863
|
+
content: "\f251";
|
|
864
|
+
}
|
|
865
|
+
.ai-wifi:before {
|
|
866
|
+
content: "\f252";
|
|
867
|
+
}
|
|
868
|
+
.ai-zoom-in:before {
|
|
869
|
+
content: "\f258";
|
|
870
|
+
}
|
|
871
|
+
.ai-zoom-out:before {
|
|
872
|
+
content: "\f259";
|
|
873
|
+
}
|