@yh-ui/icons 1.0.7 → 1.0.8
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/LICENSE +1 -1
- package/README.md +32 -230
- package/dist/components.mjs +928 -0
- package/dist/index.mjs +319 -22
- package/dist/src/components.d.ts +25768 -0
- package/dist/src/components.d.ts.map +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/package.json +8 -2
|
@@ -0,0 +1,928 @@
|
|
|
1
|
+
import { defineComponent as a, h as i } from "vue";
|
|
2
|
+
import { YhIcon as r } from "./vue/icon.mjs";
|
|
3
|
+
const l = {
|
|
4
|
+
size: {
|
|
5
|
+
type: [Number, String],
|
|
6
|
+
default: void 0
|
|
7
|
+
},
|
|
8
|
+
color: {
|
|
9
|
+
type: String,
|
|
10
|
+
default: void 0
|
|
11
|
+
},
|
|
12
|
+
spin: {
|
|
13
|
+
type: Boolean,
|
|
14
|
+
default: !1
|
|
15
|
+
},
|
|
16
|
+
rotate: {
|
|
17
|
+
type: Number,
|
|
18
|
+
default: 0
|
|
19
|
+
}
|
|
20
|
+
};
|
|
21
|
+
function e(t, n) {
|
|
22
|
+
return a({
|
|
23
|
+
name: t,
|
|
24
|
+
inheritAttrs: !1,
|
|
25
|
+
props: l,
|
|
26
|
+
setup(o, { attrs: c }) {
|
|
27
|
+
return () => i(r, {
|
|
28
|
+
...c,
|
|
29
|
+
icon: n,
|
|
30
|
+
size: o.size,
|
|
31
|
+
color: o.color,
|
|
32
|
+
spin: o.spin,
|
|
33
|
+
rotate: o.rotate
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
const Gc = [
|
|
39
|
+
{ name: "AddLocation", icon: "ep:add-location", category: "map" },
|
|
40
|
+
{ name: "Aim", icon: "ep:aim", category: "system" },
|
|
41
|
+
{ name: "AlarmClock", icon: "ep:alarm-clock", category: "time" },
|
|
42
|
+
{ name: "Apple", icon: "ep:apple", category: "food" },
|
|
43
|
+
{ name: "ArrowDown", icon: "ep:arrow-down", category: "arrow" },
|
|
44
|
+
{ name: "ArrowDownBold", icon: "ep:arrow-down-bold", category: "arrow" },
|
|
45
|
+
{ name: "ArrowLeft", icon: "ep:arrow-left", category: "arrow" },
|
|
46
|
+
{ name: "ArrowLeftBold", icon: "ep:arrow-left-bold", category: "arrow" },
|
|
47
|
+
{ name: "ArrowRight", icon: "ep:arrow-right", category: "arrow" },
|
|
48
|
+
{ name: "ArrowRightBold", icon: "ep:arrow-right-bold", category: "arrow" },
|
|
49
|
+
{ name: "ArrowUp", icon: "ep:arrow-up", category: "arrow" },
|
|
50
|
+
{ name: "ArrowUpBold", icon: "ep:arrow-up-bold", category: "arrow" },
|
|
51
|
+
{ name: "Avatar", icon: "ep:avatar", category: "user" },
|
|
52
|
+
{ name: "Back", icon: "ep:back", category: "arrow" },
|
|
53
|
+
{ name: "Basketball", icon: "ep:basketball", category: "object" },
|
|
54
|
+
{ name: "Bell", icon: "ep:bell", category: "feedback" },
|
|
55
|
+
{ name: "BellFilled", icon: "ep:bell-filled", category: "feedback" },
|
|
56
|
+
{ name: "Bicycle", icon: "ep:bicycle", category: "object" },
|
|
57
|
+
{ name: "Bottom", icon: "ep:bottom", category: "arrow" },
|
|
58
|
+
{ name: "BottomLeft", icon: "ep:bottom-left", category: "arrow" },
|
|
59
|
+
{ name: "BottomRight", icon: "ep:bottom-right", category: "arrow" },
|
|
60
|
+
{ name: "Bowl", icon: "ep:bowl", category: "food" },
|
|
61
|
+
{ name: "Box", icon: "ep:box", category: "object" },
|
|
62
|
+
{ name: "Briefcase", icon: "ep:briefcase", category: "business" },
|
|
63
|
+
{ name: "Brush", icon: "ep:brush", category: "edit" },
|
|
64
|
+
{ name: "BrushFilled", icon: "ep:brush-filled", category: "edit" },
|
|
65
|
+
{ name: "Burger", icon: "ep:burger", category: "food" },
|
|
66
|
+
{ name: "Calendar", icon: "ep:calendar", category: "time" },
|
|
67
|
+
{ name: "Camera", icon: "ep:camera", category: "media" },
|
|
68
|
+
{ name: "CameraFilled", icon: "ep:camera-filled", category: "media" },
|
|
69
|
+
{ name: "CaretBottom", icon: "ep:caret-bottom", category: "arrow" },
|
|
70
|
+
{ name: "CaretLeft", icon: "ep:caret-left", category: "arrow" },
|
|
71
|
+
{ name: "CaretRight", icon: "ep:caret-right", category: "arrow" },
|
|
72
|
+
{ name: "CaretTop", icon: "ep:caret-top", category: "arrow" },
|
|
73
|
+
{ name: "Cellphone", icon: "ep:cellphone", category: "device" },
|
|
74
|
+
{ name: "ChatDotRound", icon: "ep:chat-dot-round", category: "communication" },
|
|
75
|
+
{ name: "ChatDotSquare", icon: "ep:chat-dot-square", category: "communication" },
|
|
76
|
+
{ name: "ChatLineRound", icon: "ep:chat-line-round", category: "communication" },
|
|
77
|
+
{ name: "ChatLineSquare", icon: "ep:chat-line-square", category: "communication" },
|
|
78
|
+
{ name: "ChatRound", icon: "ep:chat-round", category: "communication" },
|
|
79
|
+
{ name: "ChatSquare", icon: "ep:chat-square", category: "communication" },
|
|
80
|
+
{ name: "Check", icon: "ep:check", category: "system" },
|
|
81
|
+
{ name: "Checked", icon: "ep:checked", category: "system" },
|
|
82
|
+
{ name: "Cherry", icon: "ep:cherry", category: "food" },
|
|
83
|
+
{ name: "Chicken", icon: "ep:chicken", category: "food" },
|
|
84
|
+
{ name: "ChromeFilled", icon: "ep:chrome-filled", category: "brand" },
|
|
85
|
+
{ name: "CircleCheck", icon: "ep:circle-check", category: "feedback" },
|
|
86
|
+
{ name: "CircleCheckFilled", icon: "ep:circle-check-filled", category: "feedback" },
|
|
87
|
+
{ name: "CircleClose", icon: "ep:circle-close", category: "feedback" },
|
|
88
|
+
{ name: "CircleCloseFilled", icon: "ep:circle-close-filled", category: "feedback" },
|
|
89
|
+
{ name: "CirclePlus", icon: "ep:circle-plus", category: "system" },
|
|
90
|
+
{ name: "CirclePlusFilled", icon: "ep:circle-plus-filled", category: "system" },
|
|
91
|
+
{ name: "Clock", icon: "ep:clock", category: "time" },
|
|
92
|
+
{ name: "Close", icon: "ep:close", category: "system" },
|
|
93
|
+
{ name: "CloseBold", icon: "ep:close-bold", category: "system" },
|
|
94
|
+
{ name: "Cloudy", icon: "ep:cloudy", category: "weather" },
|
|
95
|
+
{ name: "Coffee", icon: "ep:coffee", category: "food" },
|
|
96
|
+
{ name: "CoffeeCup", icon: "ep:coffee-cup", category: "food" },
|
|
97
|
+
{ name: "Coin", icon: "ep:coin", category: "business" },
|
|
98
|
+
{ name: "ColdDrink", icon: "ep:cold-drink", category: "food" },
|
|
99
|
+
{ name: "Collection", icon: "ep:collection", category: "object" },
|
|
100
|
+
{ name: "CollectionTag", icon: "ep:collection-tag", category: "object" },
|
|
101
|
+
{ name: "Comment", icon: "ep:comment", category: "communication" },
|
|
102
|
+
{ name: "Compass", icon: "ep:compass", category: "map" },
|
|
103
|
+
{ name: "Connection", icon: "ep:connection", category: "system" },
|
|
104
|
+
{ name: "Coordinate", icon: "ep:coordinate", category: "map" },
|
|
105
|
+
{ name: "CopyDocument", icon: "ep:copy-document", category: "file" },
|
|
106
|
+
{ name: "Cpu", icon: "ep:cpu", category: "device" },
|
|
107
|
+
{ name: "CreditCard", icon: "ep:credit-card", category: "business" },
|
|
108
|
+
{ name: "Crop", icon: "ep:crop", category: "edit" },
|
|
109
|
+
{ name: "DArrowLeft", icon: "ep:d-arrow-left", category: "arrow" },
|
|
110
|
+
{ name: "DArrowRight", icon: "ep:d-arrow-right", category: "arrow" },
|
|
111
|
+
{ name: "DCaret", icon: "ep:d-caret", category: "arrow" },
|
|
112
|
+
{ name: "DataAnalysis", icon: "ep:data-analysis", category: "data" },
|
|
113
|
+
{ name: "DataBoard", icon: "ep:data-board", category: "data" },
|
|
114
|
+
{ name: "DataLine", icon: "ep:data-line", category: "data" },
|
|
115
|
+
{ name: "Delete", icon: "ep:delete", category: "system" },
|
|
116
|
+
{ name: "DeleteFilled", icon: "ep:delete-filled", category: "system" },
|
|
117
|
+
{ name: "DeleteLocation", icon: "ep:delete-location", category: "map" },
|
|
118
|
+
{ name: "Dessert", icon: "ep:dessert", category: "food" },
|
|
119
|
+
{ name: "Discount", icon: "ep:discount", category: "business" },
|
|
120
|
+
{ name: "Dish", icon: "ep:dish", category: "food" },
|
|
121
|
+
{ name: "DishDot", icon: "ep:dish-dot", category: "food" },
|
|
122
|
+
{ name: "Document", icon: "ep:document", category: "file" },
|
|
123
|
+
{ name: "DocumentAdd", icon: "ep:document-add", category: "file" },
|
|
124
|
+
{ name: "DocumentChecked", icon: "ep:document-checked", category: "file" },
|
|
125
|
+
{ name: "DocumentCopy", icon: "ep:document-copy", category: "file" },
|
|
126
|
+
{ name: "DocumentDelete", icon: "ep:document-delete", category: "file" },
|
|
127
|
+
{ name: "DocumentRemove", icon: "ep:document-remove", category: "file" },
|
|
128
|
+
{ name: "Download", icon: "ep:download", category: "system" },
|
|
129
|
+
{ name: "Drizzling", icon: "ep:drizzling", category: "weather" },
|
|
130
|
+
{ name: "Edit", icon: "ep:edit", category: "edit" },
|
|
131
|
+
{ name: "EditPen", icon: "ep:edit-pen", category: "edit" },
|
|
132
|
+
{ name: "Eleme", icon: "ep:eleme", category: "brand" },
|
|
133
|
+
{ name: "ElemeFilled", icon: "ep:eleme-filled", category: "brand" },
|
|
134
|
+
{ name: "ElementPlus", icon: "ep:element-plus", category: "brand" },
|
|
135
|
+
{ name: "Expand", icon: "ep:expand", category: "system" },
|
|
136
|
+
{ name: "Failed", icon: "ep:failed", category: "feedback" },
|
|
137
|
+
{ name: "Female", icon: "ep:female", category: "user" },
|
|
138
|
+
{ name: "Files", icon: "ep:files", category: "file" },
|
|
139
|
+
{ name: "Film", icon: "ep:film", category: "media" },
|
|
140
|
+
{ name: "Filter", icon: "ep:filter", category: "system" },
|
|
141
|
+
{ name: "Finished", icon: "ep:finished", category: "feedback" },
|
|
142
|
+
{ name: "FirstAidKit", icon: "ep:first-aid-kit", category: "object" },
|
|
143
|
+
{ name: "Flag", icon: "ep:flag", category: "object" },
|
|
144
|
+
{ name: "Fold", icon: "ep:fold", category: "system" },
|
|
145
|
+
{ name: "Folder", icon: "ep:folder", category: "file" },
|
|
146
|
+
{ name: "FolderAdd", icon: "ep:folder-add", category: "file" },
|
|
147
|
+
{ name: "FolderChecked", icon: "ep:folder-checked", category: "file" },
|
|
148
|
+
{ name: "FolderDelete", icon: "ep:folder-delete", category: "file" },
|
|
149
|
+
{ name: "FolderOpened", icon: "ep:folder-opened", category: "file" },
|
|
150
|
+
{ name: "FolderRemove", icon: "ep:folder-remove", category: "file" },
|
|
151
|
+
{ name: "Food", icon: "ep:food", category: "food" },
|
|
152
|
+
{ name: "Football", icon: "ep:football", category: "object" },
|
|
153
|
+
{ name: "ForkSpoon", icon: "ep:fork-spoon", category: "food" },
|
|
154
|
+
{ name: "Fries", icon: "ep:fries", category: "food" },
|
|
155
|
+
{ name: "FullScreen", icon: "ep:full-screen", category: "system" },
|
|
156
|
+
{ name: "Goblet", icon: "ep:goblet", category: "food" },
|
|
157
|
+
{ name: "GobletFull", icon: "ep:goblet-full", category: "food" },
|
|
158
|
+
{ name: "GobletSquare", icon: "ep:goblet-square", category: "food" },
|
|
159
|
+
{ name: "GobletSquareFull", icon: "ep:goblet-square-full", category: "food" },
|
|
160
|
+
{ name: "GoldMedal", icon: "ep:gold-medal", category: "object" },
|
|
161
|
+
{ name: "Goods", icon: "ep:goods", category: "business" },
|
|
162
|
+
{ name: "GoodsFilled", icon: "ep:goods-filled", category: "business" },
|
|
163
|
+
{ name: "Grape", icon: "ep:grape", category: "food" },
|
|
164
|
+
{ name: "Grid", icon: "ep:grid", category: "system" },
|
|
165
|
+
{ name: "Guide", icon: "ep:guide", category: "map" },
|
|
166
|
+
{ name: "Handbag", icon: "ep:handbag", category: "business" },
|
|
167
|
+
{ name: "Headset", icon: "ep:headset", category: "communication" },
|
|
168
|
+
{ name: "Help", icon: "ep:help", category: "feedback" },
|
|
169
|
+
{ name: "HelpFilled", icon: "ep:help-filled", category: "feedback" },
|
|
170
|
+
{ name: "Hide", icon: "ep:hide", category: "system" },
|
|
171
|
+
{ name: "Histogram", icon: "ep:histogram", category: "data" },
|
|
172
|
+
{ name: "HomeFilled", icon: "ep:home-filled", category: "system" },
|
|
173
|
+
{ name: "HotWater", icon: "ep:hot-water", category: "food" },
|
|
174
|
+
{ name: "House", icon: "ep:house", category: "system" },
|
|
175
|
+
{ name: "IceCream", icon: "ep:ice-cream", category: "food" },
|
|
176
|
+
{ name: "IceCreamRound", icon: "ep:ice-cream-round", category: "food" },
|
|
177
|
+
{ name: "IceCreamSquare", icon: "ep:ice-cream-square", category: "food" },
|
|
178
|
+
{ name: "IceDrink", icon: "ep:ice-drink", category: "food" },
|
|
179
|
+
{ name: "IceTea", icon: "ep:ice-tea", category: "food" },
|
|
180
|
+
{ name: "InfoFilled", icon: "ep:info-filled", category: "feedback" },
|
|
181
|
+
{ name: "Iphone", icon: "ep:iphone", category: "device" },
|
|
182
|
+
{ name: "Key", icon: "ep:key", category: "system" },
|
|
183
|
+
{ name: "KnifeFork", icon: "ep:knife-fork", category: "food" },
|
|
184
|
+
{ name: "Lightning", icon: "ep:lightning", category: "weather" },
|
|
185
|
+
{ name: "Link", icon: "ep:link", category: "system" },
|
|
186
|
+
{ name: "List", icon: "ep:list", category: "system" },
|
|
187
|
+
{ name: "Loading", icon: "ep:loading", category: "feedback" },
|
|
188
|
+
{ name: "Location", icon: "ep:location", category: "map" },
|
|
189
|
+
{ name: "LocationFilled", icon: "ep:location-filled", category: "map" },
|
|
190
|
+
{ name: "LocationInformation", icon: "ep:location-information", category: "map" },
|
|
191
|
+
{ name: "Lock", icon: "ep:lock", category: "system" },
|
|
192
|
+
{ name: "Lollipop", icon: "ep:lollipop", category: "food" },
|
|
193
|
+
{ name: "MagicStick", icon: "ep:magic-stick", category: "edit" },
|
|
194
|
+
{ name: "Magnet", icon: "ep:magnet", category: "object" },
|
|
195
|
+
{ name: "Male", icon: "ep:male", category: "user" },
|
|
196
|
+
{ name: "Management", icon: "ep:management", category: "business" },
|
|
197
|
+
{ name: "MapLocation", icon: "ep:map-location", category: "map" },
|
|
198
|
+
{ name: "Medal", icon: "ep:medal", category: "object" },
|
|
199
|
+
{ name: "Memo", icon: "ep:memo", category: "file" },
|
|
200
|
+
{ name: "Menu", icon: "ep:menu", category: "system" },
|
|
201
|
+
{ name: "Message", icon: "ep:message", category: "communication" },
|
|
202
|
+
{ name: "MessageBox", icon: "ep:message-box", category: "communication" },
|
|
203
|
+
{ name: "Mic", icon: "ep:mic", category: "media" },
|
|
204
|
+
{ name: "Microphone", icon: "ep:microphone", category: "media" },
|
|
205
|
+
{ name: "MilkTea", icon: "ep:milk-tea", category: "food" },
|
|
206
|
+
{ name: "Minus", icon: "ep:minus", category: "system" },
|
|
207
|
+
{ name: "Money", icon: "ep:money", category: "business" },
|
|
208
|
+
{ name: "Monitor", icon: "ep:monitor", category: "device" },
|
|
209
|
+
{ name: "Moon", icon: "ep:moon", category: "weather" },
|
|
210
|
+
{ name: "MoonNight", icon: "ep:moon-night", category: "weather" },
|
|
211
|
+
{ name: "More", icon: "ep:more", category: "system" },
|
|
212
|
+
{ name: "MoreFilled", icon: "ep:more-filled", category: "system" },
|
|
213
|
+
{ name: "MostlyCloudy", icon: "ep:mostly-cloudy", category: "weather" },
|
|
214
|
+
{ name: "Mouse", icon: "ep:mouse", category: "device" },
|
|
215
|
+
{ name: "Mug", icon: "ep:mug", category: "food" },
|
|
216
|
+
{ name: "Mute", icon: "ep:mute", category: "media" },
|
|
217
|
+
{ name: "MuteNotification", icon: "ep:mute-notification", category: "feedback" },
|
|
218
|
+
{ name: "NoSmoking", icon: "ep:no-smoking", category: "object" },
|
|
219
|
+
{ name: "Notebook", icon: "ep:notebook", category: "file" },
|
|
220
|
+
{ name: "Notification", icon: "ep:notification", category: "feedback" },
|
|
221
|
+
{ name: "Odometer", icon: "ep:odometer", category: "device" },
|
|
222
|
+
{ name: "OfficeBuilding", icon: "ep:office-building", category: "business" },
|
|
223
|
+
{ name: "Open", icon: "ep:open", category: "system" },
|
|
224
|
+
{ name: "Operation", icon: "ep:operation", category: "system" },
|
|
225
|
+
{ name: "Opportunity", icon: "ep:opportunity", category: "business" },
|
|
226
|
+
{ name: "Orange", icon: "ep:orange", category: "food" },
|
|
227
|
+
{ name: "Paperclip", icon: "ep:paperclip", category: "file" },
|
|
228
|
+
{ name: "PartlyCloudy", icon: "ep:partly-cloudy", category: "weather" },
|
|
229
|
+
{ name: "Pear", icon: "ep:pear", category: "food" },
|
|
230
|
+
{ name: "Phone", icon: "ep:phone", category: "communication" },
|
|
231
|
+
{ name: "PhoneFilled", icon: "ep:phone-filled", category: "communication" },
|
|
232
|
+
{ name: "Picture", icon: "ep:picture", category: "media" },
|
|
233
|
+
{ name: "PictureFilled", icon: "ep:picture-filled", category: "media" },
|
|
234
|
+
{ name: "PictureRounded", icon: "ep:picture-rounded", category: "media" },
|
|
235
|
+
{ name: "PieChart", icon: "ep:pie-chart", category: "data" },
|
|
236
|
+
{ name: "Place", icon: "ep:place", category: "map" },
|
|
237
|
+
{ name: "Platform", icon: "ep:platform", category: "device" },
|
|
238
|
+
{ name: "Plus", icon: "ep:plus", category: "system" },
|
|
239
|
+
{ name: "Pointer", icon: "ep:pointer", category: "system" },
|
|
240
|
+
{ name: "Position", icon: "ep:position", category: "map" },
|
|
241
|
+
{ name: "Postcard", icon: "ep:postcard", category: "file" },
|
|
242
|
+
{ name: "Pouring", icon: "ep:pouring", category: "weather" },
|
|
243
|
+
{ name: "Present", icon: "ep:present", category: "object" },
|
|
244
|
+
{ name: "PriceTag", icon: "ep:price-tag", category: "business" },
|
|
245
|
+
{ name: "Printer", icon: "ep:printer", category: "device" },
|
|
246
|
+
{ name: "Promotion", icon: "ep:promotion", category: "business" },
|
|
247
|
+
{ name: "QuartzWatch", icon: "ep:quartz-watch", category: "time" },
|
|
248
|
+
{ name: "QuestionFilled", icon: "ep:question-filled", category: "feedback" },
|
|
249
|
+
{ name: "Rank", icon: "ep:rank", category: "system" },
|
|
250
|
+
{ name: "Reading", icon: "ep:reading", category: "file" },
|
|
251
|
+
{ name: "ReadingLamp", icon: "ep:reading-lamp", category: "object" },
|
|
252
|
+
{ name: "Refresh", icon: "ep:refresh", category: "system" },
|
|
253
|
+
{ name: "RefreshLeft", icon: "ep:refresh-left", category: "system" },
|
|
254
|
+
{ name: "RefreshRight", icon: "ep:refresh-right", category: "system" },
|
|
255
|
+
{ name: "Refrigerator", icon: "ep:refrigerator", category: "device" },
|
|
256
|
+
{ name: "Remove", icon: "ep:remove", category: "system" },
|
|
257
|
+
{ name: "RemoveFilled", icon: "ep:remove-filled", category: "system" },
|
|
258
|
+
{ name: "Right", icon: "ep:right", category: "arrow" },
|
|
259
|
+
{ name: "ScaleToOriginal", icon: "ep:scale-to-original", category: "system" },
|
|
260
|
+
{ name: "School", icon: "ep:school", category: "business" },
|
|
261
|
+
{ name: "Scissor", icon: "ep:scissor", category: "edit" },
|
|
262
|
+
{ name: "Search", icon: "ep:search", category: "system" },
|
|
263
|
+
{ name: "Select", icon: "ep:select", category: "system" },
|
|
264
|
+
{ name: "Sell", icon: "ep:sell", category: "business" },
|
|
265
|
+
{ name: "SemiSelect", icon: "ep:semi-select", category: "system" },
|
|
266
|
+
{ name: "Service", icon: "ep:service", category: "communication" },
|
|
267
|
+
{ name: "SetUp", icon: "ep:set-up", category: "system" },
|
|
268
|
+
{ name: "Setting", icon: "ep:setting", category: "system" },
|
|
269
|
+
{ name: "Share", icon: "ep:share", category: "system" },
|
|
270
|
+
{ name: "Ship", icon: "ep:ship", category: "object" },
|
|
271
|
+
{ name: "Shop", icon: "ep:shop", category: "business" },
|
|
272
|
+
{ name: "ShoppingBag", icon: "ep:shopping-bag", category: "business" },
|
|
273
|
+
{ name: "ShoppingCart", icon: "ep:shopping-cart", category: "business" },
|
|
274
|
+
{ name: "ShoppingCartFull", icon: "ep:shopping-cart-full", category: "business" },
|
|
275
|
+
{ name: "ShoppingTrolley", icon: "ep:shopping-trolley", category: "business" },
|
|
276
|
+
{ name: "Smoking", icon: "ep:smoking", category: "object" },
|
|
277
|
+
{ name: "Soccer", icon: "ep:soccer", category: "object" },
|
|
278
|
+
{ name: "SoldOut", icon: "ep:sold-out", category: "business" },
|
|
279
|
+
{ name: "Sort", icon: "ep:sort", category: "system" },
|
|
280
|
+
{ name: "SortDown", icon: "ep:sort-down", category: "system" },
|
|
281
|
+
{ name: "SortUp", icon: "ep:sort-up", category: "system" },
|
|
282
|
+
{ name: "Stamp", icon: "ep:stamp", category: "object" },
|
|
283
|
+
{ name: "Star", icon: "ep:star", category: "feedback" },
|
|
284
|
+
{ name: "StarFilled", icon: "ep:star-filled", category: "feedback" },
|
|
285
|
+
{ name: "Stopwatch", icon: "ep:stopwatch", category: "time" },
|
|
286
|
+
{ name: "SuccessFilled", icon: "ep:success-filled", category: "feedback" },
|
|
287
|
+
{ name: "Sugar", icon: "ep:sugar", category: "food" },
|
|
288
|
+
{ name: "Suitcase", icon: "ep:suitcase", category: "business" },
|
|
289
|
+
{ name: "SuitcaseLine", icon: "ep:suitcase-line", category: "business" },
|
|
290
|
+
{ name: "Sunny", icon: "ep:sunny", category: "weather" },
|
|
291
|
+
{ name: "Sunrise", icon: "ep:sunrise", category: "weather" },
|
|
292
|
+
{ name: "Sunset", icon: "ep:sunset", category: "weather" },
|
|
293
|
+
{ name: "Switch", icon: "ep:switch", category: "system" },
|
|
294
|
+
{ name: "SwitchButton", icon: "ep:switch-button", category: "system" },
|
|
295
|
+
{ name: "SwitchFilled", icon: "ep:switch-filled", category: "system" },
|
|
296
|
+
{ name: "TakeawayBox", icon: "ep:takeaway-box", category: "business" },
|
|
297
|
+
{ name: "Ticket", icon: "ep:ticket", category: "business" },
|
|
298
|
+
{ name: "Tickets", icon: "ep:tickets", category: "business" },
|
|
299
|
+
{ name: "Timer", icon: "ep:timer", category: "time" },
|
|
300
|
+
{ name: "ToiletPaper", icon: "ep:toilet-paper", category: "object" },
|
|
301
|
+
{ name: "Tools", icon: "ep:tools", category: "system" },
|
|
302
|
+
{ name: "Top", icon: "ep:top", category: "arrow" },
|
|
303
|
+
{ name: "TopLeft", icon: "ep:top-left", category: "arrow" },
|
|
304
|
+
{ name: "TopRight", icon: "ep:top-right", category: "arrow" },
|
|
305
|
+
{ name: "TrendCharts", icon: "ep:trend-charts", category: "data" },
|
|
306
|
+
{ name: "Trophy", icon: "ep:trophy", category: "object" },
|
|
307
|
+
{ name: "TrophyBase", icon: "ep:trophy-base", category: "object" },
|
|
308
|
+
{ name: "TurnOff", icon: "ep:turn-off", category: "system" },
|
|
309
|
+
{ name: "Umbrella", icon: "ep:umbrella", category: "weather" },
|
|
310
|
+
{ name: "Unlock", icon: "ep:unlock", category: "system" },
|
|
311
|
+
{ name: "Upload", icon: "ep:upload", category: "system" },
|
|
312
|
+
{ name: "UploadFilled", icon: "ep:upload-filled", category: "system" },
|
|
313
|
+
{ name: "User", icon: "ep:user", category: "user" },
|
|
314
|
+
{ name: "UserFilled", icon: "ep:user-filled", category: "user" },
|
|
315
|
+
{ name: "Van", icon: "ep:van", category: "object" },
|
|
316
|
+
{ name: "VideoCamera", icon: "ep:video-camera", category: "media" },
|
|
317
|
+
{ name: "VideoCameraFilled", icon: "ep:video-camera-filled", category: "media" },
|
|
318
|
+
{ name: "VideoPause", icon: "ep:video-pause", category: "media" },
|
|
319
|
+
{ name: "VideoPlay", icon: "ep:video-play", category: "media" },
|
|
320
|
+
{ name: "View", icon: "ep:view", category: "system" },
|
|
321
|
+
{ name: "Wallet", icon: "ep:wallet", category: "business" },
|
|
322
|
+
{ name: "WalletFilled", icon: "ep:wallet-filled", category: "business" },
|
|
323
|
+
{ name: "WarnTriangleFilled", icon: "ep:warn-triangle-filled", category: "feedback" },
|
|
324
|
+
{ name: "Warning", icon: "ep:warning", category: "feedback" },
|
|
325
|
+
{ name: "WarningFilled", icon: "ep:warning-filled", category: "feedback" },
|
|
326
|
+
{ name: "Watch", icon: "ep:watch", category: "time" },
|
|
327
|
+
{ name: "Watermelon", icon: "ep:watermelon", category: "food" },
|
|
328
|
+
{ name: "WindPower", icon: "ep:wind-power", category: "weather" },
|
|
329
|
+
{ name: "ZoomIn", icon: "ep:zoom-in", category: "system" },
|
|
330
|
+
{ name: "ZoomOut", icon: "ep:zoom-out", category: "system" }
|
|
331
|
+
], p = e("AddLocation", "ep:add-location"), s = e("Aim", "ep:aim"), m = e("AlarmClock", "ep:alarm-clock"), d = e("Apple", "ep:apple"), g = e("ArrowDown", "ep:arrow-down"), y = e("ArrowDownBold", "ep:arrow-down-bold"), u = e("ArrowLeft", "ep:arrow-left"), h = e("ArrowLeftBold", "ep:arrow-left-bold"), f = e("ArrowRight", "ep:arrow-right"), C = e("ArrowRightBold", "ep:arrow-right-bold"), b = e("ArrowUp", "ep:arrow-up"), w = e("ArrowUpBold", "ep:arrow-up-bold"), k = e("Avatar", "ep:avatar"), F = e("Back", "ep:back"), S = e("Basketball", "ep:basketball"), D = e("Bell", "ep:bell"), P = e("BellFilled", "ep:bell-filled"), B = e("Bicycle", "ep:bicycle"), M = e("Bottom", "ep:bottom"), L = e("BottomLeft", "ep:bottom-left"), R = e("BottomRight", "ep:bottom-right"), T = e("Bowl", "ep:bowl"), A = e("Box", "ep:box"), v = e("Briefcase", "ep:briefcase"), q = e("Brush", "ep:brush"), O = e("BrushFilled", "ep:brush-filled"), G = e("Burger", "ep:burger"), U = e("Calendar", "ep:calendar"), W = e("Camera", "ep:camera"), I = e("CameraFilled", "ep:camera-filled"), H = e("CaretBottom", "ep:caret-bottom"), j = e("CaretLeft", "ep:caret-left"), z = e("CaretRight", "ep:caret-right"), x = e("CaretTop", "ep:caret-top"), E = e("Cellphone", "ep:cellphone"), V = e("ChatDotRound", "ep:chat-dot-round"), N = e("ChatDotSquare", "ep:chat-dot-square"), K = e("ChatLineRound", "ep:chat-line-round"), Q = e("ChatLineSquare", "ep:chat-line-square"), Z = e("ChatRound", "ep:chat-round"), Y = e("ChatSquare", "ep:chat-square"), J = e("Check", "ep:check"), X = e("Checked", "ep:checked"), _ = e("Cherry", "ep:cherry"), $ = e("Chicken", "ep:chicken"), ee = e("ChromeFilled", "ep:chrome-filled"), oe = e("CircleCheck", "ep:circle-check"), te = e("CircleCheckFilled", "ep:circle-check-filled"), ne = e("CircleClose", "ep:circle-close"), ce = e("CircleCloseFilled", "ep:circle-close-filled"), ae = e("CirclePlus", "ep:circle-plus"), ie = e("CirclePlusFilled", "ep:circle-plus-filled"), re = e("Clock", "ep:clock"), le = e("Close", "ep:close"), pe = e("CloseBold", "ep:close-bold"), se = e("Cloudy", "ep:cloudy"), me = e("Coffee", "ep:coffee"), de = e("CoffeeCup", "ep:coffee-cup"), ge = e("Coin", "ep:coin"), ye = e("ColdDrink", "ep:cold-drink"), ue = e("Collection", "ep:collection"), he = e("CollectionTag", "ep:collection-tag"), fe = e("Comment", "ep:comment"), Ce = e("Compass", "ep:compass"), be = e("Connection", "ep:connection"), we = e("Coordinate", "ep:coordinate"), ke = e("CopyDocument", "ep:copy-document"), Fe = e("Cpu", "ep:cpu"), Se = e("CreditCard", "ep:credit-card"), De = e("Crop", "ep:crop"), Pe = e("DArrowLeft", "ep:d-arrow-left"), Be = e("DArrowRight", "ep:d-arrow-right"), Me = e("DCaret", "ep:d-caret"), Le = e("DataAnalysis", "ep:data-analysis"), Re = e("DataBoard", "ep:data-board"), Te = e("DataLine", "ep:data-line"), Ae = e("Delete", "ep:delete"), ve = e("DeleteFilled", "ep:delete-filled"), qe = e("DeleteLocation", "ep:delete-location"), Oe = e("Dessert", "ep:dessert"), Ge = e("Discount", "ep:discount"), Ue = e("Dish", "ep:dish"), We = e("DishDot", "ep:dish-dot"), Ie = e("Document", "ep:document"), He = e("DocumentAdd", "ep:document-add"), je = e("DocumentChecked", "ep:document-checked"), ze = e("DocumentCopy", "ep:document-copy"), xe = e("DocumentDelete", "ep:document-delete"), Ee = e("DocumentRemove", "ep:document-remove"), Ve = e("Download", "ep:download"), Ne = e("Drizzling", "ep:drizzling"), Ke = e("Edit", "ep:edit"), Qe = e("EditPen", "ep:edit-pen"), Ze = e("Eleme", "ep:eleme"), Ye = e("ElemeFilled", "ep:eleme-filled"), Je = e("ElementPlus", "ep:element-plus"), Xe = e("Expand", "ep:expand"), _e = e("Failed", "ep:failed"), $e = e("Female", "ep:female"), eo = e("Files", "ep:files"), oo = e("Film", "ep:film"), to = e("Filter", "ep:filter"), no = e("Finished", "ep:finished"), co = e("FirstAidKit", "ep:first-aid-kit"), ao = e("Flag", "ep:flag"), io = e("Fold", "ep:fold"), ro = e("Folder", "ep:folder"), lo = e("FolderAdd", "ep:folder-add"), po = e("FolderChecked", "ep:folder-checked"), so = e("FolderDelete", "ep:folder-delete"), mo = e("FolderOpened", "ep:folder-opened"), go = e("FolderRemove", "ep:folder-remove"), yo = e("Food", "ep:food"), uo = e("Football", "ep:football"), ho = e("ForkSpoon", "ep:fork-spoon"), fo = e("Fries", "ep:fries"), Co = e("FullScreen", "ep:full-screen"), bo = e("Goblet", "ep:goblet"), wo = e("GobletFull", "ep:goblet-full"), ko = e("GobletSquare", "ep:goblet-square"), Fo = e("GobletSquareFull", "ep:goblet-square-full"), So = e("GoldMedal", "ep:gold-medal"), Do = e("Goods", "ep:goods"), Po = e("GoodsFilled", "ep:goods-filled"), Bo = e("Grape", "ep:grape"), Mo = e("Grid", "ep:grid"), Lo = e("Guide", "ep:guide"), Ro = e("Handbag", "ep:handbag"), To = e("Headset", "ep:headset"), Ao = e("Help", "ep:help"), vo = e("HelpFilled", "ep:help-filled"), qo = e("Hide", "ep:hide"), Oo = e("Histogram", "ep:histogram"), Go = e("HomeFilled", "ep:home-filled"), Uo = e("HotWater", "ep:hot-water"), Wo = e("House", "ep:house"), Io = e("IceCream", "ep:ice-cream"), Ho = e("IceCreamRound", "ep:ice-cream-round"), jo = e("IceCreamSquare", "ep:ice-cream-square"), zo = e("IceDrink", "ep:ice-drink"), xo = e("IceTea", "ep:ice-tea"), Eo = e("InfoFilled", "ep:info-filled"), Vo = e("Iphone", "ep:iphone"), No = e("Key", "ep:key"), Ko = e("KnifeFork", "ep:knife-fork"), Qo = e("Lightning", "ep:lightning"), Zo = e("Link", "ep:link"), Yo = e("List", "ep:list"), Jo = e("Loading", "ep:loading"), Xo = e("Location", "ep:location"), _o = e("LocationFilled", "ep:location-filled"), $o = e(
|
|
332
|
+
"LocationInformation",
|
|
333
|
+
"ep:location-information"
|
|
334
|
+
), et = e("Lock", "ep:lock"), ot = e("Lollipop", "ep:lollipop"), tt = e("MagicStick", "ep:magic-stick"), nt = e("Magnet", "ep:magnet"), ct = e("Male", "ep:male"), at = e("Management", "ep:management"), it = e("MapLocation", "ep:map-location"), rt = e("Medal", "ep:medal"), lt = e("Memo", "ep:memo"), pt = e("Menu", "ep:menu"), st = e("Message", "ep:message"), mt = e("MessageBox", "ep:message-box"), dt = e("Mic", "ep:mic"), gt = e("Microphone", "ep:microphone"), yt = e("MilkTea", "ep:milk-tea"), ut = e("Minus", "ep:minus"), ht = e("Money", "ep:money"), ft = e("Monitor", "ep:monitor"), Ct = e("Moon", "ep:moon"), bt = e("MoonNight", "ep:moon-night"), wt = e("More", "ep:more"), kt = e("MoreFilled", "ep:more-filled"), Ft = e("MostlyCloudy", "ep:mostly-cloudy"), St = e("Mouse", "ep:mouse"), Dt = e("Mug", "ep:mug"), Pt = e("Mute", "ep:mute"), Bt = e("MuteNotification", "ep:mute-notification"), Mt = e("NoSmoking", "ep:no-smoking"), Lt = e("Notebook", "ep:notebook"), Rt = e("Notification", "ep:notification"), Tt = e("Odometer", "ep:odometer"), At = e("OfficeBuilding", "ep:office-building"), vt = e("Open", "ep:open"), qt = e("Operation", "ep:operation"), Ot = e("Opportunity", "ep:opportunity"), Gt = e("Orange", "ep:orange"), Ut = e("Paperclip", "ep:paperclip"), Wt = e("PartlyCloudy", "ep:partly-cloudy"), It = e("Pear", "ep:pear"), Ht = e("Phone", "ep:phone"), jt = e("PhoneFilled", "ep:phone-filled"), zt = e("Picture", "ep:picture"), xt = e("PictureFilled", "ep:picture-filled"), Et = e("PictureRounded", "ep:picture-rounded"), Vt = e("PieChart", "ep:pie-chart"), Nt = e("Place", "ep:place"), Kt = e("Platform", "ep:platform"), Qt = e("Plus", "ep:plus"), Zt = e("Pointer", "ep:pointer"), Yt = e("Position", "ep:position"), Jt = e("Postcard", "ep:postcard"), Xt = e("Pouring", "ep:pouring"), _t = e("Present", "ep:present"), $t = e("PriceTag", "ep:price-tag"), en = e("Printer", "ep:printer"), on = e("Promotion", "ep:promotion"), tn = e("QuartzWatch", "ep:quartz-watch"), nn = e("QuestionFilled", "ep:question-filled"), cn = e("Rank", "ep:rank"), an = e("Reading", "ep:reading"), rn = e("ReadingLamp", "ep:reading-lamp"), ln = e("Refresh", "ep:refresh"), pn = e("RefreshLeft", "ep:refresh-left"), sn = e("RefreshRight", "ep:refresh-right"), mn = e("Refrigerator", "ep:refrigerator"), dn = e("Remove", "ep:remove"), gn = e("RemoveFilled", "ep:remove-filled"), yn = e("Right", "ep:right"), un = e("ScaleToOriginal", "ep:scale-to-original"), hn = e("School", "ep:school"), fn = e("Scissor", "ep:scissor"), Cn = e("Search", "ep:search"), bn = e("Select", "ep:select"), wn = e("Sell", "ep:sell"), kn = e("SemiSelect", "ep:semi-select"), Fn = e("Service", "ep:service"), Sn = e("SetUp", "ep:set-up"), Dn = e("Setting", "ep:setting"), Pn = e("Share", "ep:share"), Bn = e("Ship", "ep:ship"), Mn = e("Shop", "ep:shop"), Ln = e("ShoppingBag", "ep:shopping-bag"), Rn = e("ShoppingCart", "ep:shopping-cart"), Tn = e("ShoppingCartFull", "ep:shopping-cart-full"), An = e("ShoppingTrolley", "ep:shopping-trolley"), vn = e("Smoking", "ep:smoking"), qn = e("Soccer", "ep:soccer"), On = e("SoldOut", "ep:sold-out"), Gn = e("Sort", "ep:sort"), Un = e("SortDown", "ep:sort-down"), Wn = e("SortUp", "ep:sort-up"), In = e("Stamp", "ep:stamp"), Hn = e("Star", "ep:star"), jn = e("StarFilled", "ep:star-filled"), zn = e("Stopwatch", "ep:stopwatch"), xn = e("SuccessFilled", "ep:success-filled"), En = e("Sugar", "ep:sugar"), Vn = e("Suitcase", "ep:suitcase"), Nn = e("SuitcaseLine", "ep:suitcase-line"), Kn = e("Sunny", "ep:sunny"), Qn = e("Sunrise", "ep:sunrise"), Zn = e("Sunset", "ep:sunset"), Yn = e("Switch", "ep:switch"), Jn = e("SwitchButton", "ep:switch-button"), Xn = e("SwitchFilled", "ep:switch-filled"), _n = e("TakeawayBox", "ep:takeaway-box"), $n = e("Ticket", "ep:ticket"), ec = e("Tickets", "ep:tickets"), oc = e("Timer", "ep:timer"), tc = e("ToiletPaper", "ep:toilet-paper"), nc = e("Tools", "ep:tools"), cc = e("Top", "ep:top"), ac = e("TopLeft", "ep:top-left"), ic = e("TopRight", "ep:top-right"), rc = e("TrendCharts", "ep:trend-charts"), lc = e("Trophy", "ep:trophy"), pc = e("TrophyBase", "ep:trophy-base"), sc = e("TurnOff", "ep:turn-off"), mc = e("Umbrella", "ep:umbrella"), dc = e("Unlock", "ep:unlock"), gc = e("Upload", "ep:upload"), yc = e("UploadFilled", "ep:upload-filled"), uc = e("User", "ep:user"), hc = e("UserFilled", "ep:user-filled"), fc = e("Van", "ep:van"), Cc = e("VideoCamera", "ep:video-camera"), bc = e("VideoCameraFilled", "ep:video-camera-filled"), wc = e("VideoPause", "ep:video-pause"), kc = e("VideoPlay", "ep:video-play"), Fc = e("View", "ep:view"), Sc = e("Wallet", "ep:wallet"), Dc = e("WalletFilled", "ep:wallet-filled"), Pc = e(
|
|
335
|
+
"WarnTriangleFilled",
|
|
336
|
+
"ep:warn-triangle-filled"
|
|
337
|
+
), Bc = e("Warning", "ep:warning"), Mc = e("WarningFilled", "ep:warning-filled"), Lc = e("Watch", "ep:watch"), Rc = e("Watermelon", "ep:watermelon"), Tc = e("WindPower", "ep:wind-power"), Ac = e("ZoomIn", "ep:zoom-in"), vc = e("ZoomOut", "ep:zoom-out"), Uc = {
|
|
338
|
+
AddLocation: p,
|
|
339
|
+
Aim: s,
|
|
340
|
+
AlarmClock: m,
|
|
341
|
+
Apple: d,
|
|
342
|
+
ArrowDown: g,
|
|
343
|
+
ArrowDownBold: y,
|
|
344
|
+
ArrowLeft: u,
|
|
345
|
+
ArrowLeftBold: h,
|
|
346
|
+
ArrowRight: f,
|
|
347
|
+
ArrowRightBold: C,
|
|
348
|
+
ArrowUp: b,
|
|
349
|
+
ArrowUpBold: w,
|
|
350
|
+
Avatar: k,
|
|
351
|
+
Back: F,
|
|
352
|
+
Basketball: S,
|
|
353
|
+
Bell: D,
|
|
354
|
+
BellFilled: P,
|
|
355
|
+
Bicycle: B,
|
|
356
|
+
Bottom: M,
|
|
357
|
+
BottomLeft: L,
|
|
358
|
+
BottomRight: R,
|
|
359
|
+
Bowl: T,
|
|
360
|
+
Box: A,
|
|
361
|
+
Briefcase: v,
|
|
362
|
+
Brush: q,
|
|
363
|
+
BrushFilled: O,
|
|
364
|
+
Burger: G,
|
|
365
|
+
Calendar: U,
|
|
366
|
+
Camera: W,
|
|
367
|
+
CameraFilled: I,
|
|
368
|
+
CaretBottom: H,
|
|
369
|
+
CaretLeft: j,
|
|
370
|
+
CaretRight: z,
|
|
371
|
+
CaretTop: x,
|
|
372
|
+
Cellphone: E,
|
|
373
|
+
ChatDotRound: V,
|
|
374
|
+
ChatDotSquare: N,
|
|
375
|
+
ChatLineRound: K,
|
|
376
|
+
ChatLineSquare: Q,
|
|
377
|
+
ChatRound: Z,
|
|
378
|
+
ChatSquare: Y,
|
|
379
|
+
Check: J,
|
|
380
|
+
Checked: X,
|
|
381
|
+
Cherry: _,
|
|
382
|
+
Chicken: $,
|
|
383
|
+
ChromeFilled: ee,
|
|
384
|
+
CircleCheck: oe,
|
|
385
|
+
CircleCheckFilled: te,
|
|
386
|
+
CircleClose: ne,
|
|
387
|
+
CircleCloseFilled: ce,
|
|
388
|
+
CirclePlus: ae,
|
|
389
|
+
CirclePlusFilled: ie,
|
|
390
|
+
Clock: re,
|
|
391
|
+
Close: le,
|
|
392
|
+
CloseBold: pe,
|
|
393
|
+
Cloudy: se,
|
|
394
|
+
Coffee: me,
|
|
395
|
+
CoffeeCup: de,
|
|
396
|
+
Coin: ge,
|
|
397
|
+
ColdDrink: ye,
|
|
398
|
+
Collection: ue,
|
|
399
|
+
CollectionTag: he,
|
|
400
|
+
Comment: fe,
|
|
401
|
+
Compass: Ce,
|
|
402
|
+
Connection: be,
|
|
403
|
+
Coordinate: we,
|
|
404
|
+
CopyDocument: ke,
|
|
405
|
+
Cpu: Fe,
|
|
406
|
+
CreditCard: Se,
|
|
407
|
+
Crop: De,
|
|
408
|
+
DArrowLeft: Pe,
|
|
409
|
+
DArrowRight: Be,
|
|
410
|
+
DCaret: Me,
|
|
411
|
+
DataAnalysis: Le,
|
|
412
|
+
DataBoard: Re,
|
|
413
|
+
DataLine: Te,
|
|
414
|
+
Delete: Ae,
|
|
415
|
+
DeleteFilled: ve,
|
|
416
|
+
DeleteLocation: qe,
|
|
417
|
+
Dessert: Oe,
|
|
418
|
+
Discount: Ge,
|
|
419
|
+
Dish: Ue,
|
|
420
|
+
DishDot: We,
|
|
421
|
+
Document: Ie,
|
|
422
|
+
DocumentAdd: He,
|
|
423
|
+
DocumentChecked: je,
|
|
424
|
+
DocumentCopy: ze,
|
|
425
|
+
DocumentDelete: xe,
|
|
426
|
+
DocumentRemove: Ee,
|
|
427
|
+
Download: Ve,
|
|
428
|
+
Drizzling: Ne,
|
|
429
|
+
Edit: Ke,
|
|
430
|
+
EditPen: Qe,
|
|
431
|
+
Eleme: Ze,
|
|
432
|
+
ElemeFilled: Ye,
|
|
433
|
+
ElementPlus: Je,
|
|
434
|
+
Expand: Xe,
|
|
435
|
+
Failed: _e,
|
|
436
|
+
Female: $e,
|
|
437
|
+
Files: eo,
|
|
438
|
+
Film: oo,
|
|
439
|
+
Filter: to,
|
|
440
|
+
Finished: no,
|
|
441
|
+
FirstAidKit: co,
|
|
442
|
+
Flag: ao,
|
|
443
|
+
Fold: io,
|
|
444
|
+
Folder: ro,
|
|
445
|
+
FolderAdd: lo,
|
|
446
|
+
FolderChecked: po,
|
|
447
|
+
FolderDelete: so,
|
|
448
|
+
FolderOpened: mo,
|
|
449
|
+
FolderRemove: go,
|
|
450
|
+
Food: yo,
|
|
451
|
+
Football: uo,
|
|
452
|
+
ForkSpoon: ho,
|
|
453
|
+
Fries: fo,
|
|
454
|
+
FullScreen: Co,
|
|
455
|
+
Goblet: bo,
|
|
456
|
+
GobletFull: wo,
|
|
457
|
+
GobletSquare: ko,
|
|
458
|
+
GobletSquareFull: Fo,
|
|
459
|
+
GoldMedal: So,
|
|
460
|
+
Goods: Do,
|
|
461
|
+
GoodsFilled: Po,
|
|
462
|
+
Grape: Bo,
|
|
463
|
+
Grid: Mo,
|
|
464
|
+
Guide: Lo,
|
|
465
|
+
Handbag: Ro,
|
|
466
|
+
Headset: To,
|
|
467
|
+
Help: Ao,
|
|
468
|
+
HelpFilled: vo,
|
|
469
|
+
Hide: qo,
|
|
470
|
+
Histogram: Oo,
|
|
471
|
+
HomeFilled: Go,
|
|
472
|
+
HotWater: Uo,
|
|
473
|
+
House: Wo,
|
|
474
|
+
IceCream: Io,
|
|
475
|
+
IceCreamRound: Ho,
|
|
476
|
+
IceCreamSquare: jo,
|
|
477
|
+
IceDrink: zo,
|
|
478
|
+
IceTea: xo,
|
|
479
|
+
InfoFilled: Eo,
|
|
480
|
+
Iphone: Vo,
|
|
481
|
+
Key: No,
|
|
482
|
+
KnifeFork: Ko,
|
|
483
|
+
Lightning: Qo,
|
|
484
|
+
Link: Zo,
|
|
485
|
+
List: Yo,
|
|
486
|
+
Loading: Jo,
|
|
487
|
+
Location: Xo,
|
|
488
|
+
LocationFilled: _o,
|
|
489
|
+
LocationInformation: $o,
|
|
490
|
+
Lock: et,
|
|
491
|
+
Lollipop: ot,
|
|
492
|
+
MagicStick: tt,
|
|
493
|
+
Magnet: nt,
|
|
494
|
+
Male: ct,
|
|
495
|
+
Management: at,
|
|
496
|
+
MapLocation: it,
|
|
497
|
+
Medal: rt,
|
|
498
|
+
Memo: lt,
|
|
499
|
+
Menu: pt,
|
|
500
|
+
Message: st,
|
|
501
|
+
MessageBox: mt,
|
|
502
|
+
Mic: dt,
|
|
503
|
+
Microphone: gt,
|
|
504
|
+
MilkTea: yt,
|
|
505
|
+
Minus: ut,
|
|
506
|
+
Money: ht,
|
|
507
|
+
Monitor: ft,
|
|
508
|
+
Moon: Ct,
|
|
509
|
+
MoonNight: bt,
|
|
510
|
+
More: wt,
|
|
511
|
+
MoreFilled: kt,
|
|
512
|
+
MostlyCloudy: Ft,
|
|
513
|
+
Mouse: St,
|
|
514
|
+
Mug: Dt,
|
|
515
|
+
Mute: Pt,
|
|
516
|
+
MuteNotification: Bt,
|
|
517
|
+
NoSmoking: Mt,
|
|
518
|
+
Notebook: Lt,
|
|
519
|
+
Notification: Rt,
|
|
520
|
+
Odometer: Tt,
|
|
521
|
+
OfficeBuilding: At,
|
|
522
|
+
Open: vt,
|
|
523
|
+
Operation: qt,
|
|
524
|
+
Opportunity: Ot,
|
|
525
|
+
Orange: Gt,
|
|
526
|
+
Paperclip: Ut,
|
|
527
|
+
PartlyCloudy: Wt,
|
|
528
|
+
Pear: It,
|
|
529
|
+
Phone: Ht,
|
|
530
|
+
PhoneFilled: jt,
|
|
531
|
+
Picture: zt,
|
|
532
|
+
PictureFilled: xt,
|
|
533
|
+
PictureRounded: Et,
|
|
534
|
+
PieChart: Vt,
|
|
535
|
+
Place: Nt,
|
|
536
|
+
Platform: Kt,
|
|
537
|
+
Plus: Qt,
|
|
538
|
+
Pointer: Zt,
|
|
539
|
+
Position: Yt,
|
|
540
|
+
Postcard: Jt,
|
|
541
|
+
Pouring: Xt,
|
|
542
|
+
Present: _t,
|
|
543
|
+
PriceTag: $t,
|
|
544
|
+
Printer: en,
|
|
545
|
+
Promotion: on,
|
|
546
|
+
QuartzWatch: tn,
|
|
547
|
+
QuestionFilled: nn,
|
|
548
|
+
Rank: cn,
|
|
549
|
+
Reading: an,
|
|
550
|
+
ReadingLamp: rn,
|
|
551
|
+
Refresh: ln,
|
|
552
|
+
RefreshLeft: pn,
|
|
553
|
+
RefreshRight: sn,
|
|
554
|
+
Refrigerator: mn,
|
|
555
|
+
Remove: dn,
|
|
556
|
+
RemoveFilled: gn,
|
|
557
|
+
Right: yn,
|
|
558
|
+
ScaleToOriginal: un,
|
|
559
|
+
School: hn,
|
|
560
|
+
Scissor: fn,
|
|
561
|
+
Search: Cn,
|
|
562
|
+
Select: bn,
|
|
563
|
+
Sell: wn,
|
|
564
|
+
SemiSelect: kn,
|
|
565
|
+
Service: Fn,
|
|
566
|
+
SetUp: Sn,
|
|
567
|
+
Setting: Dn,
|
|
568
|
+
Share: Pn,
|
|
569
|
+
Ship: Bn,
|
|
570
|
+
Shop: Mn,
|
|
571
|
+
ShoppingBag: Ln,
|
|
572
|
+
ShoppingCart: Rn,
|
|
573
|
+
ShoppingCartFull: Tn,
|
|
574
|
+
ShoppingTrolley: An,
|
|
575
|
+
Smoking: vn,
|
|
576
|
+
Soccer: qn,
|
|
577
|
+
SoldOut: On,
|
|
578
|
+
Sort: Gn,
|
|
579
|
+
SortDown: Un,
|
|
580
|
+
SortUp: Wn,
|
|
581
|
+
Stamp: In,
|
|
582
|
+
Star: Hn,
|
|
583
|
+
StarFilled: jn,
|
|
584
|
+
Stopwatch: zn,
|
|
585
|
+
SuccessFilled: xn,
|
|
586
|
+
Sugar: En,
|
|
587
|
+
Suitcase: Vn,
|
|
588
|
+
SuitcaseLine: Nn,
|
|
589
|
+
Sunny: Kn,
|
|
590
|
+
Sunrise: Qn,
|
|
591
|
+
Sunset: Zn,
|
|
592
|
+
Switch: Yn,
|
|
593
|
+
SwitchButton: Jn,
|
|
594
|
+
SwitchFilled: Xn,
|
|
595
|
+
TakeawayBox: _n,
|
|
596
|
+
Ticket: $n,
|
|
597
|
+
Tickets: ec,
|
|
598
|
+
Timer: oc,
|
|
599
|
+
ToiletPaper: tc,
|
|
600
|
+
Tools: nc,
|
|
601
|
+
Top: cc,
|
|
602
|
+
TopLeft: ac,
|
|
603
|
+
TopRight: ic,
|
|
604
|
+
TrendCharts: rc,
|
|
605
|
+
Trophy: lc,
|
|
606
|
+
TrophyBase: pc,
|
|
607
|
+
TurnOff: sc,
|
|
608
|
+
Umbrella: mc,
|
|
609
|
+
Unlock: dc,
|
|
610
|
+
Upload: gc,
|
|
611
|
+
UploadFilled: yc,
|
|
612
|
+
User: uc,
|
|
613
|
+
UserFilled: hc,
|
|
614
|
+
Van: fc,
|
|
615
|
+
VideoCamera: Cc,
|
|
616
|
+
VideoCameraFilled: bc,
|
|
617
|
+
VideoPause: wc,
|
|
618
|
+
VideoPlay: kc,
|
|
619
|
+
View: Fc,
|
|
620
|
+
Wallet: Sc,
|
|
621
|
+
WalletFilled: Dc,
|
|
622
|
+
WarnTriangleFilled: Pc,
|
|
623
|
+
Warning: Bc,
|
|
624
|
+
WarningFilled: Mc,
|
|
625
|
+
Watch: Lc,
|
|
626
|
+
Watermelon: Rc,
|
|
627
|
+
WindPower: Tc,
|
|
628
|
+
ZoomIn: Ac,
|
|
629
|
+
ZoomOut: vc
|
|
630
|
+
};
|
|
631
|
+
export {
|
|
632
|
+
p as AddLocation,
|
|
633
|
+
s as Aim,
|
|
634
|
+
m as AlarmClock,
|
|
635
|
+
d as Apple,
|
|
636
|
+
g as ArrowDown,
|
|
637
|
+
y as ArrowDownBold,
|
|
638
|
+
u as ArrowLeft,
|
|
639
|
+
h as ArrowLeftBold,
|
|
640
|
+
f as ArrowRight,
|
|
641
|
+
C as ArrowRightBold,
|
|
642
|
+
b as ArrowUp,
|
|
643
|
+
w as ArrowUpBold,
|
|
644
|
+
k as Avatar,
|
|
645
|
+
F as Back,
|
|
646
|
+
S as Basketball,
|
|
647
|
+
D as Bell,
|
|
648
|
+
P as BellFilled,
|
|
649
|
+
B as Bicycle,
|
|
650
|
+
M as Bottom,
|
|
651
|
+
L as BottomLeft,
|
|
652
|
+
R as BottomRight,
|
|
653
|
+
T as Bowl,
|
|
654
|
+
A as Box,
|
|
655
|
+
v as Briefcase,
|
|
656
|
+
q as Brush,
|
|
657
|
+
O as BrushFilled,
|
|
658
|
+
G as Burger,
|
|
659
|
+
U as Calendar,
|
|
660
|
+
W as Camera,
|
|
661
|
+
I as CameraFilled,
|
|
662
|
+
H as CaretBottom,
|
|
663
|
+
j as CaretLeft,
|
|
664
|
+
z as CaretRight,
|
|
665
|
+
x as CaretTop,
|
|
666
|
+
E as Cellphone,
|
|
667
|
+
V as ChatDotRound,
|
|
668
|
+
N as ChatDotSquare,
|
|
669
|
+
K as ChatLineRound,
|
|
670
|
+
Q as ChatLineSquare,
|
|
671
|
+
Z as ChatRound,
|
|
672
|
+
Y as ChatSquare,
|
|
673
|
+
J as Check,
|
|
674
|
+
X as Checked,
|
|
675
|
+
_ as Cherry,
|
|
676
|
+
$ as Chicken,
|
|
677
|
+
ee as ChromeFilled,
|
|
678
|
+
oe as CircleCheck,
|
|
679
|
+
te as CircleCheckFilled,
|
|
680
|
+
ne as CircleClose,
|
|
681
|
+
ce as CircleCloseFilled,
|
|
682
|
+
ae as CirclePlus,
|
|
683
|
+
ie as CirclePlusFilled,
|
|
684
|
+
re as Clock,
|
|
685
|
+
le as Close,
|
|
686
|
+
pe as CloseBold,
|
|
687
|
+
se as Cloudy,
|
|
688
|
+
me as Coffee,
|
|
689
|
+
de as CoffeeCup,
|
|
690
|
+
ge as Coin,
|
|
691
|
+
ye as ColdDrink,
|
|
692
|
+
ue as Collection,
|
|
693
|
+
he as CollectionTag,
|
|
694
|
+
fe as Comment,
|
|
695
|
+
Ce as Compass,
|
|
696
|
+
be as Connection,
|
|
697
|
+
we as Coordinate,
|
|
698
|
+
ke as CopyDocument,
|
|
699
|
+
Fe as Cpu,
|
|
700
|
+
Se as CreditCard,
|
|
701
|
+
De as Crop,
|
|
702
|
+
Pe as DArrowLeft,
|
|
703
|
+
Be as DArrowRight,
|
|
704
|
+
Me as DCaret,
|
|
705
|
+
Le as DataAnalysis,
|
|
706
|
+
Re as DataBoard,
|
|
707
|
+
Te as DataLine,
|
|
708
|
+
Ae as Delete,
|
|
709
|
+
ve as DeleteFilled,
|
|
710
|
+
qe as DeleteLocation,
|
|
711
|
+
Oe as Dessert,
|
|
712
|
+
Ge as Discount,
|
|
713
|
+
Ue as Dish,
|
|
714
|
+
We as DishDot,
|
|
715
|
+
Ie as Document,
|
|
716
|
+
He as DocumentAdd,
|
|
717
|
+
je as DocumentChecked,
|
|
718
|
+
ze as DocumentCopy,
|
|
719
|
+
xe as DocumentDelete,
|
|
720
|
+
Ee as DocumentRemove,
|
|
721
|
+
Ve as Download,
|
|
722
|
+
Ne as Drizzling,
|
|
723
|
+
Ke as Edit,
|
|
724
|
+
Qe as EditPen,
|
|
725
|
+
Ze as Eleme,
|
|
726
|
+
Ye as ElemeFilled,
|
|
727
|
+
Je as ElementPlus,
|
|
728
|
+
Xe as Expand,
|
|
729
|
+
_e as Failed,
|
|
730
|
+
$e as Female,
|
|
731
|
+
eo as Files,
|
|
732
|
+
oo as Film,
|
|
733
|
+
to as Filter,
|
|
734
|
+
no as Finished,
|
|
735
|
+
co as FirstAidKit,
|
|
736
|
+
ao as Flag,
|
|
737
|
+
io as Fold,
|
|
738
|
+
ro as Folder,
|
|
739
|
+
lo as FolderAdd,
|
|
740
|
+
po as FolderChecked,
|
|
741
|
+
so as FolderDelete,
|
|
742
|
+
mo as FolderOpened,
|
|
743
|
+
go as FolderRemove,
|
|
744
|
+
yo as Food,
|
|
745
|
+
uo as Football,
|
|
746
|
+
ho as ForkSpoon,
|
|
747
|
+
fo as Fries,
|
|
748
|
+
Co as FullScreen,
|
|
749
|
+
bo as Goblet,
|
|
750
|
+
wo as GobletFull,
|
|
751
|
+
ko as GobletSquare,
|
|
752
|
+
Fo as GobletSquareFull,
|
|
753
|
+
So as GoldMedal,
|
|
754
|
+
Do as Goods,
|
|
755
|
+
Po as GoodsFilled,
|
|
756
|
+
Bo as Grape,
|
|
757
|
+
Mo as Grid,
|
|
758
|
+
Lo as Guide,
|
|
759
|
+
Ro as Handbag,
|
|
760
|
+
To as Headset,
|
|
761
|
+
Ao as Help,
|
|
762
|
+
vo as HelpFilled,
|
|
763
|
+
qo as Hide,
|
|
764
|
+
Oo as Histogram,
|
|
765
|
+
Go as HomeFilled,
|
|
766
|
+
Uo as HotWater,
|
|
767
|
+
Wo as House,
|
|
768
|
+
Io as IceCream,
|
|
769
|
+
Ho as IceCreamRound,
|
|
770
|
+
jo as IceCreamSquare,
|
|
771
|
+
zo as IceDrink,
|
|
772
|
+
xo as IceTea,
|
|
773
|
+
Eo as InfoFilled,
|
|
774
|
+
Vo as Iphone,
|
|
775
|
+
No as Key,
|
|
776
|
+
Ko as KnifeFork,
|
|
777
|
+
Qo as Lightning,
|
|
778
|
+
Zo as Link,
|
|
779
|
+
Yo as List,
|
|
780
|
+
Jo as Loading,
|
|
781
|
+
Xo as Location,
|
|
782
|
+
_o as LocationFilled,
|
|
783
|
+
$o as LocationInformation,
|
|
784
|
+
et as Lock,
|
|
785
|
+
ot as Lollipop,
|
|
786
|
+
tt as MagicStick,
|
|
787
|
+
nt as Magnet,
|
|
788
|
+
ct as Male,
|
|
789
|
+
at as Management,
|
|
790
|
+
it as MapLocation,
|
|
791
|
+
rt as Medal,
|
|
792
|
+
lt as Memo,
|
|
793
|
+
pt as Menu,
|
|
794
|
+
st as Message,
|
|
795
|
+
mt as MessageBox,
|
|
796
|
+
dt as Mic,
|
|
797
|
+
gt as Microphone,
|
|
798
|
+
yt as MilkTea,
|
|
799
|
+
ut as Minus,
|
|
800
|
+
ht as Money,
|
|
801
|
+
ft as Monitor,
|
|
802
|
+
Ct as Moon,
|
|
803
|
+
bt as MoonNight,
|
|
804
|
+
wt as More,
|
|
805
|
+
kt as MoreFilled,
|
|
806
|
+
Ft as MostlyCloudy,
|
|
807
|
+
St as Mouse,
|
|
808
|
+
Dt as Mug,
|
|
809
|
+
Pt as Mute,
|
|
810
|
+
Bt as MuteNotification,
|
|
811
|
+
Mt as NoSmoking,
|
|
812
|
+
Lt as Notebook,
|
|
813
|
+
Rt as Notification,
|
|
814
|
+
Tt as Odometer,
|
|
815
|
+
At as OfficeBuilding,
|
|
816
|
+
vt as Open,
|
|
817
|
+
qt as Operation,
|
|
818
|
+
Ot as Opportunity,
|
|
819
|
+
Gt as Orange,
|
|
820
|
+
Ut as Paperclip,
|
|
821
|
+
Wt as PartlyCloudy,
|
|
822
|
+
It as Pear,
|
|
823
|
+
Ht as Phone,
|
|
824
|
+
jt as PhoneFilled,
|
|
825
|
+
zt as Picture,
|
|
826
|
+
xt as PictureFilled,
|
|
827
|
+
Et as PictureRounded,
|
|
828
|
+
Vt as PieChart,
|
|
829
|
+
Nt as Place,
|
|
830
|
+
Kt as Platform,
|
|
831
|
+
Qt as Plus,
|
|
832
|
+
Zt as Pointer,
|
|
833
|
+
Yt as Position,
|
|
834
|
+
Jt as Postcard,
|
|
835
|
+
Xt as Pouring,
|
|
836
|
+
_t as Present,
|
|
837
|
+
$t as PriceTag,
|
|
838
|
+
en as Printer,
|
|
839
|
+
on as Promotion,
|
|
840
|
+
tn as QuartzWatch,
|
|
841
|
+
nn as QuestionFilled,
|
|
842
|
+
cn as Rank,
|
|
843
|
+
an as Reading,
|
|
844
|
+
rn as ReadingLamp,
|
|
845
|
+
ln as Refresh,
|
|
846
|
+
pn as RefreshLeft,
|
|
847
|
+
sn as RefreshRight,
|
|
848
|
+
mn as Refrigerator,
|
|
849
|
+
dn as Remove,
|
|
850
|
+
gn as RemoveFilled,
|
|
851
|
+
yn as Right,
|
|
852
|
+
un as ScaleToOriginal,
|
|
853
|
+
hn as School,
|
|
854
|
+
fn as Scissor,
|
|
855
|
+
Cn as Search,
|
|
856
|
+
bn as Select,
|
|
857
|
+
wn as Sell,
|
|
858
|
+
kn as SemiSelect,
|
|
859
|
+
Fn as Service,
|
|
860
|
+
Sn as SetUp,
|
|
861
|
+
Dn as Setting,
|
|
862
|
+
Pn as Share,
|
|
863
|
+
Bn as Ship,
|
|
864
|
+
Mn as Shop,
|
|
865
|
+
Ln as ShoppingBag,
|
|
866
|
+
Rn as ShoppingCart,
|
|
867
|
+
Tn as ShoppingCartFull,
|
|
868
|
+
An as ShoppingTrolley,
|
|
869
|
+
vn as Smoking,
|
|
870
|
+
qn as Soccer,
|
|
871
|
+
On as SoldOut,
|
|
872
|
+
Gn as Sort,
|
|
873
|
+
Un as SortDown,
|
|
874
|
+
Wn as SortUp,
|
|
875
|
+
In as Stamp,
|
|
876
|
+
Hn as Star,
|
|
877
|
+
jn as StarFilled,
|
|
878
|
+
zn as Stopwatch,
|
|
879
|
+
xn as SuccessFilled,
|
|
880
|
+
En as Sugar,
|
|
881
|
+
Vn as Suitcase,
|
|
882
|
+
Nn as SuitcaseLine,
|
|
883
|
+
Kn as Sunny,
|
|
884
|
+
Qn as Sunrise,
|
|
885
|
+
Zn as Sunset,
|
|
886
|
+
Yn as Switch,
|
|
887
|
+
Jn as SwitchButton,
|
|
888
|
+
Xn as SwitchFilled,
|
|
889
|
+
_n as TakeawayBox,
|
|
890
|
+
$n as Ticket,
|
|
891
|
+
ec as Tickets,
|
|
892
|
+
oc as Timer,
|
|
893
|
+
tc as ToiletPaper,
|
|
894
|
+
nc as Tools,
|
|
895
|
+
cc as Top,
|
|
896
|
+
ac as TopLeft,
|
|
897
|
+
ic as TopRight,
|
|
898
|
+
rc as TrendCharts,
|
|
899
|
+
lc as Trophy,
|
|
900
|
+
pc as TrophyBase,
|
|
901
|
+
sc as TurnOff,
|
|
902
|
+
mc as Umbrella,
|
|
903
|
+
dc as Unlock,
|
|
904
|
+
gc as Upload,
|
|
905
|
+
yc as UploadFilled,
|
|
906
|
+
uc as User,
|
|
907
|
+
hc as UserFilled,
|
|
908
|
+
fc as Van,
|
|
909
|
+
Cc as VideoCamera,
|
|
910
|
+
bc as VideoCameraFilled,
|
|
911
|
+
wc as VideoPause,
|
|
912
|
+
kc as VideoPlay,
|
|
913
|
+
Fc as View,
|
|
914
|
+
Sc as Wallet,
|
|
915
|
+
Dc as WalletFilled,
|
|
916
|
+
Pc as WarnTriangleFilled,
|
|
917
|
+
Bc as Warning,
|
|
918
|
+
Mc as WarningFilled,
|
|
919
|
+
Lc as Watch,
|
|
920
|
+
Rc as Watermelon,
|
|
921
|
+
Tc as WindPower,
|
|
922
|
+
Ac as ZoomIn,
|
|
923
|
+
vc as ZoomOut,
|
|
924
|
+
e as createIconComponent,
|
|
925
|
+
Gc as iconComponentMeta,
|
|
926
|
+
l as iconComponentProps,
|
|
927
|
+
Uc as iconComponents
|
|
928
|
+
};
|