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