@m5kdev/web-ui 0.1.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 (127) hide show
  1. package/LICENSE +621 -0
  2. package/README.md +17 -0
  3. package/package.json +169 -0
  4. package/src/animations/card.motion.ts +9 -0
  5. package/src/components/AvatarUpload.tsx +133 -0
  6. package/src/components/Button.tsx +14 -0
  7. package/src/components/Calendar.css +684 -0
  8. package/src/components/Calendar.tsx +32 -0
  9. package/src/components/CardsSelect.tsx +155 -0
  10. package/src/components/CollapsibleSidebarMenuItem.tsx +57 -0
  11. package/src/components/ColorPicker.tsx +56 -0
  12. package/src/components/CopyButton.tsx +45 -0
  13. package/src/components/CropDialog.tsx +154 -0
  14. package/src/components/DialogProvider.tsx +105 -0
  15. package/src/components/ErrorFallback.tsx +17 -0
  16. package/src/components/FileDropzone.tsx +120 -0
  17. package/src/components/MultiSelectDropdown.tsx +233 -0
  18. package/src/components/Orb.tsx +288 -0
  19. package/src/components/PageAlert.tsx +121 -0
  20. package/src/components/SelectChips.tsx +40 -0
  21. package/src/components/SidebarItem.tsx +26 -0
  22. package/src/components/Steps.tsx +340 -0
  23. package/src/components/TablerIconPicker.tsx +4260 -0
  24. package/src/components/app-header.tsx +40 -0
  25. package/src/components/blur-card.tsx +132 -0
  26. package/src/components/features-section-demo-1.tsx +127 -0
  27. package/src/components/features-section-demo-2.tsx +102 -0
  28. package/src/components/features-section-demo-3.tsx +272 -0
  29. package/src/components/mode-toggle.tsx +31 -0
  30. package/src/components/nav-main.tsx +69 -0
  31. package/src/components/pricing-cards.tsx +133 -0
  32. package/src/components/shared/ButtonCopy.tsx +50 -0
  33. package/src/components/team-switcher.tsx +83 -0
  34. package/src/components/theme-provider.tsx +74 -0
  35. package/src/components/typewriter.tsx +90 -0
  36. package/src/components/ui/alert-dialog.tsx +133 -0
  37. package/src/components/ui/alert.tsx +60 -0
  38. package/src/components/ui/avatar.tsx +47 -0
  39. package/src/components/ui/badge.tsx +33 -0
  40. package/src/components/ui/bento-grid.tsx +54 -0
  41. package/src/components/ui/bento-grid2.tsx +66 -0
  42. package/src/components/ui/breadcrumb.tsx +101 -0
  43. package/src/components/ui/button.tsx +50 -0
  44. package/src/components/ui/card.tsx +55 -0
  45. package/src/components/ui/checkbox.tsx +26 -0
  46. package/src/components/ui/collapsible.tsx +9 -0
  47. package/src/components/ui/dialog.tsx +119 -0
  48. package/src/components/ui/dropdown-menu.tsx +186 -0
  49. package/src/components/ui/floating-navbar.tsx +78 -0
  50. package/src/components/ui/form.tsx +167 -0
  51. package/src/components/ui/image.tsx +55 -0
  52. package/src/components/ui/input.tsx +22 -0
  53. package/src/components/ui/label.tsx +19 -0
  54. package/src/components/ui/pagination.tsx +105 -0
  55. package/src/components/ui/progress.tsx +23 -0
  56. package/src/components/ui/resizable-navbar.tsx +260 -0
  57. package/src/components/ui/segment-control.tsx +143 -0
  58. package/src/components/ui/select.tsx +153 -0
  59. package/src/components/ui/separator.tsx +24 -0
  60. package/src/components/ui/sheet.tsx +121 -0
  61. package/src/components/ui/sidebar.tsx +736 -0
  62. package/src/components/ui/skeleton.tsx +7 -0
  63. package/src/components/ui/slider.tsx +23 -0
  64. package/src/components/ui/sonner.tsx +27 -0
  65. package/src/components/ui/spinner.tsx +45 -0
  66. package/src/components/ui/switch.tsx +27 -0
  67. package/src/components/ui/table.tsx +90 -0
  68. package/src/components/ui/tabs.tsx +52 -0
  69. package/src/components/ui/textarea.tsx +18 -0
  70. package/src/components/ui/timeline.tsx +95 -0
  71. package/src/components/ui/toast.tsx +126 -0
  72. package/src/components/ui/tooltip.tsx +55 -0
  73. package/src/components/ui/typewriter-effect.tsx +181 -0
  74. package/src/hooks/use-mobile.ts +19 -0
  75. package/src/hooks/useDialog.ts +25 -0
  76. package/src/icons/GoogleIcon.tsx +32 -0
  77. package/src/icons/LinkedInIcon.tsx +30 -0
  78. package/src/icons/MicrosoftIcon.tsx +21 -0
  79. package/src/lib/chatwoot.ts +51 -0
  80. package/src/lib/utils.ts +6 -0
  81. package/src/modules/app/components/AppLoader.tsx +9 -0
  82. package/src/modules/app/components/AppShell.tsx +21 -0
  83. package/src/modules/app/components/AppSidebar.tsx +26 -0
  84. package/src/modules/app/components/AppSidebarContent.tsx +73 -0
  85. package/src/modules/app/components/AppSidebarHeader.tsx +57 -0
  86. package/src/modules/app/components/AppSidebarInvites.tsx +32 -0
  87. package/src/modules/app/components/AppSidebarUser.tsx +128 -0
  88. package/src/modules/auth/components/AdminUserManagement.tsx +1136 -0
  89. package/src/modules/auth/components/AdminWaitlist.tsx +358 -0
  90. package/src/modules/auth/components/AuthLayout.tsx +13 -0
  91. package/src/modules/auth/components/AuthProviders.tsx +105 -0
  92. package/src/modules/auth/components/AuthRouter.tsx +29 -0
  93. package/src/modules/auth/components/ClaimAccountRoute.tsx +242 -0
  94. package/src/modules/auth/components/ErrorAuthRoute.tsx +121 -0
  95. package/src/modules/auth/components/ForgotPasswordForm.tsx +58 -0
  96. package/src/modules/auth/components/ForgotPasswordRoute.tsx +27 -0
  97. package/src/modules/auth/components/InviteFriends.tsx +273 -0
  98. package/src/modules/auth/components/LastUsedBadge.tsx +22 -0
  99. package/src/modules/auth/components/LoginForm.tsx +104 -0
  100. package/src/modules/auth/components/LoginRoute.tsx +31 -0
  101. package/src/modules/auth/components/LogoutRoute.tsx +21 -0
  102. package/src/modules/auth/components/OrganizationAcceptInvitationRoute.tsx +161 -0
  103. package/src/modules/auth/components/OrganizationMembersRoute.tsx +730 -0
  104. package/src/modules/auth/components/OrganizationSettingsRoute.tsx +280 -0
  105. package/src/modules/auth/components/OrganizationSwitcher.tsx +148 -0
  106. package/src/modules/auth/components/ProfileRoute.tsx +104 -0
  107. package/src/modules/auth/components/RangeNuqsDatePicker.tsx +365 -0
  108. package/src/modules/auth/components/ResetPasswordForm.tsx +103 -0
  109. package/src/modules/auth/components/ResetPasswordRoute.tsx +27 -0
  110. package/src/modules/auth/components/SignupFormRoute.tsx +189 -0
  111. package/src/modules/auth/components/SignupRoute.tsx +53 -0
  112. package/src/modules/auth/components/UserPreferences.tsx +144 -0
  113. package/src/modules/auth/components/WaitlistCard.tsx +78 -0
  114. package/src/modules/auth/components/WaitlistCodeValidation.tsx +79 -0
  115. package/src/modules/billing/components/BillingBetaPage.tsx +124 -0
  116. package/src/modules/billing/components/BillingInvoicePage.tsx +180 -0
  117. package/src/modules/billing/components/BillingPlanSelect.tsx +14 -0
  118. package/src/modules/billing/components/BillingRouter.tsx +20 -0
  119. package/src/modules/billing/components/BillingSinglePlanSelect.tsx +172 -0
  120. package/src/modules/table/components/ColumnOrderAndVisibility.tsx +127 -0
  121. package/src/modules/table/components/NuqsTable.tsx +396 -0
  122. package/src/modules/table/components/TableFiltering.tsx +520 -0
  123. package/src/modules/table/components/TablePagination.tsx +59 -0
  124. package/src/modules/table/components/table.types.ts +11 -0
  125. package/src/modules/table/filterTransformers.ts +323 -0
  126. package/src/types.ts +4 -0
  127. package/src/vite-env.d.ts +1 -0
@@ -0,0 +1,4260 @@
1
+ import { Select, SelectItem, type SelectProps } from "@heroui/react";
2
+
3
+ export function TablerIconPicker({
4
+ value,
5
+ onSelectionChange,
6
+ isVirtualized = true,
7
+ ...props
8
+ }: Omit<SelectProps, "children">) {
9
+ return (
10
+ <Select
11
+ {...props}
12
+ items={tiIcons.map((icon) => ({ key: icon, value: icon }))}
13
+ renderValue={(items) =>
14
+ items.map((item) => <i className={`ti ${item.data?.value} text-2xl`} />)
15
+ }
16
+ >
17
+ {(icon) => (
18
+ <SelectItem hideSelectedIcon key={icon.key} textValue={icon.value}>
19
+ <span className="flex justify-center items-center">
20
+ <i className={`ti ${icon.value} text-2xl`} />
21
+ </span>
22
+ </SelectItem>
23
+ )}
24
+ </Select>
25
+ );
26
+ }
27
+
28
+ const tiIcons = [
29
+ "ti-123",
30
+ "ti-24-hours",
31
+ "ti-2fa",
32
+ "ti-360",
33
+ "ti-360-view",
34
+ "ti-3d-cube-sphere",
35
+ "ti-3d-cube-sphere-off",
36
+ "ti-3d-rotate",
37
+ "ti-a-b",
38
+ "ti-a-b-2",
39
+ "ti-a-b-off",
40
+ "ti-abacus",
41
+ "ti-abacus-off",
42
+ "ti-abc",
43
+ "ti-access-point",
44
+ "ti-access-point-off",
45
+ "ti-accessible",
46
+ "ti-accessible-off",
47
+ "ti-accessible-off-filled",
48
+ "ti-activity",
49
+ "ti-activity-heartbeat",
50
+ "ti-ad",
51
+ "ti-ad-2",
52
+ "ti-ad-circle",
53
+ "ti-ad-circle-filled",
54
+ "ti-ad-circle-off",
55
+ "ti-ad-filled",
56
+ "ti-ad-off",
57
+ "ti-address-book",
58
+ "ti-address-book-off",
59
+ "ti-adjustments",
60
+ "ti-adjustments-alt",
61
+ "ti-adjustments-bolt",
62
+ "ti-adjustments-cancel",
63
+ "ti-adjustments-check",
64
+ "ti-adjustments-code",
65
+ "ti-adjustments-cog",
66
+ "ti-adjustments-dollar",
67
+ "ti-adjustments-down",
68
+ "ti-adjustments-exclamation",
69
+ "ti-adjustments-filled",
70
+ "ti-adjustments-heart",
71
+ "ti-adjustments-horizontal",
72
+ "ti-adjustments-minus",
73
+ "ti-adjustments-off",
74
+ "ti-adjustments-pause",
75
+ "ti-adjustments-pin",
76
+ "ti-adjustments-plus",
77
+ "ti-adjustments-question",
78
+ "ti-adjustments-search",
79
+ "ti-adjustments-share",
80
+ "ti-adjustments-star",
81
+ "ti-adjustments-up",
82
+ "ti-adjustments-x",
83
+ "ti-aerial-lift",
84
+ "ti-affiliate",
85
+ "ti-affiliate-filled",
86
+ "ti-air-balloon",
87
+ "ti-air-conditioning",
88
+ "ti-air-conditioning-disabled",
89
+ "ti-alarm",
90
+ "ti-alarm-filled",
91
+ "ti-alarm-minus",
92
+ "ti-alarm-minus-filled",
93
+ "ti-alarm-off",
94
+ "ti-alarm-plus",
95
+ "ti-alarm-plus-filled",
96
+ "ti-alarm-snooze",
97
+ "ti-alarm-snooze-filled",
98
+ "ti-album",
99
+ "ti-album-off",
100
+ "ti-alert-circle",
101
+ "ti-alert-circle-filled",
102
+ "ti-alert-hexagon",
103
+ "ti-alert-hexagon-filled",
104
+ "ti-alert-octagon",
105
+ "ti-alert-octagon-filled",
106
+ "ti-alert-small",
107
+ "ti-alert-square",
108
+ "ti-alert-square-filled",
109
+ "ti-alert-square-rounded",
110
+ "ti-alert-square-rounded-filled",
111
+ "ti-alert-triangle",
112
+ "ti-alert-triangle-filled",
113
+ "ti-alien",
114
+ "ti-alien-filled",
115
+ "ti-align-box-bottom-center",
116
+ "ti-align-box-bottom-center-filled",
117
+ "ti-align-box-bottom-left",
118
+ "ti-align-box-bottom-left-filled",
119
+ "ti-align-box-bottom-right",
120
+ "ti-align-box-bottom-right-filled",
121
+ "ti-align-box-center-middle",
122
+ "ti-align-box-center-middle-filled",
123
+ "ti-align-box-left-bottom",
124
+ "ti-align-box-left-bottom-filled",
125
+ "ti-align-box-left-middle",
126
+ "ti-align-box-left-middle-filled",
127
+ "ti-align-box-left-top",
128
+ "ti-align-box-left-top-filled",
129
+ "ti-align-box-right-bottom",
130
+ "ti-align-box-right-bottom-filled",
131
+ "ti-align-box-right-middle",
132
+ "ti-align-box-right-middle-filled",
133
+ "ti-align-box-right-top",
134
+ "ti-align-box-right-top-filled",
135
+ "ti-align-box-top-center",
136
+ "ti-align-box-top-center-filled",
137
+ "ti-align-box-top-left",
138
+ "ti-align-box-top-left-filled",
139
+ "ti-align-box-top-right",
140
+ "ti-align-box-top-right-filled",
141
+ "ti-align-center",
142
+ "ti-align-justified",
143
+ "ti-align-left",
144
+ "ti-align-right",
145
+ "ti-alpha",
146
+ "ti-alphabet-cyrillic",
147
+ "ti-alphabet-greek",
148
+ "ti-alphabet-latin",
149
+ "ti-ambulance",
150
+ "ti-ampersand",
151
+ "ti-analyze",
152
+ "ti-analyze-filled",
153
+ "ti-analyze-off",
154
+ "ti-anchor",
155
+ "ti-anchor-off",
156
+ "ti-angle",
157
+ "ti-ankh",
158
+ "ti-antenna",
159
+ "ti-antenna-bars-1",
160
+ "ti-antenna-bars-2",
161
+ "ti-antenna-bars-3",
162
+ "ti-antenna-bars-4",
163
+ "ti-antenna-bars-5",
164
+ "ti-antenna-bars-off",
165
+ "ti-antenna-off",
166
+ "ti-aperture",
167
+ "ti-aperture-off",
168
+ "ti-api",
169
+ "ti-api-app",
170
+ "ti-api-app-off",
171
+ "ti-api-off",
172
+ "ti-app-window",
173
+ "ti-app-window-filled",
174
+ "ti-apple",
175
+ "ti-apps",
176
+ "ti-apps-filled",
177
+ "ti-apps-off",
178
+ "ti-archive",
179
+ "ti-archive-filled",
180
+ "ti-archive-off",
181
+ "ti-armchair",
182
+ "ti-armchair-2",
183
+ "ti-armchair-2-off",
184
+ "ti-armchair-off",
185
+ "ti-arrow-autofit-content",
186
+ "ti-arrow-autofit-content-filled",
187
+ "ti-arrow-autofit-down",
188
+ "ti-arrow-autofit-height",
189
+ "ti-arrow-autofit-left",
190
+ "ti-arrow-autofit-right",
191
+ "ti-arrow-autofit-up",
192
+ "ti-arrow-autofit-width",
193
+ "ti-arrow-back",
194
+ "ti-arrow-back-up",
195
+ "ti-arrow-back-up-double",
196
+ "ti-arrow-badge-down",
197
+ "ti-arrow-badge-down-filled",
198
+ "ti-arrow-badge-left",
199
+ "ti-arrow-badge-left-filled",
200
+ "ti-arrow-badge-right",
201
+ "ti-arrow-badge-right-filled",
202
+ "ti-arrow-badge-up",
203
+ "ti-arrow-badge-up-filled",
204
+ "ti-arrow-bar-down",
205
+ "ti-arrow-bar-left",
206
+ "ti-arrow-bar-right",
207
+ "ti-arrow-bar-to-down",
208
+ "ti-arrow-bar-to-left",
209
+ "ti-arrow-bar-to-right",
210
+ "ti-arrow-bar-to-up",
211
+ "ti-arrow-bar-up",
212
+ "ti-arrow-bear-left",
213
+ "ti-arrow-bear-left-2",
214
+ "ti-arrow-bear-right",
215
+ "ti-arrow-bear-right-2",
216
+ "ti-arrow-big-down",
217
+ "ti-arrow-big-down-filled",
218
+ "ti-arrow-big-down-line",
219
+ "ti-arrow-big-down-line-filled",
220
+ "ti-arrow-big-down-lines",
221
+ "ti-arrow-big-down-lines-filled",
222
+ "ti-arrow-big-left",
223
+ "ti-arrow-big-left-filled",
224
+ "ti-arrow-big-left-line",
225
+ "ti-arrow-big-left-line-filled",
226
+ "ti-arrow-big-left-lines",
227
+ "ti-arrow-big-left-lines-filled",
228
+ "ti-arrow-big-right",
229
+ "ti-arrow-big-right-filled",
230
+ "ti-arrow-big-right-line",
231
+ "ti-arrow-big-right-line-filled",
232
+ "ti-arrow-big-right-lines",
233
+ "ti-arrow-big-right-lines-filled",
234
+ "ti-arrow-big-up",
235
+ "ti-arrow-big-up-filled",
236
+ "ti-arrow-big-up-line",
237
+ "ti-arrow-big-up-line-filled",
238
+ "ti-arrow-big-up-lines",
239
+ "ti-arrow-big-up-lines-filled",
240
+ "ti-arrow-bounce",
241
+ "ti-arrow-curve-left",
242
+ "ti-arrow-curve-right",
243
+ "ti-arrow-down",
244
+ "ti-arrow-down-bar",
245
+ "ti-arrow-down-circle",
246
+ "ti-arrow-down-left",
247
+ "ti-arrow-down-left-circle",
248
+ "ti-arrow-down-rhombus",
249
+ "ti-arrow-down-right",
250
+ "ti-arrow-down-right-circle",
251
+ "ti-arrow-down-square",
252
+ "ti-arrow-down-tail",
253
+ "ti-arrow-elbow-left",
254
+ "ti-arrow-elbow-right",
255
+ "ti-arrow-fork",
256
+ "ti-arrow-forward",
257
+ "ti-arrow-forward-up",
258
+ "ti-arrow-forward-up-double",
259
+ "ti-arrow-guide",
260
+ "ti-arrow-iteration",
261
+ "ti-arrow-left",
262
+ "ti-arrow-left-bar",
263
+ "ti-arrow-left-circle",
264
+ "ti-arrow-left-rhombus",
265
+ "ti-arrow-left-right",
266
+ "ti-arrow-left-square",
267
+ "ti-arrow-left-tail",
268
+ "ti-arrow-loop-left",
269
+ "ti-arrow-loop-left-2",
270
+ "ti-arrow-loop-right",
271
+ "ti-arrow-loop-right-2",
272
+ "ti-arrow-merge",
273
+ "ti-arrow-merge-both",
274
+ "ti-arrow-merge-left",
275
+ "ti-arrow-merge-right",
276
+ "ti-arrow-move-down",
277
+ "ti-arrow-move-left",
278
+ "ti-arrow-move-right",
279
+ "ti-arrow-move-up",
280
+ "ti-arrow-narrow-down",
281
+ "ti-arrow-narrow-left",
282
+ "ti-arrow-narrow-right",
283
+ "ti-arrow-narrow-up",
284
+ "ti-arrow-ramp-left",
285
+ "ti-arrow-ramp-left-2",
286
+ "ti-arrow-ramp-left-3",
287
+ "ti-arrow-ramp-right",
288
+ "ti-arrow-ramp-right-2",
289
+ "ti-arrow-ramp-right-3",
290
+ "ti-arrow-right",
291
+ "ti-arrow-right-bar",
292
+ "ti-arrow-right-circle",
293
+ "ti-arrow-right-rhombus",
294
+ "ti-arrow-right-square",
295
+ "ti-arrow-right-tail",
296
+ "ti-arrow-rotary-first-left",
297
+ "ti-arrow-rotary-first-right",
298
+ "ti-arrow-rotary-last-left",
299
+ "ti-arrow-rotary-last-right",
300
+ "ti-arrow-rotary-left",
301
+ "ti-arrow-rotary-right",
302
+ "ti-arrow-rotary-straight",
303
+ "ti-arrow-roundabout-left",
304
+ "ti-arrow-roundabout-right",
305
+ "ti-arrow-sharp-turn-left",
306
+ "ti-arrow-sharp-turn-right",
307
+ "ti-arrow-up",
308
+ "ti-arrow-up-bar",
309
+ "ti-arrow-up-circle",
310
+ "ti-arrow-up-left",
311
+ "ti-arrow-up-left-circle",
312
+ "ti-arrow-up-rhombus",
313
+ "ti-arrow-up-right",
314
+ "ti-arrow-up-right-circle",
315
+ "ti-arrow-up-square",
316
+ "ti-arrow-up-tail",
317
+ "ti-arrow-wave-left-down",
318
+ "ti-arrow-wave-left-up",
319
+ "ti-arrow-wave-right-down",
320
+ "ti-arrow-wave-right-up",
321
+ "ti-arrow-zig-zag",
322
+ "ti-arrows-cross",
323
+ "ti-arrows-diagonal",
324
+ "ti-arrows-diagonal-2",
325
+ "ti-arrows-diagonal-minimize",
326
+ "ti-arrows-diagonal-minimize-2",
327
+ "ti-arrows-diff",
328
+ "ti-arrows-double-ne-sw",
329
+ "ti-arrows-double-nw-se",
330
+ "ti-arrows-double-se-nw",
331
+ "ti-arrows-double-sw-ne",
332
+ "ti-arrows-down",
333
+ "ti-arrows-down-up",
334
+ "ti-arrows-exchange",
335
+ "ti-arrows-exchange-2",
336
+ "ti-arrows-horizontal",
337
+ "ti-arrows-join",
338
+ "ti-arrows-join-2",
339
+ "ti-arrows-left",
340
+ "ti-arrows-left-down",
341
+ "ti-arrows-left-right",
342
+ "ti-arrows-maximize",
343
+ "ti-arrows-minimize",
344
+ "ti-arrows-move",
345
+ "ti-arrows-move-horizontal",
346
+ "ti-arrows-move-vertical",
347
+ "ti-arrows-random",
348
+ "ti-arrows-right",
349
+ "ti-arrows-right-down",
350
+ "ti-arrows-right-left",
351
+ "ti-arrows-shuffle",
352
+ "ti-arrows-shuffle-2",
353
+ "ti-arrows-sort",
354
+ "ti-arrows-split",
355
+ "ti-arrows-split-2",
356
+ "ti-arrows-transfer-down",
357
+ "ti-arrows-transfer-up",
358
+ "ti-arrows-up",
359
+ "ti-arrows-up-down",
360
+ "ti-arrows-up-left",
361
+ "ti-arrows-up-right",
362
+ "ti-arrows-vertical",
363
+ "ti-artboard",
364
+ "ti-artboard-filled",
365
+ "ti-artboard-off",
366
+ "ti-article",
367
+ "ti-article-filled-filled",
368
+ "ti-article-off",
369
+ "ti-aspect-ratio",
370
+ "ti-aspect-ratio-filled",
371
+ "ti-aspect-ratio-off",
372
+ "ti-assembly",
373
+ "ti-assembly-off",
374
+ "ti-asset",
375
+ "ti-asterisk",
376
+ "ti-asterisk-simple",
377
+ "ti-at",
378
+ "ti-at-off",
379
+ "ti-atom",
380
+ "ti-atom-2",
381
+ "ti-atom-2-filled",
382
+ "ti-atom-off",
383
+ "ti-augmented-reality",
384
+ "ti-augmented-reality-2",
385
+ "ti-augmented-reality-off",
386
+ "ti-award",
387
+ "ti-award-filled",
388
+ "ti-award-off",
389
+ "ti-axe",
390
+ "ti-axis-x",
391
+ "ti-axis-y",
392
+ "ti-baby-bottle",
393
+ "ti-baby-carriage",
394
+ "ti-backhoe",
395
+ "ti-backpack",
396
+ "ti-backpack-off",
397
+ "ti-backslash",
398
+ "ti-backspace",
399
+ "ti-backspace-filled",
400
+ "ti-badge",
401
+ "ti-badge-3d",
402
+ "ti-badge-4k",
403
+ "ti-badge-8k",
404
+ "ti-badge-ad",
405
+ "ti-badge-ar",
406
+ "ti-badge-cc",
407
+ "ti-badge-filled",
408
+ "ti-badge-hd",
409
+ "ti-badge-off",
410
+ "ti-badge-sd",
411
+ "ti-badge-tm",
412
+ "ti-badge-vo",
413
+ "ti-badge-vr",
414
+ "ti-badge-wc",
415
+ "ti-badges",
416
+ "ti-badges-filled",
417
+ "ti-badges-off",
418
+ "ti-baguette",
419
+ "ti-ball-american-football",
420
+ "ti-ball-american-football-off",
421
+ "ti-ball-baseball",
422
+ "ti-ball-basketball",
423
+ "ti-ball-bowling",
424
+ "ti-ball-football",
425
+ "ti-ball-football-off",
426
+ "ti-ball-tennis",
427
+ "ti-ball-volleyball",
428
+ "ti-balloon",
429
+ "ti-balloon-filled",
430
+ "ti-balloon-off",
431
+ "ti-ballpen",
432
+ "ti-ballpen-filled",
433
+ "ti-ballpen-off",
434
+ "ti-ban",
435
+ "ti-bandage",
436
+ "ti-bandage-filled",
437
+ "ti-bandage-off",
438
+ "ti-barbell",
439
+ "ti-barbell-off",
440
+ "ti-barcode",
441
+ "ti-barcode-off",
442
+ "ti-barrel",
443
+ "ti-barrel-off",
444
+ "ti-barrier-block",
445
+ "ti-barrier-block-off",
446
+ "ti-baseline",
447
+ "ti-baseline-density-large",
448
+ "ti-baseline-density-medium",
449
+ "ti-baseline-density-small",
450
+ "ti-basket",
451
+ "ti-basket-filled",
452
+ "ti-basket-off",
453
+ "ti-bat",
454
+ "ti-bath",
455
+ "ti-bath-filled",
456
+ "ti-bath-off",
457
+ "ti-battery",
458
+ "ti-battery-1",
459
+ "ti-battery-1-filled",
460
+ "ti-battery-2",
461
+ "ti-battery-2-filled",
462
+ "ti-battery-3",
463
+ "ti-battery-3-filled",
464
+ "ti-battery-4",
465
+ "ti-battery-4-filled",
466
+ "ti-battery-automotive",
467
+ "ti-battery-charging",
468
+ "ti-battery-charging-2",
469
+ "ti-battery-eco",
470
+ "ti-battery-filled",
471
+ "ti-battery-off",
472
+ "ti-beach",
473
+ "ti-beach-off",
474
+ "ti-bed",
475
+ "ti-bed-filled",
476
+ "ti-bed-off",
477
+ "ti-beer",
478
+ "ti-beer-filled",
479
+ "ti-beer-off",
480
+ "ti-bell",
481
+ "ti-bell-bolt",
482
+ "ti-bell-cancel",
483
+ "ti-bell-check",
484
+ "ti-bell-code",
485
+ "ti-bell-cog",
486
+ "ti-bell-dollar",
487
+ "ti-bell-down",
488
+ "ti-bell-exclamation",
489
+ "ti-bell-filled",
490
+ "ti-bell-heart",
491
+ "ti-bell-minus",
492
+ "ti-bell-minus-filled",
493
+ "ti-bell-off",
494
+ "ti-bell-pause",
495
+ "ti-bell-pin",
496
+ "ti-bell-plus",
497
+ "ti-bell-plus-filled",
498
+ "ti-bell-question",
499
+ "ti-bell-ringing",
500
+ "ti-bell-ringing-2",
501
+ "ti-bell-ringing-2-filled",
502
+ "ti-bell-ringing-filled",
503
+ "ti-bell-school",
504
+ "ti-bell-search",
505
+ "ti-bell-share",
506
+ "ti-bell-star",
507
+ "ti-bell-up",
508
+ "ti-bell-x",
509
+ "ti-bell-x-filled",
510
+ "ti-bell-z",
511
+ "ti-bell-z-filled",
512
+ "ti-beta",
513
+ "ti-bible",
514
+ "ti-bike",
515
+ "ti-bike-off",
516
+ "ti-binary",
517
+ "ti-binary-off",
518
+ "ti-binary-tree",
519
+ "ti-binary-tree-2",
520
+ "ti-biohazard",
521
+ "ti-biohazard-off",
522
+ "ti-blade",
523
+ "ti-blade-filled",
524
+ "ti-bleach",
525
+ "ti-bleach-chlorine",
526
+ "ti-bleach-no-chlorine",
527
+ "ti-bleach-off",
528
+ "ti-blockquote",
529
+ "ti-bluetooth",
530
+ "ti-bluetooth-connected",
531
+ "ti-bluetooth-off",
532
+ "ti-bluetooth-x",
533
+ "ti-blur",
534
+ "ti-blur-off",
535
+ "ti-bmp",
536
+ "ti-bold",
537
+ "ti-bold-off",
538
+ "ti-bolt",
539
+ "ti-bolt-off",
540
+ "ti-bomb",
541
+ "ti-bomb-filled",
542
+ "ti-bone",
543
+ "ti-bone-off",
544
+ "ti-bong",
545
+ "ti-bong-off",
546
+ "ti-book",
547
+ "ti-book-2",
548
+ "ti-book-download",
549
+ "ti-book-filled",
550
+ "ti-book-off",
551
+ "ti-book-upload",
552
+ "ti-bookmark",
553
+ "ti-bookmark-edit",
554
+ "ti-bookmark-filled",
555
+ "ti-bookmark-minus",
556
+ "ti-bookmark-off",
557
+ "ti-bookmark-plus",
558
+ "ti-bookmark-question",
559
+ "ti-bookmarks",
560
+ "ti-bookmarks-off",
561
+ "ti-books",
562
+ "ti-books-off",
563
+ "ti-border-all",
564
+ "ti-border-bottom",
565
+ "ti-border-corners",
566
+ "ti-border-horizontal",
567
+ "ti-border-inner",
568
+ "ti-border-left",
569
+ "ti-border-none",
570
+ "ti-border-outer",
571
+ "ti-border-radius",
572
+ "ti-border-right",
573
+ "ti-border-sides",
574
+ "ti-border-style",
575
+ "ti-border-style-2",
576
+ "ti-border-top",
577
+ "ti-border-vertical",
578
+ "ti-bottle",
579
+ "ti-bottle-filled",
580
+ "ti-bottle-off",
581
+ "ti-bounce-left",
582
+ "ti-bounce-right",
583
+ "ti-bow",
584
+ "ti-bowl",
585
+ "ti-box",
586
+ "ti-box-align-bottom",
587
+ "ti-box-align-bottom-filled",
588
+ "ti-box-align-bottom-left",
589
+ "ti-box-align-bottom-left-filled",
590
+ "ti-box-align-bottom-right",
591
+ "ti-box-align-bottom-right-filled",
592
+ "ti-box-align-left",
593
+ "ti-box-align-left-filled",
594
+ "ti-box-align-right",
595
+ "ti-box-align-right-filled",
596
+ "ti-box-align-top",
597
+ "ti-box-align-top-filled",
598
+ "ti-box-align-top-left",
599
+ "ti-box-align-top-left-filled",
600
+ "ti-box-align-top-right",
601
+ "ti-box-align-top-right-filled",
602
+ "ti-box-margin",
603
+ "ti-box-model",
604
+ "ti-box-model-2",
605
+ "ti-box-model-2-off",
606
+ "ti-box-model-off",
607
+ "ti-box-multiple",
608
+ "ti-box-multiple-0",
609
+ "ti-box-multiple-1",
610
+ "ti-box-multiple-2",
611
+ "ti-box-multiple-3",
612
+ "ti-box-multiple-4",
613
+ "ti-box-multiple-5",
614
+ "ti-box-multiple-6",
615
+ "ti-box-multiple-7",
616
+ "ti-box-multiple-8",
617
+ "ti-box-multiple-9",
618
+ "ti-box-off",
619
+ "ti-box-padding",
620
+ "ti-box-seam",
621
+ "ti-braces",
622
+ "ti-braces-off",
623
+ "ti-brackets",
624
+ "ti-brackets-contain",
625
+ "ti-brackets-contain-end",
626
+ "ti-brackets-contain-start",
627
+ "ti-brackets-off",
628
+ "ti-braille",
629
+ "ti-brain",
630
+ "ti-brand-4chan",
631
+ "ti-brand-abstract",
632
+ "ti-brand-adobe",
633
+ "ti-brand-adonis-js",
634
+ "ti-brand-airbnb",
635
+ "ti-brand-airtable",
636
+ "ti-brand-algolia",
637
+ "ti-brand-alipay",
638
+ "ti-brand-alpine-js",
639
+ "ti-brand-amazon",
640
+ "ti-brand-amd",
641
+ "ti-brand-amigo",
642
+ "ti-brand-among-us",
643
+ "ti-brand-android",
644
+ "ti-brand-angular",
645
+ "ti-brand-ansible",
646
+ "ti-brand-ao3",
647
+ "ti-brand-appgallery",
648
+ "ti-brand-apple",
649
+ "ti-brand-apple-arcade",
650
+ "ti-brand-apple-podcast",
651
+ "ti-brand-appstore",
652
+ "ti-brand-asana",
653
+ "ti-brand-aws",
654
+ "ti-brand-azure",
655
+ "ti-brand-backbone",
656
+ "ti-brand-badoo",
657
+ "ti-brand-baidu",
658
+ "ti-brand-bandcamp",
659
+ "ti-brand-bandlab",
660
+ "ti-brand-beats",
661
+ "ti-brand-behance",
662
+ "ti-brand-bilibili",
663
+ "ti-brand-binance",
664
+ "ti-brand-bing",
665
+ "ti-brand-bitbucket",
666
+ "ti-brand-blackberry",
667
+ "ti-brand-blender",
668
+ "ti-brand-blogger",
669
+ "ti-brand-booking",
670
+ "ti-brand-bootstrap",
671
+ "ti-brand-bulma",
672
+ "ti-brand-bumble",
673
+ "ti-brand-bunpo",
674
+ "ti-brand-c-sharp",
675
+ "ti-brand-cake",
676
+ "ti-brand-cakephp",
677
+ "ti-brand-campaignmonitor",
678
+ "ti-brand-carbon",
679
+ "ti-brand-cashapp",
680
+ "ti-brand-chrome",
681
+ "ti-brand-cinema-4d",
682
+ "ti-brand-citymapper",
683
+ "ti-brand-cloudflare",
684
+ "ti-brand-codecov",
685
+ "ti-brand-codepen",
686
+ "ti-brand-codesandbox",
687
+ "ti-brand-cohost",
688
+ "ti-brand-coinbase",
689
+ "ti-brand-comedy-central",
690
+ "ti-brand-coreos",
691
+ "ti-brand-couchdb",
692
+ "ti-brand-couchsurfing",
693
+ "ti-brand-cpp",
694
+ "ti-brand-craft",
695
+ "ti-brand-crunchbase",
696
+ "ti-brand-css3",
697
+ "ti-brand-ctemplar",
698
+ "ti-brand-cucumber",
699
+ "ti-brand-cupra",
700
+ "ti-brand-cypress",
701
+ "ti-brand-d3",
702
+ "ti-brand-days-counter",
703
+ "ti-brand-dcos",
704
+ "ti-brand-debian",
705
+ "ti-brand-deezer",
706
+ "ti-brand-deliveroo",
707
+ "ti-brand-deno",
708
+ "ti-brand-denodo",
709
+ "ti-brand-deviantart",
710
+ "ti-brand-digg",
711
+ "ti-brand-dingtalk",
712
+ "ti-brand-discord",
713
+ "ti-brand-discord-filled",
714
+ "ti-brand-disney",
715
+ "ti-brand-disqus",
716
+ "ti-brand-django",
717
+ "ti-brand-docker",
718
+ "ti-brand-doctrine",
719
+ "ti-brand-dolby-digital",
720
+ "ti-brand-douban",
721
+ "ti-brand-dribbble",
722
+ "ti-brand-dribbble-filled",
723
+ "ti-brand-drops",
724
+ "ti-brand-drupal",
725
+ "ti-brand-edge",
726
+ "ti-brand-elastic",
727
+ "ti-brand-electronic-arts",
728
+ "ti-brand-ember",
729
+ "ti-brand-envato",
730
+ "ti-brand-etsy",
731
+ "ti-brand-evernote",
732
+ "ti-brand-facebook",
733
+ "ti-brand-facebook-filled",
734
+ "ti-brand-feedly",
735
+ "ti-brand-figma",
736
+ "ti-brand-filezilla",
737
+ "ti-brand-finder",
738
+ "ti-brand-firebase",
739
+ "ti-brand-firefox",
740
+ "ti-brand-fiverr",
741
+ "ti-brand-flickr",
742
+ "ti-brand-flightradar24",
743
+ "ti-brand-flipboard",
744
+ "ti-brand-flutter",
745
+ "ti-brand-fortnite",
746
+ "ti-brand-foursquare",
747
+ "ti-brand-framer",
748
+ "ti-brand-framer-motion",
749
+ "ti-brand-funimation",
750
+ "ti-brand-gatsby",
751
+ "ti-brand-git",
752
+ "ti-brand-github",
753
+ "ti-brand-github-copilot",
754
+ "ti-brand-github-filled",
755
+ "ti-brand-gitlab",
756
+ "ti-brand-gmail",
757
+ "ti-brand-golang",
758
+ "ti-brand-google",
759
+ "ti-brand-google-analytics",
760
+ "ti-brand-google-big-query",
761
+ "ti-brand-google-drive",
762
+ "ti-brand-google-fit",
763
+ "ti-brand-google-home",
764
+ "ti-brand-google-maps",
765
+ "ti-brand-google-one",
766
+ "ti-brand-google-photos",
767
+ "ti-brand-google-play",
768
+ "ti-brand-google-podcasts",
769
+ "ti-brand-grammarly",
770
+ "ti-brand-graphql",
771
+ "ti-brand-gravatar",
772
+ "ti-brand-grindr",
773
+ "ti-brand-guardian",
774
+ "ti-brand-gumroad",
775
+ "ti-brand-hbo",
776
+ "ti-brand-headlessui",
777
+ "ti-brand-hexo",
778
+ "ti-brand-hipchat",
779
+ "ti-brand-html5",
780
+ "ti-brand-inertia",
781
+ "ti-brand-instagram",
782
+ "ti-brand-intercom",
783
+ "ti-brand-itch",
784
+ "ti-brand-javascript",
785
+ "ti-brand-juejin",
786
+ "ti-brand-kick",
787
+ "ti-brand-kickstarter",
788
+ "ti-brand-kotlin",
789
+ "ti-brand-laravel",
790
+ "ti-brand-lastfm",
791
+ "ti-brand-leetcode",
792
+ "ti-brand-letterboxd",
793
+ "ti-brand-line",
794
+ "ti-brand-linkedin",
795
+ "ti-brand-linktree",
796
+ "ti-brand-linqpad",
797
+ "ti-brand-loom",
798
+ "ti-brand-mailgun",
799
+ "ti-brand-mantine",
800
+ "ti-brand-mastercard",
801
+ "ti-brand-mastodon",
802
+ "ti-brand-matrix",
803
+ "ti-brand-mcdonalds",
804
+ "ti-brand-medium",
805
+ "ti-brand-mercedes",
806
+ "ti-brand-messenger",
807
+ "ti-brand-meta",
808
+ "ti-brand-miniprogram",
809
+ "ti-brand-mixpanel",
810
+ "ti-brand-monday",
811
+ "ti-brand-mongodb",
812
+ "ti-brand-my-oppo",
813
+ "ti-brand-mysql",
814
+ "ti-brand-national-geographic",
815
+ "ti-brand-nem",
816
+ "ti-brand-netbeans",
817
+ "ti-brand-netease-music",
818
+ "ti-brand-netflix",
819
+ "ti-brand-nexo",
820
+ "ti-brand-nextcloud",
821
+ "ti-brand-nextjs",
822
+ "ti-brand-nord-vpn",
823
+ "ti-brand-notion",
824
+ "ti-brand-npm",
825
+ "ti-brand-nuxt",
826
+ "ti-brand-nytimes",
827
+ "ti-brand-oauth",
828
+ "ti-brand-office",
829
+ "ti-brand-ok-ru",
830
+ "ti-brand-onedrive",
831
+ "ti-brand-onlyfans",
832
+ "ti-brand-open-source",
833
+ "ti-brand-openai",
834
+ "ti-brand-openvpn",
835
+ "ti-brand-opera",
836
+ "ti-brand-pagekit",
837
+ "ti-brand-patreon",
838
+ "ti-brand-paypal",
839
+ "ti-brand-paypal-filled",
840
+ "ti-brand-paypay",
841
+ "ti-brand-peanut",
842
+ "ti-brand-pepsi",
843
+ "ti-brand-php",
844
+ "ti-brand-picsart",
845
+ "ti-brand-pinterest",
846
+ "ti-brand-planetscale",
847
+ "ti-brand-pocket",
848
+ "ti-brand-polymer",
849
+ "ti-brand-powershell",
850
+ "ti-brand-prisma",
851
+ "ti-brand-producthunt",
852
+ "ti-brand-pushbullet",
853
+ "ti-brand-pushover",
854
+ "ti-brand-python",
855
+ "ti-brand-qq",
856
+ "ti-brand-radix-ui",
857
+ "ti-brand-react",
858
+ "ti-brand-react-native",
859
+ "ti-brand-reason",
860
+ "ti-brand-reddit",
861
+ "ti-brand-redhat",
862
+ "ti-brand-redux",
863
+ "ti-brand-revolut",
864
+ "ti-brand-rust",
865
+ "ti-brand-safari",
866
+ "ti-brand-samsungpass",
867
+ "ti-brand-sass",
868
+ "ti-brand-sentry",
869
+ "ti-brand-sharik",
870
+ "ti-brand-shazam",
871
+ "ti-brand-shopee",
872
+ "ti-brand-sketch",
873
+ "ti-brand-skype",
874
+ "ti-brand-slack",
875
+ "ti-brand-snapchat",
876
+ "ti-brand-snapseed",
877
+ "ti-brand-snowflake",
878
+ "ti-brand-socket-io",
879
+ "ti-brand-solidjs",
880
+ "ti-brand-soundcloud",
881
+ "ti-brand-spacehey",
882
+ "ti-brand-speedtest",
883
+ "ti-brand-spotify",
884
+ "ti-brand-stackoverflow",
885
+ "ti-brand-stackshare",
886
+ "ti-brand-steam",
887
+ "ti-brand-storj",
888
+ "ti-brand-storybook",
889
+ "ti-brand-storytel",
890
+ "ti-brand-strava",
891
+ "ti-brand-stripe",
892
+ "ti-brand-sublime-text",
893
+ "ti-brand-sugarizer",
894
+ "ti-brand-supabase",
895
+ "ti-brand-superhuman",
896
+ "ti-brand-supernova",
897
+ "ti-brand-surfshark",
898
+ "ti-brand-svelte",
899
+ "ti-brand-swift",
900
+ "ti-brand-symfony",
901
+ "ti-brand-tabler",
902
+ "ti-brand-tailwind",
903
+ "ti-brand-taobao",
904
+ "ti-brand-ted",
905
+ "ti-brand-telegram",
906
+ "ti-brand-terraform",
907
+ "ti-brand-tether",
908
+ "ti-brand-threejs",
909
+ "ti-brand-tidal",
910
+ "ti-brand-tikto-filled",
911
+ "ti-brand-tiktok",
912
+ "ti-brand-tinder",
913
+ "ti-brand-topbuzz",
914
+ "ti-brand-torchain",
915
+ "ti-brand-toyota",
916
+ "ti-brand-trello",
917
+ "ti-brand-tripadvisor",
918
+ "ti-brand-tumblr",
919
+ "ti-brand-twilio",
920
+ "ti-brand-twitch",
921
+ "ti-brand-twitter",
922
+ "ti-brand-twitter-filled",
923
+ "ti-brand-typescript",
924
+ "ti-brand-uber",
925
+ "ti-brand-ubuntu",
926
+ "ti-brand-unity",
927
+ "ti-brand-unsplash",
928
+ "ti-brand-upwork",
929
+ "ti-brand-valorant",
930
+ "ti-brand-vercel",
931
+ "ti-brand-vimeo",
932
+ "ti-brand-vinted",
933
+ "ti-brand-visa",
934
+ "ti-brand-visual-studio",
935
+ "ti-brand-vite",
936
+ "ti-brand-vivaldi",
937
+ "ti-brand-vk",
938
+ "ti-brand-vlc",
939
+ "ti-brand-volkswagen",
940
+ "ti-brand-vsco",
941
+ "ti-brand-vscode",
942
+ "ti-brand-vue",
943
+ "ti-brand-walmart",
944
+ "ti-brand-waze",
945
+ "ti-brand-webflow",
946
+ "ti-brand-wechat",
947
+ "ti-brand-weibo",
948
+ "ti-brand-whatsapp",
949
+ "ti-brand-wikipedia",
950
+ "ti-brand-windows",
951
+ "ti-brand-windy",
952
+ "ti-brand-wish",
953
+ "ti-brand-wix",
954
+ "ti-brand-wordpress",
955
+ "ti-brand-xamarin",
956
+ "ti-brand-xbox",
957
+ "ti-brand-xing",
958
+ "ti-brand-yahoo",
959
+ "ti-brand-yatse",
960
+ "ti-brand-ycombinator",
961
+ "ti-brand-youtube",
962
+ "ti-brand-youtube-kids",
963
+ "ti-brand-zalando",
964
+ "ti-brand-zapier",
965
+ "ti-brand-zeit",
966
+ "ti-brand-zhihu",
967
+ "ti-brand-zoom",
968
+ "ti-brand-zulip",
969
+ "ti-brand-zwift",
970
+ "ti-bread",
971
+ "ti-bread-off",
972
+ "ti-briefcase",
973
+ "ti-briefcase-off",
974
+ "ti-brightness",
975
+ "ti-brightness-2",
976
+ "ti-brightness-down",
977
+ "ti-brightness-half",
978
+ "ti-brightness-off",
979
+ "ti-brightness-up",
980
+ "ti-broadcast",
981
+ "ti-broadcast-off",
982
+ "ti-browser",
983
+ "ti-browser-check",
984
+ "ti-browser-off",
985
+ "ti-browser-plus",
986
+ "ti-browser-x",
987
+ "ti-brush",
988
+ "ti-brush-off",
989
+ "ti-bucket",
990
+ "ti-bucket-droplet",
991
+ "ti-bucket-off",
992
+ "ti-bug",
993
+ "ti-bug-off",
994
+ "ti-building",
995
+ "ti-building-arch",
996
+ "ti-building-bank",
997
+ "ti-building-bridge",
998
+ "ti-building-bridge-2",
999
+ "ti-building-broadcast-tower",
1000
+ "ti-building-carousel",
1001
+ "ti-building-castle",
1002
+ "ti-building-church",
1003
+ "ti-building-circus",
1004
+ "ti-building-community",
1005
+ "ti-building-cottage",
1006
+ "ti-building-estate",
1007
+ "ti-building-factory",
1008
+ "ti-building-factory-2",
1009
+ "ti-building-fortress",
1010
+ "ti-building-hospital",
1011
+ "ti-building-lighthouse",
1012
+ "ti-building-monument",
1013
+ "ti-building-mosque",
1014
+ "ti-building-pavilion",
1015
+ "ti-building-skyscraper",
1016
+ "ti-building-stadium",
1017
+ "ti-building-store",
1018
+ "ti-building-tunnel",
1019
+ "ti-building-warehouse",
1020
+ "ti-building-wind-turbine",
1021
+ "ti-bulb",
1022
+ "ti-bulb-filled",
1023
+ "ti-bulb-off",
1024
+ "ti-bulldozer",
1025
+ "ti-bus",
1026
+ "ti-bus-off",
1027
+ "ti-bus-stop",
1028
+ "ti-businessplan",
1029
+ "ti-butterfly",
1030
+ "ti-cactus",
1031
+ "ti-cactus-off",
1032
+ "ti-cake",
1033
+ "ti-cake-off",
1034
+ "ti-calculator",
1035
+ "ti-calculator-off",
1036
+ "ti-calendar",
1037
+ "ti-calendar-bolt",
1038
+ "ti-calendar-cancel",
1039
+ "ti-calendar-check",
1040
+ "ti-calendar-code",
1041
+ "ti-calendar-cog",
1042
+ "ti-calendar-dollar",
1043
+ "ti-calendar-down",
1044
+ "ti-calendar-due",
1045
+ "ti-calendar-event",
1046
+ "ti-calendar-exclamation",
1047
+ "ti-calendar-heart",
1048
+ "ti-calendar-minus",
1049
+ "ti-calendar-off",
1050
+ "ti-calendar-pause",
1051
+ "ti-calendar-pin",
1052
+ "ti-calendar-plus",
1053
+ "ti-calendar-question",
1054
+ "ti-calendar-search",
1055
+ "ti-calendar-share",
1056
+ "ti-calendar-star",
1057
+ "ti-calendar-stats",
1058
+ "ti-calendar-time",
1059
+ "ti-calendar-up",
1060
+ "ti-calendar-x",
1061
+ "ti-camera",
1062
+ "ti-camera-bolt",
1063
+ "ti-camera-cancel",
1064
+ "ti-camera-check",
1065
+ "ti-camera-code",
1066
+ "ti-camera-cog",
1067
+ "ti-camera-dollar",
1068
+ "ti-camera-down",
1069
+ "ti-camera-exclamation",
1070
+ "ti-camera-filled",
1071
+ "ti-camera-heart",
1072
+ "ti-camera-minus",
1073
+ "ti-camera-off",
1074
+ "ti-camera-pause",
1075
+ "ti-camera-pin",
1076
+ "ti-camera-plus",
1077
+ "ti-camera-question",
1078
+ "ti-camera-rotate",
1079
+ "ti-camera-search",
1080
+ "ti-camera-selfie",
1081
+ "ti-camera-share",
1082
+ "ti-camera-star",
1083
+ "ti-camera-up",
1084
+ "ti-camera-x",
1085
+ "ti-camper",
1086
+ "ti-campfire",
1087
+ "ti-candle",
1088
+ "ti-candy",
1089
+ "ti-candy-off",
1090
+ "ti-cane",
1091
+ "ti-cannabis",
1092
+ "ti-capture",
1093
+ "ti-capture-off",
1094
+ "ti-car",
1095
+ "ti-car-crane",
1096
+ "ti-car-crash",
1097
+ "ti-car-off",
1098
+ "ti-car-turbine",
1099
+ "ti-caravan",
1100
+ "ti-cardboards",
1101
+ "ti-cardboards-off",
1102
+ "ti-cards",
1103
+ "ti-caret-down",
1104
+ "ti-caret-left",
1105
+ "ti-caret-right",
1106
+ "ti-caret-up",
1107
+ "ti-carousel-horizontal",
1108
+ "ti-carousel-horizontal-filled",
1109
+ "ti-carousel-vertical",
1110
+ "ti-carousel-vertical-filled",
1111
+ "ti-carrot",
1112
+ "ti-carrot-off",
1113
+ "ti-cash",
1114
+ "ti-cash-banknote",
1115
+ "ti-cash-banknote-off",
1116
+ "ti-cash-off",
1117
+ "ti-cast",
1118
+ "ti-cast-off",
1119
+ "ti-cat",
1120
+ "ti-category",
1121
+ "ti-category-2",
1122
+ "ti-ce",
1123
+ "ti-ce-off",
1124
+ "ti-cell",
1125
+ "ti-cell-signal-1",
1126
+ "ti-cell-signal-2",
1127
+ "ti-cell-signal-3",
1128
+ "ti-cell-signal-4",
1129
+ "ti-cell-signal-5",
1130
+ "ti-cell-signal-off",
1131
+ "ti-certificate",
1132
+ "ti-certificate-2",
1133
+ "ti-certificate-2-off",
1134
+ "ti-certificate-off",
1135
+ "ti-chair-director",
1136
+ "ti-chalkboard",
1137
+ "ti-chalkboard-off",
1138
+ "ti-charging-pile",
1139
+ "ti-chart-arcs",
1140
+ "ti-chart-arcs-3",
1141
+ "ti-chart-area",
1142
+ "ti-chart-area-filled",
1143
+ "ti-chart-area-line",
1144
+ "ti-chart-area-line-filled",
1145
+ "ti-chart-arrows",
1146
+ "ti-chart-arrows-vertical",
1147
+ "ti-chart-bar",
1148
+ "ti-chart-bar-off",
1149
+ "ti-chart-bubble",
1150
+ "ti-chart-bubble-filled",
1151
+ "ti-chart-candle",
1152
+ "ti-chart-candle-filled",
1153
+ "ti-chart-circles",
1154
+ "ti-chart-donut",
1155
+ "ti-chart-donut-2",
1156
+ "ti-chart-donut-3",
1157
+ "ti-chart-donut-4",
1158
+ "ti-chart-donut-filled",
1159
+ "ti-chart-dots",
1160
+ "ti-chart-dots-2",
1161
+ "ti-chart-dots-3",
1162
+ "ti-chart-grid-dots",
1163
+ "ti-chart-histogram",
1164
+ "ti-chart-infographic",
1165
+ "ti-chart-line",
1166
+ "ti-chart-pie",
1167
+ "ti-chart-pie-2",
1168
+ "ti-chart-pie-3",
1169
+ "ti-chart-pie-4",
1170
+ "ti-chart-pie-filled",
1171
+ "ti-chart-pie-off",
1172
+ "ti-chart-ppf",
1173
+ "ti-chart-radar",
1174
+ "ti-chart-sankey",
1175
+ "ti-chart-treemap",
1176
+ "ti-check",
1177
+ "ti-checkbox",
1178
+ "ti-checklist",
1179
+ "ti-checks",
1180
+ "ti-checkup-list",
1181
+ "ti-cheese",
1182
+ "ti-chef-hat",
1183
+ "ti-chef-hat-off",
1184
+ "ti-cherry",
1185
+ "ti-cherry-filled",
1186
+ "ti-chess",
1187
+ "ti-chess-bishop",
1188
+ "ti-chess-bishop-filled",
1189
+ "ti-chess-filled",
1190
+ "ti-chess-king",
1191
+ "ti-chess-king-filled",
1192
+ "ti-chess-knight",
1193
+ "ti-chess-knight-filled",
1194
+ "ti-chess-queen",
1195
+ "ti-chess-queen-filled",
1196
+ "ti-chess-rook",
1197
+ "ti-chess-rook-filled",
1198
+ "ti-chevron-down",
1199
+ "ti-chevron-down-left",
1200
+ "ti-chevron-down-right",
1201
+ "ti-chevron-left",
1202
+ "ti-chevron-right",
1203
+ "ti-chevron-up",
1204
+ "ti-chevron-up-left",
1205
+ "ti-chevron-up-right",
1206
+ "ti-chevrons-down",
1207
+ "ti-chevrons-down-left",
1208
+ "ti-chevrons-down-right",
1209
+ "ti-chevrons-left",
1210
+ "ti-chevrons-right",
1211
+ "ti-chevrons-up",
1212
+ "ti-chevrons-up-left",
1213
+ "ti-chevrons-up-right",
1214
+ "ti-chisel",
1215
+ "ti-christmas-tree",
1216
+ "ti-christmas-tree-off",
1217
+ "ti-circle",
1218
+ "ti-circle-0-filled",
1219
+ "ti-circle-1-filled",
1220
+ "ti-circle-2-filled",
1221
+ "ti-circle-3-filled",
1222
+ "ti-circle-4-filled",
1223
+ "ti-circle-5-filled",
1224
+ "ti-circle-6-filled",
1225
+ "ti-circle-7-filled",
1226
+ "ti-circle-8-filled",
1227
+ "ti-circle-9-filled",
1228
+ "ti-circle-arrow-down",
1229
+ "ti-circle-arrow-down-filled",
1230
+ "ti-circle-arrow-down-left",
1231
+ "ti-circle-arrow-down-left-filled",
1232
+ "ti-circle-arrow-down-right",
1233
+ "ti-circle-arrow-down-right-filled",
1234
+ "ti-circle-arrow-left",
1235
+ "ti-circle-arrow-left-filled",
1236
+ "ti-circle-arrow-right",
1237
+ "ti-circle-arrow-right-filled",
1238
+ "ti-circle-arrow-up",
1239
+ "ti-circle-arrow-up-filled",
1240
+ "ti-circle-arrow-up-left",
1241
+ "ti-circle-arrow-up-left-filled",
1242
+ "ti-circle-arrow-up-right",
1243
+ "ti-circle-arrow-up-right-filled",
1244
+ "ti-circle-caret-down",
1245
+ "ti-circle-caret-left",
1246
+ "ti-circle-caret-right",
1247
+ "ti-circle-caret-up",
1248
+ "ti-circle-check",
1249
+ "ti-circle-check-filled",
1250
+ "ti-circle-chevron-down",
1251
+ "ti-circle-chevron-left",
1252
+ "ti-circle-chevron-right",
1253
+ "ti-circle-chevron-up",
1254
+ "ti-circle-chevrons-down",
1255
+ "ti-circle-chevrons-left",
1256
+ "ti-circle-chevrons-right",
1257
+ "ti-circle-chevrons-up",
1258
+ "ti-circle-dashed",
1259
+ "ti-circle-dot",
1260
+ "ti-circle-dot-filled",
1261
+ "ti-circle-dotted",
1262
+ "ti-circle-filled",
1263
+ "ti-circle-half",
1264
+ "ti-circle-half-2",
1265
+ "ti-circle-half-vertical",
1266
+ "ti-circle-key",
1267
+ "ti-circle-key-filled",
1268
+ "ti-circle-letter-a",
1269
+ "ti-circle-letter-b",
1270
+ "ti-circle-letter-c",
1271
+ "ti-circle-letter-d",
1272
+ "ti-circle-letter-e",
1273
+ "ti-circle-letter-f",
1274
+ "ti-circle-letter-g",
1275
+ "ti-circle-letter-h",
1276
+ "ti-circle-letter-i",
1277
+ "ti-circle-letter-j",
1278
+ "ti-circle-letter-k",
1279
+ "ti-circle-letter-l",
1280
+ "ti-circle-letter-m",
1281
+ "ti-circle-letter-n",
1282
+ "ti-circle-letter-o",
1283
+ "ti-circle-letter-p",
1284
+ "ti-circle-letter-q",
1285
+ "ti-circle-letter-r",
1286
+ "ti-circle-letter-s",
1287
+ "ti-circle-letter-t",
1288
+ "ti-circle-letter-u",
1289
+ "ti-circle-letter-v",
1290
+ "ti-circle-letter-w",
1291
+ "ti-circle-letter-x",
1292
+ "ti-circle-letter-y",
1293
+ "ti-circle-letter-z",
1294
+ "ti-circle-minus",
1295
+ "ti-circle-number-0",
1296
+ "ti-circle-number-1",
1297
+ "ti-circle-number-2",
1298
+ "ti-circle-number-3",
1299
+ "ti-circle-number-4",
1300
+ "ti-circle-number-5",
1301
+ "ti-circle-number-6",
1302
+ "ti-circle-number-7",
1303
+ "ti-circle-number-8",
1304
+ "ti-circle-number-9",
1305
+ "ti-circle-off",
1306
+ "ti-circle-plus",
1307
+ "ti-circle-rectangle",
1308
+ "ti-circle-rectangle-off",
1309
+ "ti-circle-square",
1310
+ "ti-circle-triangle",
1311
+ "ti-circle-x",
1312
+ "ti-circle-x-filled",
1313
+ "ti-circles",
1314
+ "ti-circles-filled",
1315
+ "ti-circles-relation",
1316
+ "ti-circuit-ammeter",
1317
+ "ti-circuit-battery",
1318
+ "ti-circuit-bulb",
1319
+ "ti-circuit-capacitor",
1320
+ "ti-circuit-capacitor-polarized",
1321
+ "ti-circuit-cell",
1322
+ "ti-circuit-cell-plus",
1323
+ "ti-circuit-changeover",
1324
+ "ti-circuit-diode",
1325
+ "ti-circuit-diode-zener",
1326
+ "ti-circuit-ground",
1327
+ "ti-circuit-ground-digital",
1328
+ "ti-circuit-inductor",
1329
+ "ti-circuit-motor",
1330
+ "ti-circuit-pushbutton",
1331
+ "ti-circuit-resistor",
1332
+ "ti-circuit-switch-closed",
1333
+ "ti-circuit-switch-open",
1334
+ "ti-circuit-voltmeter",
1335
+ "ti-clear-all",
1336
+ "ti-clear-formatting",
1337
+ "ti-click",
1338
+ "ti-clipboard",
1339
+ "ti-clipboard-check",
1340
+ "ti-clipboard-copy",
1341
+ "ti-clipboard-data",
1342
+ "ti-clipboard-heart",
1343
+ "ti-clipboard-list",
1344
+ "ti-clipboard-off",
1345
+ "ti-clipboard-plus",
1346
+ "ti-clipboard-text",
1347
+ "ti-clipboard-typography",
1348
+ "ti-clipboard-x",
1349
+ "ti-clock",
1350
+ "ti-clock-2",
1351
+ "ti-clock-bolt",
1352
+ "ti-clock-cancel",
1353
+ "ti-clock-check",
1354
+ "ti-clock-code",
1355
+ "ti-clock-cog",
1356
+ "ti-clock-dollar",
1357
+ "ti-clock-down",
1358
+ "ti-clock-edit",
1359
+ "ti-clock-exclamation",
1360
+ "ti-clock-filled",
1361
+ "ti-clock-heart",
1362
+ "ti-clock-hour-1",
1363
+ "ti-clock-hour-10",
1364
+ "ti-clock-hour-11",
1365
+ "ti-clock-hour-12",
1366
+ "ti-clock-hour-2",
1367
+ "ti-clock-hour-3",
1368
+ "ti-clock-hour-4",
1369
+ "ti-clock-hour-5",
1370
+ "ti-clock-hour-6",
1371
+ "ti-clock-hour-7",
1372
+ "ti-clock-hour-8",
1373
+ "ti-clock-hour-9",
1374
+ "ti-clock-minus",
1375
+ "ti-clock-off",
1376
+ "ti-clock-pause",
1377
+ "ti-clock-pin",
1378
+ "ti-clock-play",
1379
+ "ti-clock-plus",
1380
+ "ti-clock-question",
1381
+ "ti-clock-record",
1382
+ "ti-clock-search",
1383
+ "ti-clock-share",
1384
+ "ti-clock-shield",
1385
+ "ti-clock-star",
1386
+ "ti-clock-stop",
1387
+ "ti-clock-up",
1388
+ "ti-clock-x",
1389
+ "ti-clothes-rack",
1390
+ "ti-clothes-rack-off",
1391
+ "ti-cloud",
1392
+ "ti-cloud-bolt",
1393
+ "ti-cloud-cancel",
1394
+ "ti-cloud-check",
1395
+ "ti-cloud-code",
1396
+ "ti-cloud-cog",
1397
+ "ti-cloud-computing",
1398
+ "ti-cloud-data-connection",
1399
+ "ti-cloud-dollar",
1400
+ "ti-cloud-down",
1401
+ "ti-cloud-download",
1402
+ "ti-cloud-exclamation",
1403
+ "ti-cloud-filled",
1404
+ "ti-cloud-fog",
1405
+ "ti-cloud-heart",
1406
+ "ti-cloud-lock",
1407
+ "ti-cloud-lock-open",
1408
+ "ti-cloud-minus",
1409
+ "ti-cloud-off",
1410
+ "ti-cloud-pause",
1411
+ "ti-cloud-pin",
1412
+ "ti-cloud-plus",
1413
+ "ti-cloud-question",
1414
+ "ti-cloud-rain",
1415
+ "ti-cloud-search",
1416
+ "ti-cloud-share",
1417
+ "ti-cloud-snow",
1418
+ "ti-cloud-star",
1419
+ "ti-cloud-storm",
1420
+ "ti-cloud-up",
1421
+ "ti-cloud-upload",
1422
+ "ti-cloud-x",
1423
+ "ti-clover",
1424
+ "ti-clover-2",
1425
+ "ti-clubs",
1426
+ "ti-clubs-filled",
1427
+ "ti-code",
1428
+ "ti-code-asterix",
1429
+ "ti-code-circle",
1430
+ "ti-code-circle-2",
1431
+ "ti-code-dots",
1432
+ "ti-code-minus",
1433
+ "ti-code-off",
1434
+ "ti-code-plus",
1435
+ "ti-coffee",
1436
+ "ti-coffee-off",
1437
+ "ti-coffin",
1438
+ "ti-coin",
1439
+ "ti-coin-bitcoin",
1440
+ "ti-coin-euro",
1441
+ "ti-coin-monero",
1442
+ "ti-coin-off",
1443
+ "ti-coin-pound",
1444
+ "ti-coin-rupee",
1445
+ "ti-coin-yen",
1446
+ "ti-coin-yuan",
1447
+ "ti-coins",
1448
+ "ti-color-filter",
1449
+ "ti-color-picker",
1450
+ "ti-color-picker-off",
1451
+ "ti-color-swatch",
1452
+ "ti-color-swatch-off",
1453
+ "ti-column-insert-left",
1454
+ "ti-column-insert-right",
1455
+ "ti-columns",
1456
+ "ti-columns-1",
1457
+ "ti-columns-2",
1458
+ "ti-columns-3",
1459
+ "ti-columns-off",
1460
+ "ti-comet",
1461
+ "ti-command",
1462
+ "ti-command-off",
1463
+ "ti-compass",
1464
+ "ti-compass-off",
1465
+ "ti-components",
1466
+ "ti-components-off",
1467
+ "ti-cone",
1468
+ "ti-cone-2",
1469
+ "ti-cone-off",
1470
+ "ti-cone-plus",
1471
+ "ti-confetti",
1472
+ "ti-confetti-off",
1473
+ "ti-confucius",
1474
+ "ti-container",
1475
+ "ti-container-off",
1476
+ "ti-contrast",
1477
+ "ti-contrast-2",
1478
+ "ti-contrast-2-off",
1479
+ "ti-contrast-off",
1480
+ "ti-cooker",
1481
+ "ti-cookie",
1482
+ "ti-cookie-man",
1483
+ "ti-cookie-off",
1484
+ "ti-copy",
1485
+ "ti-copy-off",
1486
+ "ti-copyleft",
1487
+ "ti-copyleft-filled",
1488
+ "ti-copyleft-off",
1489
+ "ti-copyright",
1490
+ "ti-copyright-filled",
1491
+ "ti-copyright-off",
1492
+ "ti-corner-down-left",
1493
+ "ti-corner-down-left-double",
1494
+ "ti-corner-down-right",
1495
+ "ti-corner-down-right-double",
1496
+ "ti-corner-left-down",
1497
+ "ti-corner-left-down-double",
1498
+ "ti-corner-left-up",
1499
+ "ti-corner-left-up-double",
1500
+ "ti-corner-right-down",
1501
+ "ti-corner-right-down-double",
1502
+ "ti-corner-right-up",
1503
+ "ti-corner-right-up-double",
1504
+ "ti-corner-up-left",
1505
+ "ti-corner-up-left-double",
1506
+ "ti-corner-up-right",
1507
+ "ti-corner-up-right-double",
1508
+ "ti-cpu",
1509
+ "ti-cpu-2",
1510
+ "ti-cpu-off",
1511
+ "ti-crane",
1512
+ "ti-crane-off",
1513
+ "ti-creative-commons",
1514
+ "ti-creative-commons-by",
1515
+ "ti-creative-commons-nc",
1516
+ "ti-creative-commons-nd",
1517
+ "ti-creative-commons-off",
1518
+ "ti-creative-commons-sa",
1519
+ "ti-creative-commons-zero",
1520
+ "ti-credit-card",
1521
+ "ti-credit-card-off",
1522
+ "ti-cricket",
1523
+ "ti-crop",
1524
+ "ti-cross",
1525
+ "ti-cross-filled",
1526
+ "ti-cross-off",
1527
+ "ti-crosshair",
1528
+ "ti-crown",
1529
+ "ti-crown-off",
1530
+ "ti-crutches",
1531
+ "ti-crutches-off",
1532
+ "ti-crystal-ball",
1533
+ "ti-csv",
1534
+ "ti-cube",
1535
+ "ti-cube-off",
1536
+ "ti-cube-plus",
1537
+ "ti-cube-send",
1538
+ "ti-cube-unfolded",
1539
+ "ti-cup",
1540
+ "ti-cup-off",
1541
+ "ti-curling",
1542
+ "ti-curly-loop",
1543
+ "ti-currency",
1544
+ "ti-currency-afghani",
1545
+ "ti-currency-bahraini",
1546
+ "ti-currency-baht",
1547
+ "ti-currency-bitcoin",
1548
+ "ti-currency-cent",
1549
+ "ti-currency-dinar",
1550
+ "ti-currency-dirham",
1551
+ "ti-currency-dogecoin",
1552
+ "ti-currency-dollar",
1553
+ "ti-currency-dollar-australian",
1554
+ "ti-currency-dollar-brunei",
1555
+ "ti-currency-dollar-canadian",
1556
+ "ti-currency-dollar-guyanese",
1557
+ "ti-currency-dollar-off",
1558
+ "ti-currency-dollar-singapore",
1559
+ "ti-currency-dollar-zimbabwean",
1560
+ "ti-currency-dong",
1561
+ "ti-currency-dram",
1562
+ "ti-currency-ethereum",
1563
+ "ti-currency-euro",
1564
+ "ti-currency-euro-off",
1565
+ "ti-currency-forint",
1566
+ "ti-currency-frank",
1567
+ "ti-currency-guarani",
1568
+ "ti-currency-hryvnia",
1569
+ "ti-currency-iranian-rial",
1570
+ "ti-currency-kip",
1571
+ "ti-currency-krone-czech",
1572
+ "ti-currency-krone-danish",
1573
+ "ti-currency-krone-swedish",
1574
+ "ti-currency-lari",
1575
+ "ti-currency-leu",
1576
+ "ti-currency-lira",
1577
+ "ti-currency-litecoin",
1578
+ "ti-currency-lyd",
1579
+ "ti-currency-manat",
1580
+ "ti-currency-monero",
1581
+ "ti-currency-naira",
1582
+ "ti-currency-nano",
1583
+ "ti-currency-off",
1584
+ "ti-currency-paanga",
1585
+ "ti-currency-peso",
1586
+ "ti-currency-pound",
1587
+ "ti-currency-pound-off",
1588
+ "ti-currency-quetzal",
1589
+ "ti-currency-real",
1590
+ "ti-currency-renminbi",
1591
+ "ti-currency-ripple",
1592
+ "ti-currency-riyal",
1593
+ "ti-currency-rubel",
1594
+ "ti-currency-rufiyaa",
1595
+ "ti-currency-rupee",
1596
+ "ti-currency-rupee-nepalese",
1597
+ "ti-currency-shekel",
1598
+ "ti-currency-solana",
1599
+ "ti-currency-som",
1600
+ "ti-currency-taka",
1601
+ "ti-currency-tenge",
1602
+ "ti-currency-tugrik",
1603
+ "ti-currency-won",
1604
+ "ti-currency-yen",
1605
+ "ti-currency-yen-off",
1606
+ "ti-currency-yuan",
1607
+ "ti-currency-zloty",
1608
+ "ti-current-location",
1609
+ "ti-current-location-off",
1610
+ "ti-cursor-off",
1611
+ "ti-cursor-text",
1612
+ "ti-cut",
1613
+ "ti-cylinder",
1614
+ "ti-cylinder-off",
1615
+ "ti-cylinder-plus",
1616
+ "ti-dashboard",
1617
+ "ti-dashboard-off",
1618
+ "ti-database",
1619
+ "ti-database-cog",
1620
+ "ti-database-dollar",
1621
+ "ti-database-edit",
1622
+ "ti-database-exclamation",
1623
+ "ti-database-export",
1624
+ "ti-database-heart",
1625
+ "ti-database-import",
1626
+ "ti-database-leak",
1627
+ "ti-database-minus",
1628
+ "ti-database-off",
1629
+ "ti-database-plus",
1630
+ "ti-database-search",
1631
+ "ti-database-share",
1632
+ "ti-database-star",
1633
+ "ti-database-x",
1634
+ "ti-decimal",
1635
+ "ti-deer",
1636
+ "ti-delta",
1637
+ "ti-dental",
1638
+ "ti-dental-broken",
1639
+ "ti-dental-off",
1640
+ "ti-deselect",
1641
+ "ti-details",
1642
+ "ti-details-off",
1643
+ "ti-device-airpods",
1644
+ "ti-device-airpods-case",
1645
+ "ti-device-analytics",
1646
+ "ti-device-audio-tape",
1647
+ "ti-device-camera-phone",
1648
+ "ti-device-cctv",
1649
+ "ti-device-cctv-off",
1650
+ "ti-device-computer-camera",
1651
+ "ti-device-computer-camera-off",
1652
+ "ti-device-desktop",
1653
+ "ti-device-desktop-analytics",
1654
+ "ti-device-desktop-bolt",
1655
+ "ti-device-desktop-cancel",
1656
+ "ti-device-desktop-check",
1657
+ "ti-device-desktop-code",
1658
+ "ti-device-desktop-cog",
1659
+ "ti-device-desktop-dollar",
1660
+ "ti-device-desktop-down",
1661
+ "ti-device-desktop-exclamation",
1662
+ "ti-device-desktop-heart",
1663
+ "ti-device-desktop-minus",
1664
+ "ti-device-desktop-off",
1665
+ "ti-device-desktop-pause",
1666
+ "ti-device-desktop-pin",
1667
+ "ti-device-desktop-plus",
1668
+ "ti-device-desktop-question",
1669
+ "ti-device-desktop-search",
1670
+ "ti-device-desktop-share",
1671
+ "ti-device-desktop-star",
1672
+ "ti-device-desktop-up",
1673
+ "ti-device-desktop-x",
1674
+ "ti-device-floppy",
1675
+ "ti-device-gamepad",
1676
+ "ti-device-gamepad-2",
1677
+ "ti-device-heart-monitor",
1678
+ "ti-device-heart-monitor-filled",
1679
+ "ti-device-imac",
1680
+ "ti-device-imac-bolt",
1681
+ "ti-device-imac-cancel",
1682
+ "ti-device-imac-check",
1683
+ "ti-device-imac-code",
1684
+ "ti-device-imac-cog",
1685
+ "ti-device-imac-dollar",
1686
+ "ti-device-imac-down",
1687
+ "ti-device-imac-exclamation",
1688
+ "ti-device-imac-heart",
1689
+ "ti-device-imac-minus",
1690
+ "ti-device-imac-off",
1691
+ "ti-device-imac-pause",
1692
+ "ti-device-imac-pin",
1693
+ "ti-device-imac-plus",
1694
+ "ti-device-imac-question",
1695
+ "ti-device-imac-search",
1696
+ "ti-device-imac-share",
1697
+ "ti-device-imac-star",
1698
+ "ti-device-imac-up",
1699
+ "ti-device-imac-x",
1700
+ "ti-device-ipad",
1701
+ "ti-device-ipad-bolt",
1702
+ "ti-device-ipad-cancel",
1703
+ "ti-device-ipad-check",
1704
+ "ti-device-ipad-code",
1705
+ "ti-device-ipad-cog",
1706
+ "ti-device-ipad-dollar",
1707
+ "ti-device-ipad-down",
1708
+ "ti-device-ipad-exclamation",
1709
+ "ti-device-ipad-heart",
1710
+ "ti-device-ipad-horizontal",
1711
+ "ti-device-ipad-horizontal-bolt",
1712
+ "ti-device-ipad-horizontal-cancel",
1713
+ "ti-device-ipad-horizontal-check",
1714
+ "ti-device-ipad-horizontal-code",
1715
+ "ti-device-ipad-horizontal-cog",
1716
+ "ti-device-ipad-horizontal-dollar",
1717
+ "ti-device-ipad-horizontal-down",
1718
+ "ti-device-ipad-horizontal-exclamation",
1719
+ "ti-device-ipad-horizontal-heart",
1720
+ "ti-device-ipad-horizontal-minus",
1721
+ "ti-device-ipad-horizontal-off",
1722
+ "ti-device-ipad-horizontal-pause",
1723
+ "ti-device-ipad-horizontal-pin",
1724
+ "ti-device-ipad-horizontal-plus",
1725
+ "ti-device-ipad-horizontal-question",
1726
+ "ti-device-ipad-horizontal-search",
1727
+ "ti-device-ipad-horizontal-share",
1728
+ "ti-device-ipad-horizontal-star",
1729
+ "ti-device-ipad-horizontal-up",
1730
+ "ti-device-ipad-horizontal-x",
1731
+ "ti-device-ipad-minus",
1732
+ "ti-device-ipad-off",
1733
+ "ti-device-ipad-pause",
1734
+ "ti-device-ipad-pin",
1735
+ "ti-device-ipad-plus",
1736
+ "ti-device-ipad-question",
1737
+ "ti-device-ipad-search",
1738
+ "ti-device-ipad-share",
1739
+ "ti-device-ipad-star",
1740
+ "ti-device-ipad-up",
1741
+ "ti-device-ipad-x",
1742
+ "ti-device-landline-phone",
1743
+ "ti-device-laptop",
1744
+ "ti-device-laptop-off",
1745
+ "ti-device-mobile",
1746
+ "ti-device-mobile-bolt",
1747
+ "ti-device-mobile-cancel",
1748
+ "ti-device-mobile-charging",
1749
+ "ti-device-mobile-check",
1750
+ "ti-device-mobile-code",
1751
+ "ti-device-mobile-cog",
1752
+ "ti-device-mobile-dollar",
1753
+ "ti-device-mobile-down",
1754
+ "ti-device-mobile-exclamation",
1755
+ "ti-device-mobile-filled",
1756
+ "ti-device-mobile-heart",
1757
+ "ti-device-mobile-message",
1758
+ "ti-device-mobile-minus",
1759
+ "ti-device-mobile-off",
1760
+ "ti-device-mobile-pause",
1761
+ "ti-device-mobile-pin",
1762
+ "ti-device-mobile-plus",
1763
+ "ti-device-mobile-question",
1764
+ "ti-device-mobile-rotated",
1765
+ "ti-device-mobile-search",
1766
+ "ti-device-mobile-share",
1767
+ "ti-device-mobile-star",
1768
+ "ti-device-mobile-up",
1769
+ "ti-device-mobile-vibration",
1770
+ "ti-device-mobile-x",
1771
+ "ti-device-nintendo",
1772
+ "ti-device-nintendo-off",
1773
+ "ti-device-remote",
1774
+ "ti-device-sd-card",
1775
+ "ti-device-sim",
1776
+ "ti-device-sim-1",
1777
+ "ti-device-sim-2",
1778
+ "ti-device-sim-3",
1779
+ "ti-device-speaker",
1780
+ "ti-device-speaker-off",
1781
+ "ti-device-tablet",
1782
+ "ti-device-tablet-bolt",
1783
+ "ti-device-tablet-cancel",
1784
+ "ti-device-tablet-check",
1785
+ "ti-device-tablet-code",
1786
+ "ti-device-tablet-cog",
1787
+ "ti-device-tablet-dollar",
1788
+ "ti-device-tablet-down",
1789
+ "ti-device-tablet-exclamation",
1790
+ "ti-device-tablet-filled",
1791
+ "ti-device-tablet-heart",
1792
+ "ti-device-tablet-minus",
1793
+ "ti-device-tablet-off",
1794
+ "ti-device-tablet-pause",
1795
+ "ti-device-tablet-pin",
1796
+ "ti-device-tablet-plus",
1797
+ "ti-device-tablet-question",
1798
+ "ti-device-tablet-search",
1799
+ "ti-device-tablet-share",
1800
+ "ti-device-tablet-star",
1801
+ "ti-device-tablet-up",
1802
+ "ti-device-tablet-x",
1803
+ "ti-device-tv",
1804
+ "ti-device-tv-off",
1805
+ "ti-device-tv-old",
1806
+ "ti-device-watch",
1807
+ "ti-device-watch-bolt",
1808
+ "ti-device-watch-cancel",
1809
+ "ti-device-watch-check",
1810
+ "ti-device-watch-code",
1811
+ "ti-device-watch-cog",
1812
+ "ti-device-watch-dollar",
1813
+ "ti-device-watch-down",
1814
+ "ti-device-watch-exclamation",
1815
+ "ti-device-watch-heart",
1816
+ "ti-device-watch-minus",
1817
+ "ti-device-watch-off",
1818
+ "ti-device-watch-pause",
1819
+ "ti-device-watch-pin",
1820
+ "ti-device-watch-plus",
1821
+ "ti-device-watch-question",
1822
+ "ti-device-watch-search",
1823
+ "ti-device-watch-share",
1824
+ "ti-device-watch-star",
1825
+ "ti-device-watch-stats",
1826
+ "ti-device-watch-stats-2",
1827
+ "ti-device-watch-up",
1828
+ "ti-device-watch-x",
1829
+ "ti-devices",
1830
+ "ti-devices-2",
1831
+ "ti-devices-bolt",
1832
+ "ti-devices-cancel",
1833
+ "ti-devices-check",
1834
+ "ti-devices-code",
1835
+ "ti-devices-cog",
1836
+ "ti-devices-dollar",
1837
+ "ti-devices-down",
1838
+ "ti-devices-exclamation",
1839
+ "ti-devices-heart",
1840
+ "ti-devices-minus",
1841
+ "ti-devices-off",
1842
+ "ti-devices-pause",
1843
+ "ti-devices-pc",
1844
+ "ti-devices-pc-off",
1845
+ "ti-devices-pin",
1846
+ "ti-devices-plus",
1847
+ "ti-devices-question",
1848
+ "ti-devices-search",
1849
+ "ti-devices-share",
1850
+ "ti-devices-star",
1851
+ "ti-devices-up",
1852
+ "ti-devices-x",
1853
+ "ti-diabolo",
1854
+ "ti-diabolo-off",
1855
+ "ti-diabolo-plus",
1856
+ "ti-dialpad",
1857
+ "ti-dialpad-filled",
1858
+ "ti-dialpad-off",
1859
+ "ti-diamond",
1860
+ "ti-diamond-filled",
1861
+ "ti-diamond-off",
1862
+ "ti-diamonds",
1863
+ "ti-diamonds-filled",
1864
+ "ti-dice",
1865
+ "ti-dice-1",
1866
+ "ti-dice-1-filled",
1867
+ "ti-dice-2",
1868
+ "ti-dice-2-filled",
1869
+ "ti-dice-3",
1870
+ "ti-dice-3-filled",
1871
+ "ti-dice-4",
1872
+ "ti-dice-4-filled",
1873
+ "ti-dice-5",
1874
+ "ti-dice-5-filled",
1875
+ "ti-dice-6",
1876
+ "ti-dice-6-filled",
1877
+ "ti-dice-filled",
1878
+ "ti-dimensions",
1879
+ "ti-direction",
1880
+ "ti-direction-horizontal",
1881
+ "ti-direction-sign",
1882
+ "ti-direction-sign-filled",
1883
+ "ti-direction-sign-off",
1884
+ "ti-directions",
1885
+ "ti-directions-off",
1886
+ "ti-disabled",
1887
+ "ti-disabled-2",
1888
+ "ti-disabled-off",
1889
+ "ti-disc",
1890
+ "ti-disc-golf",
1891
+ "ti-disc-off",
1892
+ "ti-discount",
1893
+ "ti-discount-2",
1894
+ "ti-discount-2-off",
1895
+ "ti-discount-check",
1896
+ "ti-discount-check-filled",
1897
+ "ti-discount-off",
1898
+ "ti-divide",
1899
+ "ti-dna",
1900
+ "ti-dna-2",
1901
+ "ti-dna-2-off",
1902
+ "ti-dna-off",
1903
+ "ti-dog",
1904
+ "ti-dog-bowl",
1905
+ "ti-door",
1906
+ "ti-door-enter",
1907
+ "ti-door-exit",
1908
+ "ti-door-off",
1909
+ "ti-dots",
1910
+ "ti-dots-circle-horizontal",
1911
+ "ti-dots-diagonal",
1912
+ "ti-dots-diagonal-2",
1913
+ "ti-dots-vertical",
1914
+ "ti-download",
1915
+ "ti-download-off",
1916
+ "ti-drag-drop",
1917
+ "ti-drag-drop-2",
1918
+ "ti-drone",
1919
+ "ti-drone-off",
1920
+ "ti-drop-circle",
1921
+ "ti-droplet",
1922
+ "ti-droplet-bolt",
1923
+ "ti-droplet-cancel",
1924
+ "ti-droplet-check",
1925
+ "ti-droplet-code",
1926
+ "ti-droplet-cog",
1927
+ "ti-droplet-dollar",
1928
+ "ti-droplet-down",
1929
+ "ti-droplet-exclamation",
1930
+ "ti-droplet-filled",
1931
+ "ti-droplet-filled-2",
1932
+ "ti-droplet-half",
1933
+ "ti-droplet-half-2",
1934
+ "ti-droplet-half-filled",
1935
+ "ti-droplet-heart",
1936
+ "ti-droplet-minus",
1937
+ "ti-droplet-off",
1938
+ "ti-droplet-pause",
1939
+ "ti-droplet-pin",
1940
+ "ti-droplet-plus",
1941
+ "ti-droplet-question",
1942
+ "ti-droplet-search",
1943
+ "ti-droplet-share",
1944
+ "ti-droplet-star",
1945
+ "ti-droplet-up",
1946
+ "ti-droplet-x",
1947
+ "ti-dual-screen",
1948
+ "ti-e-passport",
1949
+ "ti-ear",
1950
+ "ti-ear-off",
1951
+ "ti-ease-in",
1952
+ "ti-ease-in-control-point",
1953
+ "ti-ease-in-out",
1954
+ "ti-ease-in-out-control-points",
1955
+ "ti-ease-out",
1956
+ "ti-ease-out-control-point",
1957
+ "ti-edit",
1958
+ "ti-edit-circle",
1959
+ "ti-edit-circle-off",
1960
+ "ti-edit-off",
1961
+ "ti-egg",
1962
+ "ti-egg-cracked",
1963
+ "ti-egg-filled",
1964
+ "ti-egg-fried",
1965
+ "ti-egg-off",
1966
+ "ti-eggs",
1967
+ "ti-elevator",
1968
+ "ti-elevator-off",
1969
+ "ti-emergency-bed",
1970
+ "ti-empathize",
1971
+ "ti-empathize-off",
1972
+ "ti-emphasis",
1973
+ "ti-engine",
1974
+ "ti-engine-off",
1975
+ "ti-equal",
1976
+ "ti-equal-double",
1977
+ "ti-equal-not",
1978
+ "ti-eraser",
1979
+ "ti-eraser-off",
1980
+ "ti-error-404",
1981
+ "ti-error-404-off",
1982
+ "ti-exchange",
1983
+ "ti-exchange-off",
1984
+ "ti-exclamation-circle",
1985
+ "ti-exclamation-mark",
1986
+ "ti-exclamation-mark-off",
1987
+ "ti-explicit",
1988
+ "ti-explicit-off",
1989
+ "ti-exposure",
1990
+ "ti-exposure-0",
1991
+ "ti-exposure-minus-1",
1992
+ "ti-exposure-minus-2",
1993
+ "ti-exposure-off",
1994
+ "ti-exposure-plus-1",
1995
+ "ti-exposure-plus-2",
1996
+ "ti-external-link",
1997
+ "ti-external-link-off",
1998
+ "ti-eye",
1999
+ "ti-eye-check",
2000
+ "ti-eye-closed",
2001
+ "ti-eye-cog",
2002
+ "ti-eye-edit",
2003
+ "ti-eye-exclamation",
2004
+ "ti-eye-filled",
2005
+ "ti-eye-heart",
2006
+ "ti-eye-off",
2007
+ "ti-eye-table",
2008
+ "ti-eye-x",
2009
+ "ti-eyeglass",
2010
+ "ti-eyeglass-2",
2011
+ "ti-eyeglass-off",
2012
+ "ti-face-id",
2013
+ "ti-face-id-error",
2014
+ "ti-face-mask",
2015
+ "ti-face-mask-off",
2016
+ "ti-fall",
2017
+ "ti-feather",
2018
+ "ti-feather-off",
2019
+ "ti-fence",
2020
+ "ti-fence-off",
2021
+ "ti-fidget-spinner",
2022
+ "ti-file",
2023
+ "ti-file-3d",
2024
+ "ti-file-alert",
2025
+ "ti-file-analytics",
2026
+ "ti-file-arrow-left",
2027
+ "ti-file-arrow-right",
2028
+ "ti-file-barcode",
2029
+ "ti-file-broken",
2030
+ "ti-file-certificate",
2031
+ "ti-file-chart",
2032
+ "ti-file-check",
2033
+ "ti-file-code",
2034
+ "ti-file-code-2",
2035
+ "ti-file-cv",
2036
+ "ti-file-database",
2037
+ "ti-file-delta",
2038
+ "ti-file-description",
2039
+ "ti-file-diff",
2040
+ "ti-file-digit",
2041
+ "ti-file-dislike",
2042
+ "ti-file-dollar",
2043
+ "ti-file-dots",
2044
+ "ti-file-download",
2045
+ "ti-file-euro",
2046
+ "ti-file-export",
2047
+ "ti-file-filled",
2048
+ "ti-file-function",
2049
+ "ti-file-horizontal",
2050
+ "ti-file-import",
2051
+ "ti-file-infinity",
2052
+ "ti-file-info",
2053
+ "ti-file-invoice",
2054
+ "ti-file-lambda",
2055
+ "ti-file-like",
2056
+ "ti-file-minus",
2057
+ "ti-file-music",
2058
+ "ti-file-off",
2059
+ "ti-file-orientation",
2060
+ "ti-file-pencil",
2061
+ "ti-file-percent",
2062
+ "ti-file-phone",
2063
+ "ti-file-plus",
2064
+ "ti-file-power",
2065
+ "ti-file-report",
2066
+ "ti-file-rss",
2067
+ "ti-file-scissors",
2068
+ "ti-file-search",
2069
+ "ti-file-settings",
2070
+ "ti-file-shredder",
2071
+ "ti-file-signal",
2072
+ "ti-file-spreadsheet",
2073
+ "ti-file-stack",
2074
+ "ti-file-star",
2075
+ "ti-file-symlink",
2076
+ "ti-file-text",
2077
+ "ti-file-text-ai",
2078
+ "ti-file-time",
2079
+ "ti-file-typography",
2080
+ "ti-file-unknown",
2081
+ "ti-file-upload",
2082
+ "ti-file-vector",
2083
+ "ti-file-x",
2084
+ "ti-file-x-filled",
2085
+ "ti-file-zip",
2086
+ "ti-files",
2087
+ "ti-files-off",
2088
+ "ti-filter",
2089
+ "ti-filter-cog",
2090
+ "ti-filter-dollar",
2091
+ "ti-filter-edit",
2092
+ "ti-filter-minus",
2093
+ "ti-filter-off",
2094
+ "ti-filter-plus",
2095
+ "ti-filter-star",
2096
+ "ti-filter-x",
2097
+ "ti-filters",
2098
+ "ti-fingerprint",
2099
+ "ti-fingerprint-off",
2100
+ "ti-fire-hydrant",
2101
+ "ti-fire-hydrant-off",
2102
+ "ti-firetruck",
2103
+ "ti-first-aid-kit",
2104
+ "ti-first-aid-kit-off",
2105
+ "ti-fish",
2106
+ "ti-fish-bone",
2107
+ "ti-fish-christianity",
2108
+ "ti-fish-hook",
2109
+ "ti-fish-hook-off",
2110
+ "ti-fish-off",
2111
+ "ti-flag",
2112
+ "ti-flag-2",
2113
+ "ti-flag-2-filled",
2114
+ "ti-flag-2-off",
2115
+ "ti-flag-3",
2116
+ "ti-flag-3-filled",
2117
+ "ti-flag-filled",
2118
+ "ti-flag-off",
2119
+ "ti-flame",
2120
+ "ti-flame-off",
2121
+ "ti-flare",
2122
+ "ti-flask",
2123
+ "ti-flask-2",
2124
+ "ti-flask-2-off",
2125
+ "ti-flask-off",
2126
+ "ti-flip-flops",
2127
+ "ti-flip-horizontal",
2128
+ "ti-flip-vertical",
2129
+ "ti-float-center",
2130
+ "ti-float-left",
2131
+ "ti-float-none",
2132
+ "ti-float-right",
2133
+ "ti-flower",
2134
+ "ti-flower-off",
2135
+ "ti-focus",
2136
+ "ti-focus-2",
2137
+ "ti-focus-auto",
2138
+ "ti-focus-centered",
2139
+ "ti-fold",
2140
+ "ti-fold-down",
2141
+ "ti-fold-up",
2142
+ "ti-folder",
2143
+ "ti-folder-bolt",
2144
+ "ti-folder-cancel",
2145
+ "ti-folder-check",
2146
+ "ti-folder-code",
2147
+ "ti-folder-cog",
2148
+ "ti-folder-dollar",
2149
+ "ti-folder-down",
2150
+ "ti-folder-exclamation",
2151
+ "ti-folder-filled",
2152
+ "ti-folder-heart",
2153
+ "ti-folder-minus",
2154
+ "ti-folder-off",
2155
+ "ti-folder-pause",
2156
+ "ti-folder-pin",
2157
+ "ti-folder-plus",
2158
+ "ti-folder-question",
2159
+ "ti-folder-search",
2160
+ "ti-folder-share",
2161
+ "ti-folder-star",
2162
+ "ti-folder-symlink",
2163
+ "ti-folder-up",
2164
+ "ti-folder-x",
2165
+ "ti-folders",
2166
+ "ti-folders-off",
2167
+ "ti-forbid",
2168
+ "ti-forbid-2",
2169
+ "ti-forklift",
2170
+ "ti-forms",
2171
+ "ti-fountain",
2172
+ "ti-fountain-off",
2173
+ "ti-frame",
2174
+ "ti-frame-off",
2175
+ "ti-free-rights",
2176
+ "ti-freeze-column",
2177
+ "ti-freeze-row",
2178
+ "ti-freeze-row-column",
2179
+ "ti-fridge",
2180
+ "ti-fridge-off",
2181
+ "ti-friends",
2182
+ "ti-friends-off",
2183
+ "ti-frustum",
2184
+ "ti-frustum-off",
2185
+ "ti-frustum-plus",
2186
+ "ti-function",
2187
+ "ti-function-off",
2188
+ "ti-garden-cart",
2189
+ "ti-garden-cart-off",
2190
+ "ti-gas-station",
2191
+ "ti-gas-station-off",
2192
+ "ti-gauge",
2193
+ "ti-gauge-off",
2194
+ "ti-gavel",
2195
+ "ti-gender-agender",
2196
+ "ti-gender-androgyne",
2197
+ "ti-gender-bigender",
2198
+ "ti-gender-demiboy",
2199
+ "ti-gender-demigirl",
2200
+ "ti-gender-epicene",
2201
+ "ti-gender-female",
2202
+ "ti-gender-femme",
2203
+ "ti-gender-genderfluid",
2204
+ "ti-gender-genderless",
2205
+ "ti-gender-genderqueer",
2206
+ "ti-gender-hermaphrodite",
2207
+ "ti-gender-intergender",
2208
+ "ti-gender-male",
2209
+ "ti-gender-neutrois",
2210
+ "ti-gender-third",
2211
+ "ti-gender-transgender",
2212
+ "ti-gender-trasvesti",
2213
+ "ti-geometry",
2214
+ "ti-ghost",
2215
+ "ti-ghost-2",
2216
+ "ti-ghost-2-filled",
2217
+ "ti-ghost-filled",
2218
+ "ti-ghost-off",
2219
+ "ti-gif",
2220
+ "ti-gift",
2221
+ "ti-gift-card",
2222
+ "ti-gift-off",
2223
+ "ti-git-branch",
2224
+ "ti-git-branch-deleted",
2225
+ "ti-git-cherry-pick",
2226
+ "ti-git-commit",
2227
+ "ti-git-compare",
2228
+ "ti-git-fork",
2229
+ "ti-git-merge",
2230
+ "ti-git-pull-request",
2231
+ "ti-git-pull-request-closed",
2232
+ "ti-git-pull-request-draft",
2233
+ "ti-gizmo",
2234
+ "ti-glass",
2235
+ "ti-glass-full",
2236
+ "ti-glass-off",
2237
+ "ti-globe",
2238
+ "ti-globe-off",
2239
+ "ti-go-game",
2240
+ "ti-golf",
2241
+ "ti-golf-off",
2242
+ "ti-gps",
2243
+ "ti-gradienter",
2244
+ "ti-grain",
2245
+ "ti-graph",
2246
+ "ti-graph-off",
2247
+ "ti-grave",
2248
+ "ti-grave-2",
2249
+ "ti-grid-dots",
2250
+ "ti-grid-pattern",
2251
+ "ti-grill",
2252
+ "ti-grill-fork",
2253
+ "ti-grill-off",
2254
+ "ti-grill-spatula",
2255
+ "ti-grip-horizontal",
2256
+ "ti-grip-vertical",
2257
+ "ti-growth",
2258
+ "ti-guitar-pick",
2259
+ "ti-guitar-pick-filled",
2260
+ "ti-h-1",
2261
+ "ti-h-2",
2262
+ "ti-h-3",
2263
+ "ti-h-4",
2264
+ "ti-h-5",
2265
+ "ti-h-6",
2266
+ "ti-hammer",
2267
+ "ti-hammer-off",
2268
+ "ti-hand-click",
2269
+ "ti-hand-finger",
2270
+ "ti-hand-finger-off",
2271
+ "ti-hand-grab",
2272
+ "ti-hand-little-finger",
2273
+ "ti-hand-middle-finger",
2274
+ "ti-hand-move",
2275
+ "ti-hand-off",
2276
+ "ti-hand-ring-finger",
2277
+ "ti-hand-rock",
2278
+ "ti-hand-sanitizer",
2279
+ "ti-hand-stop",
2280
+ "ti-hand-three-fingers",
2281
+ "ti-hand-two-fingers",
2282
+ "ti-hanger",
2283
+ "ti-hanger-2",
2284
+ "ti-hanger-off",
2285
+ "ti-hash",
2286
+ "ti-haze",
2287
+ "ti-hdr",
2288
+ "ti-heading",
2289
+ "ti-heading-off",
2290
+ "ti-headphones",
2291
+ "ti-headphones-filled",
2292
+ "ti-headphones-off",
2293
+ "ti-headset",
2294
+ "ti-headset-off",
2295
+ "ti-health-recognition",
2296
+ "ti-heart",
2297
+ "ti-heart-broken",
2298
+ "ti-heart-filled",
2299
+ "ti-heart-handshake",
2300
+ "ti-heart-minus",
2301
+ "ti-heart-off",
2302
+ "ti-heart-plus",
2303
+ "ti-heart-rate-monitor",
2304
+ "ti-heartbeat",
2305
+ "ti-hearts",
2306
+ "ti-hearts-off",
2307
+ "ti-helicopter",
2308
+ "ti-helicopter-landing",
2309
+ "ti-helmet",
2310
+ "ti-helmet-off",
2311
+ "ti-help",
2312
+ "ti-help-circle",
2313
+ "ti-help-circle-filled",
2314
+ "ti-help-hexagon",
2315
+ "ti-help-hexagon-filled",
2316
+ "ti-help-octagon",
2317
+ "ti-help-octagon-filled",
2318
+ "ti-help-off",
2319
+ "ti-help-small",
2320
+ "ti-help-square",
2321
+ "ti-help-square-filled",
2322
+ "ti-help-square-rounded",
2323
+ "ti-help-square-rounded-filled",
2324
+ "ti-help-triangle",
2325
+ "ti-help-triangle-filled",
2326
+ "ti-hemisphere",
2327
+ "ti-hemisphere-off",
2328
+ "ti-hemisphere-plus",
2329
+ "ti-hexagon",
2330
+ "ti-hexagon-0-filled",
2331
+ "ti-hexagon-1-filled",
2332
+ "ti-hexagon-2-filled",
2333
+ "ti-hexagon-3-filled",
2334
+ "ti-hexagon-3d",
2335
+ "ti-hexagon-4-filled",
2336
+ "ti-hexagon-5-filled",
2337
+ "ti-hexagon-6-filled",
2338
+ "ti-hexagon-7-filled",
2339
+ "ti-hexagon-8-filled",
2340
+ "ti-hexagon-9-filled",
2341
+ "ti-hexagon-filled",
2342
+ "ti-hexagon-letter-a",
2343
+ "ti-hexagon-letter-b",
2344
+ "ti-hexagon-letter-c",
2345
+ "ti-hexagon-letter-d",
2346
+ "ti-hexagon-letter-e",
2347
+ "ti-hexagon-letter-f",
2348
+ "ti-hexagon-letter-g",
2349
+ "ti-hexagon-letter-h",
2350
+ "ti-hexagon-letter-i",
2351
+ "ti-hexagon-letter-j",
2352
+ "ti-hexagon-letter-k",
2353
+ "ti-hexagon-letter-l",
2354
+ "ti-hexagon-letter-m",
2355
+ "ti-hexagon-letter-n",
2356
+ "ti-hexagon-letter-o",
2357
+ "ti-hexagon-letter-p",
2358
+ "ti-hexagon-letter-q",
2359
+ "ti-hexagon-letter-r",
2360
+ "ti-hexagon-letter-s",
2361
+ "ti-hexagon-letter-t",
2362
+ "ti-hexagon-letter-u",
2363
+ "ti-hexagon-letter-v",
2364
+ "ti-hexagon-letter-w",
2365
+ "ti-hexagon-letter-x",
2366
+ "ti-hexagon-letter-y",
2367
+ "ti-hexagon-letter-z",
2368
+ "ti-hexagon-number-0",
2369
+ "ti-hexagon-number-1",
2370
+ "ti-hexagon-number-2",
2371
+ "ti-hexagon-number-3",
2372
+ "ti-hexagon-number-4",
2373
+ "ti-hexagon-number-5",
2374
+ "ti-hexagon-number-6",
2375
+ "ti-hexagon-number-7",
2376
+ "ti-hexagon-number-8",
2377
+ "ti-hexagon-number-9",
2378
+ "ti-hexagon-off",
2379
+ "ti-hexagonal-prism",
2380
+ "ti-hexagonal-prism-off",
2381
+ "ti-hexagonal-prism-plus",
2382
+ "ti-hexagonal-pyramid",
2383
+ "ti-hexagonal-pyramid-off",
2384
+ "ti-hexagonal-pyramid-plus",
2385
+ "ti-hexagons",
2386
+ "ti-hexagons-off",
2387
+ "ti-hierarchy",
2388
+ "ti-hierarchy-2",
2389
+ "ti-hierarchy-3",
2390
+ "ti-hierarchy-off",
2391
+ "ti-highlight",
2392
+ "ti-highlight-off",
2393
+ "ti-history",
2394
+ "ti-history-off",
2395
+ "ti-history-toggle",
2396
+ "ti-home",
2397
+ "ti-home-2",
2398
+ "ti-home-bolt",
2399
+ "ti-home-cancel",
2400
+ "ti-home-check",
2401
+ "ti-home-cog",
2402
+ "ti-home-dollar",
2403
+ "ti-home-dot",
2404
+ "ti-home-down",
2405
+ "ti-home-eco",
2406
+ "ti-home-edit",
2407
+ "ti-home-exclamation",
2408
+ "ti-home-hand",
2409
+ "ti-home-heart",
2410
+ "ti-home-infinity",
2411
+ "ti-home-link",
2412
+ "ti-home-minus",
2413
+ "ti-home-move",
2414
+ "ti-home-off",
2415
+ "ti-home-plus",
2416
+ "ti-home-question",
2417
+ "ti-home-ribbon",
2418
+ "ti-home-search",
2419
+ "ti-home-share",
2420
+ "ti-home-shield",
2421
+ "ti-home-signal",
2422
+ "ti-home-star",
2423
+ "ti-home-stats",
2424
+ "ti-home-up",
2425
+ "ti-home-x",
2426
+ "ti-horse-toy",
2427
+ "ti-hotel-service",
2428
+ "ti-hourglass",
2429
+ "ti-hourglass-empty",
2430
+ "ti-hourglass-filled",
2431
+ "ti-hourglass-high",
2432
+ "ti-hourglass-low",
2433
+ "ti-hourglass-off",
2434
+ "ti-html",
2435
+ "ti-http-connect",
2436
+ "ti-http-delete",
2437
+ "ti-http-get",
2438
+ "ti-http-head",
2439
+ "ti-http-options",
2440
+ "ti-http-patch",
2441
+ "ti-http-post",
2442
+ "ti-http-put",
2443
+ "ti-http-que",
2444
+ "ti-http-trace",
2445
+ "ti-ice-cream",
2446
+ "ti-ice-cream-2",
2447
+ "ti-ice-cream-off",
2448
+ "ti-ice-skating",
2449
+ "ti-icons",
2450
+ "ti-icons-off",
2451
+ "ti-id",
2452
+ "ti-id-badge",
2453
+ "ti-id-badge-2",
2454
+ "ti-id-badge-off",
2455
+ "ti-id-off",
2456
+ "ti-inbox",
2457
+ "ti-inbox-off",
2458
+ "ti-indent-decrease",
2459
+ "ti-indent-increase",
2460
+ "ti-infinity",
2461
+ "ti-infinity-off",
2462
+ "ti-info-circle",
2463
+ "ti-info-circle-filled",
2464
+ "ti-info-hexagon",
2465
+ "ti-info-hexagon-filled",
2466
+ "ti-info-octagon",
2467
+ "ti-info-octagon-filled",
2468
+ "ti-info-small",
2469
+ "ti-info-square",
2470
+ "ti-info-square-filled",
2471
+ "ti-info-square-rounded",
2472
+ "ti-info-square-rounded-filled",
2473
+ "ti-info-triangle",
2474
+ "ti-info-triangle-filled",
2475
+ "ti-inner-shadow-bottom",
2476
+ "ti-inner-shadow-bottom-filled",
2477
+ "ti-inner-shadow-bottom-left",
2478
+ "ti-inner-shadow-bottom-left-filled",
2479
+ "ti-inner-shadow-bottom-right",
2480
+ "ti-inner-shadow-bottom-right-filled",
2481
+ "ti-inner-shadow-left",
2482
+ "ti-inner-shadow-left-filled",
2483
+ "ti-inner-shadow-right",
2484
+ "ti-inner-shadow-right-filled",
2485
+ "ti-inner-shadow-top",
2486
+ "ti-inner-shadow-top-filled",
2487
+ "ti-inner-shadow-top-left",
2488
+ "ti-inner-shadow-top-left-filled",
2489
+ "ti-inner-shadow-top-right",
2490
+ "ti-inner-shadow-top-right-filled",
2491
+ "ti-input-search",
2492
+ "ti-ironing",
2493
+ "ti-ironing-1",
2494
+ "ti-ironing-2",
2495
+ "ti-ironing-3",
2496
+ "ti-ironing-off",
2497
+ "ti-ironing-steam",
2498
+ "ti-ironing-steam-off",
2499
+ "ti-irregular-polyhedron",
2500
+ "ti-irregular-polyhedron-off",
2501
+ "ti-irregular-polyhedron-plus",
2502
+ "ti-italic",
2503
+ "ti-jacket",
2504
+ "ti-jetpack",
2505
+ "ti-jewish-star",
2506
+ "ti-jewish-star-filled",
2507
+ "ti-jpg",
2508
+ "ti-json",
2509
+ "ti-jump-rope",
2510
+ "ti-karate",
2511
+ "ti-kayak",
2512
+ "ti-kering",
2513
+ "ti-key",
2514
+ "ti-key-off",
2515
+ "ti-keyboard",
2516
+ "ti-keyboard-hide",
2517
+ "ti-keyboard-off",
2518
+ "ti-keyboard-show",
2519
+ "ti-keyframe",
2520
+ "ti-keyframe-align-center",
2521
+ "ti-keyframe-align-horizontal",
2522
+ "ti-keyframe-align-vertical",
2523
+ "ti-keyframes",
2524
+ "ti-ladder",
2525
+ "ti-ladder-off",
2526
+ "ti-lambda",
2527
+ "ti-lamp",
2528
+ "ti-lamp-2",
2529
+ "ti-lamp-off",
2530
+ "ti-language",
2531
+ "ti-language-hiragana",
2532
+ "ti-language-katakana",
2533
+ "ti-language-off",
2534
+ "ti-lasso",
2535
+ "ti-lasso-off",
2536
+ "ti-lasso-polygon",
2537
+ "ti-layers-difference",
2538
+ "ti-layers-intersect",
2539
+ "ti-layers-intersect-2",
2540
+ "ti-layers-linked",
2541
+ "ti-layers-off",
2542
+ "ti-layers-subtract",
2543
+ "ti-layers-union",
2544
+ "ti-layout",
2545
+ "ti-layout-2",
2546
+ "ti-layout-align-bottom",
2547
+ "ti-layout-align-center",
2548
+ "ti-layout-align-left",
2549
+ "ti-layout-align-middle",
2550
+ "ti-layout-align-right",
2551
+ "ti-layout-align-top",
2552
+ "ti-layout-board",
2553
+ "ti-layout-board-split",
2554
+ "ti-layout-bottombar",
2555
+ "ti-layout-bottombar-collapse",
2556
+ "ti-layout-bottombar-expand",
2557
+ "ti-layout-cards",
2558
+ "ti-layout-collage",
2559
+ "ti-layout-columns",
2560
+ "ti-layout-dashboard",
2561
+ "ti-layout-distribute-horizontal",
2562
+ "ti-layout-distribute-vertical",
2563
+ "ti-layout-grid",
2564
+ "ti-layout-grid-add",
2565
+ "ti-layout-grid-remove",
2566
+ "ti-layout-kanban",
2567
+ "ti-layout-list",
2568
+ "ti-layout-navbar",
2569
+ "ti-layout-navbar-collapse",
2570
+ "ti-layout-navbar-expand",
2571
+ "ti-layout-off",
2572
+ "ti-layout-rows",
2573
+ "ti-layout-sidebar",
2574
+ "ti-layout-sidebar-left-collapse",
2575
+ "ti-layout-sidebar-left-expand",
2576
+ "ti-layout-sidebar-right",
2577
+ "ti-layout-sidebar-right-collapse",
2578
+ "ti-layout-sidebar-right-expand",
2579
+ "ti-leaf",
2580
+ "ti-leaf-off",
2581
+ "ti-lego",
2582
+ "ti-lego-off",
2583
+ "ti-lemon",
2584
+ "ti-lemon-2",
2585
+ "ti-letter-a",
2586
+ "ti-letter-b",
2587
+ "ti-letter-c",
2588
+ "ti-letter-case",
2589
+ "ti-letter-case-lower",
2590
+ "ti-letter-case-toggle",
2591
+ "ti-letter-case-upper",
2592
+ "ti-letter-d",
2593
+ "ti-letter-e",
2594
+ "ti-letter-f",
2595
+ "ti-letter-g",
2596
+ "ti-letter-h",
2597
+ "ti-letter-i",
2598
+ "ti-letter-j",
2599
+ "ti-letter-k",
2600
+ "ti-letter-l",
2601
+ "ti-letter-m",
2602
+ "ti-letter-n",
2603
+ "ti-letter-o",
2604
+ "ti-letter-p",
2605
+ "ti-letter-q",
2606
+ "ti-letter-r",
2607
+ "ti-letter-s",
2608
+ "ti-letter-spacing",
2609
+ "ti-letter-t",
2610
+ "ti-letter-u",
2611
+ "ti-letter-v",
2612
+ "ti-letter-w",
2613
+ "ti-letter-x",
2614
+ "ti-letter-y",
2615
+ "ti-letter-z",
2616
+ "ti-license",
2617
+ "ti-license-off",
2618
+ "ti-lifebuoy",
2619
+ "ti-lifebuoy-off",
2620
+ "ti-lighter",
2621
+ "ti-line",
2622
+ "ti-line-dashed",
2623
+ "ti-line-dotted",
2624
+ "ti-line-height",
2625
+ "ti-link",
2626
+ "ti-link-off",
2627
+ "ti-list",
2628
+ "ti-list-check",
2629
+ "ti-list-details",
2630
+ "ti-list-numbers",
2631
+ "ti-list-search",
2632
+ "ti-live-photo",
2633
+ "ti-live-photo-off",
2634
+ "ti-live-view",
2635
+ "ti-load-balancer",
2636
+ "ti-loader",
2637
+ "ti-loader-2",
2638
+ "ti-loader-3",
2639
+ "ti-loader-quarter",
2640
+ "ti-location",
2641
+ "ti-location-broken",
2642
+ "ti-location-filled",
2643
+ "ti-location-off",
2644
+ "ti-lock",
2645
+ "ti-lock-access",
2646
+ "ti-lock-access-off",
2647
+ "ti-lock-bolt",
2648
+ "ti-lock-cancel",
2649
+ "ti-lock-check",
2650
+ "ti-lock-code",
2651
+ "ti-lock-cog",
2652
+ "ti-lock-dollar",
2653
+ "ti-lock-down",
2654
+ "ti-lock-exclamation",
2655
+ "ti-lock-heart",
2656
+ "ti-lock-minus",
2657
+ "ti-lock-off",
2658
+ "ti-lock-open",
2659
+ "ti-lock-open-off",
2660
+ "ti-lock-pause",
2661
+ "ti-lock-pin",
2662
+ "ti-lock-plus",
2663
+ "ti-lock-question",
2664
+ "ti-lock-search",
2665
+ "ti-lock-share",
2666
+ "ti-lock-square",
2667
+ "ti-lock-square-rounded",
2668
+ "ti-lock-square-rounded-filled",
2669
+ "ti-lock-star",
2670
+ "ti-lock-up",
2671
+ "ti-lock-x",
2672
+ "ti-logic-and",
2673
+ "ti-logic-buffer",
2674
+ "ti-logic-nand",
2675
+ "ti-logic-nor",
2676
+ "ti-logic-not",
2677
+ "ti-logic-or",
2678
+ "ti-logic-xnor",
2679
+ "ti-logic-xor",
2680
+ "ti-login",
2681
+ "ti-logout",
2682
+ "ti-logout-2",
2683
+ "ti-lollipop",
2684
+ "ti-lollipop-off",
2685
+ "ti-luggage",
2686
+ "ti-luggage-off",
2687
+ "ti-lungs",
2688
+ "ti-lungs-off",
2689
+ "ti-macro",
2690
+ "ti-macro-off",
2691
+ "ti-magnet",
2692
+ "ti-magnet-off",
2693
+ "ti-mail",
2694
+ "ti-mail-ai",
2695
+ "ti-mail-bolt",
2696
+ "ti-mail-cancel",
2697
+ "ti-mail-check",
2698
+ "ti-mail-code",
2699
+ "ti-mail-cog",
2700
+ "ti-mail-dollar",
2701
+ "ti-mail-down",
2702
+ "ti-mail-exclamation",
2703
+ "ti-mail-fast",
2704
+ "ti-mail-filled",
2705
+ "ti-mail-forward",
2706
+ "ti-mail-heart",
2707
+ "ti-mail-minus",
2708
+ "ti-mail-off",
2709
+ "ti-mail-opened",
2710
+ "ti-mail-opened-filled",
2711
+ "ti-mail-pause",
2712
+ "ti-mail-pin",
2713
+ "ti-mail-plus",
2714
+ "ti-mail-question",
2715
+ "ti-mail-search",
2716
+ "ti-mail-share",
2717
+ "ti-mail-star",
2718
+ "ti-mail-up",
2719
+ "ti-mail-x",
2720
+ "ti-mailbox",
2721
+ "ti-mailbox-off",
2722
+ "ti-man",
2723
+ "ti-manual-gearbox",
2724
+ "ti-map",
2725
+ "ti-map-2",
2726
+ "ti-map-off",
2727
+ "ti-map-pin",
2728
+ "ti-map-pin-bolt",
2729
+ "ti-map-pin-cancel",
2730
+ "ti-map-pin-check",
2731
+ "ti-map-pin-code",
2732
+ "ti-map-pin-cog",
2733
+ "ti-map-pin-dollar",
2734
+ "ti-map-pin-down",
2735
+ "ti-map-pin-exclamation",
2736
+ "ti-map-pin-filled",
2737
+ "ti-map-pin-heart",
2738
+ "ti-map-pin-minus",
2739
+ "ti-map-pin-off",
2740
+ "ti-map-pin-pause",
2741
+ "ti-map-pin-pin",
2742
+ "ti-map-pin-plus",
2743
+ "ti-map-pin-question",
2744
+ "ti-map-pin-search",
2745
+ "ti-map-pin-share",
2746
+ "ti-map-pin-star",
2747
+ "ti-map-pin-up",
2748
+ "ti-map-pin-x",
2749
+ "ti-map-pins",
2750
+ "ti-map-search",
2751
+ "ti-markdown",
2752
+ "ti-markdown-off",
2753
+ "ti-marquee",
2754
+ "ti-marquee-2",
2755
+ "ti-marquee-off",
2756
+ "ti-mars",
2757
+ "ti-mask",
2758
+ "ti-mask-off",
2759
+ "ti-masks-theater",
2760
+ "ti-masks-theater-off",
2761
+ "ti-massage",
2762
+ "ti-matchstick",
2763
+ "ti-math",
2764
+ "ti-math-1-divide-2",
2765
+ "ti-math-1-divide-3",
2766
+ "ti-math-avg",
2767
+ "ti-math-equal-greater",
2768
+ "ti-math-equal-lower",
2769
+ "ti-math-function",
2770
+ "ti-math-function-off",
2771
+ "ti-math-function-y",
2772
+ "ti-math-greater",
2773
+ "ti-math-integral",
2774
+ "ti-math-integral-x",
2775
+ "ti-math-integrals",
2776
+ "ti-math-lower",
2777
+ "ti-math-max",
2778
+ "ti-math-min",
2779
+ "ti-math-not",
2780
+ "ti-math-off",
2781
+ "ti-math-pi",
2782
+ "ti-math-pi-divide-2",
2783
+ "ti-math-symbols",
2784
+ "ti-math-x-divide-2",
2785
+ "ti-math-x-divide-y",
2786
+ "ti-math-x-divide-y-2",
2787
+ "ti-math-x-minus-x",
2788
+ "ti-math-x-minus-y",
2789
+ "ti-math-x-plus-x",
2790
+ "ti-math-x-plus-y",
2791
+ "ti-math-xy",
2792
+ "ti-math-y-minus-y",
2793
+ "ti-math-y-plus-y",
2794
+ "ti-maximize",
2795
+ "ti-maximize-off",
2796
+ "ti-meat",
2797
+ "ti-meat-off",
2798
+ "ti-medal",
2799
+ "ti-medal-2",
2800
+ "ti-medical-cross",
2801
+ "ti-medical-cross-filled",
2802
+ "ti-medical-cross-off",
2803
+ "ti-medicine-syrup",
2804
+ "ti-meeple",
2805
+ "ti-menorah",
2806
+ "ti-menu",
2807
+ "ti-menu-2",
2808
+ "ti-menu-order",
2809
+ "ti-message",
2810
+ "ti-message-2",
2811
+ "ti-message-2-bolt",
2812
+ "ti-message-2-cancel",
2813
+ "ti-message-2-check",
2814
+ "ti-message-2-code",
2815
+ "ti-message-2-cog",
2816
+ "ti-message-2-dollar",
2817
+ "ti-message-2-down",
2818
+ "ti-message-2-exclamation",
2819
+ "ti-message-2-heart",
2820
+ "ti-message-2-minus",
2821
+ "ti-message-2-off",
2822
+ "ti-message-2-pause",
2823
+ "ti-message-2-pin",
2824
+ "ti-message-2-plus",
2825
+ "ti-message-2-question",
2826
+ "ti-message-2-search",
2827
+ "ti-message-2-share",
2828
+ "ti-message-2-star",
2829
+ "ti-message-2-up",
2830
+ "ti-message-2-x",
2831
+ "ti-message-bolt",
2832
+ "ti-message-cancel",
2833
+ "ti-message-chatbot",
2834
+ "ti-message-check",
2835
+ "ti-message-circle",
2836
+ "ti-message-circle-2",
2837
+ "ti-message-circle-2-filled",
2838
+ "ti-message-circle-bolt",
2839
+ "ti-message-circle-cancel",
2840
+ "ti-message-circle-check",
2841
+ "ti-message-circle-code",
2842
+ "ti-message-circle-cog",
2843
+ "ti-message-circle-dollar",
2844
+ "ti-message-circle-down",
2845
+ "ti-message-circle-exclamation",
2846
+ "ti-message-circle-heart",
2847
+ "ti-message-circle-minus",
2848
+ "ti-message-circle-off",
2849
+ "ti-message-circle-pause",
2850
+ "ti-message-circle-pin",
2851
+ "ti-message-circle-plus",
2852
+ "ti-message-circle-question",
2853
+ "ti-message-circle-search",
2854
+ "ti-message-circle-share",
2855
+ "ti-message-circle-star",
2856
+ "ti-message-circle-up",
2857
+ "ti-message-circle-x",
2858
+ "ti-message-code",
2859
+ "ti-message-cog",
2860
+ "ti-message-dollar",
2861
+ "ti-message-dots",
2862
+ "ti-message-down",
2863
+ "ti-message-exclamation",
2864
+ "ti-message-forward",
2865
+ "ti-message-heart",
2866
+ "ti-message-language",
2867
+ "ti-message-minus",
2868
+ "ti-message-off",
2869
+ "ti-message-pause",
2870
+ "ti-message-pin",
2871
+ "ti-message-plus",
2872
+ "ti-message-question",
2873
+ "ti-message-report",
2874
+ "ti-message-search",
2875
+ "ti-message-share",
2876
+ "ti-message-star",
2877
+ "ti-message-up",
2878
+ "ti-message-x",
2879
+ "ti-messages",
2880
+ "ti-messages-off",
2881
+ "ti-meteor",
2882
+ "ti-meteor-off",
2883
+ "ti-mickey",
2884
+ "ti-mickey-filled",
2885
+ "ti-microphone",
2886
+ "ti-microphone-2",
2887
+ "ti-microphone-2-off",
2888
+ "ti-microphone-off",
2889
+ "ti-microscope",
2890
+ "ti-microscope-off",
2891
+ "ti-microwave",
2892
+ "ti-microwave-off",
2893
+ "ti-military-award",
2894
+ "ti-military-rank",
2895
+ "ti-milk",
2896
+ "ti-milk-off",
2897
+ "ti-milkshake",
2898
+ "ti-minimize",
2899
+ "ti-minus",
2900
+ "ti-minus-vertical",
2901
+ "ti-mist",
2902
+ "ti-mist-off",
2903
+ "ti-mobiledata",
2904
+ "ti-mobiledata-off",
2905
+ "ti-moneybag",
2906
+ "ti-mood-angry",
2907
+ "ti-mood-annoyed",
2908
+ "ti-mood-annoyed-2",
2909
+ "ti-mood-boy",
2910
+ "ti-mood-check",
2911
+ "ti-mood-cog",
2912
+ "ti-mood-confuzed",
2913
+ "ti-mood-confuzed-filled",
2914
+ "ti-mood-crazy-happy",
2915
+ "ti-mood-cry",
2916
+ "ti-mood-dollar",
2917
+ "ti-mood-edit",
2918
+ "ti-mood-empty",
2919
+ "ti-mood-empty-filled",
2920
+ "ti-mood-happy",
2921
+ "ti-mood-happy-filled",
2922
+ "ti-mood-heart",
2923
+ "ti-mood-kid",
2924
+ "ti-mood-kid-filled",
2925
+ "ti-mood-look-left",
2926
+ "ti-mood-look-right",
2927
+ "ti-mood-minus",
2928
+ "ti-mood-nerd",
2929
+ "ti-mood-nervous",
2930
+ "ti-mood-neutral",
2931
+ "ti-mood-neutral-filled",
2932
+ "ti-mood-off",
2933
+ "ti-mood-pin",
2934
+ "ti-mood-plus",
2935
+ "ti-mood-sad",
2936
+ "ti-mood-sad-2",
2937
+ "ti-mood-sad-dizzy",
2938
+ "ti-mood-sad-filled",
2939
+ "ti-mood-sad-squint",
2940
+ "ti-mood-search",
2941
+ "ti-mood-share",
2942
+ "ti-mood-sick",
2943
+ "ti-mood-silence",
2944
+ "ti-mood-sing",
2945
+ "ti-mood-smile",
2946
+ "ti-mood-smile-beam",
2947
+ "ti-mood-smile-dizzy",
2948
+ "ti-mood-smile-filled",
2949
+ "ti-mood-suprised",
2950
+ "ti-mood-tongue",
2951
+ "ti-mood-tongue-wink",
2952
+ "ti-mood-tongue-wink-2",
2953
+ "ti-mood-unamused",
2954
+ "ti-mood-up",
2955
+ "ti-mood-wink",
2956
+ "ti-mood-wink-2",
2957
+ "ti-mood-wrrr",
2958
+ "ti-mood-x",
2959
+ "ti-mood-xd",
2960
+ "ti-moon",
2961
+ "ti-moon-2",
2962
+ "ti-moon-filled",
2963
+ "ti-moon-off",
2964
+ "ti-moon-stars",
2965
+ "ti-moped",
2966
+ "ti-motorbike",
2967
+ "ti-mountain",
2968
+ "ti-mountain-off",
2969
+ "ti-mouse",
2970
+ "ti-mouse-2",
2971
+ "ti-mouse-off",
2972
+ "ti-moustache",
2973
+ "ti-movie",
2974
+ "ti-movie-off",
2975
+ "ti-mug",
2976
+ "ti-mug-off",
2977
+ "ti-multiplier-0-5x",
2978
+ "ti-multiplier-1-5x",
2979
+ "ti-multiplier-1x",
2980
+ "ti-multiplier-2x",
2981
+ "ti-mushroom",
2982
+ "ti-mushroom-filled",
2983
+ "ti-mushroom-off",
2984
+ "ti-music",
2985
+ "ti-music-off",
2986
+ "ti-navigation",
2987
+ "ti-navigation-filled",
2988
+ "ti-navigation-off",
2989
+ "ti-needle",
2990
+ "ti-needle-thread",
2991
+ "ti-network",
2992
+ "ti-network-off",
2993
+ "ti-new-section",
2994
+ "ti-news",
2995
+ "ti-news-off",
2996
+ "ti-nfc",
2997
+ "ti-nfc-off",
2998
+ "ti-no-copyright",
2999
+ "ti-no-creative-commons",
3000
+ "ti-no-derivatives",
3001
+ "ti-north-star",
3002
+ "ti-note",
3003
+ "ti-note-off",
3004
+ "ti-notebook",
3005
+ "ti-notebook-off",
3006
+ "ti-notes",
3007
+ "ti-notes-off",
3008
+ "ti-notification",
3009
+ "ti-notification-off",
3010
+ "ti-number",
3011
+ "ti-number-0",
3012
+ "ti-number-1",
3013
+ "ti-number-2",
3014
+ "ti-number-3",
3015
+ "ti-number-4",
3016
+ "ti-number-5",
3017
+ "ti-number-6",
3018
+ "ti-number-7",
3019
+ "ti-number-8",
3020
+ "ti-number-9",
3021
+ "ti-numbers",
3022
+ "ti-nurse",
3023
+ "ti-octagon",
3024
+ "ti-octagon-filled",
3025
+ "ti-octagon-off",
3026
+ "ti-octahedron",
3027
+ "ti-octahedron-off",
3028
+ "ti-octahedron-plus",
3029
+ "ti-old",
3030
+ "ti-olympics",
3031
+ "ti-olympics-off",
3032
+ "ti-om",
3033
+ "ti-omega",
3034
+ "ti-outbound",
3035
+ "ti-outlet",
3036
+ "ti-oval",
3037
+ "ti-oval-filled",
3038
+ "ti-oval-vertical",
3039
+ "ti-oval-vertical-filled",
3040
+ "ti-overline",
3041
+ "ti-package",
3042
+ "ti-package-export",
3043
+ "ti-package-import",
3044
+ "ti-package-off",
3045
+ "ti-packages",
3046
+ "ti-pacman",
3047
+ "ti-page-break",
3048
+ "ti-paint",
3049
+ "ti-paint-filled",
3050
+ "ti-paint-off",
3051
+ "ti-palette",
3052
+ "ti-palette-off",
3053
+ "ti-panorama-horizontal",
3054
+ "ti-panorama-horizontal-off",
3055
+ "ti-panorama-vertical",
3056
+ "ti-panorama-vertical-off",
3057
+ "ti-paper-bag",
3058
+ "ti-paper-bag-off",
3059
+ "ti-paperclip",
3060
+ "ti-parachute",
3061
+ "ti-parachute-off",
3062
+ "ti-parentheses",
3063
+ "ti-parentheses-off",
3064
+ "ti-parking",
3065
+ "ti-parking-off",
3066
+ "ti-password",
3067
+ "ti-paw",
3068
+ "ti-paw-filled",
3069
+ "ti-paw-off",
3070
+ "ti-pdf",
3071
+ "ti-peace",
3072
+ "ti-pencil",
3073
+ "ti-pencil-minus",
3074
+ "ti-pencil-off",
3075
+ "ti-pencil-plus",
3076
+ "ti-pennant",
3077
+ "ti-pennant-2",
3078
+ "ti-pennant-2-filled",
3079
+ "ti-pennant-filled",
3080
+ "ti-pennant-off",
3081
+ "ti-pentagon",
3082
+ "ti-pentagon-filled",
3083
+ "ti-pentagon-off",
3084
+ "ti-pentagram",
3085
+ "ti-pepper",
3086
+ "ti-pepper-off",
3087
+ "ti-percentage",
3088
+ "ti-perfume",
3089
+ "ti-perspective",
3090
+ "ti-perspective-off",
3091
+ "ti-phone",
3092
+ "ti-phone-call",
3093
+ "ti-phone-calling",
3094
+ "ti-phone-check",
3095
+ "ti-phone-filled",
3096
+ "ti-phone-incoming",
3097
+ "ti-phone-off",
3098
+ "ti-phone-outgoing",
3099
+ "ti-phone-pause",
3100
+ "ti-phone-plus",
3101
+ "ti-phone-x",
3102
+ "ti-photo",
3103
+ "ti-photo-ai",
3104
+ "ti-photo-bolt",
3105
+ "ti-photo-cancel",
3106
+ "ti-photo-check",
3107
+ "ti-photo-code",
3108
+ "ti-photo-cog",
3109
+ "ti-photo-dollar",
3110
+ "ti-photo-down",
3111
+ "ti-photo-edit",
3112
+ "ti-photo-exclamation",
3113
+ "ti-photo-filled",
3114
+ "ti-photo-heart",
3115
+ "ti-photo-minus",
3116
+ "ti-photo-off",
3117
+ "ti-photo-pause",
3118
+ "ti-photo-pin",
3119
+ "ti-photo-plus",
3120
+ "ti-photo-question",
3121
+ "ti-photo-search",
3122
+ "ti-photo-sensor",
3123
+ "ti-photo-sensor-2",
3124
+ "ti-photo-sensor-3",
3125
+ "ti-photo-share",
3126
+ "ti-photo-shield",
3127
+ "ti-photo-star",
3128
+ "ti-photo-up",
3129
+ "ti-photo-x",
3130
+ "ti-physotherapist",
3131
+ "ti-picture-in-picture",
3132
+ "ti-picture-in-picture-off",
3133
+ "ti-picture-in-picture-on",
3134
+ "ti-picture-in-picture-top",
3135
+ "ti-pig",
3136
+ "ti-pig-money",
3137
+ "ti-pig-off",
3138
+ "ti-pilcrow",
3139
+ "ti-pill",
3140
+ "ti-pill-off",
3141
+ "ti-pills",
3142
+ "ti-pin",
3143
+ "ti-pin-filled",
3144
+ "ti-ping-pong",
3145
+ "ti-pinned",
3146
+ "ti-pinned-filled",
3147
+ "ti-pinned-off",
3148
+ "ti-pizza",
3149
+ "ti-pizza-off",
3150
+ "ti-placeholder",
3151
+ "ti-plane",
3152
+ "ti-plane-arrival",
3153
+ "ti-plane-departure",
3154
+ "ti-plane-inflight",
3155
+ "ti-plane-off",
3156
+ "ti-plane-tilt",
3157
+ "ti-planet",
3158
+ "ti-planet-off",
3159
+ "ti-plant",
3160
+ "ti-plant-2",
3161
+ "ti-plant-2-off",
3162
+ "ti-plant-off",
3163
+ "ti-play-basketball",
3164
+ "ti-play-card",
3165
+ "ti-play-card-off",
3166
+ "ti-play-football",
3167
+ "ti-play-handball",
3168
+ "ti-play-volleyball",
3169
+ "ti-player-eject",
3170
+ "ti-player-eject-filled",
3171
+ "ti-player-pause",
3172
+ "ti-player-pause-filled",
3173
+ "ti-player-play",
3174
+ "ti-player-play-filled",
3175
+ "ti-player-record",
3176
+ "ti-player-record-filled",
3177
+ "ti-player-skip-back",
3178
+ "ti-player-skip-back-filled",
3179
+ "ti-player-skip-forward",
3180
+ "ti-player-skip-forward-filled",
3181
+ "ti-player-stop",
3182
+ "ti-player-stop-filled",
3183
+ "ti-player-track-next",
3184
+ "ti-player-track-next-filled",
3185
+ "ti-player-track-prev",
3186
+ "ti-player-track-prev-filled",
3187
+ "ti-playlist",
3188
+ "ti-playlist-add",
3189
+ "ti-playlist-off",
3190
+ "ti-playlist-x",
3191
+ "ti-playstation-circle",
3192
+ "ti-playstation-square",
3193
+ "ti-playstation-triangle",
3194
+ "ti-playstation-x",
3195
+ "ti-plug",
3196
+ "ti-plug-connected",
3197
+ "ti-plug-connected-x",
3198
+ "ti-plug-off",
3199
+ "ti-plug-x",
3200
+ "ti-plus",
3201
+ "ti-plus-equal",
3202
+ "ti-plus-minus",
3203
+ "ti-png",
3204
+ "ti-podium",
3205
+ "ti-podium-off",
3206
+ "ti-point",
3207
+ "ti-point-filled",
3208
+ "ti-point-off",
3209
+ "ti-pointer",
3210
+ "ti-pointer-bolt",
3211
+ "ti-pointer-cancel",
3212
+ "ti-pointer-check",
3213
+ "ti-pointer-code",
3214
+ "ti-pointer-cog",
3215
+ "ti-pointer-dollar",
3216
+ "ti-pointer-down",
3217
+ "ti-pointer-exclamation",
3218
+ "ti-pointer-heart",
3219
+ "ti-pointer-minus",
3220
+ "ti-pointer-off",
3221
+ "ti-pointer-pause",
3222
+ "ti-pointer-pin",
3223
+ "ti-pointer-plus",
3224
+ "ti-pointer-question",
3225
+ "ti-pointer-search",
3226
+ "ti-pointer-share",
3227
+ "ti-pointer-star",
3228
+ "ti-pointer-up",
3229
+ "ti-pointer-x",
3230
+ "ti-pokeball",
3231
+ "ti-pokeball-off",
3232
+ "ti-poker-chip",
3233
+ "ti-polaroid",
3234
+ "ti-polaroid-filled",
3235
+ "ti-polygon",
3236
+ "ti-polygon-off",
3237
+ "ti-poo",
3238
+ "ti-pool",
3239
+ "ti-pool-off",
3240
+ "ti-power",
3241
+ "ti-pray",
3242
+ "ti-premium-rights",
3243
+ "ti-prescription",
3244
+ "ti-presentation",
3245
+ "ti-presentation-analytics",
3246
+ "ti-presentation-off",
3247
+ "ti-printer",
3248
+ "ti-printer-off",
3249
+ "ti-prism",
3250
+ "ti-prism-off",
3251
+ "ti-prism-plus",
3252
+ "ti-prison",
3253
+ "ti-progress",
3254
+ "ti-progress-alert",
3255
+ "ti-progress-bolt",
3256
+ "ti-progress-check",
3257
+ "ti-progress-down",
3258
+ "ti-progress-help",
3259
+ "ti-progress-x",
3260
+ "ti-prompt",
3261
+ "ti-propeller",
3262
+ "ti-propeller-off",
3263
+ "ti-pumpkin-scary",
3264
+ "ti-puzzle",
3265
+ "ti-puzzle-2",
3266
+ "ti-puzzle-filled",
3267
+ "ti-puzzle-off",
3268
+ "ti-pyramid",
3269
+ "ti-pyramid-off",
3270
+ "ti-pyramid-plus",
3271
+ "ti-qrcode",
3272
+ "ti-qrcode-off",
3273
+ "ti-question-mark",
3274
+ "ti-quote",
3275
+ "ti-quote-off",
3276
+ "ti-radar",
3277
+ "ti-radar-2",
3278
+ "ti-radar-off",
3279
+ "ti-radio",
3280
+ "ti-radio-off",
3281
+ "ti-radioactive",
3282
+ "ti-radioactive-filled",
3283
+ "ti-radioactive-off",
3284
+ "ti-radius-bottom-left",
3285
+ "ti-radius-bottom-right",
3286
+ "ti-radius-top-left",
3287
+ "ti-radius-top-right",
3288
+ "ti-rainbow",
3289
+ "ti-rainbow-off",
3290
+ "ti-rating-12-plus",
3291
+ "ti-rating-14-plus",
3292
+ "ti-rating-16-plus",
3293
+ "ti-rating-18-plus",
3294
+ "ti-rating-21-plus",
3295
+ "ti-razor",
3296
+ "ti-razor-electric",
3297
+ "ti-receipt",
3298
+ "ti-receipt-2",
3299
+ "ti-receipt-off",
3300
+ "ti-receipt-refund",
3301
+ "ti-receipt-tax",
3302
+ "ti-recharging",
3303
+ "ti-record-mail",
3304
+ "ti-record-mail-off",
3305
+ "ti-rectangle",
3306
+ "ti-rectangle-filled",
3307
+ "ti-rectangle-vertical",
3308
+ "ti-rectangle-vertical-filled",
3309
+ "ti-rectangular-prism",
3310
+ "ti-rectangular-prism-off",
3311
+ "ti-rectangular-prism-plus",
3312
+ "ti-recycle",
3313
+ "ti-recycle-off",
3314
+ "ti-refresh",
3315
+ "ti-refresh-alert",
3316
+ "ti-refresh-dot",
3317
+ "ti-refresh-off",
3318
+ "ti-regex",
3319
+ "ti-regex-off",
3320
+ "ti-registered",
3321
+ "ti-relation-many-to-many",
3322
+ "ti-relation-one-to-many",
3323
+ "ti-relation-one-to-one",
3324
+ "ti-reload",
3325
+ "ti-repeat",
3326
+ "ti-repeat-off",
3327
+ "ti-repeat-once",
3328
+ "ti-replace",
3329
+ "ti-replace-filled",
3330
+ "ti-replace-off",
3331
+ "ti-report",
3332
+ "ti-report-analytics",
3333
+ "ti-report-medical",
3334
+ "ti-report-money",
3335
+ "ti-report-off",
3336
+ "ti-report-search",
3337
+ "ti-reserved-line",
3338
+ "ti-resize",
3339
+ "ti-rewind-backward-10",
3340
+ "ti-rewind-backward-15",
3341
+ "ti-rewind-backward-20",
3342
+ "ti-rewind-backward-30",
3343
+ "ti-rewind-backward-40",
3344
+ "ti-rewind-backward-5",
3345
+ "ti-rewind-backward-50",
3346
+ "ti-rewind-backward-60",
3347
+ "ti-rewind-forward-10",
3348
+ "ti-rewind-forward-15",
3349
+ "ti-rewind-forward-20",
3350
+ "ti-rewind-forward-30",
3351
+ "ti-rewind-forward-40",
3352
+ "ti-rewind-forward-5",
3353
+ "ti-rewind-forward-50",
3354
+ "ti-rewind-forward-60",
3355
+ "ti-ribbon-health",
3356
+ "ti-rings",
3357
+ "ti-ripple",
3358
+ "ti-ripple-off",
3359
+ "ti-road",
3360
+ "ti-road-off",
3361
+ "ti-road-sign",
3362
+ "ti-robot",
3363
+ "ti-robot-off",
3364
+ "ti-rocket",
3365
+ "ti-rocket-off",
3366
+ "ti-roller-skating",
3367
+ "ti-rollercoaster",
3368
+ "ti-rollercoaster-off",
3369
+ "ti-rosette",
3370
+ "ti-rosette-filled",
3371
+ "ti-rosette-number-0",
3372
+ "ti-rosette-number-1",
3373
+ "ti-rosette-number-2",
3374
+ "ti-rosette-number-3",
3375
+ "ti-rosette-number-4",
3376
+ "ti-rosette-number-5",
3377
+ "ti-rosette-number-6",
3378
+ "ti-rosette-number-7",
3379
+ "ti-rosette-number-8",
3380
+ "ti-rosette-number-9",
3381
+ "ti-rotate",
3382
+ "ti-rotate-2",
3383
+ "ti-rotate-360",
3384
+ "ti-rotate-clockwise",
3385
+ "ti-rotate-clockwise-2",
3386
+ "ti-rotate-dot",
3387
+ "ti-rotate-rectangle",
3388
+ "ti-route",
3389
+ "ti-route-2",
3390
+ "ti-route-off",
3391
+ "ti-router",
3392
+ "ti-router-off",
3393
+ "ti-row-insert-bottom",
3394
+ "ti-row-insert-top",
3395
+ "ti-rss",
3396
+ "ti-rubber-stamp",
3397
+ "ti-rubber-stamp-off",
3398
+ "ti-ruler",
3399
+ "ti-ruler-2",
3400
+ "ti-ruler-2-off",
3401
+ "ti-ruler-3",
3402
+ "ti-ruler-measure",
3403
+ "ti-ruler-off",
3404
+ "ti-run",
3405
+ "ti-s-turn-down",
3406
+ "ti-s-turn-left",
3407
+ "ti-s-turn-right",
3408
+ "ti-s-turn-up",
3409
+ "ti-sailboat",
3410
+ "ti-sailboat-2",
3411
+ "ti-sailboat-off",
3412
+ "ti-salad",
3413
+ "ti-salt",
3414
+ "ti-satellite",
3415
+ "ti-satellite-off",
3416
+ "ti-sausage",
3417
+ "ti-scale",
3418
+ "ti-scale-off",
3419
+ "ti-scale-outline",
3420
+ "ti-scale-outline-off",
3421
+ "ti-scan",
3422
+ "ti-scan-eye",
3423
+ "ti-schema",
3424
+ "ti-schema-off",
3425
+ "ti-school",
3426
+ "ti-school-bell",
3427
+ "ti-school-off",
3428
+ "ti-scissors",
3429
+ "ti-scissors-off",
3430
+ "ti-scooter",
3431
+ "ti-scooter-electric",
3432
+ "ti-scoreboard",
3433
+ "ti-screen-share",
3434
+ "ti-screen-share-off",
3435
+ "ti-screenshot",
3436
+ "ti-scribble",
3437
+ "ti-scribble-off",
3438
+ "ti-script",
3439
+ "ti-script-minus",
3440
+ "ti-script-plus",
3441
+ "ti-script-x",
3442
+ "ti-scuba-mask",
3443
+ "ti-scuba-mask-off",
3444
+ "ti-sdk",
3445
+ "ti-search",
3446
+ "ti-search-off",
3447
+ "ti-section",
3448
+ "ti-section-sign",
3449
+ "ti-seeding",
3450
+ "ti-seeding-off",
3451
+ "ti-select",
3452
+ "ti-select-all",
3453
+ "ti-selector",
3454
+ "ti-send",
3455
+ "ti-send-off",
3456
+ "ti-seo",
3457
+ "ti-separator",
3458
+ "ti-separator-horizontal",
3459
+ "ti-separator-vertical",
3460
+ "ti-server",
3461
+ "ti-server-2",
3462
+ "ti-server-bolt",
3463
+ "ti-server-cog",
3464
+ "ti-server-off",
3465
+ "ti-servicemark",
3466
+ "ti-settings",
3467
+ "ti-settings-2",
3468
+ "ti-settings-automation",
3469
+ "ti-settings-bolt",
3470
+ "ti-settings-cancel",
3471
+ "ti-settings-check",
3472
+ "ti-settings-code",
3473
+ "ti-settings-cog",
3474
+ "ti-settings-dollar",
3475
+ "ti-settings-down",
3476
+ "ti-settings-exclamation",
3477
+ "ti-settings-filled",
3478
+ "ti-settings-heart",
3479
+ "ti-settings-minus",
3480
+ "ti-settings-off",
3481
+ "ti-settings-pause",
3482
+ "ti-settings-pin",
3483
+ "ti-settings-plus",
3484
+ "ti-settings-question",
3485
+ "ti-settings-search",
3486
+ "ti-settings-share",
3487
+ "ti-settings-star",
3488
+ "ti-settings-up",
3489
+ "ti-settings-x",
3490
+ "ti-shadow",
3491
+ "ti-shadow-off",
3492
+ "ti-shape",
3493
+ "ti-shape-2",
3494
+ "ti-shape-3",
3495
+ "ti-shape-off",
3496
+ "ti-share",
3497
+ "ti-share-2",
3498
+ "ti-share-3",
3499
+ "ti-share-off",
3500
+ "ti-shi-jumping",
3501
+ "ti-shield",
3502
+ "ti-shield-bolt",
3503
+ "ti-shield-cancel",
3504
+ "ti-shield-check",
3505
+ "ti-shield-check-filled",
3506
+ "ti-shield-checkered",
3507
+ "ti-shield-checkered-filled",
3508
+ "ti-shield-chevron",
3509
+ "ti-shield-code",
3510
+ "ti-shield-cog",
3511
+ "ti-shield-dollar",
3512
+ "ti-shield-down",
3513
+ "ti-shield-exclamation",
3514
+ "ti-shield-filled",
3515
+ "ti-shield-half",
3516
+ "ti-shield-half-filled",
3517
+ "ti-shield-heart",
3518
+ "ti-shield-lock",
3519
+ "ti-shield-lock-filled",
3520
+ "ti-shield-minus",
3521
+ "ti-shield-off",
3522
+ "ti-shield-pause",
3523
+ "ti-shield-pin",
3524
+ "ti-shield-plus",
3525
+ "ti-shield-question",
3526
+ "ti-shield-search",
3527
+ "ti-shield-share",
3528
+ "ti-shield-star",
3529
+ "ti-shield-up",
3530
+ "ti-shield-x",
3531
+ "ti-ship",
3532
+ "ti-ship-off",
3533
+ "ti-shirt",
3534
+ "ti-shirt-filled",
3535
+ "ti-shirt-off",
3536
+ "ti-shirt-sport",
3537
+ "ti-shoe",
3538
+ "ti-shoe-off",
3539
+ "ti-shopping-bag",
3540
+ "ti-shopping-cart",
3541
+ "ti-shopping-cart-discount",
3542
+ "ti-shopping-cart-off",
3543
+ "ti-shopping-cart-plus",
3544
+ "ti-shopping-cart-x",
3545
+ "ti-shovel",
3546
+ "ti-shredder",
3547
+ "ti-sign-left",
3548
+ "ti-sign-left-filled",
3549
+ "ti-sign-right",
3550
+ "ti-sign-right-filled",
3551
+ "ti-signal-2g",
3552
+ "ti-signal-3g",
3553
+ "ti-signal-4g",
3554
+ "ti-signal-4g-plus",
3555
+ "ti-signal-5g",
3556
+ "ti-signal-6g",
3557
+ "ti-signal-e",
3558
+ "ti-signal-g",
3559
+ "ti-signal-h",
3560
+ "ti-signal-h-plus",
3561
+ "ti-signal-lte",
3562
+ "ti-signature",
3563
+ "ti-signature-off",
3564
+ "ti-sitemap",
3565
+ "ti-sitemap-off",
3566
+ "ti-skateboard",
3567
+ "ti-skateboard-off",
3568
+ "ti-skateboarding",
3569
+ "ti-skull",
3570
+ "ti-slash",
3571
+ "ti-slashes",
3572
+ "ti-sleigh",
3573
+ "ti-slice",
3574
+ "ti-slideshow",
3575
+ "ti-smart-home",
3576
+ "ti-smart-home-off",
3577
+ "ti-smoking",
3578
+ "ti-smoking-no",
3579
+ "ti-snowflake",
3580
+ "ti-snowflake-off",
3581
+ "ti-snowman",
3582
+ "ti-soccer-field",
3583
+ "ti-social",
3584
+ "ti-social-off",
3585
+ "ti-sock",
3586
+ "ti-sofa",
3587
+ "ti-sofa-off",
3588
+ "ti-solar-panel",
3589
+ "ti-solar-panel-2",
3590
+ "ti-sort-0-9",
3591
+ "ti-sort-9-0",
3592
+ "ti-sort-a-z",
3593
+ "ti-sort-ascending",
3594
+ "ti-sort-ascending-2",
3595
+ "ti-sort-ascending-letters",
3596
+ "ti-sort-ascending-numbers",
3597
+ "ti-sort-descending",
3598
+ "ti-sort-descending-2",
3599
+ "ti-sort-descending-letters",
3600
+ "ti-sort-descending-numbers",
3601
+ "ti-sort-z-a",
3602
+ "ti-sos",
3603
+ "ti-soup",
3604
+ "ti-soup-off",
3605
+ "ti-source-code",
3606
+ "ti-space",
3607
+ "ti-space-off",
3608
+ "ti-spacing-horizontal",
3609
+ "ti-spacing-vertical",
3610
+ "ti-spade",
3611
+ "ti-spade-filled",
3612
+ "ti-sparkles",
3613
+ "ti-speakerphone",
3614
+ "ti-speedboat",
3615
+ "ti-sphere",
3616
+ "ti-sphere-off",
3617
+ "ti-sphere-plus",
3618
+ "ti-spider",
3619
+ "ti-spiral",
3620
+ "ti-spiral-off",
3621
+ "ti-sport-billard",
3622
+ "ti-spray",
3623
+ "ti-spy",
3624
+ "ti-spy-off",
3625
+ "ti-sql",
3626
+ "ti-square",
3627
+ "ti-square-0-filled",
3628
+ "ti-square-1-filled",
3629
+ "ti-square-2-filled",
3630
+ "ti-square-3-filled",
3631
+ "ti-square-4-filled",
3632
+ "ti-square-5-filled",
3633
+ "ti-square-6-filled",
3634
+ "ti-square-7-filled",
3635
+ "ti-square-8-filled",
3636
+ "ti-square-9-filled",
3637
+ "ti-square-arrow-down",
3638
+ "ti-square-arrow-left",
3639
+ "ti-square-arrow-right",
3640
+ "ti-square-arrow-up",
3641
+ "ti-square-asterisk",
3642
+ "ti-square-check",
3643
+ "ti-square-check-filled",
3644
+ "ti-square-chevron-down",
3645
+ "ti-square-chevron-left",
3646
+ "ti-square-chevron-right",
3647
+ "ti-square-chevron-up",
3648
+ "ti-square-chevrons-down",
3649
+ "ti-square-chevrons-left",
3650
+ "ti-square-chevrons-right",
3651
+ "ti-square-chevrons-up",
3652
+ "ti-square-dot",
3653
+ "ti-square-f0",
3654
+ "ti-square-f0-filled",
3655
+ "ti-square-f1",
3656
+ "ti-square-f1-filled",
3657
+ "ti-square-f2",
3658
+ "ti-square-f2-filled",
3659
+ "ti-square-f3",
3660
+ "ti-square-f3-filled",
3661
+ "ti-square-f4",
3662
+ "ti-square-f4-filled",
3663
+ "ti-square-f5",
3664
+ "ti-square-f5-filled",
3665
+ "ti-square-f6",
3666
+ "ti-square-f6-filled",
3667
+ "ti-square-f7",
3668
+ "ti-square-f7-filled",
3669
+ "ti-square-f8",
3670
+ "ti-square-f8-filled",
3671
+ "ti-square-f9",
3672
+ "ti-square-f9-filled",
3673
+ "ti-square-forbid",
3674
+ "ti-square-forbid-2",
3675
+ "ti-square-half",
3676
+ "ti-square-key",
3677
+ "ti-square-letter-a",
3678
+ "ti-square-letter-b",
3679
+ "ti-square-letter-c",
3680
+ "ti-square-letter-d",
3681
+ "ti-square-letter-e",
3682
+ "ti-square-letter-f",
3683
+ "ti-square-letter-g",
3684
+ "ti-square-letter-h",
3685
+ "ti-square-letter-i",
3686
+ "ti-square-letter-j",
3687
+ "ti-square-letter-k",
3688
+ "ti-square-letter-l",
3689
+ "ti-square-letter-m",
3690
+ "ti-square-letter-n",
3691
+ "ti-square-letter-o",
3692
+ "ti-square-letter-p",
3693
+ "ti-square-letter-q",
3694
+ "ti-square-letter-r",
3695
+ "ti-square-letter-s",
3696
+ "ti-square-letter-t",
3697
+ "ti-square-letter-u",
3698
+ "ti-square-letter-v",
3699
+ "ti-square-letter-w",
3700
+ "ti-square-letter-x",
3701
+ "ti-square-letter-y",
3702
+ "ti-square-letter-z",
3703
+ "ti-square-minus",
3704
+ "ti-square-number-0",
3705
+ "ti-square-number-1",
3706
+ "ti-square-number-2",
3707
+ "ti-square-number-3",
3708
+ "ti-square-number-4",
3709
+ "ti-square-number-5",
3710
+ "ti-square-number-6",
3711
+ "ti-square-number-7",
3712
+ "ti-square-number-8",
3713
+ "ti-square-number-9",
3714
+ "ti-square-off",
3715
+ "ti-square-plus",
3716
+ "ti-square-root",
3717
+ "ti-square-root-2",
3718
+ "ti-square-rotated",
3719
+ "ti-square-rotated-filled",
3720
+ "ti-square-rotated-forbid",
3721
+ "ti-square-rotated-forbid-2",
3722
+ "ti-square-rotated-off",
3723
+ "ti-square-rounded",
3724
+ "ti-square-rounded-arrow-down",
3725
+ "ti-square-rounded-arrow-down-filled",
3726
+ "ti-square-rounded-arrow-left",
3727
+ "ti-square-rounded-arrow-left-filled",
3728
+ "ti-square-rounded-arrow-right",
3729
+ "ti-square-rounded-arrow-right-filled",
3730
+ "ti-square-rounded-arrow-up",
3731
+ "ti-square-rounded-arrow-up-filled",
3732
+ "ti-square-rounded-check",
3733
+ "ti-square-rounded-check-filled",
3734
+ "ti-square-rounded-chevron-down",
3735
+ "ti-square-rounded-chevron-down-filled",
3736
+ "ti-square-rounded-chevron-left",
3737
+ "ti-square-rounded-chevron-left-filled",
3738
+ "ti-square-rounded-chevron-right",
3739
+ "ti-square-rounded-chevron-right-filled",
3740
+ "ti-square-rounded-chevron-up",
3741
+ "ti-square-rounded-chevron-up-filled",
3742
+ "ti-square-rounded-chevrons-down",
3743
+ "ti-square-rounded-chevrons-down-filled",
3744
+ "ti-square-rounded-chevrons-left",
3745
+ "ti-square-rounded-chevrons-left-filled",
3746
+ "ti-square-rounded-chevrons-right",
3747
+ "ti-square-rounded-chevrons-right-filled",
3748
+ "ti-square-rounded-chevrons-up",
3749
+ "ti-square-rounded-chevrons-up-filled",
3750
+ "ti-square-rounded-filled",
3751
+ "ti-square-rounded-letter-a",
3752
+ "ti-square-rounded-letter-b",
3753
+ "ti-square-rounded-letter-c",
3754
+ "ti-square-rounded-letter-d",
3755
+ "ti-square-rounded-letter-e",
3756
+ "ti-square-rounded-letter-f",
3757
+ "ti-square-rounded-letter-g",
3758
+ "ti-square-rounded-letter-h",
3759
+ "ti-square-rounded-letter-i",
3760
+ "ti-square-rounded-letter-j",
3761
+ "ti-square-rounded-letter-k",
3762
+ "ti-square-rounded-letter-l",
3763
+ "ti-square-rounded-letter-m",
3764
+ "ti-square-rounded-letter-n",
3765
+ "ti-square-rounded-letter-o",
3766
+ "ti-square-rounded-letter-p",
3767
+ "ti-square-rounded-letter-q",
3768
+ "ti-square-rounded-letter-r",
3769
+ "ti-square-rounded-letter-s",
3770
+ "ti-square-rounded-letter-t",
3771
+ "ti-square-rounded-letter-u",
3772
+ "ti-square-rounded-letter-v",
3773
+ "ti-square-rounded-letter-w",
3774
+ "ti-square-rounded-letter-x",
3775
+ "ti-square-rounded-letter-y",
3776
+ "ti-square-rounded-letter-z",
3777
+ "ti-square-rounded-minus",
3778
+ "ti-square-rounded-number-0",
3779
+ "ti-square-rounded-number-0-filled",
3780
+ "ti-square-rounded-number-1",
3781
+ "ti-square-rounded-number-1-filled",
3782
+ "ti-square-rounded-number-2",
3783
+ "ti-square-rounded-number-2-filled",
3784
+ "ti-square-rounded-number-3",
3785
+ "ti-square-rounded-number-3-filled",
3786
+ "ti-square-rounded-number-4",
3787
+ "ti-square-rounded-number-4-filled",
3788
+ "ti-square-rounded-number-5",
3789
+ "ti-square-rounded-number-5-filled",
3790
+ "ti-square-rounded-number-6",
3791
+ "ti-square-rounded-number-6-filled",
3792
+ "ti-square-rounded-number-7",
3793
+ "ti-square-rounded-number-7-filled",
3794
+ "ti-square-rounded-number-8",
3795
+ "ti-square-rounded-number-8-filled",
3796
+ "ti-square-rounded-number-9",
3797
+ "ti-square-rounded-number-9-filled",
3798
+ "ti-square-rounded-plus",
3799
+ "ti-square-rounded-plus-filled",
3800
+ "ti-square-rounded-x",
3801
+ "ti-square-rounded-x-filled",
3802
+ "ti-square-toggle",
3803
+ "ti-square-toggle-horizontal",
3804
+ "ti-square-x",
3805
+ "ti-squares-diagonal",
3806
+ "ti-squares-filled",
3807
+ "ti-stack",
3808
+ "ti-stack-2",
3809
+ "ti-stack-3",
3810
+ "ti-stack-pop",
3811
+ "ti-stack-push",
3812
+ "ti-stairs",
3813
+ "ti-stairs-down",
3814
+ "ti-stairs-up",
3815
+ "ti-star",
3816
+ "ti-star-filled",
3817
+ "ti-star-half",
3818
+ "ti-star-half-filled",
3819
+ "ti-star-off",
3820
+ "ti-stars",
3821
+ "ti-stars-filled",
3822
+ "ti-stars-off",
3823
+ "ti-status-change",
3824
+ "ti-steam",
3825
+ "ti-steering-wheel",
3826
+ "ti-steering-wheel-off",
3827
+ "ti-step-into",
3828
+ "ti-step-out",
3829
+ "ti-stereo-glasses",
3830
+ "ti-stethoscope",
3831
+ "ti-stethoscope-off",
3832
+ "ti-sticker",
3833
+ "ti-storm",
3834
+ "ti-storm-off",
3835
+ "ti-stretching",
3836
+ "ti-stretching-2",
3837
+ "ti-strikethrough",
3838
+ "ti-submarine",
3839
+ "ti-subscript",
3840
+ "ti-subtask",
3841
+ "ti-sum",
3842
+ "ti-sum-off",
3843
+ "ti-sun",
3844
+ "ti-sun-filled",
3845
+ "ti-sun-high",
3846
+ "ti-sun-low",
3847
+ "ti-sun-moon",
3848
+ "ti-sun-off",
3849
+ "ti-sun-wind",
3850
+ "ti-sunglasses",
3851
+ "ti-sunrise",
3852
+ "ti-sunset",
3853
+ "ti-sunset-2",
3854
+ "ti-superscript",
3855
+ "ti-svg",
3856
+ "ti-swimming",
3857
+ "ti-swipe",
3858
+ "ti-switch",
3859
+ "ti-switch-2",
3860
+ "ti-switch-3",
3861
+ "ti-switch-horizontal",
3862
+ "ti-switch-vertical",
3863
+ "ti-sword",
3864
+ "ti-sword-off",
3865
+ "ti-swords",
3866
+ "ti-table",
3867
+ "ti-table-alias",
3868
+ "ti-table-down",
3869
+ "ti-table-export",
3870
+ "ti-table-filled",
3871
+ "ti-table-heart",
3872
+ "ti-table-import",
3873
+ "ti-table-minus",
3874
+ "ti-table-off",
3875
+ "ti-table-options",
3876
+ "ti-table-plus",
3877
+ "ti-table-share",
3878
+ "ti-table-shortcut",
3879
+ "ti-tag",
3880
+ "ti-tag-off",
3881
+ "ti-tags",
3882
+ "ti-tags-off",
3883
+ "ti-tallymark-1",
3884
+ "ti-tallymark-2",
3885
+ "ti-tallymark-3",
3886
+ "ti-tallymark-4",
3887
+ "ti-tallymarks",
3888
+ "ti-tank",
3889
+ "ti-target",
3890
+ "ti-target-arrow",
3891
+ "ti-target-off",
3892
+ "ti-teapot",
3893
+ "ti-telescope",
3894
+ "ti-telescope-off",
3895
+ "ti-temperature",
3896
+ "ti-temperature-celsius",
3897
+ "ti-temperature-fahrenheit",
3898
+ "ti-temperature-minus",
3899
+ "ti-temperature-off",
3900
+ "ti-temperature-plus",
3901
+ "ti-template",
3902
+ "ti-template-off",
3903
+ "ti-tent",
3904
+ "ti-tent-off",
3905
+ "ti-terminal",
3906
+ "ti-terminal-2",
3907
+ "ti-test-pipe",
3908
+ "ti-test-pipe-2",
3909
+ "ti-test-pipe-off",
3910
+ "ti-tex",
3911
+ "ti-text-caption",
3912
+ "ti-text-color",
3913
+ "ti-text-decrease",
3914
+ "ti-text-direction-ltr",
3915
+ "ti-text-direction-rtl",
3916
+ "ti-text-increase",
3917
+ "ti-text-orientation",
3918
+ "ti-text-plus",
3919
+ "ti-text-recognition",
3920
+ "ti-text-resize",
3921
+ "ti-text-size",
3922
+ "ti-text-spellcheck",
3923
+ "ti-text-wrap",
3924
+ "ti-text-wrap-disabled",
3925
+ "ti-texture",
3926
+ "ti-theater",
3927
+ "ti-thermometer",
3928
+ "ti-thumb-down",
3929
+ "ti-thumb-down-filled",
3930
+ "ti-thumb-down-off",
3931
+ "ti-thumb-up",
3932
+ "ti-thumb-up-filled",
3933
+ "ti-thumb-up-off",
3934
+ "ti-tic-tac",
3935
+ "ti-ticket",
3936
+ "ti-ticket-off",
3937
+ "ti-tie",
3938
+ "ti-tilde",
3939
+ "ti-tilt-shift",
3940
+ "ti-tilt-shift-off",
3941
+ "ti-timeline",
3942
+ "ti-timeline-event",
3943
+ "ti-timeline-event-exclamation",
3944
+ "ti-timeline-event-minus",
3945
+ "ti-timeline-event-plus",
3946
+ "ti-timeline-event-text",
3947
+ "ti-timeline-event-x",
3948
+ "ti-tir",
3949
+ "ti-toggle-left",
3950
+ "ti-toggle-right",
3951
+ "ti-toilet-paper",
3952
+ "ti-toilet-paper-off",
3953
+ "ti-toml",
3954
+ "ti-tool",
3955
+ "ti-tools",
3956
+ "ti-tools-kitchen",
3957
+ "ti-tools-kitchen-2",
3958
+ "ti-tools-kitchen-2-off",
3959
+ "ti-tools-kitchen-off",
3960
+ "ti-tools-off",
3961
+ "ti-tooltip",
3962
+ "ti-topology-bus",
3963
+ "ti-topology-complex",
3964
+ "ti-topology-full",
3965
+ "ti-topology-full-hierarchy",
3966
+ "ti-topology-ring",
3967
+ "ti-topology-ring-2",
3968
+ "ti-topology-ring-3",
3969
+ "ti-topology-star",
3970
+ "ti-topology-star-2",
3971
+ "ti-topology-star-3",
3972
+ "ti-topology-star-ring",
3973
+ "ti-topology-star-ring-2",
3974
+ "ti-topology-star-ring-3",
3975
+ "ti-torii",
3976
+ "ti-tornado",
3977
+ "ti-tournament",
3978
+ "ti-tower",
3979
+ "ti-tower-off",
3980
+ "ti-track",
3981
+ "ti-tractor",
3982
+ "ti-trademark",
3983
+ "ti-traffic-cone",
3984
+ "ti-traffic-cone-off",
3985
+ "ti-traffic-lights",
3986
+ "ti-traffic-lights-off",
3987
+ "ti-train",
3988
+ "ti-transfer-in",
3989
+ "ti-transfer-out",
3990
+ "ti-transform",
3991
+ "ti-transform-filled",
3992
+ "ti-transition-bottom",
3993
+ "ti-transition-left",
3994
+ "ti-transition-right",
3995
+ "ti-transition-top",
3996
+ "ti-trash",
3997
+ "ti-trash-filled",
3998
+ "ti-trash-off",
3999
+ "ti-trash-x",
4000
+ "ti-trash-x-filled",
4001
+ "ti-treadmill",
4002
+ "ti-tree",
4003
+ "ti-trees",
4004
+ "ti-trekking",
4005
+ "ti-trending-down",
4006
+ "ti-trending-down-2",
4007
+ "ti-trending-down-3",
4008
+ "ti-trending-up",
4009
+ "ti-trending-up-2",
4010
+ "ti-trending-up-3",
4011
+ "ti-triangle",
4012
+ "ti-triangle-filled",
4013
+ "ti-triangle-inverted",
4014
+ "ti-triangle-inverted-filled",
4015
+ "ti-triangle-off",
4016
+ "ti-triangle-square-circle",
4017
+ "ti-triangles",
4018
+ "ti-trident",
4019
+ "ti-trolley",
4020
+ "ti-trophy",
4021
+ "ti-trophy-filled",
4022
+ "ti-trophy-off",
4023
+ "ti-trowel",
4024
+ "ti-truck",
4025
+ "ti-truck-delivery",
4026
+ "ti-truck-loading",
4027
+ "ti-truck-off",
4028
+ "ti-truck-return",
4029
+ "ti-txt",
4030
+ "ti-typography",
4031
+ "ti-typography-off",
4032
+ "ti-ufo",
4033
+ "ti-ufo-off",
4034
+ "ti-umbrella",
4035
+ "ti-umbrella-filled",
4036
+ "ti-umbrella-off",
4037
+ "ti-underline",
4038
+ "ti-unlink",
4039
+ "ti-upload",
4040
+ "ti-urgent",
4041
+ "ti-usb",
4042
+ "ti-user",
4043
+ "ti-user-bolt",
4044
+ "ti-user-cancel",
4045
+ "ti-user-check",
4046
+ "ti-user-circle",
4047
+ "ti-user-code",
4048
+ "ti-user-cog",
4049
+ "ti-user-dollar",
4050
+ "ti-user-down",
4051
+ "ti-user-edit",
4052
+ "ti-user-exclamation",
4053
+ "ti-user-heart",
4054
+ "ti-user-minus",
4055
+ "ti-user-off",
4056
+ "ti-user-pause",
4057
+ "ti-user-pin",
4058
+ "ti-user-plus",
4059
+ "ti-user-question",
4060
+ "ti-user-search",
4061
+ "ti-user-share",
4062
+ "ti-user-shield",
4063
+ "ti-user-star",
4064
+ "ti-user-up",
4065
+ "ti-user-x",
4066
+ "ti-users",
4067
+ "ti-users-group",
4068
+ "ti-users-minus",
4069
+ "ti-users-plus",
4070
+ "ti-uv-index",
4071
+ "ti-ux-circle",
4072
+ "ti-vaccine",
4073
+ "ti-vaccine-bottle",
4074
+ "ti-vaccine-bottle-off",
4075
+ "ti-vaccine-off",
4076
+ "ti-vacuum-cleaner",
4077
+ "ti-variable",
4078
+ "ti-variable-minus",
4079
+ "ti-variable-off",
4080
+ "ti-variable-plus",
4081
+ "ti-vector",
4082
+ "ti-vector-bezier",
4083
+ "ti-vector-bezier-2",
4084
+ "ti-vector-bezier-arc",
4085
+ "ti-vector-bezier-circle",
4086
+ "ti-vector-off",
4087
+ "ti-vector-spline",
4088
+ "ti-vector-triangle",
4089
+ "ti-vector-triangle-off",
4090
+ "ti-venus",
4091
+ "ti-versions",
4092
+ "ti-versions-filled",
4093
+ "ti-versions-off",
4094
+ "ti-video",
4095
+ "ti-video-minus",
4096
+ "ti-video-off",
4097
+ "ti-video-plus",
4098
+ "ti-view-360",
4099
+ "ti-view-360-off",
4100
+ "ti-viewfinder",
4101
+ "ti-viewfinder-off",
4102
+ "ti-viewport-narrow",
4103
+ "ti-viewport-wide",
4104
+ "ti-vinyl",
4105
+ "ti-vip",
4106
+ "ti-vip-off",
4107
+ "ti-virus",
4108
+ "ti-virus-off",
4109
+ "ti-virus-search",
4110
+ "ti-vocabulary",
4111
+ "ti-vocabulary-off",
4112
+ "ti-volcano",
4113
+ "ti-volume",
4114
+ "ti-volume-2",
4115
+ "ti-volume-3",
4116
+ "ti-volume-off",
4117
+ "ti-walk",
4118
+ "ti-wall",
4119
+ "ti-wall-off",
4120
+ "ti-wallet",
4121
+ "ti-wallet-off",
4122
+ "ti-wallpaper",
4123
+ "ti-wallpaper-off",
4124
+ "ti-wand",
4125
+ "ti-wand-off",
4126
+ "ti-wash",
4127
+ "ti-wash-dry",
4128
+ "ti-wash-dry-1",
4129
+ "ti-wash-dry-2",
4130
+ "ti-wash-dry-3",
4131
+ "ti-wash-dry-a",
4132
+ "ti-wash-dry-dip",
4133
+ "ti-wash-dry-f",
4134
+ "ti-wash-dry-flat",
4135
+ "ti-wash-dry-hang",
4136
+ "ti-wash-dry-off",
4137
+ "ti-wash-dry-p",
4138
+ "ti-wash-dry-shade",
4139
+ "ti-wash-dry-w",
4140
+ "ti-wash-dryclean",
4141
+ "ti-wash-dryclean-off",
4142
+ "ti-wash-eco",
4143
+ "ti-wash-gentle",
4144
+ "ti-wash-hand",
4145
+ "ti-wash-machine",
4146
+ "ti-wash-off",
4147
+ "ti-wash-press",
4148
+ "ti-wash-temperature-1",
4149
+ "ti-wash-temperature-2",
4150
+ "ti-wash-temperature-3",
4151
+ "ti-wash-temperature-4",
4152
+ "ti-wash-temperature-5",
4153
+ "ti-wash-temperature-6",
4154
+ "ti-wash-tumble-dry",
4155
+ "ti-wash-tumble-off",
4156
+ "ti-waterpolo",
4157
+ "ti-wave-saw-tool",
4158
+ "ti-wave-sine",
4159
+ "ti-wave-square",
4160
+ "ti-webhook",
4161
+ "ti-webhook-off",
4162
+ "ti-weight",
4163
+ "ti-wheelchair",
4164
+ "ti-wheelchair-off",
4165
+ "ti-whirl",
4166
+ "ti-wifi",
4167
+ "ti-wifi-0",
4168
+ "ti-wifi-1",
4169
+ "ti-wifi-2",
4170
+ "ti-wifi-off",
4171
+ "ti-wind",
4172
+ "ti-wind-off",
4173
+ "ti-windmill",
4174
+ "ti-windmill-filled",
4175
+ "ti-windmill-off",
4176
+ "ti-window",
4177
+ "ti-window-maximize",
4178
+ "ti-window-minimize",
4179
+ "ti-window-off",
4180
+ "ti-windsock",
4181
+ "ti-wiper",
4182
+ "ti-wiper-wash",
4183
+ "ti-woman",
4184
+ "ti-wood",
4185
+ "ti-world",
4186
+ "ti-world-bolt",
4187
+ "ti-world-cancel",
4188
+ "ti-world-check",
4189
+ "ti-world-code",
4190
+ "ti-world-cog",
4191
+ "ti-world-dollar",
4192
+ "ti-world-down",
4193
+ "ti-world-download",
4194
+ "ti-world-exclamation",
4195
+ "ti-world-heart",
4196
+ "ti-world-latitude",
4197
+ "ti-world-longitude",
4198
+ "ti-world-minus",
4199
+ "ti-world-off",
4200
+ "ti-world-pause",
4201
+ "ti-world-pin",
4202
+ "ti-world-plus",
4203
+ "ti-world-question",
4204
+ "ti-world-search",
4205
+ "ti-world-share",
4206
+ "ti-world-star",
4207
+ "ti-world-up",
4208
+ "ti-world-upload",
4209
+ "ti-world-www",
4210
+ "ti-world-x",
4211
+ "ti-wrecking-ball",
4212
+ "ti-writing",
4213
+ "ti-writing-off",
4214
+ "ti-writing-sign",
4215
+ "ti-writing-sign-off",
4216
+ "ti-x",
4217
+ "ti-xbox-a",
4218
+ "ti-xbox-b",
4219
+ "ti-xbox-x",
4220
+ "ti-xbox-y",
4221
+ "ti-xd",
4222
+ "ti-yin-yang",
4223
+ "ti-yin-yang-filled",
4224
+ "ti-yoga",
4225
+ "ti-zeppelin",
4226
+ "ti-zeppelin-off",
4227
+ "ti-zip",
4228
+ "ti-zodiac-aquarius",
4229
+ "ti-zodiac-aries",
4230
+ "ti-zodiac-cancer",
4231
+ "ti-zodiac-capricorn",
4232
+ "ti-zodiac-gemini",
4233
+ "ti-zodiac-leo",
4234
+ "ti-zodiac-libra",
4235
+ "ti-zodiac-pisces",
4236
+ "ti-zodiac-sagittarius",
4237
+ "ti-zodiac-scorpio",
4238
+ "ti-zodiac-taurus",
4239
+ "ti-zodiac-virgo",
4240
+ "ti-zoom-cancel",
4241
+ "ti-zoom-check",
4242
+ "ti-zoom-check-filled",
4243
+ "ti-zoom-code",
4244
+ "ti-zoom-exclamation",
4245
+ "ti-zoom-filled",
4246
+ "ti-zoom-in",
4247
+ "ti-zoom-in-area",
4248
+ "ti-zoom-in-area-filled",
4249
+ "ti-zoom-in-filled",
4250
+ "ti-zoom-money",
4251
+ "ti-zoom-out",
4252
+ "ti-zoom-out-area",
4253
+ "ti-zoom-out-filled",
4254
+ "ti-zoom-pan",
4255
+ "ti-zoom-question",
4256
+ "ti-zoom-replace",
4257
+ "ti-zoom-reset",
4258
+ "ti-zzz",
4259
+ "ti-zzz-off",
4260
+ ];