@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,1817 @@
1
+ import type { IconSetDefinition } from "../types";
2
+
3
+ export const lucideIconSet: IconSetDefinition = {
4
+ id: "lucide",
5
+ title: "Lucide Icons",
6
+ prefix: "lucide lucide-",
7
+ formatter: (name: string) => `lucide lucide-${name}`,
8
+ icons: [
9
+ "a-arrow-down",
10
+ "a-arrow-up",
11
+ "a-large-small",
12
+ "accessibility",
13
+ "activity",
14
+ "ad",
15
+ "air-vent",
16
+ "airplay",
17
+ "alarm-clock",
18
+ "alarm-clock-check",
19
+ "alarm-clock-minus",
20
+ "alarm-clock-off",
21
+ "alarm-clock-plus",
22
+ "alarm-smoke",
23
+ "album",
24
+ "align-center-horizontal",
25
+ "align-center-vertical",
26
+ "align-end-horizontal",
27
+ "align-end-vertical",
28
+ "align-horizontal-distribute-center",
29
+ "align-horizontal-distribute-end",
30
+ "align-horizontal-distribute-start",
31
+ "align-horizontal-justify-center",
32
+ "align-horizontal-justify-end",
33
+ "align-horizontal-justify-start",
34
+ "align-horizontal-space-around",
35
+ "align-horizontal-space-between",
36
+ "align-start-horizontal",
37
+ "align-start-vertical",
38
+ "align-vertical-distribute-center",
39
+ "align-vertical-distribute-end",
40
+ "align-vertical-distribute-start",
41
+ "align-vertical-justify-center",
42
+ "align-vertical-justify-end",
43
+ "align-vertical-justify-start",
44
+ "align-vertical-space-around",
45
+ "align-vertical-space-between",
46
+ "ambulance",
47
+ "ampersand",
48
+ "ampersands",
49
+ "amphora",
50
+ "anchor",
51
+ "angle",
52
+ "antenna",
53
+ "anvil",
54
+ "aperture",
55
+ "app-window",
56
+ "app-window-mac",
57
+ "apple",
58
+ "archive",
59
+ "archive-restore",
60
+ "archive-x",
61
+ "armchair",
62
+ "arrow-big-down",
63
+ "arrow-big-down-dash",
64
+ "arrow-big-left",
65
+ "arrow-big-left-dash",
66
+ "arrow-big-right",
67
+ "arrow-big-right-dash",
68
+ "arrow-big-up",
69
+ "arrow-big-up-dash",
70
+ "arrow-down",
71
+ "arrow-down-0-1",
72
+ "arrow-down-1-0",
73
+ "arrow-down-a-z",
74
+ "arrow-down-from-line",
75
+ "arrow-down-left",
76
+ "arrow-down-narrow-wide",
77
+ "arrow-down-right",
78
+ "arrow-down-to-dot",
79
+ "arrow-down-to-line",
80
+ "arrow-down-up",
81
+ "arrow-down-wide-narrow",
82
+ "arrow-down-z-a",
83
+ "arrow-left",
84
+ "arrow-left-from-line",
85
+ "arrow-left-right",
86
+ "arrow-left-to-line",
87
+ "arrow-right",
88
+ "arrow-right-from-line",
89
+ "arrow-right-left",
90
+ "arrow-right-to-line",
91
+ "arrow-up",
92
+ "arrow-up-0-1",
93
+ "arrow-up-1-0",
94
+ "arrow-up-a-z",
95
+ "arrow-up-down",
96
+ "arrow-up-from-dot",
97
+ "arrow-up-from-line",
98
+ "arrow-up-left",
99
+ "arrow-up-narrow-wide",
100
+ "arrow-up-right",
101
+ "arrow-up-to-line",
102
+ "arrow-up-wide-narrow",
103
+ "arrow-up-z-a",
104
+ "arrows-up-from-line",
105
+ "asterisk",
106
+ "astroid",
107
+ "at-sign",
108
+ "atom",
109
+ "audio-lines",
110
+ "audio-lines-off",
111
+ "audio-lines-x",
112
+ "audio-waveform",
113
+ "award",
114
+ "axe",
115
+ "axis-3d",
116
+ "baby",
117
+ "backpack",
118
+ "badge",
119
+ "badge-alert",
120
+ "badge-cent",
121
+ "badge-check",
122
+ "badge-dollar-sign",
123
+ "badge-euro",
124
+ "badge-indian-rupee",
125
+ "badge-info",
126
+ "badge-japanese-yen",
127
+ "badge-minus",
128
+ "badge-percent",
129
+ "badge-plus",
130
+ "badge-pound-sterling",
131
+ "badge-question-mark",
132
+ "badge-russian-ruble",
133
+ "badge-swiss-franc",
134
+ "badge-turkish-lira",
135
+ "badge-x",
136
+ "baggage-claim",
137
+ "balloon",
138
+ "ban",
139
+ "banana",
140
+ "bandage",
141
+ "banknote",
142
+ "banknote-arrow-down",
143
+ "banknote-arrow-up",
144
+ "banknote-check",
145
+ "banknote-x",
146
+ "barcode",
147
+ "barrel",
148
+ "baseline",
149
+ "bath",
150
+ "battery",
151
+ "battery-charging",
152
+ "battery-full",
153
+ "battery-low",
154
+ "battery-medium",
155
+ "battery-plus",
156
+ "battery-warning",
157
+ "beaker",
158
+ "bean",
159
+ "bean-off",
160
+ "bed",
161
+ "bed-double",
162
+ "bed-single",
163
+ "beef",
164
+ "beef-off",
165
+ "beer",
166
+ "beer-off",
167
+ "bell",
168
+ "bell-check",
169
+ "bell-dot",
170
+ "bell-electric",
171
+ "bell-minus",
172
+ "bell-off",
173
+ "bell-plus",
174
+ "bell-ring",
175
+ "between-horizontal-end",
176
+ "between-horizontal-start",
177
+ "between-vertical-end",
178
+ "between-vertical-start",
179
+ "biceps-flexed",
180
+ "bike",
181
+ "binary",
182
+ "binoculars",
183
+ "biohazard",
184
+ "bird",
185
+ "birdhouse",
186
+ "bitcoin",
187
+ "blend",
188
+ "blender",
189
+ "blinds",
190
+ "blocks",
191
+ "bluetooth",
192
+ "bluetooth-connected",
193
+ "bluetooth-off",
194
+ "bluetooth-searching",
195
+ "bold",
196
+ "bolt",
197
+ "bomb",
198
+ "bone",
199
+ "bone-fracture",
200
+ "book",
201
+ "book-a",
202
+ "book-alert",
203
+ "book-audio",
204
+ "book-check",
205
+ "book-copy",
206
+ "book-dashed",
207
+ "book-down",
208
+ "book-headphones",
209
+ "book-heart",
210
+ "book-image",
211
+ "book-key",
212
+ "book-lock",
213
+ "book-marked",
214
+ "book-minus",
215
+ "book-open",
216
+ "book-open-check",
217
+ "book-open-text",
218
+ "book-plus",
219
+ "book-search",
220
+ "book-text",
221
+ "book-type",
222
+ "book-up",
223
+ "book-up-2",
224
+ "book-user",
225
+ "book-x",
226
+ "bookmark",
227
+ "bookmark-check",
228
+ "bookmark-minus",
229
+ "bookmark-off",
230
+ "bookmark-plus",
231
+ "bookmark-x",
232
+ "boom-box",
233
+ "bot",
234
+ "bot-message-square",
235
+ "bot-off",
236
+ "bottle-wine",
237
+ "bow-arrow",
238
+ "box",
239
+ "boxes",
240
+ "braces",
241
+ "brackets",
242
+ "brain",
243
+ "brain-circuit",
244
+ "brain-cog",
245
+ "brick-wall",
246
+ "brick-wall-fire",
247
+ "brick-wall-shield",
248
+ "bridge",
249
+ "briefcase",
250
+ "briefcase-business",
251
+ "briefcase-conveyor-belt",
252
+ "briefcase-medical",
253
+ "bring-to-front",
254
+ "broccoli",
255
+ "broom",
256
+ "broom-sparkles",
257
+ "brush",
258
+ "brush-cleaning",
259
+ "bubbles",
260
+ "bug",
261
+ "bug-off",
262
+ "bug-play",
263
+ "building",
264
+ "building-2",
265
+ "bus",
266
+ "bus-front",
267
+ "cable",
268
+ "cable-car",
269
+ "cake",
270
+ "cake-slice",
271
+ "calculator",
272
+ "calendar",
273
+ "calendar-1",
274
+ "calendar-arrow-down",
275
+ "calendar-arrow-up",
276
+ "calendar-check",
277
+ "calendar-check-2",
278
+ "calendar-clock",
279
+ "calendar-cog",
280
+ "calendar-days",
281
+ "calendar-fold",
282
+ "calendar-heart",
283
+ "calendar-minus",
284
+ "calendar-minus-2",
285
+ "calendar-off",
286
+ "calendar-plus",
287
+ "calendar-plus-2",
288
+ "calendar-range",
289
+ "calendar-search",
290
+ "calendar-sync",
291
+ "calendar-x",
292
+ "calendar-x-2",
293
+ "calendars",
294
+ "camera",
295
+ "camera-off",
296
+ "can",
297
+ "can-soda",
298
+ "candy",
299
+ "candy-cane",
300
+ "candy-off",
301
+ "cannabis",
302
+ "cannabis-off",
303
+ "captions",
304
+ "captions-off",
305
+ "car",
306
+ "car-battery",
307
+ "car-front",
308
+ "car-taxi-front",
309
+ "caravan",
310
+ "card-sim",
311
+ "carrot",
312
+ "case-lower",
313
+ "case-sensitive",
314
+ "case-upper",
315
+ "cassette-tape",
316
+ "cast",
317
+ "castle",
318
+ "cat",
319
+ "cctv",
320
+ "cctv-off",
321
+ "chart-area",
322
+ "chart-bar",
323
+ "chart-bar-big",
324
+ "chart-bar-decreasing",
325
+ "chart-bar-increasing",
326
+ "chart-bar-stacked",
327
+ "chart-candlestick",
328
+ "chart-column",
329
+ "chart-column-big",
330
+ "chart-column-decreasing",
331
+ "chart-column-increasing",
332
+ "chart-column-stacked",
333
+ "chart-gantt",
334
+ "chart-line",
335
+ "chart-network",
336
+ "chart-no-axes-column",
337
+ "chart-no-axes-column-decreasing",
338
+ "chart-no-axes-column-increasing",
339
+ "chart-no-axes-combined",
340
+ "chart-no-axes-gantt",
341
+ "chart-pie",
342
+ "chart-scatter",
343
+ "chart-spline",
344
+ "check",
345
+ "check-check",
346
+ "check-line",
347
+ "chef-hat",
348
+ "cherry",
349
+ "chess-bishop",
350
+ "chess-king",
351
+ "chess-knight",
352
+ "chess-pawn",
353
+ "chess-queen",
354
+ "chess-rook",
355
+ "chevron-down",
356
+ "chevron-first",
357
+ "chevron-last",
358
+ "chevron-left",
359
+ "chevron-right",
360
+ "chevron-up",
361
+ "chevrons-down",
362
+ "chevrons-down-up",
363
+ "chevrons-left",
364
+ "chevrons-left-right",
365
+ "chevrons-left-right-ellipsis",
366
+ "chevrons-right",
367
+ "chevrons-right-left",
368
+ "chevrons-up",
369
+ "chevrons-up-down",
370
+ "church",
371
+ "cigarette",
372
+ "cigarette-off",
373
+ "circle",
374
+ "circle-alert",
375
+ "circle-arrow-down",
376
+ "circle-arrow-left",
377
+ "circle-arrow-out-down-left",
378
+ "circle-arrow-out-down-right",
379
+ "circle-arrow-out-up-left",
380
+ "circle-arrow-out-up-right",
381
+ "circle-arrow-right",
382
+ "circle-arrow-up",
383
+ "circle-check",
384
+ "circle-check-big",
385
+ "circle-chevron-down",
386
+ "circle-chevron-left",
387
+ "circle-chevron-right",
388
+ "circle-chevron-up",
389
+ "circle-dashed",
390
+ "circle-divide",
391
+ "circle-dollar-sign",
392
+ "circle-dot",
393
+ "circle-dot-dashed",
394
+ "circle-ellipsis",
395
+ "circle-equal",
396
+ "circle-euro",
397
+ "circle-fading-arrow-up",
398
+ "circle-fading-plus",
399
+ "circle-gauge",
400
+ "circle-minus",
401
+ "circle-off",
402
+ "circle-parking",
403
+ "circle-parking-off",
404
+ "circle-pause",
405
+ "circle-percent",
406
+ "circle-pile",
407
+ "circle-play",
408
+ "circle-plus",
409
+ "circle-pound-sterling",
410
+ "circle-power",
411
+ "circle-question-mark",
412
+ "circle-slash",
413
+ "circle-slash-2",
414
+ "circle-small",
415
+ "circle-star",
416
+ "circle-stop",
417
+ "circle-user",
418
+ "circle-user-round",
419
+ "circle-x",
420
+ "circuit-board",
421
+ "citrus",
422
+ "clapperboard",
423
+ "clipboard",
424
+ "clipboard-check",
425
+ "clipboard-clock",
426
+ "clipboard-copy",
427
+ "clipboard-list",
428
+ "clipboard-minus",
429
+ "clipboard-paste",
430
+ "clipboard-pen",
431
+ "clipboard-pen-line",
432
+ "clipboard-plus",
433
+ "clipboard-type",
434
+ "clipboard-x",
435
+ "clock",
436
+ "clock-1",
437
+ "clock-10",
438
+ "clock-11",
439
+ "clock-12",
440
+ "clock-2",
441
+ "clock-3",
442
+ "clock-4",
443
+ "clock-5",
444
+ "clock-6",
445
+ "clock-7",
446
+ "clock-8",
447
+ "clock-9",
448
+ "clock-alert",
449
+ "clock-arrow-down",
450
+ "clock-arrow-left",
451
+ "clock-arrow-right",
452
+ "clock-arrow-up",
453
+ "clock-check",
454
+ "clock-fading",
455
+ "clock-plus",
456
+ "closed-caption",
457
+ "cloud",
458
+ "cloud-alert",
459
+ "cloud-backup",
460
+ "cloud-check",
461
+ "cloud-cog",
462
+ "cloud-download",
463
+ "cloud-drizzle",
464
+ "cloud-fog",
465
+ "cloud-hail",
466
+ "cloud-lightning",
467
+ "cloud-moon",
468
+ "cloud-moon-rain",
469
+ "cloud-off",
470
+ "cloud-rain",
471
+ "cloud-rain-wind",
472
+ "cloud-snow",
473
+ "cloud-sun",
474
+ "cloud-sun-rain",
475
+ "cloud-sync",
476
+ "cloud-upload",
477
+ "cloudy",
478
+ "clover",
479
+ "club",
480
+ "code",
481
+ "code-xml",
482
+ "coffee",
483
+ "cog",
484
+ "coins",
485
+ "columns-2",
486
+ "columns-3",
487
+ "columns-3-cog",
488
+ "columns-4",
489
+ "combine",
490
+ "command",
491
+ "compass",
492
+ "component",
493
+ "computer",
494
+ "concierge-bell",
495
+ "cone",
496
+ "construction",
497
+ "contact",
498
+ "contact-round",
499
+ "container",
500
+ "contrast",
501
+ "cookie",
502
+ "cooking-pot",
503
+ "copy",
504
+ "copy-check",
505
+ "copy-minus",
506
+ "copy-plus",
507
+ "copy-slash",
508
+ "copy-x",
509
+ "copyleft",
510
+ "copyright",
511
+ "corner-down-left",
512
+ "corner-down-right",
513
+ "corner-left-down",
514
+ "corner-left-up",
515
+ "corner-right-down",
516
+ "corner-right-up",
517
+ "corner-up-left",
518
+ "corner-up-right",
519
+ "cpu",
520
+ "creative-commons",
521
+ "credit-card",
522
+ "credit-card-check",
523
+ "credit-card-minus",
524
+ "credit-card-plus",
525
+ "credit-card-reader",
526
+ "credit-card-x",
527
+ "croissant",
528
+ "crop",
529
+ "cross",
530
+ "crosshair",
531
+ "crown",
532
+ "cuboid",
533
+ "cup-soda",
534
+ "currency",
535
+ "cylinder",
536
+ "dam",
537
+ "database",
538
+ "database-arrow-down",
539
+ "database-arrow-up",
540
+ "database-backup",
541
+ "database-check",
542
+ "database-minus",
543
+ "database-plus",
544
+ "database-search",
545
+ "database-x",
546
+ "database-zap",
547
+ "decimals-arrow-left",
548
+ "decimals-arrow-right",
549
+ "delete",
550
+ "dessert",
551
+ "diameter",
552
+ "diamond",
553
+ "diamond-minus",
554
+ "diamond-percent",
555
+ "diamond-plus",
556
+ "dice-1",
557
+ "dice-2",
558
+ "dice-3",
559
+ "dice-4",
560
+ "dice-5",
561
+ "dice-6",
562
+ "dices",
563
+ "diff",
564
+ "disc",
565
+ "disc-2",
566
+ "disc-3",
567
+ "disc-album",
568
+ "divide",
569
+ "dna",
570
+ "dna-off",
571
+ "dock",
572
+ "dog",
573
+ "dollar-sign",
574
+ "donut",
575
+ "door-closed",
576
+ "door-closed-locked",
577
+ "door-open",
578
+ "door-stairwell",
579
+ "dot",
580
+ "download",
581
+ "drafting-compass",
582
+ "drama",
583
+ "drill",
584
+ "drone",
585
+ "droplet",
586
+ "droplet-off",
587
+ "droplets",
588
+ "drum",
589
+ "drumstick",
590
+ "dumbbell",
591
+ "ear",
592
+ "ear-off",
593
+ "earth",
594
+ "earth-lock",
595
+ "eclipse",
596
+ "egg",
597
+ "egg-fried",
598
+ "egg-off",
599
+ "eject",
600
+ "ellipse",
601
+ "ellipsis",
602
+ "ellipsis-vertical",
603
+ "engine",
604
+ "equal",
605
+ "equal-approximately",
606
+ "equal-not",
607
+ "eraser",
608
+ "ethernet-port",
609
+ "euro",
610
+ "ev-charger",
611
+ "expand",
612
+ "external-link",
613
+ "eye",
614
+ "eye-closed",
615
+ "eye-dashed",
616
+ "eye-off",
617
+ "face-angry",
618
+ "face-expressionless",
619
+ "face-grinning",
620
+ "face-neutral",
621
+ "face-slightly-frowning",
622
+ "face-slightly-smiling",
623
+ "face-slightly-smiling-plus",
624
+ "factory",
625
+ "fan",
626
+ "fast-forward",
627
+ "feather",
628
+ "fence",
629
+ "ferris-wheel",
630
+ "file",
631
+ "file-archive",
632
+ "file-axis-3d",
633
+ "file-badge",
634
+ "file-box",
635
+ "file-braces",
636
+ "file-braces-corner",
637
+ "file-chart-column",
638
+ "file-chart-column-increasing",
639
+ "file-chart-line",
640
+ "file-chart-pie",
641
+ "file-check",
642
+ "file-check-corner",
643
+ "file-clock",
644
+ "file-code",
645
+ "file-code-corner",
646
+ "file-cog",
647
+ "file-diff",
648
+ "file-digit",
649
+ "file-down",
650
+ "file-exclamation-point",
651
+ "file-headphone",
652
+ "file-heart",
653
+ "file-image",
654
+ "file-input",
655
+ "file-key",
656
+ "file-lock",
657
+ "file-minus",
658
+ "file-minus-corner",
659
+ "file-music",
660
+ "file-output",
661
+ "file-pen",
662
+ "file-pen-line",
663
+ "file-play",
664
+ "file-plus",
665
+ "file-plus-corner",
666
+ "file-question-mark",
667
+ "file-scan",
668
+ "file-search",
669
+ "file-search-corner",
670
+ "file-signal",
671
+ "file-sliders",
672
+ "file-spreadsheet",
673
+ "file-stack",
674
+ "file-symlink",
675
+ "file-terminal",
676
+ "file-text",
677
+ "file-type",
678
+ "file-type-corner",
679
+ "file-up",
680
+ "file-user",
681
+ "file-video-camera",
682
+ "file-volume",
683
+ "file-x",
684
+ "file-x-corner",
685
+ "files",
686
+ "film",
687
+ "fingerprint-pattern",
688
+ "fire-extinguisher",
689
+ "fish",
690
+ "fish-off",
691
+ "fish-symbol",
692
+ "fishing-hook",
693
+ "fishing-rod",
694
+ "flag",
695
+ "flag-off",
696
+ "flag-triangle-left",
697
+ "flag-triangle-right",
698
+ "flame",
699
+ "flame-kindling",
700
+ "flashlight",
701
+ "flashlight-off",
702
+ "flask-conical",
703
+ "flask-conical-off",
704
+ "flask-round",
705
+ "flip-horizontal-2",
706
+ "flip-vertical-2",
707
+ "flower",
708
+ "flower-2",
709
+ "focus",
710
+ "fold-horizontal",
711
+ "fold-vertical",
712
+ "folder",
713
+ "folder-archive",
714
+ "folder-bookmark",
715
+ "folder-check",
716
+ "folder-clock",
717
+ "folder-closed",
718
+ "folder-code",
719
+ "folder-cog",
720
+ "folder-dot",
721
+ "folder-down",
722
+ "folder-git",
723
+ "folder-git-2",
724
+ "folder-heart",
725
+ "folder-input",
726
+ "folder-kanban",
727
+ "folder-key",
728
+ "folder-lock",
729
+ "folder-minus",
730
+ "folder-open",
731
+ "folder-open-dot",
732
+ "folder-output",
733
+ "folder-pen",
734
+ "folder-plus",
735
+ "folder-root",
736
+ "folder-search",
737
+ "folder-search-2",
738
+ "folder-symlink",
739
+ "folder-sync",
740
+ "folder-tree",
741
+ "folder-up",
742
+ "folder-x",
743
+ "folders",
744
+ "footprints",
745
+ "forklift",
746
+ "form",
747
+ "forward",
748
+ "frame",
749
+ "fuel",
750
+ "fullscreen",
751
+ "funnel",
752
+ "funnel-plus",
753
+ "funnel-x",
754
+ "galaxy",
755
+ "gallery-horizontal",
756
+ "gallery-horizontal-end",
757
+ "gallery-thumbnails",
758
+ "gallery-vertical",
759
+ "gallery-vertical-end",
760
+ "gamepad",
761
+ "gamepad-2",
762
+ "gamepad-directional",
763
+ "gauge",
764
+ "gavel",
765
+ "gem",
766
+ "georgian-lari",
767
+ "germ",
768
+ "germ-off",
769
+ "ghost",
770
+ "gift",
771
+ "git-branch",
772
+ "git-branch-minus",
773
+ "git-branch-plus",
774
+ "git-commit-horizontal",
775
+ "git-commit-vertical",
776
+ "git-compare",
777
+ "git-compare-arrows",
778
+ "git-fork",
779
+ "git-graph",
780
+ "git-merge",
781
+ "git-merge-conflict",
782
+ "git-pull-request",
783
+ "git-pull-request-arrow",
784
+ "git-pull-request-closed",
785
+ "git-pull-request-create",
786
+ "git-pull-request-create-arrow",
787
+ "git-pull-request-draft",
788
+ "glass-water",
789
+ "glasses",
790
+ "globe",
791
+ "globe-check",
792
+ "globe-lock",
793
+ "globe-off",
794
+ "globe-x",
795
+ "goal",
796
+ "gpu",
797
+ "graduation-cap",
798
+ "grape",
799
+ "grid-2x2",
800
+ "grid-2x2-check",
801
+ "grid-2x2-plus",
802
+ "grid-2x2-x",
803
+ "grid-3x2",
804
+ "grid-3x3",
805
+ "grip",
806
+ "grip-horizontal",
807
+ "grip-vertical",
808
+ "group",
809
+ "guitar",
810
+ "ham",
811
+ "hamburger",
812
+ "hammer",
813
+ "hand",
814
+ "hand-coins",
815
+ "hand-fist",
816
+ "hand-grab",
817
+ "hand-heart",
818
+ "hand-helping",
819
+ "hand-metal",
820
+ "hand-platter",
821
+ "handbag",
822
+ "handshake",
823
+ "hard-drive",
824
+ "hard-drive-download",
825
+ "hard-drive-upload",
826
+ "hard-hat",
827
+ "hash",
828
+ "hat-glasses",
829
+ "haze",
830
+ "hd",
831
+ "hdmi-port",
832
+ "heading",
833
+ "heading-1",
834
+ "heading-2",
835
+ "heading-3",
836
+ "heading-4",
837
+ "heading-5",
838
+ "heading-6",
839
+ "headphone-off",
840
+ "headphones",
841
+ "headset",
842
+ "heart",
843
+ "heart-crack",
844
+ "heart-handshake",
845
+ "heart-minus",
846
+ "heart-off",
847
+ "heart-plus",
848
+ "heart-pulse",
849
+ "heart-x",
850
+ "heater",
851
+ "helicopter",
852
+ "hexagon",
853
+ "highlighter",
854
+ "hop",
855
+ "hop-off",
856
+ "hospital",
857
+ "hotel",
858
+ "hourglass",
859
+ "house",
860
+ "house-heart",
861
+ "house-plug",
862
+ "house-plus",
863
+ "house-wifi",
864
+ "ice-cream-bowl",
865
+ "ice-cream-cone",
866
+ "id-card",
867
+ "id-card-lanyard",
868
+ "image",
869
+ "image-down",
870
+ "image-minus",
871
+ "image-off",
872
+ "image-play",
873
+ "image-plus",
874
+ "image-up",
875
+ "image-upscale",
876
+ "images",
877
+ "import",
878
+ "inbox",
879
+ "indian-rupee",
880
+ "infinity",
881
+ "info",
882
+ "inspection-panel",
883
+ "italic",
884
+ "iteration-ccw",
885
+ "iteration-cw",
886
+ "japanese-yen",
887
+ "joystick",
888
+ "kanban",
889
+ "kayak",
890
+ "key",
891
+ "key-round",
892
+ "key-square",
893
+ "keyboard",
894
+ "keyboard-music",
895
+ "keyboard-off",
896
+ "lamp",
897
+ "lamp-ceiling",
898
+ "lamp-desk",
899
+ "lamp-floor",
900
+ "lamp-wall-down",
901
+ "lamp-wall-up",
902
+ "land-plot",
903
+ "landmark",
904
+ "languages",
905
+ "laptop",
906
+ "laptop-minimal",
907
+ "laptop-minimal-check",
908
+ "lasso",
909
+ "lasso-select",
910
+ "layer-arrow-down",
911
+ "layer-arrow-up",
912
+ "layers",
913
+ "layers-2",
914
+ "layers-arrow-down",
915
+ "layers-arrow-up",
916
+ "layers-minus",
917
+ "layers-plus",
918
+ "layout-dashboard",
919
+ "layout-freeform",
920
+ "layout-grid",
921
+ "layout-list",
922
+ "layout-panel-left",
923
+ "layout-panel-top",
924
+ "layout-template",
925
+ "leaf",
926
+ "leafy-green",
927
+ "lectern",
928
+ "lens-concave",
929
+ "lens-convex",
930
+ "library",
931
+ "library-big",
932
+ "life-buoy",
933
+ "ligature",
934
+ "lightbulb",
935
+ "lightbulb-off",
936
+ "lighthouse",
937
+ "line-dot-right-horizontal",
938
+ "line-squiggle",
939
+ "line-style",
940
+ "link",
941
+ "link-2",
942
+ "link-2-off",
943
+ "list",
944
+ "list-check",
945
+ "list-checks",
946
+ "list-chevrons-down-up",
947
+ "list-chevrons-up-down",
948
+ "list-clock",
949
+ "list-collapse",
950
+ "list-end",
951
+ "list-filter",
952
+ "list-filter-plus",
953
+ "list-indent-decrease",
954
+ "list-indent-increase",
955
+ "list-minus",
956
+ "list-music",
957
+ "list-ordered",
958
+ "list-plus",
959
+ "list-restart",
960
+ "list-sort-ascending",
961
+ "list-sort-descending",
962
+ "list-start",
963
+ "list-todo",
964
+ "list-tree",
965
+ "list-video",
966
+ "list-x",
967
+ "loader",
968
+ "loader-circle",
969
+ "loader-pinwheel",
970
+ "locate",
971
+ "locate-fixed",
972
+ "locate-off",
973
+ "lock",
974
+ "lock-keyhole",
975
+ "lock-keyhole-open",
976
+ "lock-open",
977
+ "log-in",
978
+ "log-out",
979
+ "logs",
980
+ "lollipop",
981
+ "luggage",
982
+ "magnet",
983
+ "mail",
984
+ "mail-badge",
985
+ "mail-check",
986
+ "mail-clock",
987
+ "mail-minus",
988
+ "mail-open",
989
+ "mail-pen",
990
+ "mail-plus",
991
+ "mail-question-mark",
992
+ "mail-search",
993
+ "mail-warning",
994
+ "mail-x",
995
+ "mailbox",
996
+ "mails",
997
+ "map",
998
+ "map-minus",
999
+ "map-pin",
1000
+ "map-pin-check",
1001
+ "map-pin-check-inside",
1002
+ "map-pin-house",
1003
+ "map-pin-minus",
1004
+ "map-pin-minus-inside",
1005
+ "map-pin-off",
1006
+ "map-pin-pen",
1007
+ "map-pin-plus",
1008
+ "map-pin-plus-inside",
1009
+ "map-pin-search",
1010
+ "map-pin-x",
1011
+ "map-pin-x-inside",
1012
+ "map-pinned",
1013
+ "map-plus",
1014
+ "mars",
1015
+ "mars-stroke",
1016
+ "martini",
1017
+ "maximize",
1018
+ "maximize-2",
1019
+ "medal",
1020
+ "megaphone",
1021
+ "megaphone-off",
1022
+ "memory-stick",
1023
+ "menu",
1024
+ "merge",
1025
+ "message-circle",
1026
+ "message-circle-check",
1027
+ "message-circle-code",
1028
+ "message-circle-dashed",
1029
+ "message-circle-dashed-check",
1030
+ "message-circle-heart",
1031
+ "message-circle-more",
1032
+ "message-circle-off",
1033
+ "message-circle-plus",
1034
+ "message-circle-question-mark",
1035
+ "message-circle-reply",
1036
+ "message-circle-warning",
1037
+ "message-circle-x",
1038
+ "message-square",
1039
+ "message-square-check",
1040
+ "message-square-code",
1041
+ "message-square-dashed",
1042
+ "message-square-diff",
1043
+ "message-square-dot",
1044
+ "message-square-heart",
1045
+ "message-square-lock",
1046
+ "message-square-more",
1047
+ "message-square-off",
1048
+ "message-square-plus",
1049
+ "message-square-quote",
1050
+ "message-square-reply",
1051
+ "message-square-share",
1052
+ "message-square-text",
1053
+ "message-square-warning",
1054
+ "message-square-x",
1055
+ "messages-square",
1056
+ "metronome",
1057
+ "mic",
1058
+ "mic-audio-lines",
1059
+ "mic-off",
1060
+ "mic-signal",
1061
+ "mic-vocal",
1062
+ "microchip",
1063
+ "microscope",
1064
+ "microwave",
1065
+ "midi-port",
1066
+ "milestone",
1067
+ "milk",
1068
+ "milk-off",
1069
+ "minimize",
1070
+ "minimize-2",
1071
+ "minus",
1072
+ "mirror-rectangular",
1073
+ "mirror-round",
1074
+ "monitor",
1075
+ "monitor-check",
1076
+ "monitor-cloud",
1077
+ "monitor-cog",
1078
+ "monitor-dot",
1079
+ "monitor-down",
1080
+ "monitor-off",
1081
+ "monitor-pause",
1082
+ "monitor-play",
1083
+ "monitor-smartphone",
1084
+ "monitor-speaker",
1085
+ "monitor-stop",
1086
+ "monitor-up",
1087
+ "monitor-x",
1088
+ "moon",
1089
+ "moon-star",
1090
+ "mop",
1091
+ "mop-sparkles",
1092
+ "mosque",
1093
+ "motorbike",
1094
+ "mountain",
1095
+ "mountain-snow",
1096
+ "mouse",
1097
+ "mouse-left",
1098
+ "mouse-off",
1099
+ "mouse-pointer",
1100
+ "mouse-pointer-2",
1101
+ "mouse-pointer-2-off",
1102
+ "mouse-pointer-ban",
1103
+ "mouse-pointer-click",
1104
+ "mouse-right",
1105
+ "move",
1106
+ "move-3d",
1107
+ "move-diagonal",
1108
+ "move-diagonal-2",
1109
+ "move-down",
1110
+ "move-down-left",
1111
+ "move-down-right",
1112
+ "move-horizontal",
1113
+ "move-left",
1114
+ "move-right",
1115
+ "move-up",
1116
+ "move-up-left",
1117
+ "move-up-right",
1118
+ "move-vertical",
1119
+ "music",
1120
+ "music-2",
1121
+ "music-3",
1122
+ "music-4",
1123
+ "navigation",
1124
+ "navigation-2",
1125
+ "navigation-2-off",
1126
+ "navigation-off",
1127
+ "network",
1128
+ "newspaper",
1129
+ "nfc",
1130
+ "non-binary",
1131
+ "notebook",
1132
+ "notebook-pen",
1133
+ "notebook-tabs",
1134
+ "notebook-text",
1135
+ "notepad-text",
1136
+ "notepad-text-dashed",
1137
+ "nut",
1138
+ "nut-off",
1139
+ "octagon",
1140
+ "octagon-alert",
1141
+ "octagon-minus",
1142
+ "octagon-pause",
1143
+ "octagon-x",
1144
+ "omega",
1145
+ "option",
1146
+ "orbit",
1147
+ "origami",
1148
+ "package",
1149
+ "package-2",
1150
+ "package-check",
1151
+ "package-minus",
1152
+ "package-open",
1153
+ "package-plus",
1154
+ "package-search",
1155
+ "package-x",
1156
+ "paint-bucket",
1157
+ "paint-roller",
1158
+ "paintbrush",
1159
+ "paintbrush-vertical",
1160
+ "palette",
1161
+ "panda",
1162
+ "panel-bottom",
1163
+ "panel-bottom-close",
1164
+ "panel-bottom-dashed",
1165
+ "panel-bottom-open",
1166
+ "panel-left",
1167
+ "panel-left-close",
1168
+ "panel-left-dashed",
1169
+ "panel-left-open",
1170
+ "panel-left-right-dashed",
1171
+ "panel-right",
1172
+ "panel-right-close",
1173
+ "panel-right-dashed",
1174
+ "panel-right-open",
1175
+ "panel-top",
1176
+ "panel-top-bottom-dashed",
1177
+ "panel-top-close",
1178
+ "panel-top-dashed",
1179
+ "panel-top-open",
1180
+ "panels-left-bottom",
1181
+ "panels-right-bottom",
1182
+ "panels-top-left",
1183
+ "paper-bag",
1184
+ "paperclip",
1185
+ "parasol",
1186
+ "parentheses",
1187
+ "parking-meter",
1188
+ "party-popper",
1189
+ "pause",
1190
+ "paw-print",
1191
+ "pc-case",
1192
+ "pen",
1193
+ "pen-line",
1194
+ "pen-off",
1195
+ "pen-tool",
1196
+ "pencil",
1197
+ "pencil-line",
1198
+ "pencil-off",
1199
+ "pencil-ruler",
1200
+ "pencil-sparkles",
1201
+ "pentagon",
1202
+ "percent",
1203
+ "person-standing",
1204
+ "phi",
1205
+ "philippine-peso",
1206
+ "phone",
1207
+ "phone-call",
1208
+ "phone-forwarded",
1209
+ "phone-incoming",
1210
+ "phone-missed",
1211
+ "phone-off",
1212
+ "phone-outgoing",
1213
+ "pi",
1214
+ "piano",
1215
+ "pickaxe",
1216
+ "picture-in-picture",
1217
+ "picture-in-picture-2",
1218
+ "piggy-bank",
1219
+ "pilcrow",
1220
+ "pilcrow-left",
1221
+ "pilcrow-right",
1222
+ "pill",
1223
+ "pill-bottle",
1224
+ "pin",
1225
+ "pin-off",
1226
+ "pipette",
1227
+ "pizza",
1228
+ "plane",
1229
+ "plane-landing",
1230
+ "plane-takeoff",
1231
+ "play",
1232
+ "play-off",
1233
+ "playing-card",
1234
+ "playing-cards",
1235
+ "playing-cards-fan",
1236
+ "plug",
1237
+ "plug-2",
1238
+ "plug-zap",
1239
+ "plus",
1240
+ "pocket-knife",
1241
+ "podium",
1242
+ "pointer",
1243
+ "pointer-off",
1244
+ "popcorn",
1245
+ "popsicle",
1246
+ "pound-sterling",
1247
+ "power",
1248
+ "power-off",
1249
+ "presentation",
1250
+ "printer",
1251
+ "printer-check",
1252
+ "printer-x",
1253
+ "projector",
1254
+ "proportions",
1255
+ "puzzle",
1256
+ "pyramid",
1257
+ "qr-code",
1258
+ "quote",
1259
+ "rabbit",
1260
+ "radar",
1261
+ "radiation",
1262
+ "radical",
1263
+ "radio",
1264
+ "radio-off",
1265
+ "radio-receiver",
1266
+ "radio-tower",
1267
+ "radius",
1268
+ "rainbow",
1269
+ "rat",
1270
+ "ratio",
1271
+ "receipt",
1272
+ "receipt-cent",
1273
+ "receipt-euro",
1274
+ "receipt-indian-rupee",
1275
+ "receipt-japanese-yen",
1276
+ "receipt-pound-sterling",
1277
+ "receipt-russian-ruble",
1278
+ "receipt-swiss-franc",
1279
+ "receipt-text",
1280
+ "receipt-turkish-lira",
1281
+ "rectangle-circle",
1282
+ "rectangle-ellipsis",
1283
+ "rectangle-goggles",
1284
+ "rectangle-horizontal",
1285
+ "rectangle-vertical",
1286
+ "recycle",
1287
+ "redo",
1288
+ "redo-2",
1289
+ "redo-dot",
1290
+ "refresh-ccw",
1291
+ "refresh-ccw-dot",
1292
+ "refresh-cw",
1293
+ "refresh-cw-off",
1294
+ "refrigerator",
1295
+ "regex",
1296
+ "remove-formatting",
1297
+ "repeat",
1298
+ "repeat-1",
1299
+ "repeat-2",
1300
+ "repeat-off",
1301
+ "replace",
1302
+ "replace-all",
1303
+ "reply",
1304
+ "reply-all",
1305
+ "rewind",
1306
+ "ribbon",
1307
+ "road",
1308
+ "robot-arm",
1309
+ "robot-vacuum",
1310
+ "rocket",
1311
+ "rocking-chair",
1312
+ "roller-coaster",
1313
+ "rose",
1314
+ "rotate-3d",
1315
+ "rotate-ccw",
1316
+ "rotate-ccw-clock",
1317
+ "rotate-ccw-key",
1318
+ "rotate-ccw-square",
1319
+ "rotate-cw",
1320
+ "rotate-cw-fading-clock",
1321
+ "rotate-cw-square",
1322
+ "route",
1323
+ "route-off",
1324
+ "router",
1325
+ "rows-2",
1326
+ "rows-3",
1327
+ "rows-4",
1328
+ "rss",
1329
+ "ruler",
1330
+ "ruler-dimension-line",
1331
+ "russian-ruble",
1332
+ "sailboat",
1333
+ "salad",
1334
+ "sandwich",
1335
+ "satellite",
1336
+ "satellite-dish",
1337
+ "saudi-riyal",
1338
+ "save",
1339
+ "save-all",
1340
+ "save-check",
1341
+ "save-off",
1342
+ "save-pen",
1343
+ "save-plus",
1344
+ "scale",
1345
+ "scale-3d",
1346
+ "scaling",
1347
+ "scan",
1348
+ "scan-barcode",
1349
+ "scan-box",
1350
+ "scan-eye",
1351
+ "scan-face",
1352
+ "scan-heart",
1353
+ "scan-line",
1354
+ "scan-qr-code",
1355
+ "scan-search",
1356
+ "scan-square",
1357
+ "scan-text",
1358
+ "school",
1359
+ "scissors",
1360
+ "scissors-line-dashed",
1361
+ "scooter",
1362
+ "screen-share",
1363
+ "screen-share-off",
1364
+ "scroll",
1365
+ "scroll-text",
1366
+ "search",
1367
+ "search-alert",
1368
+ "search-check",
1369
+ "search-code",
1370
+ "search-slash",
1371
+ "search-x",
1372
+ "section",
1373
+ "send",
1374
+ "send-horizontal",
1375
+ "send-to-back",
1376
+ "separator-horizontal",
1377
+ "separator-vertical",
1378
+ "server",
1379
+ "server-cog",
1380
+ "server-crash",
1381
+ "server-off",
1382
+ "server-plus",
1383
+ "settings",
1384
+ "settings-2",
1385
+ "shapes",
1386
+ "share",
1387
+ "share-2",
1388
+ "sheet",
1389
+ "shell",
1390
+ "shelving-unit",
1391
+ "shield",
1392
+ "shield-alert",
1393
+ "shield-ban",
1394
+ "shield-check",
1395
+ "shield-cog",
1396
+ "shield-cog-corner",
1397
+ "shield-ellipsis",
1398
+ "shield-half",
1399
+ "shield-keyhole",
1400
+ "shield-lock",
1401
+ "shield-minus",
1402
+ "shield-off",
1403
+ "shield-plus",
1404
+ "shield-question-mark",
1405
+ "shield-user",
1406
+ "shield-x",
1407
+ "ship",
1408
+ "ship-cargo",
1409
+ "ship-wheel",
1410
+ "shirt",
1411
+ "shopping-bag",
1412
+ "shopping-basket",
1413
+ "shopping-cart",
1414
+ "shopping-cart-minus",
1415
+ "shopping-cart-plus",
1416
+ "shovel",
1417
+ "shower-head",
1418
+ "shredder",
1419
+ "shrimp",
1420
+ "shrimp-off",
1421
+ "shrink",
1422
+ "shrub",
1423
+ "shuffle",
1424
+ "sigma",
1425
+ "signal",
1426
+ "signal-high",
1427
+ "signal-low",
1428
+ "signal-medium",
1429
+ "signal-zero",
1430
+ "signature",
1431
+ "signpost",
1432
+ "signpost-big",
1433
+ "siren",
1434
+ "skip-back",
1435
+ "skip-forward",
1436
+ "skull",
1437
+ "slash",
1438
+ "slice",
1439
+ "sliders-horizontal",
1440
+ "sliders-vertical",
1441
+ "smartphone",
1442
+ "smartphone-charging",
1443
+ "smartphone-nfc",
1444
+ "snail",
1445
+ "snowflake",
1446
+ "soap-dispenser-droplet",
1447
+ "sofa",
1448
+ "solar-panel",
1449
+ "soup",
1450
+ "space",
1451
+ "spade",
1452
+ "sparkle",
1453
+ "sparkles",
1454
+ "speaker",
1455
+ "speech",
1456
+ "spell-check",
1457
+ "spell-check-2",
1458
+ "spline",
1459
+ "spline-pointer",
1460
+ "split",
1461
+ "spool",
1462
+ "sport-shoe",
1463
+ "spotlight",
1464
+ "spray-can",
1465
+ "sprout",
1466
+ "square",
1467
+ "square-activity",
1468
+ "square-arrow-down",
1469
+ "square-arrow-down-left",
1470
+ "square-arrow-down-right",
1471
+ "square-arrow-left",
1472
+ "square-arrow-out-down-left",
1473
+ "square-arrow-out-down-right",
1474
+ "square-arrow-out-up-left",
1475
+ "square-arrow-out-up-right",
1476
+ "square-arrow-right",
1477
+ "square-arrow-right-enter",
1478
+ "square-arrow-right-exit",
1479
+ "square-arrow-up",
1480
+ "square-arrow-up-left",
1481
+ "square-arrow-up-right",
1482
+ "square-asterisk",
1483
+ "square-bottom-dashed-scissors",
1484
+ "square-centerline-dashed-horizontal",
1485
+ "square-centerline-dashed-vertical",
1486
+ "square-chart-gantt",
1487
+ "square-check",
1488
+ "square-check-big",
1489
+ "square-chevron-down",
1490
+ "square-chevron-left",
1491
+ "square-chevron-right",
1492
+ "square-chevron-up",
1493
+ "square-code",
1494
+ "square-dashed",
1495
+ "square-dashed-bottom",
1496
+ "square-dashed-bottom-code",
1497
+ "square-dashed-kanban",
1498
+ "square-dashed-mouse-pointer",
1499
+ "square-dashed-text",
1500
+ "square-dashed-top-solid",
1501
+ "square-dimensions",
1502
+ "square-divide",
1503
+ "square-dot",
1504
+ "square-equal",
1505
+ "square-exclamation-point",
1506
+ "square-function",
1507
+ "square-kanban",
1508
+ "square-library",
1509
+ "square-m",
1510
+ "square-menu",
1511
+ "square-minus",
1512
+ "square-mouse-pointer",
1513
+ "square-off",
1514
+ "square-parking",
1515
+ "square-parking-off",
1516
+ "square-pause",
1517
+ "square-pen",
1518
+ "square-percent",
1519
+ "square-pi",
1520
+ "square-pilcrow",
1521
+ "square-play",
1522
+ "square-plus",
1523
+ "square-power",
1524
+ "square-radical",
1525
+ "square-round-corner",
1526
+ "square-scissors",
1527
+ "square-sigma",
1528
+ "square-slash",
1529
+ "square-split-horizontal",
1530
+ "square-split-vertical",
1531
+ "square-square",
1532
+ "square-stack",
1533
+ "square-star",
1534
+ "square-stop",
1535
+ "square-terminal",
1536
+ "square-text",
1537
+ "square-user",
1538
+ "square-user-round",
1539
+ "square-x",
1540
+ "squares-exclude",
1541
+ "squares-intersect",
1542
+ "squares-subtract",
1543
+ "squares-unite",
1544
+ "squircle",
1545
+ "squircle-dashed",
1546
+ "squirrel",
1547
+ "stamp",
1548
+ "star",
1549
+ "star-check",
1550
+ "star-half",
1551
+ "star-minus",
1552
+ "star-off",
1553
+ "star-plus",
1554
+ "star-x",
1555
+ "step-back",
1556
+ "step-forward",
1557
+ "stethoscope",
1558
+ "sticker",
1559
+ "sticky-note",
1560
+ "sticky-note-check",
1561
+ "sticky-note-minus",
1562
+ "sticky-note-off",
1563
+ "sticky-note-plus",
1564
+ "sticky-note-x",
1565
+ "sticky-notes",
1566
+ "stone",
1567
+ "store",
1568
+ "stretch-horizontal",
1569
+ "stretch-vertical",
1570
+ "strikethrough",
1571
+ "subscript",
1572
+ "summary",
1573
+ "sun",
1574
+ "sun-dim",
1575
+ "sun-medium",
1576
+ "sun-moon",
1577
+ "sun-snow",
1578
+ "sunrise",
1579
+ "sunset",
1580
+ "superscript",
1581
+ "swatch-book",
1582
+ "swiss-franc",
1583
+ "switch-camera",
1584
+ "sword",
1585
+ "swords",
1586
+ "syringe",
1587
+ "table",
1588
+ "table-2",
1589
+ "table-cells-merge",
1590
+ "table-cells-split",
1591
+ "table-columns-split",
1592
+ "table-of-contents",
1593
+ "table-properties",
1594
+ "table-rows-split",
1595
+ "tablet",
1596
+ "tablet-smartphone",
1597
+ "tablets",
1598
+ "tag",
1599
+ "tag-plus",
1600
+ "tag-x",
1601
+ "tags",
1602
+ "tally-1",
1603
+ "tally-2",
1604
+ "tally-3",
1605
+ "tally-4",
1606
+ "tally-5",
1607
+ "tangent",
1608
+ "target",
1609
+ "telescope",
1610
+ "tent",
1611
+ "tent-tree",
1612
+ "terminal",
1613
+ "test-tube",
1614
+ "test-tube-diagonal",
1615
+ "test-tubes",
1616
+ "text-align-center",
1617
+ "text-align-end",
1618
+ "text-align-justify",
1619
+ "text-align-start",
1620
+ "text-cursor",
1621
+ "text-cursor-input",
1622
+ "text-initial",
1623
+ "text-quote",
1624
+ "text-search",
1625
+ "text-wrap",
1626
+ "theater",
1627
+ "thermometer",
1628
+ "thermometer-snowflake",
1629
+ "thermometer-sun",
1630
+ "thumbs-down",
1631
+ "thumbs-up",
1632
+ "ticket",
1633
+ "ticket-check",
1634
+ "ticket-minus",
1635
+ "ticket-percent",
1636
+ "ticket-plus",
1637
+ "ticket-slash",
1638
+ "ticket-x",
1639
+ "tickets",
1640
+ "tickets-plane",
1641
+ "timeline",
1642
+ "timer",
1643
+ "timer-off",
1644
+ "timer-reset",
1645
+ "toggle-left",
1646
+ "toggle-right",
1647
+ "toilet",
1648
+ "tool-case",
1649
+ "toolbox",
1650
+ "tornado",
1651
+ "torus",
1652
+ "touchpad",
1653
+ "touchpad-off",
1654
+ "towel-rack",
1655
+ "tower-control",
1656
+ "toy-brick",
1657
+ "tractor",
1658
+ "traffic-cone",
1659
+ "trailer",
1660
+ "train-front",
1661
+ "train-front-tunnel",
1662
+ "train-track",
1663
+ "tram-front",
1664
+ "transgender",
1665
+ "trash",
1666
+ "tree-deciduous",
1667
+ "tree-palm",
1668
+ "tree-pine",
1669
+ "trees",
1670
+ "trending-down",
1671
+ "trending-up",
1672
+ "trending-up-down",
1673
+ "triangle",
1674
+ "triangle-alert",
1675
+ "triangle-dashed",
1676
+ "triangle-right",
1677
+ "trophy",
1678
+ "truck",
1679
+ "truck-electric",
1680
+ "turkish-lira",
1681
+ "turntable",
1682
+ "turtle",
1683
+ "tv",
1684
+ "tv-minimal",
1685
+ "tv-minimal-play",
1686
+ "type",
1687
+ "type-outline",
1688
+ "umbrella",
1689
+ "umbrella-off",
1690
+ "underline",
1691
+ "undo",
1692
+ "undo-2",
1693
+ "undo-dot",
1694
+ "unfold-horizontal",
1695
+ "unfold-vertical",
1696
+ "ungroup",
1697
+ "university",
1698
+ "unlink",
1699
+ "unlink-2",
1700
+ "unplug",
1701
+ "upload",
1702
+ "usb",
1703
+ "usb-c-port",
1704
+ "user",
1705
+ "user-check",
1706
+ "user-cog",
1707
+ "user-key",
1708
+ "user-lock",
1709
+ "user-minus",
1710
+ "user-pen",
1711
+ "user-plus",
1712
+ "user-round",
1713
+ "user-round-arrow-left",
1714
+ "user-round-check",
1715
+ "user-round-cog",
1716
+ "user-round-key",
1717
+ "user-round-minus",
1718
+ "user-round-pen",
1719
+ "user-round-plus",
1720
+ "user-round-search",
1721
+ "user-round-x",
1722
+ "user-search",
1723
+ "user-shield",
1724
+ "user-star",
1725
+ "user-x",
1726
+ "users",
1727
+ "users-round",
1728
+ "utensils",
1729
+ "utensils-crossed",
1730
+ "utility-pole",
1731
+ "van",
1732
+ "variable",
1733
+ "vault",
1734
+ "vector-polygon",
1735
+ "vector-square",
1736
+ "vegan",
1737
+ "venetian-mask",
1738
+ "venus",
1739
+ "venus-and-mars",
1740
+ "vibrate",
1741
+ "vibrate-off",
1742
+ "video",
1743
+ "video-off",
1744
+ "videotape",
1745
+ "view",
1746
+ "virus",
1747
+ "virus-off",
1748
+ "voicemail",
1749
+ "volleyball",
1750
+ "volume",
1751
+ "volume-1",
1752
+ "volume-2",
1753
+ "volume-off",
1754
+ "volume-x",
1755
+ "vote",
1756
+ "wallet",
1757
+ "wallet-cards",
1758
+ "wallet-minimal",
1759
+ "wallpaper",
1760
+ "wand",
1761
+ "wand-sparkles",
1762
+ "warehouse",
1763
+ "washing-machine",
1764
+ "watch",
1765
+ "waves-arrow-down",
1766
+ "waves-arrow-up",
1767
+ "waves-horizontal",
1768
+ "waves-ladder",
1769
+ "waves-vertical",
1770
+ "waypoints",
1771
+ "webcam",
1772
+ "webcam-off",
1773
+ "webhook",
1774
+ "webhook-off",
1775
+ "weight",
1776
+ "weight-tilde",
1777
+ "wheat",
1778
+ "wheat-off",
1779
+ "whistle",
1780
+ "whole-word",
1781
+ "wifi",
1782
+ "wifi-cog",
1783
+ "wifi-high",
1784
+ "wifi-low",
1785
+ "wifi-off",
1786
+ "wifi-pen",
1787
+ "wifi-sync",
1788
+ "wifi-zero",
1789
+ "wind",
1790
+ "wind-arrow-down",
1791
+ "wine",
1792
+ "wine-off",
1793
+ "workflow",
1794
+ "worm",
1795
+ "wrench",
1796
+ "wrench-off",
1797
+ "x",
1798
+ "x-line-top",
1799
+ "zap",
1800
+ "zap-off",
1801
+ "zodiac-aquarius",
1802
+ "zodiac-aries",
1803
+ "zodiac-cancer",
1804
+ "zodiac-capricorn",
1805
+ "zodiac-gemini",
1806
+ "zodiac-leo",
1807
+ "zodiac-libra",
1808
+ "zodiac-ophiuchus",
1809
+ "zodiac-pisces",
1810
+ "zodiac-sagittarius",
1811
+ "zodiac-scorpio",
1812
+ "zodiac-taurus",
1813
+ "zodiac-virgo",
1814
+ "zoom-in",
1815
+ "zoom-out"
1816
+ ]
1817
+ };