@timus-networks/theme 2.0.16 → 2.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +113 -0
- package/dist/module.cjs +5 -0
- package/dist/module.d.mts +11 -0
- package/dist/module.d.ts +11 -0
- package/dist/module.json +9 -0
- package/dist/module.mjs +187 -0
- package/dist/runtime/components/development/example.alert.vue +29 -0
- package/dist/runtime/components/development/example.avatar.vue +85 -0
- package/dist/runtime/components/development/example.badge.vue +93 -0
- package/dist/runtime/components/development/example.breadcrumb.vue +54 -0
- package/dist/runtime/components/development/example.button.vue +235 -0
- package/dist/runtime/components/development/example.button.vue.d.ts +11 -0
- package/dist/runtime/components/development/example.card.vue +68 -0
- package/dist/runtime/components/development/example.checkbox.vue +176 -0
- package/dist/runtime/components/development/example.checkbox.vue.d.ts +24 -0
- package/dist/runtime/components/development/example.collapse.vue +38 -0
- package/dist/runtime/components/development/example.datepicker.vue +193 -0
- package/dist/runtime/components/development/example.description.vue +94 -0
- package/dist/runtime/components/development/example.dialog.vue +79 -0
- package/dist/runtime/components/development/example.dropdown.vue +166 -0
- package/dist/runtime/components/development/example.form.vue +488 -0
- package/dist/runtime/components/development/example.input.vue +270 -0
- package/dist/runtime/components/development/example.input.vue.d.ts +23 -0
- package/dist/runtime/components/development/example.link.vue +68 -0
- package/dist/runtime/components/development/example.message.vue +64 -0
- package/dist/runtime/components/development/example.notification.vue +75 -0
- package/dist/runtime/components/development/example.number.vue +70 -0
- package/dist/runtime/components/development/example.pagination.vue +89 -0
- package/dist/runtime/components/development/example.popover.vue +151 -0
- package/dist/runtime/components/development/example.radio.vue +163 -0
- package/dist/runtime/components/development/example.radio.vue.d.ts +25 -0
- package/dist/runtime/components/development/example.select.vue +588 -0
- package/dist/runtime/components/development/example.select.vue.d.ts +70 -0
- package/dist/runtime/components/development/example.sidebar.vue +101 -0
- package/dist/runtime/components/development/example.static.vue +50 -0
- package/dist/runtime/components/development/example.switch.vue +101 -0
- package/dist/runtime/components/development/example.table.vue +112 -0
- package/dist/runtime/components/development/example.tag.vue +255 -0
- package/dist/runtime/components/development/example.timepicker.vue +89 -0
- package/dist/runtime/components/development/example.tooltip.vue +104 -0
- package/dist/runtime/components/development/example.upload.vue +84 -0
- package/dist/runtime/components/production/html-encode.vue +96 -0
- package/dist/runtime/components/production/timus-breadcrumb.d.ts +36 -0
- package/dist/runtime/components/production/timus-breadcrumb.js +224 -0
- package/dist/runtime/components/production/timus-breadcrumb.mjs +224 -0
- package/dist/runtime/components/production/timus-breadcrumb.vue +83 -0
- package/dist/runtime/components/production/timus-breadcrumb.vue.d.ts +340 -0
- package/dist/runtime/composables/useBreadcrumb.d.ts +8 -0
- package/dist/runtime/composables/useBreadcrumb.js +53 -0
- package/dist/runtime/composables/useBreadcrumb.mjs +53 -0
- package/dist/runtime/pages/theme.vue +61 -0
- package/dist/runtime/plugins/disable-warnings-plugin.d.ts +2 -0
- package/dist/runtime/plugins/disable-warnings-plugin.js +18 -0
- package/dist/runtime/plugins/disable-warnings-plugin.mjs +18 -0
- package/dist/runtime/plugins/sample-plugin.d.ts +20 -0
- package/dist/runtime/plugins/sample-plugin.js +5 -0
- package/dist/runtime/plugins/sample-plugin.mjs +5 -0
- package/dist/runtime/plugins/theme-provider-plugin.d.ts +30 -0
- package/dist/runtime/plugins/theme-provider-plugin.js +46 -0
- package/dist/runtime/plugins/theme-provider-plugin.mjs +46 -0
- package/dist/runtime/public/scss/element-plus/affix.css +305 -0
- package/dist/runtime/public/scss/element-plus/alert.css +516 -0
- package/dist/runtime/public/scss/element-plus/anchor-link.css +332 -0
- package/dist/runtime/public/scss/element-plus/anchor.css +376 -0
- package/dist/runtime/public/scss/element-plus/aside.css +308 -0
- package/dist/runtime/public/scss/element-plus/autocomplete.css +411 -0
- package/dist/runtime/public/scss/element-plus/avatar.css +370 -0
- package/dist/runtime/public/scss/element-plus/backtop.css +326 -0
- package/dist/runtime/public/scss/element-plus/badge.css +376 -0
- package/dist/runtime/public/scss/element-plus/base.css +550 -0
- package/dist/runtime/public/scss/element-plus/breadcrumb-item.css +0 -0
- package/dist/runtime/public/scss/element-plus/breadcrumb.css +370 -0
- package/dist/runtime/public/scss/element-plus/button-group.css +535 -0
- package/dist/runtime/public/scss/element-plus/button.css +1089 -0
- package/dist/runtime/public/scss/element-plus/calendar.css +370 -0
- package/dist/runtime/public/scss/element-plus/card.css +347 -0
- package/dist/runtime/public/scss/element-plus/carousel-item.css +350 -0
- package/dist/runtime/public/scss/element-plus/carousel.css +475 -0
- package/dist/runtime/public/scss/element-plus/cascader-panel.css +428 -0
- package/dist/runtime/public/scss/element-plus/cascader.css +560 -0
- package/dist/runtime/public/scss/element-plus/check-tag.css +386 -0
- package/dist/runtime/public/scss/element-plus/checkbox-button.css +451 -0
- package/dist/runtime/public/scss/element-plus/checkbox-group.css +307 -0
- package/dist/runtime/public/scss/element-plus/checkbox.css +588 -0
- package/dist/runtime/public/scss/element-plus/col.css +3270 -0
- package/dist/runtime/public/scss/element-plus/collapse-item.css +0 -0
- package/dist/runtime/public/scss/element-plus/collapse-transition.css +0 -0
- package/dist/runtime/public/scss/element-plus/collapse.css +490 -0
- package/dist/runtime/public/scss/element-plus/color/index.css +0 -0
- package/dist/runtime/public/scss/element-plus/color-picker.css +650 -0
- package/dist/runtime/public/scss/element-plus/common/popup.css +338 -0
- package/dist/runtime/public/scss/element-plus/common/transition.css +420 -0
- package/dist/runtime/public/scss/element-plus/common/var.css +302 -0
- package/dist/runtime/public/scss/element-plus/config-provider.css +0 -0
- package/dist/runtime/public/scss/element-plus/container.css +313 -0
- package/dist/runtime/public/scss/element-plus/dark/css-vars.css +353 -0
- package/dist/runtime/public/scss/element-plus/dark/var.css +302 -0
- package/dist/runtime/public/scss/element-plus/date-picker/date-picker.css +558 -0
- package/dist/runtime/public/scss/element-plus/date-picker/date-range-picker.css +410 -0
- package/dist/runtime/public/scss/element-plus/date-picker/date-table.css +426 -0
- package/dist/runtime/public/scss/element-plus/date-picker/month-table.css +388 -0
- package/dist/runtime/public/scss/element-plus/date-picker/picker-panel.css +454 -0
- package/dist/runtime/public/scss/element-plus/date-picker/picker.css +662 -0
- package/dist/runtime/public/scss/element-plus/date-picker/time-picker.css +384 -0
- package/dist/runtime/public/scss/element-plus/date-picker/time-range-picker.css +338 -0
- package/dist/runtime/public/scss/element-plus/date-picker/time-spinner.css +389 -0
- package/dist/runtime/public/scss/element-plus/date-picker/year-table.css +384 -0
- package/dist/runtime/public/scss/element-plus/date-picker.css +1531 -0
- package/dist/runtime/public/scss/element-plus/descriptions-item.css +347 -0
- package/dist/runtime/public/scss/element-plus/descriptions.css +435 -0
- package/dist/runtime/public/scss/element-plus/dialog.css +512 -0
- package/dist/runtime/public/scss/element-plus/display.css +357 -0
- package/dist/runtime/public/scss/element-plus/divider.css +345 -0
- package/dist/runtime/public/scss/element-plus/drawer.css +419 -0
- package/dist/runtime/public/scss/element-plus/dropdown-item.css +0 -0
- package/dist/runtime/public/scss/element-plus/dropdown-menu.css +0 -0
- package/dist/runtime/public/scss/element-plus/dropdown.css +495 -0
- package/dist/runtime/public/scss/element-plus/empty.css +355 -0
- package/dist/runtime/public/scss/element-plus/footer.css +310 -0
- package/dist/runtime/public/scss/element-plus/form-item.css +0 -0
- package/dist/runtime/public/scss/element-plus/form.css +527 -0
- package/dist/runtime/public/scss/element-plus/header.css +310 -0
- package/dist/runtime/public/scss/element-plus/icon.css +343 -0
- package/dist/runtime/public/scss/element-plus/image-viewer.css +439 -0
- package/dist/runtime/public/scss/element-plus/image.css +343 -0
- package/dist/runtime/public/scss/element-plus/index.css +17293 -0
- package/dist/runtime/public/scss/element-plus/infinite-scroll.css +0 -0
- package/dist/runtime/public/scss/element-plus/input-number.css +494 -0
- package/dist/runtime/public/scss/element-plus/input.css +770 -0
- package/dist/runtime/public/scss/element-plus/link.css +453 -0
- package/dist/runtime/public/scss/element-plus/loading.css +391 -0
- package/dist/runtime/public/scss/element-plus/main.css +311 -0
- package/dist/runtime/public/scss/element-plus/mention.css +413 -0
- package/dist/runtime/public/scss/element-plus/menu-item-group.css +0 -0
- package/dist/runtime/public/scss/element-plus/menu-item.css +0 -0
- package/dist/runtime/public/scss/element-plus/menu.css +737 -0
- package/dist/runtime/public/scss/element-plus/message-box.css +533 -0
- package/dist/runtime/public/scss/element-plus/message.css +528 -0
- package/dist/runtime/public/scss/element-plus/mixins/config.css +0 -0
- package/dist/runtime/public/scss/element-plus/mixins/function.css +0 -0
- package/dist/runtime/public/scss/element-plus/mixins/mixins.css +302 -0
- package/dist/runtime/public/scss/element-plus/mixins/utils.css +0 -0
- package/dist/runtime/public/scss/element-plus/notification.css +413 -0
- package/dist/runtime/public/scss/element-plus/option-group.css +331 -0
- package/dist/runtime/public/scss/element-plus/option.css +354 -0
- package/dist/runtime/public/scss/element-plus/overlay.css +317 -0
- package/dist/runtime/public/scss/element-plus/page-header.css +351 -0
- package/dist/runtime/public/scss/element-plus/pagination.css +586 -0
- package/dist/runtime/public/scss/element-plus/popconfirm.css +315 -0
- package/dist/runtime/public/scss/element-plus/popover.css +352 -0
- package/dist/runtime/public/scss/element-plus/popper.css +400 -0
- package/dist/runtime/public/scss/element-plus/progress.css +449 -0
- package/dist/runtime/public/scss/element-plus/radio-button.css +436 -0
- package/dist/runtime/public/scss/element-plus/radio-group.css +308 -0
- package/dist/runtime/public/scss/element-plus/radio.css +561 -0
- package/dist/runtime/public/scss/element-plus/rate.css +384 -0
- package/dist/runtime/public/scss/element-plus/reset.css +399 -0
- package/dist/runtime/public/scss/element-plus/result.css +381 -0
- package/dist/runtime/public/scss/element-plus/row.css +339 -0
- package/dist/runtime/public/scss/element-plus/scrollbar.css +373 -0
- package/dist/runtime/public/scss/element-plus/segmented.css +460 -0
- package/dist/runtime/public/scss/element-plus/select-dropdown-v2.css +351 -0
- package/dist/runtime/public/scss/element-plus/select-dropdown.css +351 -0
- package/dist/runtime/public/scss/element-plus/select-v2.css +765 -0
- package/dist/runtime/public/scss/element-plus/select.css +765 -0
- package/dist/runtime/public/scss/element-plus/skeleton-item.css +372 -0
- package/dist/runtime/public/scss/element-plus/skeleton.css +335 -0
- package/dist/runtime/public/scss/element-plus/slider.css +480 -0
- package/dist/runtime/public/scss/element-plus/space.css +317 -0
- package/dist/runtime/public/scss/element-plus/spinner.css +342 -0
- package/dist/runtime/public/scss/element-plus/statistic.css +336 -0
- package/dist/runtime/public/scss/element-plus/step.css +586 -0
- package/dist/runtime/public/scss/element-plus/steps.css +319 -0
- package/dist/runtime/public/scss/element-plus/sub-menu.css +0 -0
- package/dist/runtime/public/scss/element-plus/switch.css +594 -0
- package/dist/runtime/public/scss/element-plus/tab-pane.css +0 -0
- package/dist/runtime/public/scss/element-plus/table-column.css +382 -0
- package/dist/runtime/public/scss/element-plus/table-v2.css +520 -0
- package/dist/runtime/public/scss/element-plus/table.css +893 -0
- package/dist/runtime/public/scss/element-plus/tabs.css +892 -0
- package/dist/runtime/public/scss/element-plus/tag.css +624 -0
- package/dist/runtime/public/scss/element-plus/text.css +378 -0
- package/dist/runtime/public/scss/element-plus/time-picker.css +1023 -0
- package/dist/runtime/public/scss/element-plus/time-select.css +946 -0
- package/dist/runtime/public/scss/element-plus/timeline-item.css +415 -0
- package/dist/runtime/public/scss/element-plus/timeline.css +334 -0
- package/dist/runtime/public/scss/element-plus/tooltip-v2.css +410 -0
- package/dist/runtime/public/scss/element-plus/tooltip.css +0 -0
- package/dist/runtime/public/scss/element-plus/tour.css +461 -0
- package/dist/runtime/public/scss/element-plus/transfer.css +497 -0
- package/dist/runtime/public/scss/element-plus/tree-select.css +325 -0
- package/dist/runtime/public/scss/element-plus/tree.css +538 -0
- package/dist/runtime/public/scss/element-plus/upload.css +862 -0
- package/dist/runtime/public/scss/element-plus/var.css +389 -0
- package/dist/runtime/public/scss/element-plus/virtual-list.css +330 -0
- package/dist/runtime/public/scss/theme.css +1268 -0
- package/dist/runtime/server/tsconfig.json +6 -0
- package/dist/runtime/types.d.ts +31 -0
- package/dist/types.d.mts +7 -0
- package/dist/types.d.ts +7 -0
- package/package.json +35 -12
- package/components/TimusIcons.vue +0 -54
- package/generate-icon.js +0 -22
- package/module.ts +0 -84
- package/pages/icons.vue +0 -37
- package/plugins/sample-plugin.ts +0 -5
- package/public/isax/fonts/iconsax.svg +0 -927
- package/public/isax/fonts/iconsax.ttf +0 -0
- package/public/isax/fonts/iconsax.woff +0 -0
- package/public/isax/icons.json +0 -899
- package/public/isax/selection.json +0 -1
- package/public/isax/style.css +0 -1
- package/public/isax/style.scss +0 -5435
- package/public/isax/variables.scss +0 -900
package/public/isax/icons.json
DELETED
|
@@ -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
|
-
]}
|