@timus-networks/theme 2.0.0 → 2.0.1

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 (190) hide show
  1. package/README.md +128 -0
  2. package/dist/module.cjs +5 -0
  3. package/dist/module.d.mts +11 -0
  4. package/dist/module.d.ts +11 -0
  5. package/dist/module.json +9 -0
  6. package/dist/module.mjs +159 -0
  7. package/dist/runtime/components/example.button.vue +237 -0
  8. package/dist/runtime/components/example.button.vue.d.ts +10 -0
  9. package/dist/runtime/components/example.checkbox.vue +190 -0
  10. package/dist/runtime/components/example.checkbox.vue.d.ts +24 -0
  11. package/dist/runtime/components/example.dialog.vue +82 -0
  12. package/dist/runtime/components/example.form.vue +494 -0
  13. package/dist/runtime/components/example.input.vue +286 -0
  14. package/dist/runtime/components/example.input.vue.d.ts +20 -0
  15. package/dist/runtime/components/example.popover.vue +161 -0
  16. package/dist/runtime/components/example.radio.vue +165 -0
  17. package/dist/runtime/components/example.radio.vue.d.ts +24 -0
  18. package/dist/runtime/components/example.select.vue +591 -0
  19. package/dist/runtime/components/example.select.vue.d.ts +69 -0
  20. package/dist/runtime/components/example.sidebar.vue +104 -0
  21. package/dist/runtime/components/example.table.vue +126 -0
  22. package/dist/runtime/components/example.tag.vue +279 -0
  23. package/dist/runtime/components/html-encode.vue +37 -0
  24. package/dist/runtime/pages/theme.vue +30 -0
  25. package/dist/runtime/plugins/element-extend-plugin.d.ts +38 -0
  26. package/dist/runtime/plugins/element-extend-plugin.js +39 -0
  27. package/dist/runtime/plugins/element-extend-plugin.mjs +39 -0
  28. package/dist/runtime/plugins/experimental-size-plugin.d.ts +2 -0
  29. package/dist/runtime/plugins/experimental-size-plugin.js +13 -0
  30. package/dist/runtime/plugins/experimental-size-plugin.mjs +13 -0
  31. package/dist/runtime/plugins/sample-plugin.d.ts +20 -0
  32. package/dist/runtime/plugins/sample-plugin.js +5 -0
  33. package/dist/runtime/plugins/sample-plugin.mjs +5 -0
  34. package/dist/runtime/plugins/theme-provider.d.ts +30 -0
  35. package/dist/runtime/plugins/theme-provider.js +46 -0
  36. package/dist/runtime/plugins/theme-provider.mjs +46 -0
  37. package/dist/runtime/public/scss/element-plus/affix.css +277 -0
  38. package/dist/runtime/public/scss/element-plus/alert.css +420 -0
  39. package/dist/runtime/public/scss/element-plus/anchor-link.css +304 -0
  40. package/dist/runtime/public/scss/element-plus/anchor.css +348 -0
  41. package/dist/runtime/public/scss/element-plus/aside.css +280 -0
  42. package/dist/runtime/public/scss/element-plus/autocomplete.css +383 -0
  43. package/dist/runtime/public/scss/element-plus/avatar.css +320 -0
  44. package/dist/runtime/public/scss/element-plus/backtop.css +298 -0
  45. package/dist/runtime/public/scss/element-plus/badge.css +348 -0
  46. package/dist/runtime/public/scss/element-plus/base.css +522 -0
  47. package/dist/runtime/public/scss/element-plus/breadcrumb-item.css +0 -0
  48. package/dist/runtime/public/scss/element-plus/breadcrumb.css +330 -0
  49. package/dist/runtime/public/scss/element-plus/button-group.css +413 -0
  50. package/dist/runtime/public/scss/element-plus/button.css +1043 -0
  51. package/dist/runtime/public/scss/element-plus/calendar.css +342 -0
  52. package/dist/runtime/public/scss/element-plus/card.css +312 -0
  53. package/dist/runtime/public/scss/element-plus/carousel-item.css +322 -0
  54. package/dist/runtime/public/scss/element-plus/carousel.css +447 -0
  55. package/dist/runtime/public/scss/element-plus/cascader-panel.css +400 -0
  56. package/dist/runtime/public/scss/element-plus/cascader.css +532 -0
  57. package/dist/runtime/public/scss/element-plus/check-tag.css +358 -0
  58. package/dist/runtime/public/scss/element-plus/checkbox-button.css +418 -0
  59. package/dist/runtime/public/scss/element-plus/checkbox-group.css +279 -0
  60. package/dist/runtime/public/scss/element-plus/checkbox.css +560 -0
  61. package/dist/runtime/public/scss/element-plus/col.css +3242 -0
  62. package/dist/runtime/public/scss/element-plus/collapse-item.css +0 -0
  63. package/dist/runtime/public/scss/element-plus/collapse-transition.css +0 -0
  64. package/dist/runtime/public/scss/element-plus/collapse.css +462 -0
  65. package/dist/runtime/public/scss/element-plus/color/index.css +0 -0
  66. package/dist/runtime/public/scss/element-plus/color-picker.css +622 -0
  67. package/dist/runtime/public/scss/element-plus/common/popup.css +310 -0
  68. package/dist/runtime/public/scss/element-plus/common/transition.css +392 -0
  69. package/dist/runtime/public/scss/element-plus/common/var.css +274 -0
  70. package/dist/runtime/public/scss/element-plus/config-provider.css +0 -0
  71. package/dist/runtime/public/scss/element-plus/container.css +285 -0
  72. package/dist/runtime/public/scss/element-plus/dark/css-vars.css +325 -0
  73. package/dist/runtime/public/scss/element-plus/dark/var.css +274 -0
  74. package/dist/runtime/public/scss/element-plus/date-picker/date-picker.css +496 -0
  75. package/dist/runtime/public/scss/element-plus/date-picker/date-range-picker.css +378 -0
  76. package/dist/runtime/public/scss/element-plus/date-picker/date-table.css +398 -0
  77. package/dist/runtime/public/scss/element-plus/date-picker/month-table.css +360 -0
  78. package/dist/runtime/public/scss/element-plus/date-picker/picker-panel.css +391 -0
  79. package/dist/runtime/public/scss/element-plus/date-picker/picker.css +634 -0
  80. package/dist/runtime/public/scss/element-plus/date-picker/time-picker.css +344 -0
  81. package/dist/runtime/public/scss/element-plus/date-picker/time-range-picker.css +303 -0
  82. package/dist/runtime/public/scss/element-plus/date-picker/time-spinner.css +362 -0
  83. package/dist/runtime/public/scss/element-plus/date-picker/year-table.css +356 -0
  84. package/dist/runtime/public/scss/element-plus/date-picker.css +1447 -0
  85. package/dist/runtime/public/scss/element-plus/descriptions-item.css +307 -0
  86. package/dist/runtime/public/scss/element-plus/descriptions.css +373 -0
  87. package/dist/runtime/public/scss/element-plus/dialog.css +484 -0
  88. package/dist/runtime/public/scss/element-plus/display.css +329 -0
  89. package/dist/runtime/public/scss/element-plus/divider.css +317 -0
  90. package/dist/runtime/public/scss/element-plus/drawer.css +391 -0
  91. package/dist/runtime/public/scss/element-plus/dropdown-item.css +0 -0
  92. package/dist/runtime/public/scss/element-plus/dropdown-menu.css +0 -0
  93. package/dist/runtime/public/scss/element-plus/dropdown.css +464 -0
  94. package/dist/runtime/public/scss/element-plus/empty.css +327 -0
  95. package/dist/runtime/public/scss/element-plus/footer.css +282 -0
  96. package/dist/runtime/public/scss/element-plus/form-item.css +0 -0
  97. package/dist/runtime/public/scss/element-plus/form.css +499 -0
  98. package/dist/runtime/public/scss/element-plus/header.css +282 -0
  99. package/dist/runtime/public/scss/element-plus/icon.css +315 -0
  100. package/dist/runtime/public/scss/element-plus/image-viewer.css +411 -0
  101. package/dist/runtime/public/scss/element-plus/image.css +315 -0
  102. package/dist/runtime/public/scss/element-plus/index.css +16702 -0
  103. package/dist/runtime/public/scss/element-plus/infinite-scroll.css +0 -0
  104. package/dist/runtime/public/scss/element-plus/input-number.css +450 -0
  105. package/dist/runtime/public/scss/element-plus/input.css +742 -0
  106. package/dist/runtime/public/scss/element-plus/link.css +422 -0
  107. package/dist/runtime/public/scss/element-plus/loading.css +363 -0
  108. package/dist/runtime/public/scss/element-plus/main.css +283 -0
  109. package/dist/runtime/public/scss/element-plus/mention.css +385 -0
  110. package/dist/runtime/public/scss/element-plus/menu-item-group.css +0 -0
  111. package/dist/runtime/public/scss/element-plus/menu-item.css +0 -0
  112. package/dist/runtime/public/scss/element-plus/menu.css +709 -0
  113. package/dist/runtime/public/scss/element-plus/message-box.css +501 -0
  114. package/dist/runtime/public/scss/element-plus/message.css +398 -0
  115. package/dist/runtime/public/scss/element-plus/mixins/config.css +0 -0
  116. package/dist/runtime/public/scss/element-plus/mixins/function.css +0 -0
  117. package/dist/runtime/public/scss/element-plus/mixins/mixins.css +274 -0
  118. package/dist/runtime/public/scss/element-plus/mixins/utils.css +0 -0
  119. package/dist/runtime/public/scss/element-plus/notification.css +381 -0
  120. package/dist/runtime/public/scss/element-plus/option-group.css +303 -0
  121. package/dist/runtime/public/scss/element-plus/option.css +325 -0
  122. package/dist/runtime/public/scss/element-plus/overlay.css +289 -0
  123. package/dist/runtime/public/scss/element-plus/page-header.css +323 -0
  124. package/dist/runtime/public/scss/element-plus/pagination.css +533 -0
  125. package/dist/runtime/public/scss/element-plus/popconfirm.css +287 -0
  126. package/dist/runtime/public/scss/element-plus/popover.css +324 -0
  127. package/dist/runtime/public/scss/element-plus/popper.css +372 -0
  128. package/dist/runtime/public/scss/element-plus/progress.css +421 -0
  129. package/dist/runtime/public/scss/element-plus/radio-button.css +402 -0
  130. package/dist/runtime/public/scss/element-plus/radio-group.css +280 -0
  131. package/dist/runtime/public/scss/element-plus/radio.css +533 -0
  132. package/dist/runtime/public/scss/element-plus/rate.css +356 -0
  133. package/dist/runtime/public/scss/element-plus/reset.css +371 -0
  134. package/dist/runtime/public/scss/element-plus/result.css +353 -0
  135. package/dist/runtime/public/scss/element-plus/row.css +311 -0
  136. package/dist/runtime/public/scss/element-plus/scrollbar.css +345 -0
  137. package/dist/runtime/public/scss/element-plus/segmented.css +432 -0
  138. package/dist/runtime/public/scss/element-plus/select-dropdown-v2.css +323 -0
  139. package/dist/runtime/public/scss/element-plus/select-dropdown.css +323 -0
  140. package/dist/runtime/public/scss/element-plus/select-v2.css +740 -0
  141. package/dist/runtime/public/scss/element-plus/select.css +740 -0
  142. package/dist/runtime/public/scss/element-plus/skeleton-item.css +344 -0
  143. package/dist/runtime/public/scss/element-plus/skeleton.css +307 -0
  144. package/dist/runtime/public/scss/element-plus/slider.css +452 -0
  145. package/dist/runtime/public/scss/element-plus/space.css +289 -0
  146. package/dist/runtime/public/scss/element-plus/spinner.css +314 -0
  147. package/dist/runtime/public/scss/element-plus/statistic.css +308 -0
  148. package/dist/runtime/public/scss/element-plus/step.css +558 -0
  149. package/dist/runtime/public/scss/element-plus/steps.css +291 -0
  150. package/dist/runtime/public/scss/element-plus/sub-menu.css +0 -0
  151. package/dist/runtime/public/scss/element-plus/switch.css +498 -0
  152. package/dist/runtime/public/scss/element-plus/tab-pane.css +0 -0
  153. package/dist/runtime/public/scss/element-plus/table-column.css +354 -0
  154. package/dist/runtime/public/scss/element-plus/table-v2.css +492 -0
  155. package/dist/runtime/public/scss/element-plus/table.css +865 -0
  156. package/dist/runtime/public/scss/element-plus/tabs.css +864 -0
  157. package/dist/runtime/public/scss/element-plus/tag.css +596 -0
  158. package/dist/runtime/public/scss/element-plus/text.css +344 -0
  159. package/dist/runtime/public/scss/element-plus/time-picker.css +942 -0
  160. package/dist/runtime/public/scss/element-plus/time-select.css +884 -0
  161. package/dist/runtime/public/scss/element-plus/timeline-item.css +387 -0
  162. package/dist/runtime/public/scss/element-plus/timeline.css +306 -0
  163. package/dist/runtime/public/scss/element-plus/tooltip-v2.css +382 -0
  164. package/dist/runtime/public/scss/element-plus/tooltip.css +0 -0
  165. package/dist/runtime/public/scss/element-plus/tour.css +433 -0
  166. package/dist/runtime/public/scss/element-plus/transfer.css +469 -0
  167. package/dist/runtime/public/scss/element-plus/tree-select.css +297 -0
  168. package/dist/runtime/public/scss/element-plus/tree.css +510 -0
  169. package/dist/runtime/public/scss/element-plus/upload.css +834 -0
  170. package/dist/runtime/public/scss/element-plus/var.css +361 -0
  171. package/dist/runtime/public/scss/element-plus/virtual-list.css +302 -0
  172. package/dist/runtime/public/scss/theme.css +1191 -0
  173. package/dist/runtime/server/tsconfig.json +6 -0
  174. package/dist/runtime/types.d.ts +40 -0
  175. package/dist/types.d.mts +7 -0
  176. package/dist/types.d.ts +7 -0
  177. package/package.json +29 -12
  178. package/components/TimusIcons.vue +0 -54
  179. package/generate-icon.js +0 -22
  180. package/module.ts +0 -84
  181. package/pages/icons.vue +0 -46
  182. package/plugins/sample-plugin.ts +0 -5
  183. package/public/isax/fonts/iconsax.svg +0 -927
  184. package/public/isax/fonts/iconsax.ttf +0 -0
  185. package/public/isax/fonts/iconsax.woff +0 -0
  186. package/public/isax/icons.json +0 -899
  187. package/public/isax/selection.json +0 -1
  188. package/public/isax/style.css +0 -1
  189. package/public/isax/style.scss +0 -5435
  190. package/public/isax/variables.scss +0 -900
@@ -1,899 +0,0 @@
1
- { "data": [
2
- "refresh-square-2",
3
- "d-cube-scan",
4
- "d-rotate",
5
- "d-square",
6
- "dcube",
7
- "square",
8
- "support",
9
- "activity",
10
- "add-circle",
11
- "add-square",
12
- "add",
13
- "additem",
14
- "airdrop",
15
- "airplane-square",
16
- "airplane",
17
- "airpod",
18
- "airpods",
19
- "alarm",
20
- "align-bottom",
21
- "align-horizontally",
22
- "align-left",
23
- "align-right",
24
- "align-vertically",
25
- "aquarius",
26
- "archive-1",
27
- "archive-2",
28
- "archive-add",
29
- "archive-book",
30
- "archive-minus",
31
- "archive-slash",
32
- "archive-tick",
33
- "archive",
34
- "arrange-circle-2",
35
- "arrange-circle",
36
- "arrange-square-2",
37
- "arrange-square",
38
- "arrow-2",
39
- "arrow-3",
40
- "arrow-bottom",
41
- "arrow-circle-down",
42
- "arrow-circle-left",
43
- "arrow-circle-right",
44
- "arrow-circle-up",
45
- "arrow-down-1",
46
- "arrow-down-2",
47
- "arrow-down",
48
- "arrow-left-1",
49
- "arrow-left-2",
50
- "arrow-left-3",
51
- "arrow-left",
52
- "arrow-right-1",
53
- "arrow-right-2",
54
- "arrow-right-3",
55
- "arrow-right-4",
56
- "arrow-right",
57
- "arrow-square-down",
58
- "arrow-square-left",
59
- "arrow-square-up",
60
- "arrow-square",
61
- "arrow-swap-horizontal",
62
- "arrow-swap",
63
- "arrow-up-1",
64
- "arrow-up-2",
65
- "arrow-up-3",
66
- "arrow-up",
67
- "arrow",
68
- "attach-circle",
69
- "attach-square",
70
- "audio-square",
71
- "autobrightness",
72
- "award",
73
- "back-square",
74
- "backward-5-seconds",
75
- "backward-10-seconds",
76
- "backward-15-seconds",
77
- "backward-item",
78
- "backward",
79
- "bag-2",
80
- "bag-cross-1",
81
- "bag-cross",
82
- "bag-happy",
83
- "bag-tick-2",
84
- "bag-tick",
85
- "bag-timer",
86
- "bag",
87
- "bank",
88
- "barcode",
89
- "battery-3full",
90
- "battery-charging",
91
- "battery-disable",
92
- "battery-empty-1",
93
- "battery-empty",
94
- "battery-full",
95
- "bezier",
96
- "bill",
97
- "bitcoin-card",
98
- "bitcoin-convert",
99
- "bitcoin-refresh",
100
- "blend-2",
101
- "blend",
102
- "bluetooth-2",
103
- "bluetooth-circle",
104
- "bluetooth-rectangle",
105
- "bluetooth",
106
- "blur",
107
- "book-1",
108
- "book-saved",
109
- "book-square",
110
- "book",
111
- "bookmark-2",
112
- "bookmark",
113
- "box-1",
114
- "box-2",
115
- "box-add",
116
- "box-remove",
117
- "box-search",
118
- "box-tick",
119
- "box-time",
120
- "box",
121
- "briefcase",
122
- "brifecase-cross",
123
- "brifecase-tick",
124
- "brifecase-timer",
125
- "broom",
126
- "brush-1",
127
- "brush-2",
128
- "brush-3",
129
- "brush-4",
130
- "brush",
131
- "bubble",
132
- "bucket-circle",
133
- "bucket-square",
134
- "bucket",
135
- "building-3",
136
- "building-4",
137
- "building",
138
- "buildings-2",
139
- "buildings",
140
- "buliding",
141
- "bus",
142
- "buy-crypto",
143
- "cake",
144
- "calculator",
145
- "calendar-1",
146
- "calendar-2",
147
- "calendar-add",
148
- "calendar-circle",
149
- "calendar-edit",
150
- "calendar-remove",
151
- "calendar-search",
152
- "calendar-tick",
153
- "calendar",
154
- "call-add",
155
- "call-calling",
156
- "call-incoming",
157
- "call-minus",
158
- "call-outgoing",
159
- "call-received",
160
- "call-remove",
161
- "call-slash",
162
- "call",
163
- "camera-slash",
164
- "camera",
165
- "candle-2",
166
- "candle",
167
- "car",
168
- "card-add",
169
- "card-coin",
170
- "card-edit",
171
- "card-pos",
172
- "card-receive",
173
- "card-remove-1",
174
- "card-remove",
175
- "card-send",
176
- "card-slash",
177
- "card-tick-1",
178
- "card-tick",
179
- "card",
180
- "cards",
181
- "category-2",
182
- "category",
183
- "cd",
184
- "chart-1",
185
- "chart-2",
186
- "chart-3",
187
- "chart-21",
188
- "chart-fail",
189
- "chart-square",
190
- "chart-success",
191
- "chart",
192
- "check",
193
- "chrome",
194
- "clipboard-close",
195
- "clipboard-export",
196
- "clipboard-import",
197
- "clipboard-text",
198
- "clipboard-tick",
199
- "clipboard",
200
- "clock-1",
201
- "clock",
202
- "close-circle",
203
- "close-square",
204
- "cloud-add",
205
- "cloud-change",
206
- "cloud-connection",
207
- "cloud-cross",
208
- "cloud-drizzle",
209
- "cloud-fog",
210
- "cloud-lightning",
211
- "cloud-minus",
212
- "cloud-notif",
213
- "cloud-plus",
214
- "cloud-remove",
215
- "cloud-snow",
216
- "cloud-sunny",
217
- "cloud",
218
- "code-1",
219
- "code-circle",
220
- "code",
221
- "coffee",
222
- "coin-1",
223
- "coin",
224
- "color-swatch",
225
- "colorfilter",
226
- "colors-square",
227
- "command-square",
228
- "command",
229
- "component",
230
- "computing",
231
- "convert-3d-cube",
232
- "convert-card",
233
- "convert",
234
- "convertshape-2",
235
- "convertshape",
236
- "copy-success",
237
- "copy",
238
- "copyright",
239
- "courthouse",
240
- "cpu-charge",
241
- "cpu-setting",
242
- "cpu",
243
- "creative-commons",
244
- "crop",
245
- "crown-1",
246
- "crown",
247
- "cup",
248
- "danger",
249
- "data-2",
250
- "data",
251
- "designtools",
252
- "device-message",
253
- "devices-1",
254
- "devices",
255
- "diagram",
256
- "diamonds",
257
- "direct-down",
258
- "direct-inbox",
259
- "direct-left",
260
- "direct-normal",
261
- "direct-notification",
262
- "direct-right",
263
- "direct-send",
264
- "direct-up",
265
- "direct",
266
- "directbox-default",
267
- "directbox-notif",
268
- "directbox-receive",
269
- "directbox-send",
270
- "discount-circle",
271
- "discount-shape",
272
- "discover-1",
273
- "discover",
274
- "dislike",
275
- "document-1",
276
- "document-cloud",
277
- "document-code-2",
278
- "document-code",
279
- "document-copy",
280
- "document-download",
281
- "document-favorite",
282
- "document-filter",
283
- "document-forward",
284
- "document-like",
285
- "document-normal",
286
- "document-previous",
287
- "document-sketch",
288
- "document-text-1",
289
- "document-text",
290
- "document-upload",
291
- "document",
292
- "dollar-circle",
293
- "dollar-square",
294
- "driver-2",
295
- "driver",
296
- "driving",
297
- "edit-2",
298
- "edit",
299
- "electricity",
300
- "element-2",
301
- "element-3",
302
- "element-4",
303
- "element-equal",
304
- "element-plus",
305
- "emoji-happy",
306
- "emoji-normal",
307
- "emoji-sad",
308
- "empty-wallet-add",
309
- "empty-wallet-change",
310
- "empty-wallet-remove",
311
- "empty-wallet-tick",
312
- "empty-wallet-time",
313
- "empty-wallet",
314
- "eraser-1",
315
- "eraser",
316
- "export-1",
317
- "export-2",
318
- "export-3",
319
- "export",
320
- "external-drive",
321
- "eye-slash",
322
- "eye",
323
- "fatrows",
324
- "favorite-chart",
325
- "filter-add",
326
- "filter-edit",
327
- "filter-remove",
328
- "filter-search",
329
- "filter-square",
330
- "filter-tick",
331
- "filter",
332
- "finger-cricle",
333
- "finger-scan",
334
- "firstline",
335
- "flag-2",
336
- "flag",
337
- "flash-1",
338
- "flash-circle-1",
339
- "flash-circle",
340
- "flash-slash",
341
- "flash",
342
- "folder-2",
343
- "folder-add",
344
- "folder-cloud",
345
- "folder-connection",
346
- "folder-cross",
347
- "folder-favorite",
348
- "folder-minus",
349
- "folder-open",
350
- "folder",
351
- "forbidden-2",
352
- "forbidden",
353
- "format-circle",
354
- "format-square",
355
- "forward-5-seconds",
356
- "forward-10-seconds",
357
- "forward-15-seconds",
358
- "forward-item",
359
- "forward-square",
360
- "forward",
361
- "frame-1",
362
- "frame-2",
363
- "frame-3",
364
- "frame-4",
365
- "frame",
366
- "gallery-add",
367
- "gallery-edit",
368
- "gallery-export",
369
- "gallery-favorite",
370
- "gallery-import",
371
- "gallery-remove",
372
- "gallery-slash",
373
- "gallery-tick",
374
- "gallery",
375
- "game",
376
- "gameboy",
377
- "gas-station",
378
- "gemini-2",
379
- "gemini",
380
- "ghost",
381
- "gift",
382
- "glass-1",
383
- "glass",
384
- "global-edit",
385
- "global-refresh",
386
- "global-search",
387
- "global",
388
- "gps-slash",
389
- "gps",
390
- "grammerly",
391
- "graph",
392
- "grid-1",
393
- "grid-2",
394
- "grid-3",
395
- "grid-4",
396
- "grid-5",
397
- "grid-6",
398
- "grid-7",
399
- "grid-8",
400
- "grid-9",
401
- "grid-edit",
402
- "grid-eraser",
403
- "grid-lock",
404
- "happyemoji",
405
- "hashtag-1",
406
- "hashtag-down",
407
- "hashtag-up",
408
- "hashtag",
409
- "headphone",
410
- "headphones",
411
- "health",
412
- "heart-add",
413
- "heart-circle",
414
- "heart-edit",
415
- "heart-remove",
416
- "heart-search",
417
- "heart-slash",
418
- "heart-tick",
419
- "heart",
420
- "hierarchy-2",
421
- "hierarchy-3",
422
- "hierarchy-square-2",
423
- "hierarchy-square-3",
424
- "hierarchy-square",
425
- "hierarchy",
426
- "home-1",
427
- "home-2",
428
- "home-hashtag",
429
- "home-trend-down",
430
- "home-trend-up",
431
- "home-wifi",
432
- "home",
433
- "hospital",
434
- "house-2",
435
- "house",
436
- "icon",
437
- "image",
438
- "import-1",
439
- "import-2",
440
- "import",
441
- "info-circle",
442
- "information",
443
- "instagram",
444
- "judge",
445
- "kanban",
446
- "key-square",
447
- "key",
448
- "keyboard-open",
449
- "keyboard",
450
- "lamp-1",
451
- "lamp-charge",
452
- "lamp-on",
453
- "lamp-slash",
454
- "lamp",
455
- "language-circle",
456
- "language-square",
457
- "layer",
458
- "level",
459
- "lifebuoy",
460
- "like-1",
461
- "like-dislike",
462
- "like-shapes",
463
- "like-tag",
464
- "like",
465
- "link-1",
466
- "link-2",
467
- "link-21",
468
- "link-circle",
469
- "link-square",
470
- "link",
471
- "location-add",
472
- "location-cross",
473
- "location-minus",
474
- "location-slash",
475
- "location-tick",
476
- "location",
477
- "lock-1",
478
- "lock-circle",
479
- "lock-slash",
480
- "lock",
481
- "login-1",
482
- "login",
483
- "logout-1",
484
- "logout",
485
- "lovely",
486
- "magic-star",
487
- "magicpen",
488
- "main-component",
489
- "man",
490
- "map-1",
491
- "map",
492
- "mask-1",
493
- "mask-2",
494
- "mask",
495
- "math",
496
- "maximize-1",
497
- "maximize-2",
498
- "maximize-3",
499
- "maximize-4",
500
- "maximize-21",
501
- "maximize-circle",
502
- "maximize",
503
- "medal-star",
504
- "medal",
505
- "menu-1",
506
- "menu-board",
507
- "menu",
508
- "message-2",
509
- "message-add-1",
510
- "message-add",
511
- "message-circle",
512
- "message-edit",
513
- "message-favorite",
514
- "message-minus",
515
- "message-notif",
516
- "message-programming",
517
- "message-question-old",
518
- "message-remove",
519
- "message-search",
520
- "message-square",
521
- "message-text-1",
522
- "message-text",
523
- "message-tick",
524
- "message-time",
525
- "message",
526
- "messages-1",
527
- "messages-2",
528
- "messages-3",
529
- "messages",
530
- "microphone-2",
531
- "microphone-slash-1",
532
- "microphone-slash",
533
- "microphone",
534
- "microscope",
535
- "milk",
536
- "mini-music-sqaure",
537
- "minus-cirlce",
538
- "minus-square",
539
- "minus",
540
- "mirror",
541
- "mirroring-screen",
542
- "mobile-programming",
543
- "mobile",
544
- "money-2",
545
- "money-3",
546
- "money-4",
547
- "money-add",
548
- "money-change",
549
- "money-forbidden",
550
- "money-recive",
551
- "money-remove",
552
- "money-send",
553
- "money-tick",
554
- "money-time",
555
- "money",
556
- "moneys",
557
- "monitor-mobbile",
558
- "monitor-recorder",
559
- "monitor",
560
- "moon",
561
- "more-2",
562
- "more-circle",
563
- "more-square",
564
- "more",
565
- "mouse-1",
566
- "mouse-circle",
567
- "mouse-square",
568
- "mouse",
569
- "music-circle",
570
- "music-dashboard",
571
- "music-filter",
572
- "music-library-2",
573
- "music-play",
574
- "music-playlist",
575
- "music-square-add",
576
- "music-square-remove",
577
- "music-square-search",
578
- "music-square",
579
- "music",
580
- "musicnote",
581
- "next",
582
- "note-1",
583
- "note-2",
584
- "note-21",
585
- "note-add",
586
- "note-favorite",
587
- "note-remove",
588
- "note-square",
589
- "note-text",
590
- "note",
591
- "notification-1",
592
- "notification-bing",
593
- "notification-circle",
594
- "notification-favorite",
595
- "notification-status",
596
- "notification",
597
- "omega-circle",
598
- "omega-square",
599
- "paintbucket",
600
- "paperclip-2",
601
- "paperclip",
602
- "password-check",
603
- "path-2",
604
- "path-square",
605
- "path",
606
- "pause-circle",
607
- "pause",
608
- "pen-add",
609
- "pen-close",
610
- "pen-remove",
611
- "pen-tool-2",
612
- "pen-tool",
613
- "people",
614
- "percentage-circle",
615
- "percentage-square",
616
- "personalcard",
617
- "pet",
618
- "pharagraphspacing",
619
- "picture-frame",
620
- "play-add",
621
- "play-circle",
622
- "play-cricle",
623
- "play-remove",
624
- "play",
625
- "presention-chart",
626
- "previous",
627
- "printer-slash",
628
- "printer",
629
- "profile-2user",
630
- "profile-add",
631
- "profile-circle",
632
- "profile-delete",
633
- "profile-remove",
634
- "profile-tick",
635
- "programming-arrow",
636
- "programming-arrows",
637
- "quote-down-circle",
638
- "quote-down-square",
639
- "quote-down",
640
- "quote-up-circle",
641
- "quote-up-square",
642
- "quote-up",
643
- "radar-1",
644
- "radar-2",
645
- "radar",
646
- "radio",
647
- "ram-2",
648
- "ram",
649
- "ranking-1",
650
- "ranking",
651
- "receipt-1",
652
- "receipt-2-1",
653
- "receipt-2",
654
- "receipt-add",
655
- "receipt-discount",
656
- "receipt-disscount",
657
- "receipt-edit",
658
- "receipt-item",
659
- "receipt-minus",
660
- "receipt-search",
661
- "receipt-square",
662
- "receipt-text",
663
- "receipt",
664
- "receive-square-2",
665
- "receive-square",
666
- "received",
667
- "record-circle",
668
- "record",
669
- "recovery-convert",
670
- "redo",
671
- "refresh-2",
672
- "refresh-circle",
673
- "refresh-left-square",
674
- "refresh-right-square",
675
- "driver-refresh",
676
- "refresh",
677
- "repeat-circle",
678
- "repeat",
679
- "repeate-music",
680
- "repeate-one",
681
- "reserve",
682
- "rotate-left-1",
683
- "rotate-left",
684
- "rotate-right-1",
685
- "rotate-right",
686
- "route-square",
687
- "routing-2",
688
- "routing",
689
- "row-horizontal",
690
- "row-vertical",
691
- "ruler",
692
- "rulerpen",
693
- "safe-home",
694
- "sagittarius",
695
- "save-2",
696
- "save-add",
697
- "save-minus",
698
- "save-remove",
699
- "scan-barcode",
700
- "scan",
701
- "scanner",
702
- "scanning",
703
- "scissor-1",
704
- "scissor",
705
- "screenmirroring",
706
- "scroll",
707
- "search-favorite-1",
708
- "search-favorite",
709
- "search-normal-1",
710
- "search-normal",
711
- "search-status-1",
712
- "search-status",
713
- "search-zoom-in-1",
714
- "search-zoom-in",
715
- "search-zoom-out-1",
716
- "search-zoom-out",
717
- "security-card",
718
- "security-safe",
719
- "security-time",
720
- "security-user",
721
- "security",
722
- "send-1",
723
- "send-2",
724
- "send-sqaure-2",
725
- "send-square",
726
- "send",
727
- "setting-2",
728
- "setting-3",
729
- "setting-4",
730
- "setting-5",
731
- "setting",
732
- "settings",
733
- "shapes-1",
734
- "shapes",
735
- "share",
736
- "shield-cross",
737
- "shield-search",
738
- "shield-slash",
739
- "shield-tick",
740
- "shield",
741
- "ship",
742
- "shop-add",
743
- "shop-remove",
744
- "shop",
745
- "shopping-bag",
746
- "shopping-cart",
747
- "shuffle",
748
- "sidebar-bottom",
749
- "sidebar-left",
750
- "sidebar-right",
751
- "sidebar-top",
752
- "signpost",
753
- "simcard-1",
754
- "simcard-2",
755
- "simcard",
756
- "size",
757
- "slash",
758
- "slider-horizontal-1",
759
- "slider-horizontal",
760
- "slider-vertical-1",
761
- "slider-vertical",
762
- "slider",
763
- "smallcaps",
764
- "smart-car",
765
- "smart-home",
766
- "smileys",
767
- "sms-edit",
768
- "sms-notification",
769
- "sms-search",
770
- "sms-star",
771
- "sms-tracking",
772
- "sms",
773
- "sort",
774
- "sound",
775
- "speaker",
776
- "speedometer",
777
- "star-1",
778
- "star-slash",
779
- "star",
780
- "status-up",
781
- "status",
782
- "sticker",
783
- "stickynote",
784
- "stop-circle",
785
- "stop",
786
- "story",
787
- "strongbox-2",
788
- "strongbox",
789
- "subtitle",
790
- "sun-1",
791
- "sun-fog",
792
- "sun",
793
- "tag-2",
794
- "tag-cross",
795
- "tag-right",
796
- "tag-user",
797
- "tag",
798
- "task-square",
799
- "task",
800
- "teacher",
801
- "text-block",
802
- "text-bold",
803
- "text-italic",
804
- "text-underline",
805
- "text",
806
- "textalign-center",
807
- "textalign-justifycenter",
808
- "textalign-justifyleft",
809
- "textalign-justifyright",
810
- "textalign-left",
811
- "textalign-right",
812
- "tick-circle",
813
- "tick-square",
814
- "ticket-2",
815
- "ticket-discount",
816
- "ticket-expired",
817
- "ticket-star",
818
- "ticket",
819
- "timer-1",
820
- "timer-pause",
821
- "timer-start",
822
- "timer",
823
- "toggle-off-circle",
824
- "toggle-off",
825
- "toggle-on-circle",
826
- "toggle-on",
827
- "trade",
828
- "transaction-minus",
829
- "translate",
830
- "trash",
831
- "tree",
832
- "trend-down",
833
- "trend-up",
834
- "triangle",
835
- "truck-fast",
836
- "truck-remove",
837
- "truck-tick",
838
- "truck-time",
839
- "truck",
840
- "trush-square",
841
- "undo",
842
- "unlimited",
843
- "unlock",
844
- "user-add",
845
- "user-cirlce-add",
846
- "user-edit",
847
- "user-minus",
848
- "user-octagon",
849
- "user-remove",
850
- "user-search",
851
- "user-square",
852
- "user-tag",
853
- "user-tick",
854
- "user",
855
- "verify",
856
- "video-add",
857
- "video-circle",
858
- "video-horizontal",
859
- "video-octagon",
860
- "video-play",
861
- "video-remove",
862
- "video-slash",
863
- "video-square",
864
- "video-tick",
865
- "video-time",
866
- "video-vertical",
867
- "video",
868
- "voice-cricle",
869
- "voice-square",
870
- "volume-cross",
871
- "volume-high",
872
- "volume-low-1",
873
- "volume-low",
874
- "volume-mute",
875
- "volume-slash",
876
- "volume-up",
877
- "wallet-1",
878
- "wallet-2",
879
- "wallet-3",
880
- "wallet-add-1",
881
- "wallet-add",
882
- "wallet-check",
883
- "wallet-minus",
884
- "wallet-money",
885
- "wallet-remove",
886
- "wallet-search",
887
- "wallet",
888
- "warning-2",
889
- "watch-status",
890
- "watch",
891
- "weight-1",
892
- "weight",
893
- "wifi-square",
894
- "wifi",
895
- "wind-2",
896
- "wind",
897
- "woman",
898
- "message-question"
899
- ]}