@adminiumjs/ui 0.2.2-rc.0 → 0.2.3

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