@abydahana/iconpicker 1.0.0

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.
Files changed (90) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +303 -0
  3. package/dist/core/font-loader.d.ts +2 -0
  4. package/dist/core/font-loader.d.ts.map +1 -0
  5. package/dist/core/font-loader.js +35 -0
  6. package/dist/core/font-loader.js.map +1 -0
  7. package/dist/core/grid.d.ts +26 -0
  8. package/dist/core/grid.d.ts.map +1 -0
  9. package/dist/core/grid.js +101 -0
  10. package/dist/core/grid.js.map +1 -0
  11. package/dist/core/icon-picker.d.ts +29 -0
  12. package/dist/core/icon-picker.d.ts.map +1 -0
  13. package/dist/core/icon-picker.js +314 -0
  14. package/dist/core/icon-picker.js.map +1 -0
  15. package/dist/core/popover.d.ts +17 -0
  16. package/dist/core/popover.d.ts.map +1 -0
  17. package/dist/core/popover.js +96 -0
  18. package/dist/core/popover.js.map +1 -0
  19. package/dist/dom/template.d.ts +18 -0
  20. package/dist/dom/template.d.ts.map +1 -0
  21. package/dist/dom/template.js +121 -0
  22. package/dist/dom/template.js.map +1 -0
  23. package/dist/iconpicker.css +547 -0
  24. package/dist/iconsets/bootstrap.d.ts +3 -0
  25. package/dist/iconsets/bootstrap.d.ts.map +1 -0
  26. package/dist/iconsets/bootstrap.js +2059 -0
  27. package/dist/iconsets/bootstrap.js.map +1 -0
  28. package/dist/iconsets/boxicons.d.ts +3 -0
  29. package/dist/iconsets/boxicons.d.ts.map +1 -0
  30. package/dist/iconsets/boxicons.js +823 -0
  31. package/dist/iconsets/boxicons.js.map +1 -0
  32. package/dist/iconsets/fontawesome.d.ts +3 -0
  33. package/dist/iconsets/fontawesome.d.ts.map +1 -0
  34. package/dist/iconsets/fontawesome.js +1904 -0
  35. package/dist/iconsets/fontawesome.js.map +1 -0
  36. package/dist/iconsets/index.d.ts +10 -0
  37. package/dist/iconsets/index.d.ts.map +1 -0
  38. package/dist/iconsets/index.js +29 -0
  39. package/dist/iconsets/index.js.map +1 -0
  40. package/dist/iconsets/lucide.d.ts +3 -0
  41. package/dist/iconsets/lucide.d.ts.map +1 -0
  42. package/dist/iconsets/lucide.js +1816 -0
  43. package/dist/iconsets/lucide.js.map +1 -0
  44. package/dist/iconsets/mdi.d.ts +3 -0
  45. package/dist/iconsets/mdi.d.ts.map +1 -0
  46. package/dist/iconsets/mdi.js +7457 -0
  47. package/dist/iconsets/mdi.js.map +1 -0
  48. package/dist/iconsets/remix.d.ts +3 -0
  49. package/dist/iconsets/remix.d.ts.map +1 -0
  50. package/dist/iconsets/remix.js +2901 -0
  51. package/dist/iconsets/remix.js.map +1 -0
  52. package/dist/iconsets/tabler.d.ts +3 -0
  53. package/dist/iconsets/tabler.d.ts.map +1 -0
  54. package/dist/iconsets/tabler.js +4888 -0
  55. package/dist/iconsets/tabler.js.map +1 -0
  56. package/dist/index.d.ts +14 -0
  57. package/dist/index.d.ts.map +1 -0
  58. package/dist/index.js +15 -0
  59. package/dist/index.js.map +1 -0
  60. package/dist/themes/aksara.css +72 -0
  61. package/dist/themes/base.css +211 -0
  62. package/dist/themes/bootstrap.css +70 -0
  63. package/dist/themes/default.css +72 -0
  64. package/dist/themes/tailwind.css +112 -0
  65. package/dist/types.d.ts +35 -0
  66. package/dist/types.d.ts.map +1 -0
  67. package/dist/types.js +2 -0
  68. package/dist/types.js.map +1 -0
  69. package/package.json +69 -0
  70. package/src/core/font-loader.ts +38 -0
  71. package/src/core/grid.ts +129 -0
  72. package/src/core/icon-picker.ts +353 -0
  73. package/src/core/popover.ts +113 -0
  74. package/src/dom/template.ts +173 -0
  75. package/src/iconsets/bootstrap.ts +2060 -0
  76. package/src/iconsets/boxicons.ts +824 -0
  77. package/src/iconsets/fontawesome.ts +1905 -0
  78. package/src/iconsets/index.ts +31 -0
  79. package/src/iconsets/lucide.ts +1817 -0
  80. package/src/iconsets/mdi.ts +7458 -0
  81. package/src/iconsets/remix.ts +2902 -0
  82. package/src/iconsets/tabler.ts +4889 -0
  83. package/src/index.ts +18 -0
  84. package/src/themes/aksara.css +72 -0
  85. package/src/themes/base.css +211 -0
  86. package/src/themes/bootstrap.css +70 -0
  87. package/src/themes/default.css +72 -0
  88. package/src/themes/index.css +5 -0
  89. package/src/themes/tailwind.css +112 -0
  90. package/src/types.ts +37 -0
@@ -0,0 +1,2902 @@
1
+ import type { IconSetDefinition } from "../types";
2
+
3
+ export const remixIconSet: IconSetDefinition = {
4
+ id: "remix",
5
+ title: "Remix Icon",
6
+ prefix: "ri-",
7
+ formatter: (name: string) => `ri-${name}`,
8
+ icons: [
9
+ "24-hours-fill",
10
+ "24-hours-line",
11
+ "4k-fill",
12
+ "4k-line",
13
+ "a-b",
14
+ "account-box-fill",
15
+ "account-box-line",
16
+ "account-circle-fill",
17
+ "account-circle-line",
18
+ "account-pin-box-fill",
19
+ "account-pin-box-line",
20
+ "account-pin-circle-fill",
21
+ "account-pin-circle-line",
22
+ "add-box-fill",
23
+ "add-box-line",
24
+ "add-circle-fill",
25
+ "add-circle-line",
26
+ "add-fill",
27
+ "add-large-fill",
28
+ "add-large-line",
29
+ "add-line",
30
+ "admin-fill",
31
+ "admin-line",
32
+ "advertisement-fill",
33
+ "advertisement-line",
34
+ "aed-electrodes-fill",
35
+ "aed-electrodes-line",
36
+ "aed-fill",
37
+ "aed-line",
38
+ "ai-generate",
39
+ "airplay-fill",
40
+ "airplay-line",
41
+ "alarm-fill",
42
+ "alarm-line",
43
+ "alarm-warning-fill",
44
+ "alarm-warning-line",
45
+ "album-fill",
46
+ "album-line",
47
+ "alert-fill",
48
+ "alert-line",
49
+ "alibaba-cloud-fill",
50
+ "alibaba-cloud-line",
51
+ "aliens-fill",
52
+ "aliens-line",
53
+ "align-bottom",
54
+ "align-center",
55
+ "align-item-bottom-fill",
56
+ "align-item-bottom-line",
57
+ "align-item-horizontal-center-fill",
58
+ "align-item-horizontal-center-line",
59
+ "align-item-left-fill",
60
+ "align-item-left-line",
61
+ "align-item-right-fill",
62
+ "align-item-right-line",
63
+ "align-item-top-fill",
64
+ "align-item-top-line",
65
+ "align-item-vertical-center-fill",
66
+ "align-item-vertical-center-line",
67
+ "align-justify",
68
+ "align-left",
69
+ "align-right",
70
+ "align-top",
71
+ "align-vertically",
72
+ "alipay-fill",
73
+ "alipay-line",
74
+ "amazon-fill",
75
+ "amazon-line",
76
+ "anchor-fill",
77
+ "anchor-line",
78
+ "ancient-gate-fill",
79
+ "ancient-gate-line",
80
+ "ancient-pavilion-fill",
81
+ "ancient-pavilion-line",
82
+ "android-fill",
83
+ "android-line",
84
+ "angularjs-fill",
85
+ "angularjs-line",
86
+ "anticlockwise-2-fill",
87
+ "anticlockwise-2-line",
88
+ "anticlockwise-fill",
89
+ "anticlockwise-line",
90
+ "app-store-fill",
91
+ "app-store-line",
92
+ "apple-fill",
93
+ "apple-line",
94
+ "apps-2-add-fill",
95
+ "apps-2-add-line",
96
+ "apps-2-fill",
97
+ "apps-2-line",
98
+ "apps-fill",
99
+ "apps-line",
100
+ "archive-2-fill",
101
+ "archive-2-line",
102
+ "archive-drawer-fill",
103
+ "archive-drawer-line",
104
+ "archive-fill",
105
+ "archive-line",
106
+ "archive-stack-fill",
107
+ "archive-stack-line",
108
+ "armchair-fill",
109
+ "armchair-line",
110
+ "arrow-down-circle-fill",
111
+ "arrow-down-circle-line",
112
+ "arrow-down-double-fill",
113
+ "arrow-down-double-line",
114
+ "arrow-down-fill",
115
+ "arrow-down-line",
116
+ "arrow-down-s-fill",
117
+ "arrow-down-s-line",
118
+ "arrow-down-wide-fill",
119
+ "arrow-down-wide-line",
120
+ "arrow-drop-down-fill",
121
+ "arrow-drop-down-line",
122
+ "arrow-drop-left-fill",
123
+ "arrow-drop-left-line",
124
+ "arrow-drop-right-fill",
125
+ "arrow-drop-right-line",
126
+ "arrow-drop-up-fill",
127
+ "arrow-drop-up-line",
128
+ "arrow-go-back-fill",
129
+ "arrow-go-back-line",
130
+ "arrow-go-forward-fill",
131
+ "arrow-go-forward-line",
132
+ "arrow-left-circle-fill",
133
+ "arrow-left-circle-line",
134
+ "arrow-left-double-fill",
135
+ "arrow-left-double-line",
136
+ "arrow-left-down-fill",
137
+ "arrow-left-down-line",
138
+ "arrow-left-fill",
139
+ "arrow-left-line",
140
+ "arrow-left-right-fill",
141
+ "arrow-left-right-line",
142
+ "arrow-left-s-fill",
143
+ "arrow-left-s-line",
144
+ "arrow-left-up-fill",
145
+ "arrow-left-up-line",
146
+ "arrow-left-wide-fill",
147
+ "arrow-left-wide-line",
148
+ "arrow-right-circle-fill",
149
+ "arrow-right-circle-line",
150
+ "arrow-right-double-fill",
151
+ "arrow-right-double-line",
152
+ "arrow-right-down-fill",
153
+ "arrow-right-down-line",
154
+ "arrow-right-fill",
155
+ "arrow-right-line",
156
+ "arrow-right-s-fill",
157
+ "arrow-right-s-line",
158
+ "arrow-right-up-fill",
159
+ "arrow-right-up-line",
160
+ "arrow-right-wide-fill",
161
+ "arrow-right-wide-line",
162
+ "arrow-turn-back-fill",
163
+ "arrow-turn-back-line",
164
+ "arrow-turn-forward-fill",
165
+ "arrow-turn-forward-line",
166
+ "arrow-up-circle-fill",
167
+ "arrow-up-circle-line",
168
+ "arrow-up-double-fill",
169
+ "arrow-up-double-line",
170
+ "arrow-up-down-fill",
171
+ "arrow-up-down-line",
172
+ "arrow-up-fill",
173
+ "arrow-up-line",
174
+ "arrow-up-s-fill",
175
+ "arrow-up-s-line",
176
+ "arrow-up-wide-fill",
177
+ "arrow-up-wide-line",
178
+ "artboard-2-fill",
179
+ "artboard-2-line",
180
+ "artboard-fill",
181
+ "artboard-line",
182
+ "article-fill",
183
+ "article-line",
184
+ "aspect-ratio-fill",
185
+ "aspect-ratio-line",
186
+ "asterisk",
187
+ "at-fill",
188
+ "at-line",
189
+ "attachment-2",
190
+ "attachment-fill",
191
+ "attachment-line",
192
+ "auction-fill",
193
+ "auction-line",
194
+ "award-fill",
195
+ "award-line",
196
+ "baidu-fill",
197
+ "baidu-line",
198
+ "ball-pen-fill",
199
+ "ball-pen-line",
200
+ "bank-card-2-fill",
201
+ "bank-card-2-line",
202
+ "bank-card-fill",
203
+ "bank-card-line",
204
+ "bank-fill",
205
+ "bank-line",
206
+ "bar-chart-2-fill",
207
+ "bar-chart-2-line",
208
+ "bar-chart-box-fill",
209
+ "bar-chart-box-line",
210
+ "bar-chart-fill",
211
+ "bar-chart-grouped-fill",
212
+ "bar-chart-grouped-line",
213
+ "bar-chart-horizontal-fill",
214
+ "bar-chart-horizontal-line",
215
+ "bar-chart-line",
216
+ "barcode-box-fill",
217
+ "barcode-box-line",
218
+ "barcode-fill",
219
+ "barcode-line",
220
+ "bard-fill",
221
+ "bard-line",
222
+ "barricade-fill",
223
+ "barricade-line",
224
+ "base-station-fill",
225
+ "base-station-line",
226
+ "basketball-fill",
227
+ "basketball-line",
228
+ "battery-2-charge-fill",
229
+ "battery-2-charge-line",
230
+ "battery-2-fill",
231
+ "battery-2-line",
232
+ "battery-charge-fill",
233
+ "battery-charge-line",
234
+ "battery-fill",
235
+ "battery-line",
236
+ "battery-low-fill",
237
+ "battery-low-line",
238
+ "battery-saver-fill",
239
+ "battery-saver-line",
240
+ "battery-share-fill",
241
+ "battery-share-line",
242
+ "bear-smile-fill",
243
+ "bear-smile-line",
244
+ "beer-fill",
245
+ "beer-line",
246
+ "behance-fill",
247
+ "behance-line",
248
+ "bell-fill",
249
+ "bell-line",
250
+ "bike-fill",
251
+ "bike-line",
252
+ "bilibili-fill",
253
+ "bilibili-line",
254
+ "bill-fill",
255
+ "bill-line",
256
+ "billiards-fill",
257
+ "billiards-line",
258
+ "bit-coin-fill",
259
+ "bit-coin-line",
260
+ "blaze-fill",
261
+ "blaze-line",
262
+ "blender-fill",
263
+ "blender-line",
264
+ "blogger-fill",
265
+ "blogger-line",
266
+ "bluesky-fill",
267
+ "bluesky-line",
268
+ "bluetooth-connect-fill",
269
+ "bluetooth-connect-line",
270
+ "bluetooth-fill",
271
+ "bluetooth-line",
272
+ "blur-off-fill",
273
+ "blur-off-line",
274
+ "bnb-fill",
275
+ "bnb-line",
276
+ "body-scan-fill",
277
+ "body-scan-line",
278
+ "bold",
279
+ "book-2-fill",
280
+ "book-2-line",
281
+ "book-3-fill",
282
+ "book-3-line",
283
+ "book-fill",
284
+ "book-line",
285
+ "book-marked-fill",
286
+ "book-marked-line",
287
+ "book-open-fill",
288
+ "book-open-line",
289
+ "book-read-fill",
290
+ "book-read-line",
291
+ "book-shelf-fill",
292
+ "book-shelf-line",
293
+ "booklet-fill",
294
+ "booklet-line",
295
+ "bookmark-2-fill",
296
+ "bookmark-2-line",
297
+ "bookmark-3-fill",
298
+ "bookmark-3-line",
299
+ "bookmark-fill",
300
+ "bookmark-line",
301
+ "bootstrap-fill",
302
+ "bootstrap-line",
303
+ "bowl-fill",
304
+ "bowl-line",
305
+ "box-1-fill",
306
+ "box-1-line",
307
+ "box-2-fill",
308
+ "box-2-line",
309
+ "box-3-fill",
310
+ "box-3-line",
311
+ "boxing-fill",
312
+ "boxing-line",
313
+ "braces-fill",
314
+ "braces-line",
315
+ "brackets-fill",
316
+ "brackets-line",
317
+ "brain-2-fill",
318
+ "brain-2-line",
319
+ "brain-fill",
320
+ "brain-line",
321
+ "bread-fill",
322
+ "bread-line",
323
+ "briefcase-2-fill",
324
+ "briefcase-2-line",
325
+ "briefcase-3-fill",
326
+ "briefcase-3-line",
327
+ "briefcase-4-fill",
328
+ "briefcase-4-line",
329
+ "briefcase-5-fill",
330
+ "briefcase-5-line",
331
+ "briefcase-fill",
332
+ "briefcase-line",
333
+ "bring-forward",
334
+ "bring-to-front",
335
+ "broadcast-fill",
336
+ "broadcast-line",
337
+ "brush-2-fill",
338
+ "brush-2-line",
339
+ "brush-3-fill",
340
+ "brush-3-line",
341
+ "brush-4-fill",
342
+ "brush-4-line",
343
+ "brush-fill",
344
+ "brush-line",
345
+ "btc-fill",
346
+ "btc-line",
347
+ "bubble-chart-fill",
348
+ "bubble-chart-line",
349
+ "bug-2-fill",
350
+ "bug-2-line",
351
+ "bug-fill",
352
+ "bug-line",
353
+ "building-2-fill",
354
+ "building-2-line",
355
+ "building-3-fill",
356
+ "building-3-line",
357
+ "building-4-fill",
358
+ "building-4-line",
359
+ "building-fill",
360
+ "building-line",
361
+ "bus-2-fill",
362
+ "bus-2-line",
363
+ "bus-fill",
364
+ "bus-line",
365
+ "bus-wifi-fill",
366
+ "bus-wifi-line",
367
+ "cactus-fill",
368
+ "cactus-line",
369
+ "cake-2-fill",
370
+ "cake-2-line",
371
+ "cake-3-fill",
372
+ "cake-3-line",
373
+ "cake-fill",
374
+ "cake-line",
375
+ "calculator-fill",
376
+ "calculator-line",
377
+ "calendar-2-fill",
378
+ "calendar-2-line",
379
+ "calendar-check-fill",
380
+ "calendar-check-line",
381
+ "calendar-close-fill",
382
+ "calendar-close-line",
383
+ "calendar-event-fill",
384
+ "calendar-event-line",
385
+ "calendar-fill",
386
+ "calendar-line",
387
+ "calendar-schedule-fill",
388
+ "calendar-schedule-line",
389
+ "calendar-todo-fill",
390
+ "calendar-todo-line",
391
+ "calendar-view",
392
+ "camera-2-fill",
393
+ "camera-2-line",
394
+ "camera-3-fill",
395
+ "camera-3-line",
396
+ "camera-fill",
397
+ "camera-lens-fill",
398
+ "camera-lens-line",
399
+ "camera-line",
400
+ "camera-off-fill",
401
+ "camera-off-line",
402
+ "camera-switch-fill",
403
+ "camera-switch-line",
404
+ "candle-fill",
405
+ "candle-line",
406
+ "capsule-fill",
407
+ "capsule-line",
408
+ "car-fill",
409
+ "car-line",
410
+ "car-washing-fill",
411
+ "car-washing-line",
412
+ "caravan-fill",
413
+ "caravan-line",
414
+ "carousel-view",
415
+ "cash-fill",
416
+ "cash-line",
417
+ "cast-fill",
418
+ "cast-line",
419
+ "cellphone-fill",
420
+ "cellphone-line",
421
+ "celsius-fill",
422
+ "celsius-line",
423
+ "centos-fill",
424
+ "centos-line",
425
+ "character-recognition-fill",
426
+ "character-recognition-line",
427
+ "charging-pile-2-fill",
428
+ "charging-pile-2-line",
429
+ "charging-pile-fill",
430
+ "charging-pile-line",
431
+ "chat-1-fill",
432
+ "chat-1-line",
433
+ "chat-2-fill",
434
+ "chat-2-line",
435
+ "chat-3-fill",
436
+ "chat-3-line",
437
+ "chat-4-fill",
438
+ "chat-4-line",
439
+ "chat-check-fill",
440
+ "chat-check-line",
441
+ "chat-delete-fill",
442
+ "chat-delete-line",
443
+ "chat-download-fill",
444
+ "chat-download-line",
445
+ "chat-follow-up-fill",
446
+ "chat-follow-up-line",
447
+ "chat-forward-fill",
448
+ "chat-forward-line",
449
+ "chat-heart-fill",
450
+ "chat-heart-line",
451
+ "chat-history-fill",
452
+ "chat-history-line",
453
+ "chat-new-fill",
454
+ "chat-new-line",
455
+ "chat-off-fill",
456
+ "chat-off-line",
457
+ "chat-poll-fill",
458
+ "chat-poll-line",
459
+ "chat-private-fill",
460
+ "chat-private-line",
461
+ "chat-quote-fill",
462
+ "chat-quote-line",
463
+ "chat-search-fill",
464
+ "chat-search-line",
465
+ "chat-settings-fill",
466
+ "chat-settings-line",
467
+ "chat-smile-2-fill",
468
+ "chat-smile-2-line",
469
+ "chat-smile-3-fill",
470
+ "chat-smile-3-line",
471
+ "chat-smile-fill",
472
+ "chat-smile-line",
473
+ "chat-thread-fill",
474
+ "chat-thread-line",
475
+ "chat-unread-fill",
476
+ "chat-unread-line",
477
+ "chat-upload-fill",
478
+ "chat-upload-line",
479
+ "chat-voice-fill",
480
+ "chat-voice-line",
481
+ "check-double-fill",
482
+ "check-double-line",
483
+ "check-fill",
484
+ "check-line",
485
+ "checkbox-blank-circle-fill",
486
+ "checkbox-blank-circle-line",
487
+ "checkbox-blank-fill",
488
+ "checkbox-blank-line",
489
+ "checkbox-circle-fill",
490
+ "checkbox-circle-line",
491
+ "checkbox-fill",
492
+ "checkbox-indeterminate-fill",
493
+ "checkbox-indeterminate-line",
494
+ "checkbox-line",
495
+ "checkbox-multiple-blank-fill",
496
+ "checkbox-multiple-blank-line",
497
+ "checkbox-multiple-fill",
498
+ "checkbox-multiple-line",
499
+ "china-railway-fill",
500
+ "china-railway-line",
501
+ "chrome-fill",
502
+ "chrome-line",
503
+ "circle-fill",
504
+ "circle-line",
505
+ "clapperboard-fill",
506
+ "clapperboard-line",
507
+ "clipboard-fill",
508
+ "clipboard-line",
509
+ "clockwise-2-fill",
510
+ "clockwise-2-line",
511
+ "clockwise-fill",
512
+ "clockwise-line",
513
+ "close-circle-fill",
514
+ "close-circle-line",
515
+ "close-fill",
516
+ "close-large-fill",
517
+ "close-large-line",
518
+ "close-line",
519
+ "closed-captioning-fill",
520
+ "closed-captioning-line",
521
+ "cloud-fill",
522
+ "cloud-line",
523
+ "cloud-off-fill",
524
+ "cloud-off-line",
525
+ "cloud-windy-fill",
526
+ "cloud-windy-line",
527
+ "cloudy-2-fill",
528
+ "cloudy-2-line",
529
+ "cloudy-fill",
530
+ "cloudy-line",
531
+ "code-block",
532
+ "code-box-fill",
533
+ "code-box-line",
534
+ "code-fill",
535
+ "code-line",
536
+ "code-s-fill",
537
+ "code-s-line",
538
+ "code-s-slash-fill",
539
+ "code-s-slash-line",
540
+ "code-view",
541
+ "codepen-fill",
542
+ "codepen-line",
543
+ "coin-fill",
544
+ "coin-line",
545
+ "coins-fill",
546
+ "coins-line",
547
+ "collage-fill",
548
+ "collage-line",
549
+ "collapse-diagonal-2-fill",
550
+ "collapse-diagonal-2-line",
551
+ "collapse-diagonal-fill",
552
+ "collapse-diagonal-line",
553
+ "collapse-horizontal-fill",
554
+ "collapse-horizontal-line",
555
+ "collapse-vertical-fill",
556
+ "collapse-vertical-line",
557
+ "color-filter-fill",
558
+ "color-filter-line",
559
+ "command-fill",
560
+ "command-line",
561
+ "community-fill",
562
+ "community-line",
563
+ "compass-2-fill",
564
+ "compass-2-line",
565
+ "compass-3-fill",
566
+ "compass-3-line",
567
+ "compass-4-fill",
568
+ "compass-4-line",
569
+ "compass-discover-fill",
570
+ "compass-discover-line",
571
+ "compass-fill",
572
+ "compass-line",
573
+ "compasses-2-fill",
574
+ "compasses-2-line",
575
+ "compasses-fill",
576
+ "compasses-line",
577
+ "computer-fill",
578
+ "computer-line",
579
+ "contacts-book-2-fill",
580
+ "contacts-book-2-line",
581
+ "contacts-book-3-fill",
582
+ "contacts-book-3-line",
583
+ "contacts-book-fill",
584
+ "contacts-book-line",
585
+ "contacts-book-upload-fill",
586
+ "contacts-book-upload-line",
587
+ "contacts-fill",
588
+ "contacts-line",
589
+ "contract-fill",
590
+ "contract-left-fill",
591
+ "contract-left-line",
592
+ "contract-left-right-fill",
593
+ "contract-left-right-line",
594
+ "contract-line",
595
+ "contract-right-fill",
596
+ "contract-right-line",
597
+ "contract-up-down-fill",
598
+ "contract-up-down-line",
599
+ "contrast-2-fill",
600
+ "contrast-2-line",
601
+ "contrast-drop-2-fill",
602
+ "contrast-drop-2-line",
603
+ "contrast-drop-fill",
604
+ "contrast-drop-line",
605
+ "contrast-fill",
606
+ "contrast-line",
607
+ "copilot-fill",
608
+ "copilot-line",
609
+ "copper-coin-fill",
610
+ "copper-coin-line",
611
+ "copper-diamond-fill",
612
+ "copper-diamond-line",
613
+ "copyleft-fill",
614
+ "copyleft-line",
615
+ "copyright-fill",
616
+ "copyright-line",
617
+ "coreos-fill",
618
+ "coreos-line",
619
+ "corner-down-left-fill",
620
+ "corner-down-left-line",
621
+ "corner-down-right-fill",
622
+ "corner-down-right-line",
623
+ "corner-left-down-fill",
624
+ "corner-left-down-line",
625
+ "corner-left-up-fill",
626
+ "corner-left-up-line",
627
+ "corner-right-down-fill",
628
+ "corner-right-down-line",
629
+ "corner-right-up-fill",
630
+ "corner-right-up-line",
631
+ "corner-up-left-double-fill",
632
+ "corner-up-left-double-line",
633
+ "corner-up-left-fill",
634
+ "corner-up-left-line",
635
+ "corner-up-right-double-fill",
636
+ "corner-up-right-double-line",
637
+ "corner-up-right-fill",
638
+ "corner-up-right-line",
639
+ "coupon-2-fill",
640
+ "coupon-2-line",
641
+ "coupon-3-fill",
642
+ "coupon-3-line",
643
+ "coupon-4-fill",
644
+ "coupon-4-line",
645
+ "coupon-5-fill",
646
+ "coupon-5-line",
647
+ "coupon-fill",
648
+ "coupon-line",
649
+ "cpu-fill",
650
+ "cpu-line",
651
+ "creative-commons-by-fill",
652
+ "creative-commons-by-line",
653
+ "creative-commons-fill",
654
+ "creative-commons-line",
655
+ "creative-commons-nc-fill",
656
+ "creative-commons-nc-line",
657
+ "creative-commons-nd-fill",
658
+ "creative-commons-nd-line",
659
+ "creative-commons-sa-fill",
660
+ "creative-commons-sa-line",
661
+ "creative-commons-zero-fill",
662
+ "creative-commons-zero-line",
663
+ "criminal-fill",
664
+ "criminal-line",
665
+ "crop-2-fill",
666
+ "crop-2-line",
667
+ "crop-fill",
668
+ "crop-line",
669
+ "cross-fill",
670
+ "cross-line",
671
+ "crosshair-2-fill",
672
+ "crosshair-2-line",
673
+ "crosshair-fill",
674
+ "crosshair-line",
675
+ "css3-fill",
676
+ "css3-line",
677
+ "cup-fill",
678
+ "cup-line",
679
+ "currency-fill",
680
+ "currency-line",
681
+ "cursor-fill",
682
+ "cursor-line",
683
+ "customer-service-2-fill",
684
+ "customer-service-2-line",
685
+ "customer-service-fill",
686
+ "customer-service-line",
687
+ "dashboard-2-fill",
688
+ "dashboard-2-line",
689
+ "dashboard-3-fill",
690
+ "dashboard-3-line",
691
+ "dashboard-fill",
692
+ "dashboard-horizontal-fill",
693
+ "dashboard-horizontal-line",
694
+ "dashboard-line",
695
+ "database-2-fill",
696
+ "database-2-line",
697
+ "database-fill",
698
+ "database-line",
699
+ "delete-back-2-fill",
700
+ "delete-back-2-line",
701
+ "delete-back-fill",
702
+ "delete-back-line",
703
+ "delete-bin-2-fill",
704
+ "delete-bin-2-line",
705
+ "delete-bin-3-fill",
706
+ "delete-bin-3-line",
707
+ "delete-bin-4-fill",
708
+ "delete-bin-4-line",
709
+ "delete-bin-5-fill",
710
+ "delete-bin-5-line",
711
+ "delete-bin-6-fill",
712
+ "delete-bin-6-line",
713
+ "delete-bin-7-fill",
714
+ "delete-bin-7-line",
715
+ "delete-bin-fill",
716
+ "delete-bin-line",
717
+ "delete-column",
718
+ "delete-row",
719
+ "device-fill",
720
+ "device-line",
721
+ "device-recover-fill",
722
+ "device-recover-line",
723
+ "dice-1-fill",
724
+ "dice-1-line",
725
+ "dice-2-fill",
726
+ "dice-2-line",
727
+ "dice-3-fill",
728
+ "dice-3-line",
729
+ "dice-4-fill",
730
+ "dice-4-line",
731
+ "dice-5-fill",
732
+ "dice-5-line",
733
+ "dice-6-fill",
734
+ "dice-6-line",
735
+ "dice-fill",
736
+ "dice-line",
737
+ "dingding-fill",
738
+ "dingding-line",
739
+ "direction-fill",
740
+ "direction-line",
741
+ "disc-fill",
742
+ "disc-line",
743
+ "discord-fill",
744
+ "discord-line",
745
+ "discount-percent-fill",
746
+ "discount-percent-line",
747
+ "discuss-fill",
748
+ "discuss-line",
749
+ "dislike-fill",
750
+ "dislike-line",
751
+ "disqus-fill",
752
+ "disqus-line",
753
+ "divide-fill",
754
+ "divide-line",
755
+ "dna-fill",
756
+ "dna-line",
757
+ "donut-chart-fill",
758
+ "donut-chart-line",
759
+ "door-closed-fill",
760
+ "door-closed-line",
761
+ "door-fill",
762
+ "door-line",
763
+ "door-lock-box-fill",
764
+ "door-lock-box-line",
765
+ "door-lock-fill",
766
+ "door-lock-line",
767
+ "door-open-fill",
768
+ "door-open-line",
769
+ "dossier-fill",
770
+ "dossier-line",
771
+ "douban-fill",
772
+ "douban-line",
773
+ "double-quotes-l",
774
+ "double-quotes-r",
775
+ "download-2-fill",
776
+ "download-2-line",
777
+ "download-cloud-2-fill",
778
+ "download-cloud-2-line",
779
+ "download-cloud-fill",
780
+ "download-cloud-line",
781
+ "download-fill",
782
+ "download-line",
783
+ "draft-fill",
784
+ "draft-line",
785
+ "drag-drop-fill",
786
+ "drag-drop-line",
787
+ "drag-move-2-fill",
788
+ "drag-move-2-line",
789
+ "drag-move-fill",
790
+ "drag-move-line",
791
+ "draggable",
792
+ "dribbble-fill",
793
+ "dribbble-line",
794
+ "drinks-2-fill",
795
+ "drinks-2-line",
796
+ "drinks-fill",
797
+ "drinks-line",
798
+ "drive-fill",
799
+ "drive-line",
800
+ "drizzle-fill",
801
+ "drizzle-line",
802
+ "drop-fill",
803
+ "drop-line",
804
+ "dropbox-fill",
805
+ "dropbox-line",
806
+ "dropdown-list",
807
+ "dropper-fill",
808
+ "dropper-line",
809
+ "dual-sim-1-fill",
810
+ "dual-sim-1-line",
811
+ "dual-sim-2-fill",
812
+ "dual-sim-2-line",
813
+ "dv-fill",
814
+ "dv-line",
815
+ "dvd-fill",
816
+ "dvd-line",
817
+ "e-bike-2-fill",
818
+ "e-bike-2-line",
819
+ "e-bike-fill",
820
+ "e-bike-line",
821
+ "earth-fill",
822
+ "earth-line",
823
+ "earthquake-fill",
824
+ "earthquake-line",
825
+ "edge-fill",
826
+ "edge-line",
827
+ "edge-new-fill",
828
+ "edge-new-line",
829
+ "edit-2-fill",
830
+ "edit-2-line",
831
+ "edit-box-fill",
832
+ "edit-box-line",
833
+ "edit-circle-fill",
834
+ "edit-circle-line",
835
+ "edit-fill",
836
+ "edit-line",
837
+ "eject-fill",
838
+ "eject-line",
839
+ "emoji-sticker-fill",
840
+ "emoji-sticker-line",
841
+ "emotion-2-fill",
842
+ "emotion-2-line",
843
+ "emotion-fill",
844
+ "emotion-happy-fill",
845
+ "emotion-happy-line",
846
+ "emotion-laugh-fill",
847
+ "emotion-laugh-line",
848
+ "emotion-line",
849
+ "emotion-normal-fill",
850
+ "emotion-normal-line",
851
+ "emotion-sad-fill",
852
+ "emotion-sad-line",
853
+ "emotion-unhappy-fill",
854
+ "emotion-unhappy-line",
855
+ "empathize-fill",
856
+ "empathize-line",
857
+ "emphasis",
858
+ "emphasis-cn",
859
+ "english-input",
860
+ "equal-fill",
861
+ "equal-line",
862
+ "equalizer-2-fill",
863
+ "equalizer-2-line",
864
+ "equalizer-3-fill",
865
+ "equalizer-3-line",
866
+ "equalizer-fill",
867
+ "equalizer-line",
868
+ "eraser-fill",
869
+ "eraser-line",
870
+ "error-warning-fill",
871
+ "error-warning-line",
872
+ "eth-fill",
873
+ "eth-line",
874
+ "evernote-fill",
875
+ "evernote-line",
876
+ "exchange-2-fill",
877
+ "exchange-2-line",
878
+ "exchange-box-fill",
879
+ "exchange-box-line",
880
+ "exchange-cny-fill",
881
+ "exchange-cny-line",
882
+ "exchange-dollar-fill",
883
+ "exchange-dollar-line",
884
+ "exchange-fill",
885
+ "exchange-funds-fill",
886
+ "exchange-funds-line",
887
+ "exchange-line",
888
+ "expand-diagonal-2-fill",
889
+ "expand-diagonal-2-line",
890
+ "expand-diagonal-fill",
891
+ "expand-diagonal-line",
892
+ "expand-diagonal-s-2-fill",
893
+ "expand-diagonal-s-2-line",
894
+ "expand-diagonal-s-fill",
895
+ "expand-diagonal-s-line",
896
+ "expand-height-fill",
897
+ "expand-height-line",
898
+ "expand-horizontal-fill",
899
+ "expand-horizontal-line",
900
+ "expand-horizontal-s-fill",
901
+ "expand-horizontal-s-line",
902
+ "expand-left-fill",
903
+ "expand-left-line",
904
+ "expand-left-right-fill",
905
+ "expand-left-right-line",
906
+ "expand-right-fill",
907
+ "expand-right-line",
908
+ "expand-up-down-fill",
909
+ "expand-up-down-line",
910
+ "expand-vertical-fill",
911
+ "expand-vertical-line",
912
+ "expand-vertical-s-fill",
913
+ "expand-vertical-s-line",
914
+ "expand-width-fill",
915
+ "expand-width-line",
916
+ "export-fill",
917
+ "export-line",
918
+ "external-link-fill",
919
+ "external-link-line",
920
+ "eye-2-fill",
921
+ "eye-2-line",
922
+ "eye-close-fill",
923
+ "eye-close-line",
924
+ "eye-fill",
925
+ "eye-line",
926
+ "eye-off-fill",
927
+ "eye-off-line",
928
+ "facebook-box-fill",
929
+ "facebook-box-line",
930
+ "facebook-circle-fill",
931
+ "facebook-circle-line",
932
+ "facebook-fill",
933
+ "facebook-line",
934
+ "fahrenheit-fill",
935
+ "fahrenheit-line",
936
+ "feedback-fill",
937
+ "feedback-line",
938
+ "file-2-fill",
939
+ "file-2-line",
940
+ "file-3-fill",
941
+ "file-3-line",
942
+ "file-4-fill",
943
+ "file-4-line",
944
+ "file-add-fill",
945
+ "file-add-line",
946
+ "file-chart-2-fill",
947
+ "file-chart-2-line",
948
+ "file-chart-fill",
949
+ "file-chart-line",
950
+ "file-check-fill",
951
+ "file-check-line",
952
+ "file-close-fill",
953
+ "file-close-line",
954
+ "file-cloud-fill",
955
+ "file-cloud-line",
956
+ "file-code-fill",
957
+ "file-code-line",
958
+ "file-copy-2-fill",
959
+ "file-copy-2-line",
960
+ "file-copy-fill",
961
+ "file-copy-line",
962
+ "file-damage-fill",
963
+ "file-damage-line",
964
+ "file-download-fill",
965
+ "file-download-line",
966
+ "file-edit-fill",
967
+ "file-edit-line",
968
+ "file-excel-2-fill",
969
+ "file-excel-2-line",
970
+ "file-excel-fill",
971
+ "file-excel-line",
972
+ "file-fill",
973
+ "file-forbid-fill",
974
+ "file-forbid-line",
975
+ "file-gif-fill",
976
+ "file-gif-line",
977
+ "file-history-fill",
978
+ "file-history-line",
979
+ "file-hwp-fill",
980
+ "file-hwp-line",
981
+ "file-image-fill",
982
+ "file-image-line",
983
+ "file-info-fill",
984
+ "file-info-line",
985
+ "file-line",
986
+ "file-list-2-fill",
987
+ "file-list-2-line",
988
+ "file-list-3-fill",
989
+ "file-list-3-line",
990
+ "file-list-fill",
991
+ "file-list-line",
992
+ "file-lock-fill",
993
+ "file-lock-line",
994
+ "file-marked-fill",
995
+ "file-marked-line",
996
+ "file-music-fill",
997
+ "file-music-line",
998
+ "file-paper-2-fill",
999
+ "file-paper-2-line",
1000
+ "file-paper-fill",
1001
+ "file-paper-line",
1002
+ "file-pdf-2-fill",
1003
+ "file-pdf-2-line",
1004
+ "file-pdf-fill",
1005
+ "file-pdf-line",
1006
+ "file-ppt-2-fill",
1007
+ "file-ppt-2-line",
1008
+ "file-ppt-fill",
1009
+ "file-ppt-line",
1010
+ "file-reduce-fill",
1011
+ "file-reduce-line",
1012
+ "file-search-fill",
1013
+ "file-search-line",
1014
+ "file-settings-fill",
1015
+ "file-settings-line",
1016
+ "file-shield-2-fill",
1017
+ "file-shield-2-line",
1018
+ "file-shield-fill",
1019
+ "file-shield-line",
1020
+ "file-shred-fill",
1021
+ "file-shred-line",
1022
+ "file-text-fill",
1023
+ "file-text-line",
1024
+ "file-transfer-fill",
1025
+ "file-transfer-line",
1026
+ "file-unknow-fill",
1027
+ "file-unknow-line",
1028
+ "file-upload-fill",
1029
+ "file-upload-line",
1030
+ "file-user-fill",
1031
+ "file-user-line",
1032
+ "file-video-fill",
1033
+ "file-video-line",
1034
+ "file-warning-fill",
1035
+ "file-warning-line",
1036
+ "file-word-2-fill",
1037
+ "file-word-2-line",
1038
+ "file-word-fill",
1039
+ "file-word-line",
1040
+ "file-zip-fill",
1041
+ "file-zip-line",
1042
+ "film-fill",
1043
+ "film-line",
1044
+ "filter-2-fill",
1045
+ "filter-2-line",
1046
+ "filter-3-fill",
1047
+ "filter-3-line",
1048
+ "filter-fill",
1049
+ "filter-line",
1050
+ "filter-off-fill",
1051
+ "filter-off-line",
1052
+ "find-replace-fill",
1053
+ "find-replace-line",
1054
+ "finder-fill",
1055
+ "finder-line",
1056
+ "fingerprint-2-fill",
1057
+ "fingerprint-2-line",
1058
+ "fingerprint-fill",
1059
+ "fingerprint-line",
1060
+ "fire-fill",
1061
+ "fire-line",
1062
+ "firebase-fill",
1063
+ "firebase-line",
1064
+ "firefox-fill",
1065
+ "firefox-line",
1066
+ "first-aid-kit-fill",
1067
+ "first-aid-kit-line",
1068
+ "flag-2-fill",
1069
+ "flag-2-line",
1070
+ "flag-fill",
1071
+ "flag-line",
1072
+ "flashlight-fill",
1073
+ "flashlight-line",
1074
+ "flask-fill",
1075
+ "flask-line",
1076
+ "flickr-fill",
1077
+ "flickr-line",
1078
+ "flight-land-fill",
1079
+ "flight-land-line",
1080
+ "flight-takeoff-fill",
1081
+ "flight-takeoff-line",
1082
+ "flip-horizontal-2-fill",
1083
+ "flip-horizontal-2-line",
1084
+ "flip-horizontal-fill",
1085
+ "flip-horizontal-line",
1086
+ "flip-vertical-2-fill",
1087
+ "flip-vertical-2-line",
1088
+ "flip-vertical-fill",
1089
+ "flip-vertical-line",
1090
+ "flood-fill",
1091
+ "flood-line",
1092
+ "flow-chart",
1093
+ "flower-fill",
1094
+ "flower-line",
1095
+ "flutter-fill",
1096
+ "flutter-line",
1097
+ "focus-2-fill",
1098
+ "focus-2-line",
1099
+ "focus-3-fill",
1100
+ "focus-3-line",
1101
+ "focus-fill",
1102
+ "focus-line",
1103
+ "focus-mode",
1104
+ "foggy-fill",
1105
+ "foggy-line",
1106
+ "folder-2-fill",
1107
+ "folder-2-line",
1108
+ "folder-3-fill",
1109
+ "folder-3-line",
1110
+ "folder-4-fill",
1111
+ "folder-4-line",
1112
+ "folder-5-fill",
1113
+ "folder-5-line",
1114
+ "folder-6-fill",
1115
+ "folder-6-line",
1116
+ "folder-add-fill",
1117
+ "folder-add-line",
1118
+ "folder-chart-2-fill",
1119
+ "folder-chart-2-line",
1120
+ "folder-chart-fill",
1121
+ "folder-chart-line",
1122
+ "folder-check-fill",
1123
+ "folder-check-line",
1124
+ "folder-close-fill",
1125
+ "folder-close-line",
1126
+ "folder-cloud-fill",
1127
+ "folder-cloud-line",
1128
+ "folder-download-fill",
1129
+ "folder-download-line",
1130
+ "folder-fill",
1131
+ "folder-forbid-fill",
1132
+ "folder-forbid-line",
1133
+ "folder-history-fill",
1134
+ "folder-history-line",
1135
+ "folder-image-fill",
1136
+ "folder-image-line",
1137
+ "folder-info-fill",
1138
+ "folder-info-line",
1139
+ "folder-keyhole-fill",
1140
+ "folder-keyhole-line",
1141
+ "folder-line",
1142
+ "folder-lock-fill",
1143
+ "folder-lock-line",
1144
+ "folder-music-fill",
1145
+ "folder-music-line",
1146
+ "folder-open-fill",
1147
+ "folder-open-line",
1148
+ "folder-received-fill",
1149
+ "folder-received-line",
1150
+ "folder-reduce-fill",
1151
+ "folder-reduce-line",
1152
+ "folder-settings-fill",
1153
+ "folder-settings-line",
1154
+ "folder-shared-fill",
1155
+ "folder-shared-line",
1156
+ "folder-shield-2-fill",
1157
+ "folder-shield-2-line",
1158
+ "folder-shield-fill",
1159
+ "folder-shield-line",
1160
+ "folder-transfer-fill",
1161
+ "folder-transfer-line",
1162
+ "folder-unknow-fill",
1163
+ "folder-unknow-line",
1164
+ "folder-upload-fill",
1165
+ "folder-upload-line",
1166
+ "folder-user-fill",
1167
+ "folder-user-line",
1168
+ "folder-video-fill",
1169
+ "folder-video-line",
1170
+ "folder-warning-fill",
1171
+ "folder-warning-line",
1172
+ "folder-zip-fill",
1173
+ "folder-zip-line",
1174
+ "folders-fill",
1175
+ "folders-line",
1176
+ "font-color",
1177
+ "font-family",
1178
+ "font-mono",
1179
+ "font-sans",
1180
+ "font-sans-serif",
1181
+ "font-size",
1182
+ "font-size-2",
1183
+ "football-fill",
1184
+ "football-line",
1185
+ "footprint-fill",
1186
+ "footprint-line",
1187
+ "forbid-2-fill",
1188
+ "forbid-2-line",
1189
+ "forbid-fill",
1190
+ "forbid-line",
1191
+ "format-clear",
1192
+ "formula",
1193
+ "forward-10-fill",
1194
+ "forward-10-line",
1195
+ "forward-15-fill",
1196
+ "forward-15-line",
1197
+ "forward-30-fill",
1198
+ "forward-30-line",
1199
+ "forward-5-fill",
1200
+ "forward-5-line",
1201
+ "forward-end-fill",
1202
+ "forward-end-line",
1203
+ "forward-end-mini-fill",
1204
+ "forward-end-mini-line",
1205
+ "fridge-fill",
1206
+ "fridge-line",
1207
+ "friendica-fill",
1208
+ "friendica-line",
1209
+ "fullscreen-exit-fill",
1210
+ "fullscreen-exit-line",
1211
+ "fullscreen-fill",
1212
+ "fullscreen-line",
1213
+ "function-add-fill",
1214
+ "function-add-line",
1215
+ "function-fill",
1216
+ "function-line",
1217
+ "functions",
1218
+ "funds-box-fill",
1219
+ "funds-box-line",
1220
+ "funds-fill",
1221
+ "funds-line",
1222
+ "gallery-fill",
1223
+ "gallery-line",
1224
+ "gallery-upload-fill",
1225
+ "gallery-upload-line",
1226
+ "gallery-view",
1227
+ "gallery-view-2",
1228
+ "game-fill",
1229
+ "game-line",
1230
+ "gamepad-fill",
1231
+ "gamepad-line",
1232
+ "gas-station-fill",
1233
+ "gas-station-line",
1234
+ "gatsby-fill",
1235
+ "gatsby-line",
1236
+ "gemini-fill",
1237
+ "gemini-line",
1238
+ "genderless-fill",
1239
+ "genderless-line",
1240
+ "ghost-2-fill",
1241
+ "ghost-2-line",
1242
+ "ghost-fill",
1243
+ "ghost-line",
1244
+ "ghost-smile-fill",
1245
+ "ghost-smile-line",
1246
+ "gift-2-fill",
1247
+ "gift-2-line",
1248
+ "gift-fill",
1249
+ "gift-line",
1250
+ "git-branch-fill",
1251
+ "git-branch-line",
1252
+ "git-close-pull-request-fill",
1253
+ "git-close-pull-request-line",
1254
+ "git-commit-fill",
1255
+ "git-commit-line",
1256
+ "git-fork-fill",
1257
+ "git-fork-line",
1258
+ "git-merge-fill",
1259
+ "git-merge-line",
1260
+ "git-pr-draft-fill",
1261
+ "git-pr-draft-line",
1262
+ "git-pull-request-fill",
1263
+ "git-pull-request-line",
1264
+ "git-repository-commits-fill",
1265
+ "git-repository-commits-line",
1266
+ "git-repository-fill",
1267
+ "git-repository-line",
1268
+ "git-repository-private-fill",
1269
+ "git-repository-private-line",
1270
+ "github-fill",
1271
+ "github-line",
1272
+ "gitlab-fill",
1273
+ "gitlab-line",
1274
+ "glasses-2-fill",
1275
+ "glasses-2-line",
1276
+ "glasses-fill",
1277
+ "glasses-line",
1278
+ "global-fill",
1279
+ "global-line",
1280
+ "globe-fill",
1281
+ "globe-line",
1282
+ "goblet-2-fill",
1283
+ "goblet-2-line",
1284
+ "goblet-fill",
1285
+ "goblet-line",
1286
+ "goggles-fill",
1287
+ "goggles-line",
1288
+ "golf-ball-fill",
1289
+ "golf-ball-line",
1290
+ "google-fill",
1291
+ "google-line",
1292
+ "google-play-fill",
1293
+ "google-play-line",
1294
+ "government-fill",
1295
+ "government-line",
1296
+ "gps-fill",
1297
+ "gps-line",
1298
+ "gradienter-fill",
1299
+ "gradienter-line",
1300
+ "graduation-cap-fill",
1301
+ "graduation-cap-line",
1302
+ "grid-fill",
1303
+ "grid-line",
1304
+ "group-2-fill",
1305
+ "group-2-line",
1306
+ "group-3-fill",
1307
+ "group-3-line",
1308
+ "group-fill",
1309
+ "group-line",
1310
+ "guide-fill",
1311
+ "guide-line",
1312
+ "h-1",
1313
+ "h-2",
1314
+ "h-3",
1315
+ "h-4",
1316
+ "h-5",
1317
+ "h-6",
1318
+ "hail-fill",
1319
+ "hail-line",
1320
+ "hammer-fill",
1321
+ "hammer-line",
1322
+ "hand",
1323
+ "hand-coin-fill",
1324
+ "hand-coin-line",
1325
+ "hand-heart-fill",
1326
+ "hand-heart-line",
1327
+ "hand-sanitizer-fill",
1328
+ "hand-sanitizer-line",
1329
+ "handbag-fill",
1330
+ "handbag-line",
1331
+ "hard-drive-2-fill",
1332
+ "hard-drive-2-line",
1333
+ "hard-drive-3-fill",
1334
+ "hard-drive-3-line",
1335
+ "hard-drive-fill",
1336
+ "hard-drive-line",
1337
+ "hashtag",
1338
+ "haze-2-fill",
1339
+ "haze-2-line",
1340
+ "haze-fill",
1341
+ "haze-line",
1342
+ "hd-fill",
1343
+ "hd-line",
1344
+ "heading",
1345
+ "headphone-fill",
1346
+ "headphone-line",
1347
+ "health-book-fill",
1348
+ "health-book-line",
1349
+ "heart-2-fill",
1350
+ "heart-2-line",
1351
+ "heart-3-fill",
1352
+ "heart-3-line",
1353
+ "heart-add-2-fill",
1354
+ "heart-add-2-line",
1355
+ "heart-add-fill",
1356
+ "heart-add-line",
1357
+ "heart-fill",
1358
+ "heart-line",
1359
+ "heart-pulse-fill",
1360
+ "heart-pulse-line",
1361
+ "hearts-fill",
1362
+ "hearts-line",
1363
+ "heavy-showers-fill",
1364
+ "heavy-showers-line",
1365
+ "hexagon-fill",
1366
+ "hexagon-line",
1367
+ "history-fill",
1368
+ "history-line",
1369
+ "home-2-fill",
1370
+ "home-2-line",
1371
+ "home-3-fill",
1372
+ "home-3-line",
1373
+ "home-4-fill",
1374
+ "home-4-line",
1375
+ "home-5-fill",
1376
+ "home-5-line",
1377
+ "home-6-fill",
1378
+ "home-6-line",
1379
+ "home-7-fill",
1380
+ "home-7-line",
1381
+ "home-8-fill",
1382
+ "home-8-line",
1383
+ "home-fill",
1384
+ "home-gear-fill",
1385
+ "home-gear-line",
1386
+ "home-heart-fill",
1387
+ "home-heart-line",
1388
+ "home-line",
1389
+ "home-office-fill",
1390
+ "home-office-line",
1391
+ "home-smile-2-fill",
1392
+ "home-smile-2-line",
1393
+ "home-smile-fill",
1394
+ "home-smile-line",
1395
+ "home-wifi-fill",
1396
+ "home-wifi-line",
1397
+ "honor-of-kings-fill",
1398
+ "honor-of-kings-line",
1399
+ "honour-fill",
1400
+ "honour-line",
1401
+ "hospital-fill",
1402
+ "hospital-line",
1403
+ "hotel-bed-fill",
1404
+ "hotel-bed-line",
1405
+ "hotel-fill",
1406
+ "hotel-line",
1407
+ "hotspot-fill",
1408
+ "hotspot-line",
1409
+ "hourglass-2-fill",
1410
+ "hourglass-2-line",
1411
+ "hourglass-fill",
1412
+ "hourglass-line",
1413
+ "hq-fill",
1414
+ "hq-line",
1415
+ "html5-fill",
1416
+ "html5-line",
1417
+ "id-card-fill",
1418
+ "id-card-line",
1419
+ "ie-fill",
1420
+ "ie-line",
1421
+ "image-2-fill",
1422
+ "image-2-line",
1423
+ "image-add-fill",
1424
+ "image-add-line",
1425
+ "image-circle-fill",
1426
+ "image-circle-line",
1427
+ "image-edit-fill",
1428
+ "image-edit-line",
1429
+ "image-fill",
1430
+ "image-line",
1431
+ "import-fill",
1432
+ "import-line",
1433
+ "inbox-2-fill",
1434
+ "inbox-2-line",
1435
+ "inbox-archive-fill",
1436
+ "inbox-archive-line",
1437
+ "inbox-fill",
1438
+ "inbox-line",
1439
+ "inbox-unarchive-fill",
1440
+ "inbox-unarchive-line",
1441
+ "increase-decrease-fill",
1442
+ "increase-decrease-line",
1443
+ "indent-decrease",
1444
+ "indent-increase",
1445
+ "indeterminate-circle-fill",
1446
+ "indeterminate-circle-line",
1447
+ "infinity-fill",
1448
+ "infinity-line",
1449
+ "info-i",
1450
+ "information-2-fill",
1451
+ "information-2-line",
1452
+ "information-fill",
1453
+ "information-line",
1454
+ "information-off-fill",
1455
+ "information-off-line",
1456
+ "infrared-thermometer-fill",
1457
+ "infrared-thermometer-line",
1458
+ "ink-bottle-fill",
1459
+ "ink-bottle-line",
1460
+ "input-cursor-move",
1461
+ "input-field",
1462
+ "input-method-fill",
1463
+ "input-method-line",
1464
+ "insert-column-left",
1465
+ "insert-column-right",
1466
+ "insert-row-bottom",
1467
+ "insert-row-top",
1468
+ "instagram-fill",
1469
+ "instagram-line",
1470
+ "install-fill",
1471
+ "install-line",
1472
+ "instance-fill",
1473
+ "instance-line",
1474
+ "invision-fill",
1475
+ "invision-line",
1476
+ "italic",
1477
+ "java-fill",
1478
+ "java-line",
1479
+ "javascript-fill",
1480
+ "javascript-line",
1481
+ "kakao-talk-fill",
1482
+ "kakao-talk-line",
1483
+ "kanban-view",
1484
+ "kanban-view-2",
1485
+ "key-2-fill",
1486
+ "key-2-line",
1487
+ "key-fill",
1488
+ "key-line",
1489
+ "keyboard-box-fill",
1490
+ "keyboard-box-line",
1491
+ "keyboard-fill",
1492
+ "keyboard-line",
1493
+ "keynote-fill",
1494
+ "keynote-line",
1495
+ "kick-fill",
1496
+ "kick-line",
1497
+ "knife-blood-fill",
1498
+ "knife-blood-line",
1499
+ "knife-fill",
1500
+ "knife-line",
1501
+ "landscape-fill",
1502
+ "landscape-line",
1503
+ "layout-2-fill",
1504
+ "layout-2-line",
1505
+ "layout-3-fill",
1506
+ "layout-3-line",
1507
+ "layout-4-fill",
1508
+ "layout-4-line",
1509
+ "layout-5-fill",
1510
+ "layout-5-line",
1511
+ "layout-6-fill",
1512
+ "layout-6-line",
1513
+ "layout-bottom-2-fill",
1514
+ "layout-bottom-2-line",
1515
+ "layout-bottom-fill",
1516
+ "layout-bottom-line",
1517
+ "layout-column-fill",
1518
+ "layout-column-line",
1519
+ "layout-fill",
1520
+ "layout-grid-2-fill",
1521
+ "layout-grid-2-line",
1522
+ "layout-grid-fill",
1523
+ "layout-grid-line",
1524
+ "layout-horizontal-fill",
1525
+ "layout-horizontal-line",
1526
+ "layout-left-2-fill",
1527
+ "layout-left-2-line",
1528
+ "layout-left-fill",
1529
+ "layout-left-line",
1530
+ "layout-line",
1531
+ "layout-masonry-fill",
1532
+ "layout-masonry-line",
1533
+ "layout-right-2-fill",
1534
+ "layout-right-2-line",
1535
+ "layout-right-fill",
1536
+ "layout-right-line",
1537
+ "layout-row-fill",
1538
+ "layout-row-line",
1539
+ "layout-top-2-fill",
1540
+ "layout-top-2-line",
1541
+ "layout-top-fill",
1542
+ "layout-top-line",
1543
+ "layout-vertical-fill",
1544
+ "layout-vertical-line",
1545
+ "leaf-fill",
1546
+ "leaf-line",
1547
+ "lifebuoy-fill",
1548
+ "lifebuoy-line",
1549
+ "lightbulb-fill",
1550
+ "lightbulb-flash-fill",
1551
+ "lightbulb-flash-line",
1552
+ "lightbulb-line",
1553
+ "line-chart-fill",
1554
+ "line-chart-line",
1555
+ "line-fill",
1556
+ "line-height",
1557
+ "line-line",
1558
+ "link",
1559
+ "link-m",
1560
+ "link-unlink",
1561
+ "link-unlink-m",
1562
+ "linkedin-box-fill",
1563
+ "linkedin-box-line",
1564
+ "linkedin-fill",
1565
+ "linkedin-line",
1566
+ "links-fill",
1567
+ "links-line",
1568
+ "list-check",
1569
+ "list-check-2",
1570
+ "list-check-3",
1571
+ "list-indefinite",
1572
+ "list-ordered",
1573
+ "list-ordered-2",
1574
+ "list-radio",
1575
+ "list-settings-fill",
1576
+ "list-settings-line",
1577
+ "list-unordered",
1578
+ "list-view",
1579
+ "live-fill",
1580
+ "live-line",
1581
+ "loader-2-fill",
1582
+ "loader-2-line",
1583
+ "loader-3-fill",
1584
+ "loader-3-line",
1585
+ "loader-4-fill",
1586
+ "loader-4-line",
1587
+ "loader-5-fill",
1588
+ "loader-5-line",
1589
+ "loader-fill",
1590
+ "loader-line",
1591
+ "lock-2-fill",
1592
+ "lock-2-line",
1593
+ "lock-fill",
1594
+ "lock-line",
1595
+ "lock-password-fill",
1596
+ "lock-password-line",
1597
+ "lock-star-fill",
1598
+ "lock-star-line",
1599
+ "lock-unlock-fill",
1600
+ "lock-unlock-line",
1601
+ "login-box-fill",
1602
+ "login-box-line",
1603
+ "login-circle-fill",
1604
+ "login-circle-line",
1605
+ "logout-box-fill",
1606
+ "logout-box-line",
1607
+ "logout-box-r-fill",
1608
+ "logout-box-r-line",
1609
+ "logout-circle-fill",
1610
+ "logout-circle-line",
1611
+ "logout-circle-r-fill",
1612
+ "logout-circle-r-line",
1613
+ "loop-left-fill",
1614
+ "loop-left-line",
1615
+ "loop-right-fill",
1616
+ "loop-right-line",
1617
+ "luggage-cart-fill",
1618
+ "luggage-cart-line",
1619
+ "luggage-deposit-fill",
1620
+ "luggage-deposit-line",
1621
+ "lungs-fill",
1622
+ "lungs-line",
1623
+ "mac-fill",
1624
+ "mac-line",
1625
+ "macbook-fill",
1626
+ "macbook-line",
1627
+ "magic-fill",
1628
+ "magic-line",
1629
+ "mail-add-fill",
1630
+ "mail-add-line",
1631
+ "mail-check-fill",
1632
+ "mail-check-line",
1633
+ "mail-close-fill",
1634
+ "mail-close-line",
1635
+ "mail-download-fill",
1636
+ "mail-download-line",
1637
+ "mail-fill",
1638
+ "mail-forbid-fill",
1639
+ "mail-forbid-line",
1640
+ "mail-line",
1641
+ "mail-lock-fill",
1642
+ "mail-lock-line",
1643
+ "mail-open-fill",
1644
+ "mail-open-line",
1645
+ "mail-send-fill",
1646
+ "mail-send-line",
1647
+ "mail-settings-fill",
1648
+ "mail-settings-line",
1649
+ "mail-star-fill",
1650
+ "mail-star-line",
1651
+ "mail-unread-fill",
1652
+ "mail-unread-line",
1653
+ "mail-volume-fill",
1654
+ "mail-volume-line",
1655
+ "map-2-fill",
1656
+ "map-2-line",
1657
+ "map-fill",
1658
+ "map-line",
1659
+ "map-pin-2-fill",
1660
+ "map-pin-2-line",
1661
+ "map-pin-3-fill",
1662
+ "map-pin-3-line",
1663
+ "map-pin-4-fill",
1664
+ "map-pin-4-line",
1665
+ "map-pin-5-fill",
1666
+ "map-pin-5-line",
1667
+ "map-pin-add-fill",
1668
+ "map-pin-add-line",
1669
+ "map-pin-fill",
1670
+ "map-pin-line",
1671
+ "map-pin-range-fill",
1672
+ "map-pin-range-line",
1673
+ "map-pin-time-fill",
1674
+ "map-pin-time-line",
1675
+ "map-pin-user-fill",
1676
+ "map-pin-user-line",
1677
+ "mark-pen-fill",
1678
+ "mark-pen-line",
1679
+ "markdown-fill",
1680
+ "markdown-line",
1681
+ "markup-fill",
1682
+ "markup-line",
1683
+ "mastercard-fill",
1684
+ "mastercard-line",
1685
+ "mastodon-fill",
1686
+ "mastodon-line",
1687
+ "medal-2-fill",
1688
+ "medal-2-line",
1689
+ "medal-fill",
1690
+ "medal-line",
1691
+ "medicine-bottle-fill",
1692
+ "medicine-bottle-line",
1693
+ "medium-fill",
1694
+ "medium-line",
1695
+ "megaphone-fill",
1696
+ "megaphone-line",
1697
+ "memories-fill",
1698
+ "memories-line",
1699
+ "men-fill",
1700
+ "men-line",
1701
+ "mental-health-fill",
1702
+ "mental-health-line",
1703
+ "menu-2-fill",
1704
+ "menu-2-line",
1705
+ "menu-3-fill",
1706
+ "menu-3-line",
1707
+ "menu-4-fill",
1708
+ "menu-4-line",
1709
+ "menu-5-fill",
1710
+ "menu-5-line",
1711
+ "menu-add-fill",
1712
+ "menu-add-line",
1713
+ "menu-fill",
1714
+ "menu-fold-2-fill",
1715
+ "menu-fold-2-line",
1716
+ "menu-fold-3-fill",
1717
+ "menu-fold-3-line",
1718
+ "menu-fold-4-fill",
1719
+ "menu-fold-4-line",
1720
+ "menu-fold-fill",
1721
+ "menu-fold-line",
1722
+ "menu-line",
1723
+ "menu-search-fill",
1724
+ "menu-search-line",
1725
+ "menu-unfold-2-fill",
1726
+ "menu-unfold-2-line",
1727
+ "menu-unfold-3-fill",
1728
+ "menu-unfold-3-line",
1729
+ "menu-unfold-4-fill",
1730
+ "menu-unfold-4-line",
1731
+ "menu-unfold-fill",
1732
+ "menu-unfold-line",
1733
+ "merge-cells-horizontal",
1734
+ "merge-cells-vertical",
1735
+ "message-2-fill",
1736
+ "message-2-line",
1737
+ "message-3-fill",
1738
+ "message-3-line",
1739
+ "message-fill",
1740
+ "message-line",
1741
+ "messenger-fill",
1742
+ "messenger-line",
1743
+ "meta-fill",
1744
+ "meta-line",
1745
+ "meteor-fill",
1746
+ "meteor-line",
1747
+ "mic-2-fill",
1748
+ "mic-2-line",
1749
+ "mic-fill",
1750
+ "mic-line",
1751
+ "mic-off-fill",
1752
+ "mic-off-line",
1753
+ "mickey-fill",
1754
+ "mickey-line",
1755
+ "microscope-fill",
1756
+ "microscope-line",
1757
+ "microsoft-fill",
1758
+ "microsoft-line",
1759
+ "microsoft-loop-fill",
1760
+ "microsoft-loop-line",
1761
+ "mind-map",
1762
+ "mini-program-fill",
1763
+ "mini-program-line",
1764
+ "mist-fill",
1765
+ "mist-line",
1766
+ "mobile-download-fill",
1767
+ "mobile-download-line",
1768
+ "money-cny-box-fill",
1769
+ "money-cny-box-line",
1770
+ "money-cny-circle-fill",
1771
+ "money-cny-circle-line",
1772
+ "money-dollar-box-fill",
1773
+ "money-dollar-box-line",
1774
+ "money-dollar-circle-fill",
1775
+ "money-dollar-circle-line",
1776
+ "money-euro-box-fill",
1777
+ "money-euro-box-line",
1778
+ "money-euro-circle-fill",
1779
+ "money-euro-circle-line",
1780
+ "money-pound-box-fill",
1781
+ "money-pound-box-line",
1782
+ "money-pound-circle-fill",
1783
+ "money-pound-circle-line",
1784
+ "money-rupee-circle-fill",
1785
+ "money-rupee-circle-line",
1786
+ "moon-clear-fill",
1787
+ "moon-clear-line",
1788
+ "moon-cloudy-fill",
1789
+ "moon-cloudy-line",
1790
+ "moon-fill",
1791
+ "moon-foggy-fill",
1792
+ "moon-foggy-line",
1793
+ "moon-line",
1794
+ "more-2-fill",
1795
+ "more-2-line",
1796
+ "more-fill",
1797
+ "more-line",
1798
+ "motorbike-fill",
1799
+ "motorbike-line",
1800
+ "mouse-fill",
1801
+ "mouse-line",
1802
+ "movie-2-fill",
1803
+ "movie-2-line",
1804
+ "movie-fill",
1805
+ "movie-line",
1806
+ "music-2-fill",
1807
+ "music-2-line",
1808
+ "music-fill",
1809
+ "music-line",
1810
+ "mv-fill",
1811
+ "mv-line",
1812
+ "navigation-fill",
1813
+ "navigation-line",
1814
+ "netease-cloud-music-fill",
1815
+ "netease-cloud-music-line",
1816
+ "netflix-fill",
1817
+ "netflix-line",
1818
+ "news-fill",
1819
+ "news-line",
1820
+ "newspaper-fill",
1821
+ "newspaper-line",
1822
+ "nextjs-fill",
1823
+ "nextjs-line",
1824
+ "nft-fill",
1825
+ "nft-line",
1826
+ "node-tree",
1827
+ "nodejs-fill",
1828
+ "nodejs-line",
1829
+ "notification-2-fill",
1830
+ "notification-2-line",
1831
+ "notification-3-fill",
1832
+ "notification-3-line",
1833
+ "notification-4-fill",
1834
+ "notification-4-line",
1835
+ "notification-badge-fill",
1836
+ "notification-badge-line",
1837
+ "notification-fill",
1838
+ "notification-line",
1839
+ "notification-off-fill",
1840
+ "notification-off-line",
1841
+ "notion-fill",
1842
+ "notion-line",
1843
+ "npmjs-fill",
1844
+ "npmjs-line",
1845
+ "number-0",
1846
+ "number-1",
1847
+ "number-2",
1848
+ "number-3",
1849
+ "number-4",
1850
+ "number-5",
1851
+ "number-6",
1852
+ "number-7",
1853
+ "number-8",
1854
+ "number-9",
1855
+ "numbers-fill",
1856
+ "numbers-line",
1857
+ "nurse-fill",
1858
+ "nurse-line",
1859
+ "octagon-fill",
1860
+ "octagon-line",
1861
+ "oil-fill",
1862
+ "oil-line",
1863
+ "omega",
1864
+ "open-arm-fill",
1865
+ "open-arm-line",
1866
+ "open-source-fill",
1867
+ "open-source-line",
1868
+ "openai-fill",
1869
+ "openai-line",
1870
+ "openbase-fill",
1871
+ "openbase-line",
1872
+ "opera-fill",
1873
+ "opera-line",
1874
+ "order-play-fill",
1875
+ "order-play-line",
1876
+ "organization-chart",
1877
+ "outlet-2-fill",
1878
+ "outlet-2-line",
1879
+ "outlet-fill",
1880
+ "outlet-line",
1881
+ "overline",
1882
+ "p2p-fill",
1883
+ "p2p-line",
1884
+ "page-separator",
1885
+ "pages-fill",
1886
+ "pages-line",
1887
+ "paint-brush-fill",
1888
+ "paint-brush-line",
1889
+ "paint-fill",
1890
+ "paint-line",
1891
+ "palette-fill",
1892
+ "palette-line",
1893
+ "pantone-fill",
1894
+ "pantone-line",
1895
+ "paragraph",
1896
+ "parent-fill",
1897
+ "parent-line",
1898
+ "parentheses-fill",
1899
+ "parentheses-line",
1900
+ "parking-box-fill",
1901
+ "parking-box-line",
1902
+ "parking-fill",
1903
+ "parking-line",
1904
+ "pass-expired-fill",
1905
+ "pass-expired-line",
1906
+ "pass-pending-fill",
1907
+ "pass-pending-line",
1908
+ "pass-valid-fill",
1909
+ "pass-valid-line",
1910
+ "passport-fill",
1911
+ "passport-line",
1912
+ "patreon-fill",
1913
+ "patreon-line",
1914
+ "pause-circle-fill",
1915
+ "pause-circle-line",
1916
+ "pause-fill",
1917
+ "pause-large-fill",
1918
+ "pause-large-line",
1919
+ "pause-line",
1920
+ "pause-mini-fill",
1921
+ "pause-mini-line",
1922
+ "paypal-fill",
1923
+ "paypal-line",
1924
+ "pen-nib-fill",
1925
+ "pen-nib-line",
1926
+ "pencil-fill",
1927
+ "pencil-line",
1928
+ "pencil-ruler-2-fill",
1929
+ "pencil-ruler-2-line",
1930
+ "pencil-ruler-fill",
1931
+ "pencil-ruler-line",
1932
+ "pentagon-fill",
1933
+ "pentagon-line",
1934
+ "percent-fill",
1935
+ "percent-line",
1936
+ "phone-camera-fill",
1937
+ "phone-camera-line",
1938
+ "phone-fill",
1939
+ "phone-find-fill",
1940
+ "phone-find-line",
1941
+ "phone-line",
1942
+ "phone-lock-fill",
1943
+ "phone-lock-line",
1944
+ "picture-in-picture-2-fill",
1945
+ "picture-in-picture-2-line",
1946
+ "picture-in-picture-exit-fill",
1947
+ "picture-in-picture-exit-line",
1948
+ "picture-in-picture-fill",
1949
+ "picture-in-picture-line",
1950
+ "pie-chart-2-fill",
1951
+ "pie-chart-2-line",
1952
+ "pie-chart-box-fill",
1953
+ "pie-chart-box-line",
1954
+ "pie-chart-fill",
1955
+ "pie-chart-line",
1956
+ "pin-distance-fill",
1957
+ "pin-distance-line",
1958
+ "ping-pong-fill",
1959
+ "ping-pong-line",
1960
+ "pinterest-fill",
1961
+ "pinterest-line",
1962
+ "pinyin-input",
1963
+ "pixelfed-fill",
1964
+ "pixelfed-line",
1965
+ "plane-fill",
1966
+ "plane-line",
1967
+ "planet-fill",
1968
+ "planet-line",
1969
+ "plant-fill",
1970
+ "plant-line",
1971
+ "play-circle-fill",
1972
+ "play-circle-line",
1973
+ "play-fill",
1974
+ "play-large-fill",
1975
+ "play-large-line",
1976
+ "play-line",
1977
+ "play-list-2-fill",
1978
+ "play-list-2-line",
1979
+ "play-list-add-fill",
1980
+ "play-list-add-line",
1981
+ "play-list-fill",
1982
+ "play-list-line",
1983
+ "play-mini-fill",
1984
+ "play-mini-line",
1985
+ "play-reverse-fill",
1986
+ "play-reverse-large-fill",
1987
+ "play-reverse-large-line",
1988
+ "play-reverse-line",
1989
+ "play-reverse-mini-fill",
1990
+ "play-reverse-mini-line",
1991
+ "playstation-fill",
1992
+ "playstation-line",
1993
+ "plug-2-fill",
1994
+ "plug-2-line",
1995
+ "plug-fill",
1996
+ "plug-line",
1997
+ "polaroid-2-fill",
1998
+ "polaroid-2-line",
1999
+ "polaroid-fill",
2000
+ "polaroid-line",
2001
+ "police-badge-fill",
2002
+ "police-badge-line",
2003
+ "police-car-fill",
2004
+ "police-car-line",
2005
+ "presentation-fill",
2006
+ "presentation-line",
2007
+ "price-tag-2-fill",
2008
+ "price-tag-2-line",
2009
+ "price-tag-3-fill",
2010
+ "price-tag-3-line",
2011
+ "price-tag-fill",
2012
+ "price-tag-line",
2013
+ "printer-cloud-fill",
2014
+ "printer-cloud-line",
2015
+ "printer-fill",
2016
+ "printer-line",
2017
+ "product-hunt-fill",
2018
+ "product-hunt-line",
2019
+ "profile-fill",
2020
+ "profile-line",
2021
+ "progress-1-fill",
2022
+ "progress-1-line",
2023
+ "progress-2-fill",
2024
+ "progress-2-line",
2025
+ "progress-3-fill",
2026
+ "progress-3-line",
2027
+ "progress-4-fill",
2028
+ "progress-4-line",
2029
+ "progress-5-fill",
2030
+ "progress-5-line",
2031
+ "progress-6-fill",
2032
+ "progress-6-line",
2033
+ "progress-7-fill",
2034
+ "progress-7-line",
2035
+ "progress-8-fill",
2036
+ "progress-8-line",
2037
+ "prohibited-2-fill",
2038
+ "prohibited-2-line",
2039
+ "prohibited-fill",
2040
+ "prohibited-line",
2041
+ "projector-2-fill",
2042
+ "projector-2-line",
2043
+ "projector-fill",
2044
+ "projector-line",
2045
+ "psychotherapy-fill",
2046
+ "psychotherapy-line",
2047
+ "pulse-fill",
2048
+ "pulse-line",
2049
+ "pushpin-2-fill",
2050
+ "pushpin-2-line",
2051
+ "pushpin-fill",
2052
+ "pushpin-line",
2053
+ "puzzle-2-fill",
2054
+ "puzzle-2-line",
2055
+ "puzzle-fill",
2056
+ "puzzle-line",
2057
+ "qq-fill",
2058
+ "qq-line",
2059
+ "qr-code-fill",
2060
+ "qr-code-line",
2061
+ "qr-scan-2-fill",
2062
+ "qr-scan-2-line",
2063
+ "qr-scan-fill",
2064
+ "qr-scan-line",
2065
+ "question-answer-fill",
2066
+ "question-answer-line",
2067
+ "question-fill",
2068
+ "question-line",
2069
+ "question-mark",
2070
+ "questionnaire-fill",
2071
+ "questionnaire-line",
2072
+ "quill-pen-fill",
2073
+ "quill-pen-line",
2074
+ "quote-text",
2075
+ "radar-fill",
2076
+ "radar-line",
2077
+ "radio-2-fill",
2078
+ "radio-2-line",
2079
+ "radio-button-fill",
2080
+ "radio-button-line",
2081
+ "radio-fill",
2082
+ "radio-line",
2083
+ "rainbow-fill",
2084
+ "rainbow-line",
2085
+ "rainy-fill",
2086
+ "rainy-line",
2087
+ "ram-2-fill",
2088
+ "ram-2-line",
2089
+ "ram-fill",
2090
+ "ram-line",
2091
+ "reactjs-fill",
2092
+ "reactjs-line",
2093
+ "receipt-fill",
2094
+ "receipt-line",
2095
+ "record-circle-fill",
2096
+ "record-circle-line",
2097
+ "record-mail-fill",
2098
+ "record-mail-line",
2099
+ "rectangle-fill",
2100
+ "rectangle-line",
2101
+ "recycle-fill",
2102
+ "recycle-line",
2103
+ "red-packet-fill",
2104
+ "red-packet-line",
2105
+ "reddit-fill",
2106
+ "reddit-line",
2107
+ "refresh-fill",
2108
+ "refresh-line",
2109
+ "refund-2-fill",
2110
+ "refund-2-line",
2111
+ "refund-fill",
2112
+ "refund-line",
2113
+ "registered-fill",
2114
+ "registered-line",
2115
+ "remix-run-fill",
2116
+ "remix-run-line",
2117
+ "remixicon-fill",
2118
+ "remixicon-line",
2119
+ "remote-control-2-fill",
2120
+ "remote-control-2-line",
2121
+ "remote-control-fill",
2122
+ "remote-control-line",
2123
+ "repeat-2-fill",
2124
+ "repeat-2-line",
2125
+ "repeat-fill",
2126
+ "repeat-line",
2127
+ "repeat-one-fill",
2128
+ "repeat-one-line",
2129
+ "replay-10-fill",
2130
+ "replay-10-line",
2131
+ "replay-15-fill",
2132
+ "replay-15-line",
2133
+ "replay-30-fill",
2134
+ "replay-30-line",
2135
+ "replay-5-fill",
2136
+ "replay-5-line",
2137
+ "reply-all-fill",
2138
+ "reply-all-line",
2139
+ "reply-fill",
2140
+ "reply-line",
2141
+ "reserved-fill",
2142
+ "reserved-line",
2143
+ "reset-left-fill",
2144
+ "reset-left-line",
2145
+ "reset-right-fill",
2146
+ "reset-right-line",
2147
+ "rest-time-fill",
2148
+ "rest-time-line",
2149
+ "restart-fill",
2150
+ "restart-line",
2151
+ "restaurant-2-fill",
2152
+ "restaurant-2-line",
2153
+ "restaurant-fill",
2154
+ "restaurant-line",
2155
+ "rewind-fill",
2156
+ "rewind-line",
2157
+ "rewind-mini-fill",
2158
+ "rewind-mini-line",
2159
+ "rewind-start-fill",
2160
+ "rewind-start-line",
2161
+ "rewind-start-mini-fill",
2162
+ "rewind-start-mini-line",
2163
+ "rfid-fill",
2164
+ "rfid-line",
2165
+ "rhythm-fill",
2166
+ "rhythm-line",
2167
+ "riding-fill",
2168
+ "riding-line",
2169
+ "road-map-fill",
2170
+ "road-map-line",
2171
+ "roadster-fill",
2172
+ "roadster-line",
2173
+ "robot-2-fill",
2174
+ "robot-2-line",
2175
+ "robot-3-fill",
2176
+ "robot-3-line",
2177
+ "robot-fill",
2178
+ "robot-line",
2179
+ "rocket-2-fill",
2180
+ "rocket-2-line",
2181
+ "rocket-fill",
2182
+ "rocket-line",
2183
+ "rotate-lock-fill",
2184
+ "rotate-lock-line",
2185
+ "rounded-corner",
2186
+ "route-fill",
2187
+ "route-line",
2188
+ "router-fill",
2189
+ "router-line",
2190
+ "rss-fill",
2191
+ "rss-line",
2192
+ "ruler-2-fill",
2193
+ "ruler-2-line",
2194
+ "ruler-fill",
2195
+ "ruler-line",
2196
+ "run-fill",
2197
+ "run-line",
2198
+ "safari-fill",
2199
+ "safari-line",
2200
+ "safe-2-fill",
2201
+ "safe-2-line",
2202
+ "safe-fill",
2203
+ "safe-line",
2204
+ "sailboat-fill",
2205
+ "sailboat-line",
2206
+ "save-2-fill",
2207
+ "save-2-line",
2208
+ "save-3-fill",
2209
+ "save-3-line",
2210
+ "save-fill",
2211
+ "save-line",
2212
+ "scales-2-fill",
2213
+ "scales-2-line",
2214
+ "scales-3-fill",
2215
+ "scales-3-line",
2216
+ "scales-fill",
2217
+ "scales-line",
2218
+ "scan-2-fill",
2219
+ "scan-2-line",
2220
+ "scan-fill",
2221
+ "scan-line",
2222
+ "school-fill",
2223
+ "school-line",
2224
+ "scissors-2-fill",
2225
+ "scissors-2-line",
2226
+ "scissors-cut-fill",
2227
+ "scissors-cut-line",
2228
+ "scissors-fill",
2229
+ "scissors-line",
2230
+ "screenshot-2-fill",
2231
+ "screenshot-2-line",
2232
+ "screenshot-fill",
2233
+ "screenshot-line",
2234
+ "scroll-to-bottom-fill",
2235
+ "scroll-to-bottom-line",
2236
+ "sd-card-fill",
2237
+ "sd-card-line",
2238
+ "sd-card-mini-fill",
2239
+ "sd-card-mini-line",
2240
+ "search-2-fill",
2241
+ "search-2-line",
2242
+ "search-eye-fill",
2243
+ "search-eye-line",
2244
+ "search-fill",
2245
+ "search-line",
2246
+ "secure-payment-fill",
2247
+ "secure-payment-line",
2248
+ "seedling-fill",
2249
+ "seedling-line",
2250
+ "send-backward",
2251
+ "send-plane-2-fill",
2252
+ "send-plane-2-line",
2253
+ "send-plane-fill",
2254
+ "send-plane-line",
2255
+ "send-to-back",
2256
+ "sensor-fill",
2257
+ "sensor-line",
2258
+ "seo-fill",
2259
+ "seo-line",
2260
+ "separator",
2261
+ "server-fill",
2262
+ "server-line",
2263
+ "service-fill",
2264
+ "service-line",
2265
+ "settings-2-fill",
2266
+ "settings-2-line",
2267
+ "settings-3-fill",
2268
+ "settings-3-line",
2269
+ "settings-4-fill",
2270
+ "settings-4-line",
2271
+ "settings-5-fill",
2272
+ "settings-5-line",
2273
+ "settings-6-fill",
2274
+ "settings-6-line",
2275
+ "settings-fill",
2276
+ "settings-line",
2277
+ "shadow-fill",
2278
+ "shadow-line",
2279
+ "shake-hands-fill",
2280
+ "shake-hands-line",
2281
+ "shape-2-fill",
2282
+ "shape-2-line",
2283
+ "shape-fill",
2284
+ "shape-line",
2285
+ "shapes-fill",
2286
+ "shapes-line",
2287
+ "share-2-fill",
2288
+ "share-2-line",
2289
+ "share-box-fill",
2290
+ "share-box-line",
2291
+ "share-circle-fill",
2292
+ "share-circle-line",
2293
+ "share-fill",
2294
+ "share-forward-2-fill",
2295
+ "share-forward-2-line",
2296
+ "share-forward-box-fill",
2297
+ "share-forward-box-line",
2298
+ "share-forward-fill",
2299
+ "share-forward-line",
2300
+ "share-line",
2301
+ "shield-check-fill",
2302
+ "shield-check-line",
2303
+ "shield-cross-fill",
2304
+ "shield-cross-line",
2305
+ "shield-fill",
2306
+ "shield-flash-fill",
2307
+ "shield-flash-line",
2308
+ "shield-keyhole-fill",
2309
+ "shield-keyhole-line",
2310
+ "shield-line",
2311
+ "shield-star-fill",
2312
+ "shield-star-line",
2313
+ "shield-user-fill",
2314
+ "shield-user-line",
2315
+ "shining-2-fill",
2316
+ "shining-2-line",
2317
+ "shining-fill",
2318
+ "shining-line",
2319
+ "ship-2-fill",
2320
+ "ship-2-line",
2321
+ "ship-fill",
2322
+ "ship-line",
2323
+ "shirt-fill",
2324
+ "shirt-line",
2325
+ "shopping-bag-2-fill",
2326
+ "shopping-bag-2-line",
2327
+ "shopping-bag-3-fill",
2328
+ "shopping-bag-3-line",
2329
+ "shopping-bag-4-fill",
2330
+ "shopping-bag-4-line",
2331
+ "shopping-bag-fill",
2332
+ "shopping-bag-line",
2333
+ "shopping-basket-2-fill",
2334
+ "shopping-basket-2-line",
2335
+ "shopping-basket-fill",
2336
+ "shopping-basket-line",
2337
+ "shopping-cart-2-fill",
2338
+ "shopping-cart-2-line",
2339
+ "shopping-cart-fill",
2340
+ "shopping-cart-line",
2341
+ "showers-fill",
2342
+ "showers-line",
2343
+ "shuffle-fill",
2344
+ "shuffle-line",
2345
+ "shut-down-fill",
2346
+ "shut-down-line",
2347
+ "side-bar-fill",
2348
+ "side-bar-line",
2349
+ "sidebar-fold-fill",
2350
+ "sidebar-fold-line",
2351
+ "sidebar-unfold-fill",
2352
+ "sidebar-unfold-line",
2353
+ "signal-tower-fill",
2354
+ "signal-tower-line",
2355
+ "signal-wifi-1-fill",
2356
+ "signal-wifi-1-line",
2357
+ "signal-wifi-2-fill",
2358
+ "signal-wifi-2-line",
2359
+ "signal-wifi-3-fill",
2360
+ "signal-wifi-3-line",
2361
+ "signal-wifi-error-fill",
2362
+ "signal-wifi-error-line",
2363
+ "signal-wifi-fill",
2364
+ "signal-wifi-line",
2365
+ "signal-wifi-off-fill",
2366
+ "signal-wifi-off-line",
2367
+ "signpost-fill",
2368
+ "signpost-line",
2369
+ "sim-card-2-fill",
2370
+ "sim-card-2-line",
2371
+ "sim-card-fill",
2372
+ "sim-card-line",
2373
+ "single-quotes-l",
2374
+ "single-quotes-r",
2375
+ "sip-fill",
2376
+ "sip-line",
2377
+ "sketching",
2378
+ "skip-back-fill",
2379
+ "skip-back-line",
2380
+ "skip-back-mini-fill",
2381
+ "skip-back-mini-line",
2382
+ "skip-down-fill",
2383
+ "skip-down-line",
2384
+ "skip-forward-fill",
2385
+ "skip-forward-line",
2386
+ "skip-forward-mini-fill",
2387
+ "skip-forward-mini-line",
2388
+ "skip-left-fill",
2389
+ "skip-left-line",
2390
+ "skip-right-fill",
2391
+ "skip-right-line",
2392
+ "skip-up-fill",
2393
+ "skip-up-line",
2394
+ "skull-2-fill",
2395
+ "skull-2-line",
2396
+ "skull-fill",
2397
+ "skull-line",
2398
+ "skype-fill",
2399
+ "skype-line",
2400
+ "slack-fill",
2401
+ "slack-line",
2402
+ "slash-commands",
2403
+ "slash-commands-2",
2404
+ "slice-fill",
2405
+ "slice-line",
2406
+ "slideshow-2-fill",
2407
+ "slideshow-2-line",
2408
+ "slideshow-3-fill",
2409
+ "slideshow-3-line",
2410
+ "slideshow-4-fill",
2411
+ "slideshow-4-line",
2412
+ "slideshow-fill",
2413
+ "slideshow-line",
2414
+ "slideshow-view",
2415
+ "slow-down-fill",
2416
+ "slow-down-line",
2417
+ "smartphone-fill",
2418
+ "smartphone-line",
2419
+ "snapchat-fill",
2420
+ "snapchat-line",
2421
+ "snowflake-fill",
2422
+ "snowflake-line",
2423
+ "snowy-fill",
2424
+ "snowy-line",
2425
+ "sofa-fill",
2426
+ "sofa-line",
2427
+ "sort-alphabet-asc",
2428
+ "sort-alphabet-desc",
2429
+ "sort-asc",
2430
+ "sort-desc",
2431
+ "sort-number-asc",
2432
+ "sort-number-desc",
2433
+ "sound-module-fill",
2434
+ "sound-module-line",
2435
+ "soundcloud-fill",
2436
+ "soundcloud-line",
2437
+ "space",
2438
+ "space-ship-fill",
2439
+ "space-ship-line",
2440
+ "spam-2-fill",
2441
+ "spam-2-line",
2442
+ "spam-3-fill",
2443
+ "spam-3-line",
2444
+ "spam-fill",
2445
+ "spam-line",
2446
+ "sparkling-2-fill",
2447
+ "sparkling-2-line",
2448
+ "sparkling-fill",
2449
+ "sparkling-line",
2450
+ "speak-fill",
2451
+ "speak-line",
2452
+ "speaker-2-fill",
2453
+ "speaker-2-line",
2454
+ "speaker-3-fill",
2455
+ "speaker-3-line",
2456
+ "speaker-fill",
2457
+ "speaker-line",
2458
+ "spectrum-fill",
2459
+ "spectrum-line",
2460
+ "speed-fill",
2461
+ "speed-line",
2462
+ "speed-mini-fill",
2463
+ "speed-mini-line",
2464
+ "speed-up-fill",
2465
+ "speed-up-line",
2466
+ "split-cells-horizontal",
2467
+ "split-cells-vertical",
2468
+ "spotify-fill",
2469
+ "spotify-line",
2470
+ "spy-fill",
2471
+ "spy-line",
2472
+ "square-fill",
2473
+ "square-line",
2474
+ "square-root",
2475
+ "stack-fill",
2476
+ "stack-line",
2477
+ "stack-overflow-fill",
2478
+ "stack-overflow-line",
2479
+ "stacked-view",
2480
+ "stackshare-fill",
2481
+ "stackshare-line",
2482
+ "stairs-fill",
2483
+ "stairs-line",
2484
+ "star-fill",
2485
+ "star-half-fill",
2486
+ "star-half-line",
2487
+ "star-half-s-fill",
2488
+ "star-half-s-line",
2489
+ "star-line",
2490
+ "star-s-fill",
2491
+ "star-s-line",
2492
+ "star-smile-fill",
2493
+ "star-smile-line",
2494
+ "steam-fill",
2495
+ "steam-line",
2496
+ "steering-2-fill",
2497
+ "steering-2-line",
2498
+ "steering-fill",
2499
+ "steering-line",
2500
+ "stethoscope-fill",
2501
+ "stethoscope-line",
2502
+ "sticky-note-2-fill",
2503
+ "sticky-note-2-line",
2504
+ "sticky-note-add-fill",
2505
+ "sticky-note-add-line",
2506
+ "sticky-note-fill",
2507
+ "sticky-note-line",
2508
+ "stock-fill",
2509
+ "stock-line",
2510
+ "stop-circle-fill",
2511
+ "stop-circle-line",
2512
+ "stop-fill",
2513
+ "stop-large-fill",
2514
+ "stop-large-line",
2515
+ "stop-line",
2516
+ "stop-mini-fill",
2517
+ "stop-mini-line",
2518
+ "store-2-fill",
2519
+ "store-2-line",
2520
+ "store-3-fill",
2521
+ "store-3-line",
2522
+ "store-fill",
2523
+ "store-line",
2524
+ "strikethrough",
2525
+ "strikethrough-2",
2526
+ "subscript",
2527
+ "subscript-2",
2528
+ "subtract-fill",
2529
+ "subtract-line",
2530
+ "subway-fill",
2531
+ "subway-line",
2532
+ "subway-wifi-fill",
2533
+ "subway-wifi-line",
2534
+ "suitcase-2-fill",
2535
+ "suitcase-2-line",
2536
+ "suitcase-3-fill",
2537
+ "suitcase-3-line",
2538
+ "suitcase-fill",
2539
+ "suitcase-line",
2540
+ "sun-cloudy-fill",
2541
+ "sun-cloudy-line",
2542
+ "sun-fill",
2543
+ "sun-foggy-fill",
2544
+ "sun-foggy-line",
2545
+ "sun-line",
2546
+ "supabase-fill",
2547
+ "supabase-line",
2548
+ "superscript",
2549
+ "superscript-2",
2550
+ "surgical-mask-fill",
2551
+ "surgical-mask-line",
2552
+ "surround-sound-fill",
2553
+ "surround-sound-line",
2554
+ "survey-fill",
2555
+ "survey-line",
2556
+ "svelte-fill",
2557
+ "svelte-line",
2558
+ "swap-2-fill",
2559
+ "swap-2-line",
2560
+ "swap-3-fill",
2561
+ "swap-3-line",
2562
+ "swap-box-fill",
2563
+ "swap-box-line",
2564
+ "swap-fill",
2565
+ "swap-line",
2566
+ "switch-fill",
2567
+ "switch-line",
2568
+ "sword-fill",
2569
+ "sword-line",
2570
+ "syringe-fill",
2571
+ "syringe-line",
2572
+ "t-box-fill",
2573
+ "t-box-line",
2574
+ "t-shirt-2-fill",
2575
+ "t-shirt-2-line",
2576
+ "t-shirt-air-fill",
2577
+ "t-shirt-air-line",
2578
+ "t-shirt-fill",
2579
+ "t-shirt-line",
2580
+ "table-2",
2581
+ "table-3",
2582
+ "table-alt-fill",
2583
+ "table-alt-line",
2584
+ "table-fill",
2585
+ "table-line",
2586
+ "table-view",
2587
+ "tablet-fill",
2588
+ "tablet-line",
2589
+ "tailwind-css-fill",
2590
+ "tailwind-css-line",
2591
+ "takeaway-fill",
2592
+ "takeaway-line",
2593
+ "taobao-fill",
2594
+ "taobao-line",
2595
+ "tape-fill",
2596
+ "tape-line",
2597
+ "task-fill",
2598
+ "task-line",
2599
+ "taxi-fill",
2600
+ "taxi-line",
2601
+ "taxi-wifi-fill",
2602
+ "taxi-wifi-line",
2603
+ "team-fill",
2604
+ "team-line",
2605
+ "telegram-2-fill",
2606
+ "telegram-2-line",
2607
+ "telegram-fill",
2608
+ "telegram-line",
2609
+ "temp-cold-fill",
2610
+ "temp-cold-line",
2611
+ "temp-hot-fill",
2612
+ "temp-hot-line",
2613
+ "tent-fill",
2614
+ "tent-line",
2615
+ "terminal-box-fill",
2616
+ "terminal-box-line",
2617
+ "terminal-fill",
2618
+ "terminal-line",
2619
+ "terminal-window-fill",
2620
+ "terminal-window-line",
2621
+ "test-tube-fill",
2622
+ "test-tube-line",
2623
+ "text",
2624
+ "text-block",
2625
+ "text-direction-l",
2626
+ "text-direction-r",
2627
+ "text-snippet",
2628
+ "text-spacing",
2629
+ "text-wrap",
2630
+ "thermometer-fill",
2631
+ "thermometer-line",
2632
+ "threads-fill",
2633
+ "threads-line",
2634
+ "thumb-down-fill",
2635
+ "thumb-down-line",
2636
+ "thumb-up-fill",
2637
+ "thumb-up-line",
2638
+ "thunderstorms-fill",
2639
+ "thunderstorms-line",
2640
+ "ticket-2-fill",
2641
+ "ticket-2-line",
2642
+ "ticket-fill",
2643
+ "ticket-line",
2644
+ "tiktok-fill",
2645
+ "tiktok-line",
2646
+ "time-fill",
2647
+ "time-line",
2648
+ "time-zone-fill",
2649
+ "time-zone-line",
2650
+ "timeline-view",
2651
+ "timer-2-fill",
2652
+ "timer-2-line",
2653
+ "timer-fill",
2654
+ "timer-flash-fill",
2655
+ "timer-flash-line",
2656
+ "timer-line",
2657
+ "todo-fill",
2658
+ "todo-line",
2659
+ "toggle-fill",
2660
+ "toggle-line",
2661
+ "token-swap-fill",
2662
+ "token-swap-line",
2663
+ "tools-fill",
2664
+ "tools-line",
2665
+ "tooth-fill",
2666
+ "tooth-line",
2667
+ "tornado-fill",
2668
+ "tornado-line",
2669
+ "trademark-fill",
2670
+ "trademark-line",
2671
+ "traffic-light-fill",
2672
+ "traffic-light-line",
2673
+ "train-fill",
2674
+ "train-line",
2675
+ "train-wifi-fill",
2676
+ "train-wifi-line",
2677
+ "translate",
2678
+ "translate-2",
2679
+ "travesti-fill",
2680
+ "travesti-line",
2681
+ "treasure-map-fill",
2682
+ "treasure-map-line",
2683
+ "tree-fill",
2684
+ "tree-line",
2685
+ "trello-fill",
2686
+ "trello-line",
2687
+ "triangle-fill",
2688
+ "triangle-line",
2689
+ "triangular-flag-fill",
2690
+ "triangular-flag-line",
2691
+ "trophy-fill",
2692
+ "trophy-line",
2693
+ "truck-fill",
2694
+ "truck-line",
2695
+ "tumblr-fill",
2696
+ "tumblr-line",
2697
+ "tv-2-fill",
2698
+ "tv-2-line",
2699
+ "tv-fill",
2700
+ "tv-line",
2701
+ "twitch-fill",
2702
+ "twitch-line",
2703
+ "twitter-fill",
2704
+ "twitter-line",
2705
+ "twitter-x-fill",
2706
+ "twitter-x-line",
2707
+ "typhoon-fill",
2708
+ "typhoon-line",
2709
+ "u-disk-fill",
2710
+ "u-disk-line",
2711
+ "ubuntu-fill",
2712
+ "ubuntu-line",
2713
+ "umbrella-fill",
2714
+ "umbrella-line",
2715
+ "underline",
2716
+ "uninstall-fill",
2717
+ "uninstall-line",
2718
+ "unpin-fill",
2719
+ "unpin-line",
2720
+ "unsplash-fill",
2721
+ "unsplash-line",
2722
+ "upload-2-fill",
2723
+ "upload-2-line",
2724
+ "upload-cloud-2-fill",
2725
+ "upload-cloud-2-line",
2726
+ "upload-cloud-fill",
2727
+ "upload-cloud-line",
2728
+ "upload-fill",
2729
+ "upload-line",
2730
+ "usb-fill",
2731
+ "usb-line",
2732
+ "user-2-fill",
2733
+ "user-2-line",
2734
+ "user-3-fill",
2735
+ "user-3-line",
2736
+ "user-4-fill",
2737
+ "user-4-line",
2738
+ "user-5-fill",
2739
+ "user-5-line",
2740
+ "user-6-fill",
2741
+ "user-6-line",
2742
+ "user-add-fill",
2743
+ "user-add-line",
2744
+ "user-fill",
2745
+ "user-follow-fill",
2746
+ "user-follow-line",
2747
+ "user-forbid-fill",
2748
+ "user-forbid-line",
2749
+ "user-heart-fill",
2750
+ "user-heart-line",
2751
+ "user-line",
2752
+ "user-location-fill",
2753
+ "user-location-line",
2754
+ "user-minus-fill",
2755
+ "user-minus-line",
2756
+ "user-received-2-fill",
2757
+ "user-received-2-line",
2758
+ "user-received-fill",
2759
+ "user-received-line",
2760
+ "user-search-fill",
2761
+ "user-search-line",
2762
+ "user-settings-fill",
2763
+ "user-settings-line",
2764
+ "user-shared-2-fill",
2765
+ "user-shared-2-line",
2766
+ "user-shared-fill",
2767
+ "user-shared-line",
2768
+ "user-smile-fill",
2769
+ "user-smile-line",
2770
+ "user-star-fill",
2771
+ "user-star-line",
2772
+ "user-unfollow-fill",
2773
+ "user-unfollow-line",
2774
+ "user-voice-fill",
2775
+ "user-voice-line",
2776
+ "verified-badge-fill",
2777
+ "verified-badge-line",
2778
+ "video-add-fill",
2779
+ "video-add-line",
2780
+ "video-chat-fill",
2781
+ "video-chat-line",
2782
+ "video-download-fill",
2783
+ "video-download-line",
2784
+ "video-fill",
2785
+ "video-line",
2786
+ "video-off-fill",
2787
+ "video-off-line",
2788
+ "video-on-fill",
2789
+ "video-on-line",
2790
+ "video-upload-fill",
2791
+ "video-upload-line",
2792
+ "vidicon-2-fill",
2793
+ "vidicon-2-line",
2794
+ "vidicon-fill",
2795
+ "vidicon-line",
2796
+ "vimeo-fill",
2797
+ "vimeo-line",
2798
+ "vip-crown-2-fill",
2799
+ "vip-crown-2-line",
2800
+ "vip-crown-fill",
2801
+ "vip-crown-line",
2802
+ "vip-diamond-fill",
2803
+ "vip-diamond-line",
2804
+ "vip-fill",
2805
+ "vip-line",
2806
+ "virus-fill",
2807
+ "virus-line",
2808
+ "visa-fill",
2809
+ "visa-line",
2810
+ "vk-fill",
2811
+ "vk-line",
2812
+ "voice-recognition-fill",
2813
+ "voice-recognition-line",
2814
+ "voiceprint-fill",
2815
+ "voiceprint-line",
2816
+ "volume-down-fill",
2817
+ "volume-down-line",
2818
+ "volume-mute-fill",
2819
+ "volume-mute-line",
2820
+ "volume-off-vibrate-fill",
2821
+ "volume-off-vibrate-line",
2822
+ "volume-up-fill",
2823
+ "volume-up-line",
2824
+ "volume-vibrate-fill",
2825
+ "volume-vibrate-line",
2826
+ "vuejs-fill",
2827
+ "vuejs-line",
2828
+ "walk-fill",
2829
+ "walk-line",
2830
+ "wallet-2-fill",
2831
+ "wallet-2-line",
2832
+ "wallet-3-fill",
2833
+ "wallet-3-line",
2834
+ "wallet-fill",
2835
+ "wallet-line",
2836
+ "water-flash-fill",
2837
+ "water-flash-line",
2838
+ "water-percent-fill",
2839
+ "water-percent-line",
2840
+ "webcam-fill",
2841
+ "webcam-line",
2842
+ "webhook-fill",
2843
+ "webhook-line",
2844
+ "wechat-2-fill",
2845
+ "wechat-2-line",
2846
+ "wechat-channels-fill",
2847
+ "wechat-channels-line",
2848
+ "wechat-fill",
2849
+ "wechat-line",
2850
+ "wechat-pay-fill",
2851
+ "wechat-pay-line",
2852
+ "weibo-fill",
2853
+ "weibo-line",
2854
+ "weight-fill",
2855
+ "weight-line",
2856
+ "whatsapp-fill",
2857
+ "whatsapp-line",
2858
+ "wheelchair-fill",
2859
+ "wheelchair-line",
2860
+ "wifi-fill",
2861
+ "wifi-line",
2862
+ "wifi-off-fill",
2863
+ "wifi-off-line",
2864
+ "window-2-fill",
2865
+ "window-2-line",
2866
+ "window-fill",
2867
+ "window-line",
2868
+ "windows-fill",
2869
+ "windows-line",
2870
+ "windy-fill",
2871
+ "windy-line",
2872
+ "wireless-charging-fill",
2873
+ "wireless-charging-line",
2874
+ "women-fill",
2875
+ "women-line",
2876
+ "wordpress-fill",
2877
+ "wordpress-line",
2878
+ "wubi-input",
2879
+ "xbox-fill",
2880
+ "xbox-line",
2881
+ "xing-fill",
2882
+ "xing-line",
2883
+ "xrp-fill",
2884
+ "xrp-line",
2885
+ "xtz-fill",
2886
+ "xtz-line",
2887
+ "youtube-fill",
2888
+ "youtube-line",
2889
+ "yuque-fill",
2890
+ "yuque-line",
2891
+ "zcool-fill",
2892
+ "zcool-line",
2893
+ "zhihu-fill",
2894
+ "zhihu-line",
2895
+ "zoom-in-fill",
2896
+ "zoom-in-line",
2897
+ "zoom-out-fill",
2898
+ "zoom-out-line",
2899
+ "zzz-fill",
2900
+ "zzz-line"
2901
+ ]
2902
+ };