v-eris 1.0.4
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/package.json +63 -0
- package/release/esm/03523cf578d69fa92322.ttf +0 -0
- package/release/esm/c9d9202d39212162d5e5.ttf +0 -0
- package/release/esm/components/Card/index.js +18 -0
- package/release/esm/components/Card/index.js.map +1 -0
- package/release/esm/components/Column/index.js +13 -0
- package/release/esm/components/Column/index.js.map +1 -0
- package/release/esm/components/Divider/index.js +10 -0
- package/release/esm/components/Divider/index.js.map +1 -0
- package/release/esm/components/Editable/index.js +54 -0
- package/release/esm/components/Editable/index.js.map +1 -0
- package/release/esm/components/Eris/index.js +9 -0
- package/release/esm/components/Eris/index.js.map +1 -0
- package/release/esm/components/Flex/index.js +8 -0
- package/release/esm/components/Flex/index.js.map +1 -0
- package/release/esm/components/Icons/index.js +1500 -0
- package/release/esm/components/Icons/index.js.map +1 -0
- package/release/esm/components/Lang/index.js +32 -0
- package/release/esm/components/Lang/index.js.map +1 -0
- package/release/esm/components/List/index.js +111 -0
- package/release/esm/components/List/index.js.map +1 -0
- package/release/esm/components/List/leaf.js +44 -0
- package/release/esm/components/List/leaf.js.map +1 -0
- package/release/esm/components/Row/index.js +28 -0
- package/release/esm/components/Row/index.js.map +1 -0
- package/release/esm/components/Theme/index.js +3 -0
- package/release/esm/components/Theme/index.js.map +1 -0
- package/release/esm/components/Tooltip/index.js +94 -0
- package/release/esm/components/Tooltip/index.js.map +1 -0
- package/release/esm/components/Typography/index.js +16 -0
- package/release/esm/components/Typography/index.js.map +1 -0
- package/release/esm/examples/example.js +40 -0
- package/release/esm/examples/example.js.map +1 -0
- package/release/esm/examples/routes/icons.js +23 -0
- package/release/esm/examples/routes/icons.js.map +1 -0
- package/release/esm/examples/routes/list.js +45 -0
- package/release/esm/examples/routes/list.js.map +1 -0
- package/release/esm/examples/routes/typography.js +37 -0
- package/release/esm/examples/routes/typography.js.map +1 -0
- package/release/esm/index.js +45 -0
- package/release/esm/index.js.map +1 -0
- package/release/esm/main.js +22 -0
- package/release/esm/main.js.map +1 -0
- package/release/esm/utility/animation.js +60 -0
- package/release/esm/utility/animation.js.map +1 -0
- package/release/esm/utility/common.js +313 -0
- package/release/esm/utility/common.js.map +1 -0
- package/release/esm/utility/cookie.js +42 -0
- package/release/esm/utility/cookie.js.map +1 -0
- package/release/esm/utility/mutable.js +267 -0
- package/release/esm/utility/mutable.js.map +1 -0
- package/release/esm/utility/props.js +39 -0
- package/release/esm/utility/props.js.map +1 -0
- package/release/esm/utility/requests.js +83 -0
- package/release/esm/utility/requests.js.map +1 -0
- package/release/esm/utility/storage.js +46 -0
- package/release/esm/utility/storage.js.map +1 -0
- package/release/esm/utility/time.js +207 -0
- package/release/esm/utility/time.js.map +1 -0
- package/release/esm/utility/vmath.js +21 -0
- package/release/esm/utility/vmath.js.map +1 -0
- package/tsconfig.json +39 -0
|
@@ -0,0 +1,1500 @@
|
|
|
1
|
+
import { __assign, __rest } from "tslib";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import "./styles/index.scss";
|
|
4
|
+
import { Props } from "../../utility/props";
|
|
5
|
+
var Icon = function (props) {
|
|
6
|
+
var className = props.className, children = props.children, active = props.active, transition = props.transition, style = props.style, size = props.size, color = props.color, padding = props.padding, reverse = props.reverse, rest = __rest(props, ["className", "children", "active", "transition", "style", "size", "color", "padding", "reverse"]);
|
|
7
|
+
var inlineStyle = __assign({}, style);
|
|
8
|
+
if (size !== undefined)
|
|
9
|
+
inlineStyle["fontSize"] = size;
|
|
10
|
+
if (color !== undefined)
|
|
11
|
+
inlineStyle["color"] = color;
|
|
12
|
+
if (padding !== undefined)
|
|
13
|
+
inlineStyle["padding"] = padding;
|
|
14
|
+
return React.createElement("span", __assign({ className: Props.className("icon", className, props.hidden ? "hidden" : "", { active: active, transition: transition }) }, rest, { style: inlineStyle }), children);
|
|
15
|
+
};
|
|
16
|
+
export var Icons;
|
|
17
|
+
(function (Icons) {
|
|
18
|
+
Icons.home = function (props) {
|
|
19
|
+
return React.createElement(Icon, __assign({}, props), "\uE900");
|
|
20
|
+
};
|
|
21
|
+
Icons.home2 = function (props) {
|
|
22
|
+
return React.createElement(Icon, __assign({}, props), "\uE901");
|
|
23
|
+
};
|
|
24
|
+
Icons.home3 = function (props) {
|
|
25
|
+
return React.createElement(Icon, __assign({}, props), "\uE902");
|
|
26
|
+
};
|
|
27
|
+
Icons.office = function (props) {
|
|
28
|
+
return React.createElement(Icon, __assign({}, props), "\uE903");
|
|
29
|
+
};
|
|
30
|
+
Icons.newspaper = function (props) {
|
|
31
|
+
return React.createElement(Icon, __assign({}, props), "\uE904");
|
|
32
|
+
};
|
|
33
|
+
Icons.pencil = function (props) {
|
|
34
|
+
return React.createElement(Icon, __assign({}, props), "\uE905");
|
|
35
|
+
};
|
|
36
|
+
Icons.pencil2 = function (props) {
|
|
37
|
+
return React.createElement(Icon, __assign({}, props), "\uE906");
|
|
38
|
+
};
|
|
39
|
+
Icons.quill = function (props) {
|
|
40
|
+
return React.createElement(Icon, __assign({}, props), "\uE907");
|
|
41
|
+
};
|
|
42
|
+
Icons.pen = function (props) {
|
|
43
|
+
return React.createElement(Icon, __assign({}, props), "\uE908");
|
|
44
|
+
};
|
|
45
|
+
Icons.blog = function (props) {
|
|
46
|
+
return React.createElement(Icon, __assign({}, props), "\uE909");
|
|
47
|
+
};
|
|
48
|
+
Icons.eyedropper = function (props) {
|
|
49
|
+
return React.createElement(Icon, __assign({}, props), "\uE90A");
|
|
50
|
+
};
|
|
51
|
+
Icons.droplet = function (props) {
|
|
52
|
+
return React.createElement(Icon, __assign({}, props), "\uE90B");
|
|
53
|
+
};
|
|
54
|
+
Icons.paintformat = function (props) {
|
|
55
|
+
return React.createElement(Icon, __assign({}, props), "\uE90C");
|
|
56
|
+
};
|
|
57
|
+
Icons.image = function (props) {
|
|
58
|
+
return React.createElement(Icon, __assign({}, props), "\uE90D");
|
|
59
|
+
};
|
|
60
|
+
Icons.images = function (props) {
|
|
61
|
+
return React.createElement(Icon, __assign({}, props), "\uE90E");
|
|
62
|
+
};
|
|
63
|
+
Icons.camera = function (props) {
|
|
64
|
+
return React.createElement(Icon, __assign({}, props), "\uE90F");
|
|
65
|
+
};
|
|
66
|
+
Icons.headphones = function (props) {
|
|
67
|
+
return React.createElement(Icon, __assign({}, props), "\uE910");
|
|
68
|
+
};
|
|
69
|
+
Icons.music = function (props) {
|
|
70
|
+
return React.createElement(Icon, __assign({}, props), "\uE911");
|
|
71
|
+
};
|
|
72
|
+
Icons.play = function (props) {
|
|
73
|
+
return React.createElement(Icon, __assign({}, props), "\uE912");
|
|
74
|
+
};
|
|
75
|
+
Icons.film = function (props) {
|
|
76
|
+
return React.createElement(Icon, __assign({}, props), "\uE913");
|
|
77
|
+
};
|
|
78
|
+
Icons.videocamera = function (props) {
|
|
79
|
+
return React.createElement(Icon, __assign({}, props), "\uE914");
|
|
80
|
+
};
|
|
81
|
+
Icons.dice = function (props) {
|
|
82
|
+
return React.createElement(Icon, __assign({}, props), "\uE915");
|
|
83
|
+
};
|
|
84
|
+
Icons.pacman = function (props) {
|
|
85
|
+
return React.createElement(Icon, __assign({}, props), "\uE916");
|
|
86
|
+
};
|
|
87
|
+
Icons.spades = function (props) {
|
|
88
|
+
return React.createElement(Icon, __assign({}, props), "\uE917");
|
|
89
|
+
};
|
|
90
|
+
Icons.clubs = function (props) {
|
|
91
|
+
return React.createElement(Icon, __assign({}, props), "\uE918");
|
|
92
|
+
};
|
|
93
|
+
Icons.diamonds = function (props) {
|
|
94
|
+
return React.createElement(Icon, __assign({}, props), "\uE919");
|
|
95
|
+
};
|
|
96
|
+
Icons.bullhorn = function (props) {
|
|
97
|
+
return React.createElement(Icon, __assign({}, props), "\uE91A");
|
|
98
|
+
};
|
|
99
|
+
Icons.connection = function (props) {
|
|
100
|
+
return React.createElement(Icon, __assign({}, props), "\uE91B");
|
|
101
|
+
};
|
|
102
|
+
Icons.podcast = function (props) {
|
|
103
|
+
return React.createElement(Icon, __assign({}, props), "\uE91C");
|
|
104
|
+
};
|
|
105
|
+
Icons.feed = function (props) {
|
|
106
|
+
return React.createElement(Icon, __assign({}, props), "\uE91D");
|
|
107
|
+
};
|
|
108
|
+
Icons.mic = function (props) {
|
|
109
|
+
return React.createElement(Icon, __assign({}, props), "\uE91E");
|
|
110
|
+
};
|
|
111
|
+
Icons.book = function (props) {
|
|
112
|
+
return React.createElement(Icon, __assign({}, props), "\uE91F");
|
|
113
|
+
};
|
|
114
|
+
Icons.books = function (props) {
|
|
115
|
+
return React.createElement(Icon, __assign({}, props), "\uE920");
|
|
116
|
+
};
|
|
117
|
+
Icons.library = function (props) {
|
|
118
|
+
return React.createElement(Icon, __assign({}, props), "\uE921");
|
|
119
|
+
};
|
|
120
|
+
Icons.filetext = function (props) {
|
|
121
|
+
return React.createElement(Icon, __assign({}, props), "\uE922");
|
|
122
|
+
};
|
|
123
|
+
Icons.profile = function (props) {
|
|
124
|
+
return React.createElement(Icon, __assign({}, props), "\uE923");
|
|
125
|
+
};
|
|
126
|
+
Icons.fileempty = function (props) {
|
|
127
|
+
return React.createElement(Icon, __assign({}, props), "\uE924");
|
|
128
|
+
};
|
|
129
|
+
Icons.filesempty = function (props) {
|
|
130
|
+
return React.createElement(Icon, __assign({}, props), "\uE925");
|
|
131
|
+
};
|
|
132
|
+
Icons.filetext2 = function (props) {
|
|
133
|
+
return React.createElement(Icon, __assign({}, props), "\uE926");
|
|
134
|
+
};
|
|
135
|
+
Icons.filepicture = function (props) {
|
|
136
|
+
return React.createElement(Icon, __assign({}, props), "\uE927");
|
|
137
|
+
};
|
|
138
|
+
Icons.filemusic = function (props) {
|
|
139
|
+
return React.createElement(Icon, __assign({}, props), "\uE928");
|
|
140
|
+
};
|
|
141
|
+
Icons.fileplay = function (props) {
|
|
142
|
+
return React.createElement(Icon, __assign({}, props), "\uE929");
|
|
143
|
+
};
|
|
144
|
+
Icons.filevideo = function (props) {
|
|
145
|
+
return React.createElement(Icon, __assign({}, props), "\uE92A");
|
|
146
|
+
};
|
|
147
|
+
Icons.filezip = function (props) {
|
|
148
|
+
return React.createElement(Icon, __assign({}, props), "\uE92B");
|
|
149
|
+
};
|
|
150
|
+
Icons.copy = function (props) {
|
|
151
|
+
return React.createElement(Icon, __assign({}, props), "\uE92C");
|
|
152
|
+
};
|
|
153
|
+
Icons.paste = function (props) {
|
|
154
|
+
return React.createElement(Icon, __assign({}, props), "\uE92D");
|
|
155
|
+
};
|
|
156
|
+
Icons.stack = function (props) {
|
|
157
|
+
return React.createElement(Icon, __assign({}, props), "\uE92E");
|
|
158
|
+
};
|
|
159
|
+
Icons.folder = function (props) {
|
|
160
|
+
return React.createElement(Icon, __assign({}, props), "\uE92F");
|
|
161
|
+
};
|
|
162
|
+
Icons.folderopen = function (props) {
|
|
163
|
+
return React.createElement(Icon, __assign({}, props), "\uE930");
|
|
164
|
+
};
|
|
165
|
+
Icons.folderplus = function (props) {
|
|
166
|
+
return React.createElement(Icon, __assign({}, props), "\uE931");
|
|
167
|
+
};
|
|
168
|
+
Icons.folderminus = function (props) {
|
|
169
|
+
return React.createElement(Icon, __assign({}, props), "\uE932");
|
|
170
|
+
};
|
|
171
|
+
Icons.folderdownload = function (props) {
|
|
172
|
+
return React.createElement(Icon, __assign({}, props), "\uE933");
|
|
173
|
+
};
|
|
174
|
+
Icons.folderupload = function (props) {
|
|
175
|
+
return React.createElement(Icon, __assign({}, props), "\uE934");
|
|
176
|
+
};
|
|
177
|
+
Icons.pricetag = function (props) {
|
|
178
|
+
return React.createElement(Icon, __assign({}, props), "\uE935");
|
|
179
|
+
};
|
|
180
|
+
Icons.pricetags = function (props) {
|
|
181
|
+
return React.createElement(Icon, __assign({}, props), "\uE936");
|
|
182
|
+
};
|
|
183
|
+
Icons.barcode = function (props) {
|
|
184
|
+
return React.createElement(Icon, __assign({}, props), "\uE937");
|
|
185
|
+
};
|
|
186
|
+
Icons.qrcode = function (props) {
|
|
187
|
+
return React.createElement(Icon, __assign({}, props), "\uE938");
|
|
188
|
+
};
|
|
189
|
+
Icons.ticket = function (props) {
|
|
190
|
+
return React.createElement(Icon, __assign({}, props), "\uE939");
|
|
191
|
+
};
|
|
192
|
+
Icons.cart = function (props) {
|
|
193
|
+
return React.createElement(Icon, __assign({}, props), "\uE93A");
|
|
194
|
+
};
|
|
195
|
+
Icons.coindollar = function (props) {
|
|
196
|
+
return React.createElement(Icon, __assign({}, props), "\uE93B");
|
|
197
|
+
};
|
|
198
|
+
Icons.coineuro = function (props) {
|
|
199
|
+
return React.createElement(Icon, __assign({}, props), "\uE93C");
|
|
200
|
+
};
|
|
201
|
+
Icons.coinpound = function (props) {
|
|
202
|
+
return React.createElement(Icon, __assign({}, props), "\uE93D");
|
|
203
|
+
};
|
|
204
|
+
Icons.coinyen = function (props) {
|
|
205
|
+
return React.createElement(Icon, __assign({}, props), "\uE93E");
|
|
206
|
+
};
|
|
207
|
+
Icons.creditcard = function (props) {
|
|
208
|
+
return React.createElement(Icon, __assign({}, props), "\uE93F");
|
|
209
|
+
};
|
|
210
|
+
Icons.calculator = function (props) {
|
|
211
|
+
return React.createElement(Icon, __assign({}, props), "\uE940");
|
|
212
|
+
};
|
|
213
|
+
Icons.lifebuoy = function (props) {
|
|
214
|
+
return React.createElement(Icon, __assign({}, props), "\uE941");
|
|
215
|
+
};
|
|
216
|
+
Icons.phone = function (props) {
|
|
217
|
+
return React.createElement(Icon, __assign({}, props), "\uE942");
|
|
218
|
+
};
|
|
219
|
+
Icons.phonehangup = function (props) {
|
|
220
|
+
return React.createElement(Icon, __assign({}, props), "\uE943");
|
|
221
|
+
};
|
|
222
|
+
Icons.addressbook = function (props) {
|
|
223
|
+
return React.createElement(Icon, __assign({}, props), "\uE944");
|
|
224
|
+
};
|
|
225
|
+
Icons.envelop = function (props) {
|
|
226
|
+
return React.createElement(Icon, __assign({}, props), "\uE945");
|
|
227
|
+
};
|
|
228
|
+
Icons.pushpin = function (props) {
|
|
229
|
+
return React.createElement(Icon, __assign({}, props), "\uE946");
|
|
230
|
+
};
|
|
231
|
+
Icons.location = function (props) {
|
|
232
|
+
return React.createElement(Icon, __assign({}, props), "\uE947");
|
|
233
|
+
};
|
|
234
|
+
Icons.location2 = function (props) {
|
|
235
|
+
return React.createElement(Icon, __assign({}, props), "\uE948");
|
|
236
|
+
};
|
|
237
|
+
Icons.compass = function (props) {
|
|
238
|
+
return React.createElement(Icon, __assign({}, props), "\uE949");
|
|
239
|
+
};
|
|
240
|
+
Icons.compass2 = function (props) {
|
|
241
|
+
return React.createElement(Icon, __assign({}, props), "\uE94A");
|
|
242
|
+
};
|
|
243
|
+
Icons.map = function (props) {
|
|
244
|
+
return React.createElement(Icon, __assign({}, props), "\uE94B");
|
|
245
|
+
};
|
|
246
|
+
Icons.map2 = function (props) {
|
|
247
|
+
return React.createElement(Icon, __assign({}, props), "\uE94C");
|
|
248
|
+
};
|
|
249
|
+
Icons.history = function (props) {
|
|
250
|
+
return React.createElement(Icon, __assign({}, props), "\uE94D");
|
|
251
|
+
};
|
|
252
|
+
Icons.clock = function (props) {
|
|
253
|
+
return React.createElement(Icon, __assign({}, props), "\uE94E");
|
|
254
|
+
};
|
|
255
|
+
Icons.clock2 = function (props) {
|
|
256
|
+
return React.createElement(Icon, __assign({}, props), "\uE94F");
|
|
257
|
+
};
|
|
258
|
+
Icons.alarm = function (props) {
|
|
259
|
+
return React.createElement(Icon, __assign({}, props), "\uE950");
|
|
260
|
+
};
|
|
261
|
+
Icons.bell = function (props) {
|
|
262
|
+
return React.createElement(Icon, __assign({}, props), "\uE951");
|
|
263
|
+
};
|
|
264
|
+
Icons.stopwatch = function (props) {
|
|
265
|
+
return React.createElement(Icon, __assign({}, props), "\uE952");
|
|
266
|
+
};
|
|
267
|
+
Icons.calendar = function (props) {
|
|
268
|
+
return React.createElement(Icon, __assign({}, props), "\uE953");
|
|
269
|
+
};
|
|
270
|
+
Icons.printer = function (props) {
|
|
271
|
+
return React.createElement(Icon, __assign({}, props), "\uE954");
|
|
272
|
+
};
|
|
273
|
+
Icons.keyboard = function (props) {
|
|
274
|
+
return React.createElement(Icon, __assign({}, props), "\uE955");
|
|
275
|
+
};
|
|
276
|
+
Icons.display = function (props) {
|
|
277
|
+
return React.createElement(Icon, __assign({}, props), "\uE956");
|
|
278
|
+
};
|
|
279
|
+
Icons.laptop = function (props) {
|
|
280
|
+
return React.createElement(Icon, __assign({}, props), "\uE957");
|
|
281
|
+
};
|
|
282
|
+
Icons.mobile = function (props) {
|
|
283
|
+
return React.createElement(Icon, __assign({}, props), "\uE958");
|
|
284
|
+
};
|
|
285
|
+
Icons.mobile2 = function (props) {
|
|
286
|
+
return React.createElement(Icon, __assign({}, props), "\uE959");
|
|
287
|
+
};
|
|
288
|
+
Icons.tablet = function (props) {
|
|
289
|
+
return React.createElement(Icon, __assign({}, props), "\uE95A");
|
|
290
|
+
};
|
|
291
|
+
Icons.tv = function (props) {
|
|
292
|
+
return React.createElement(Icon, __assign({}, props), "\uE95B");
|
|
293
|
+
};
|
|
294
|
+
Icons.drawer = function (props) {
|
|
295
|
+
return React.createElement(Icon, __assign({}, props), "\uE95C");
|
|
296
|
+
};
|
|
297
|
+
Icons.drawer2 = function (props) {
|
|
298
|
+
return React.createElement(Icon, __assign({}, props), "\uE95D");
|
|
299
|
+
};
|
|
300
|
+
Icons.boxadd = function (props) {
|
|
301
|
+
return React.createElement(Icon, __assign({}, props), "\uE95E");
|
|
302
|
+
};
|
|
303
|
+
Icons.boxremove = function (props) {
|
|
304
|
+
return React.createElement(Icon, __assign({}, props), "\uE95F");
|
|
305
|
+
};
|
|
306
|
+
Icons.download = function (props) {
|
|
307
|
+
return React.createElement(Icon, __assign({}, props), "\uE960");
|
|
308
|
+
};
|
|
309
|
+
Icons.upload = function (props) {
|
|
310
|
+
return React.createElement(Icon, __assign({}, props), "\uE961");
|
|
311
|
+
};
|
|
312
|
+
Icons.floppydisk = function (props) {
|
|
313
|
+
return React.createElement(Icon, __assign({}, props), "\uE962");
|
|
314
|
+
};
|
|
315
|
+
Icons.drive = function (props) {
|
|
316
|
+
return React.createElement(Icon, __assign({}, props), "\uE963");
|
|
317
|
+
};
|
|
318
|
+
Icons.database = function (props) {
|
|
319
|
+
return React.createElement(Icon, __assign({}, props), "\uE964");
|
|
320
|
+
};
|
|
321
|
+
Icons.undo = function (props) {
|
|
322
|
+
return React.createElement(Icon, __assign({}, props), "\uE965");
|
|
323
|
+
};
|
|
324
|
+
Icons.redo = function (props) {
|
|
325
|
+
return React.createElement(Icon, __assign({}, props), "\uE966");
|
|
326
|
+
};
|
|
327
|
+
Icons.undo2 = function (props) {
|
|
328
|
+
return React.createElement(Icon, __assign({}, props), "\uE967");
|
|
329
|
+
};
|
|
330
|
+
Icons.redo2 = function (props) {
|
|
331
|
+
return React.createElement(Icon, __assign({}, props), "\uE968");
|
|
332
|
+
};
|
|
333
|
+
Icons.forward = function (props) {
|
|
334
|
+
return React.createElement(Icon, __assign({}, props), "\uE969");
|
|
335
|
+
};
|
|
336
|
+
Icons.reply = function (props) {
|
|
337
|
+
return React.createElement(Icon, __assign({}, props), "\uE96A");
|
|
338
|
+
};
|
|
339
|
+
Icons.bubble = function (props) {
|
|
340
|
+
return React.createElement(Icon, __assign({}, props), "\uE96B");
|
|
341
|
+
};
|
|
342
|
+
Icons.bubbles = function (props) {
|
|
343
|
+
return React.createElement(Icon, __assign({}, props), "\uE96C");
|
|
344
|
+
};
|
|
345
|
+
Icons.bubbles2 = function (props) {
|
|
346
|
+
return React.createElement(Icon, __assign({}, props), "\uE96D");
|
|
347
|
+
};
|
|
348
|
+
Icons.bubble2 = function (props) {
|
|
349
|
+
return React.createElement(Icon, __assign({}, props), "\uE96E");
|
|
350
|
+
};
|
|
351
|
+
Icons.bubbles3 = function (props) {
|
|
352
|
+
return React.createElement(Icon, __assign({}, props), "\uE96F");
|
|
353
|
+
};
|
|
354
|
+
Icons.bubbles4 = function (props) {
|
|
355
|
+
return React.createElement(Icon, __assign({}, props), "\uE970");
|
|
356
|
+
};
|
|
357
|
+
Icons.user = function (props) {
|
|
358
|
+
return React.createElement(Icon, __assign({}, props), "\uE971");
|
|
359
|
+
};
|
|
360
|
+
Icons.users = function (props) {
|
|
361
|
+
return React.createElement(Icon, __assign({}, props), "\uE972");
|
|
362
|
+
};
|
|
363
|
+
Icons.userplus = function (props) {
|
|
364
|
+
return React.createElement(Icon, __assign({}, props), "\uE973");
|
|
365
|
+
};
|
|
366
|
+
Icons.userminus = function (props) {
|
|
367
|
+
return React.createElement(Icon, __assign({}, props), "\uE974");
|
|
368
|
+
};
|
|
369
|
+
Icons.usercheck = function (props) {
|
|
370
|
+
return React.createElement(Icon, __assign({}, props), "\uE975");
|
|
371
|
+
};
|
|
372
|
+
Icons.usertie = function (props) {
|
|
373
|
+
return React.createElement(Icon, __assign({}, props), "\uE976");
|
|
374
|
+
};
|
|
375
|
+
Icons.quotesleft = function (props) {
|
|
376
|
+
return React.createElement(Icon, __assign({}, props), "\uE977");
|
|
377
|
+
};
|
|
378
|
+
Icons.quotesright = function (props) {
|
|
379
|
+
return React.createElement(Icon, __assign({}, props), "\uE978");
|
|
380
|
+
};
|
|
381
|
+
Icons.hourglass = function (props) {
|
|
382
|
+
return React.createElement(Icon, __assign({}, props), "\uE979");
|
|
383
|
+
};
|
|
384
|
+
Icons.spinner = function (props) {
|
|
385
|
+
return React.createElement(Icon, __assign({}, props), "\uE97A");
|
|
386
|
+
};
|
|
387
|
+
Icons.spinner2 = function (props) {
|
|
388
|
+
return React.createElement(Icon, __assign({}, props), "\uE97B");
|
|
389
|
+
};
|
|
390
|
+
Icons.spinner3 = function (props) {
|
|
391
|
+
return React.createElement(Icon, __assign({}, props), "\uE97C");
|
|
392
|
+
};
|
|
393
|
+
Icons.spinner4 = function (props) {
|
|
394
|
+
return React.createElement(Icon, __assign({}, props), "\uE97D");
|
|
395
|
+
};
|
|
396
|
+
Icons.spinner5 = function (props) {
|
|
397
|
+
return React.createElement(Icon, __assign({}, props), "\uE97E");
|
|
398
|
+
};
|
|
399
|
+
Icons.spinner6 = function (props) {
|
|
400
|
+
return React.createElement(Icon, __assign({}, props), "\uE97F");
|
|
401
|
+
};
|
|
402
|
+
Icons.spinner7 = function (props) {
|
|
403
|
+
return React.createElement(Icon, __assign({}, props), "\uE980");
|
|
404
|
+
};
|
|
405
|
+
Icons.spinner8 = function (props) {
|
|
406
|
+
return React.createElement(Icon, __assign({}, props), "\uE981");
|
|
407
|
+
};
|
|
408
|
+
Icons.spinner9 = function (props) {
|
|
409
|
+
return React.createElement(Icon, __assign({}, props), "\uE982");
|
|
410
|
+
};
|
|
411
|
+
Icons.spinner10 = function (props) {
|
|
412
|
+
return React.createElement(Icon, __assign({}, props), "\uE983");
|
|
413
|
+
};
|
|
414
|
+
Icons.spinner11 = function (props) {
|
|
415
|
+
return React.createElement(Icon, __assign({}, props), "\uE984");
|
|
416
|
+
};
|
|
417
|
+
Icons.binoculars = function (props) {
|
|
418
|
+
return React.createElement(Icon, __assign({}, props), "\uE985");
|
|
419
|
+
};
|
|
420
|
+
Icons.search = function (props) {
|
|
421
|
+
return React.createElement(Icon, __assign({}, props), "\uE986");
|
|
422
|
+
};
|
|
423
|
+
Icons.zoomin = function (props) {
|
|
424
|
+
return React.createElement(Icon, __assign({}, props), "\uE987");
|
|
425
|
+
};
|
|
426
|
+
Icons.zoomout = function (props) {
|
|
427
|
+
return React.createElement(Icon, __assign({}, props), "\uE988");
|
|
428
|
+
};
|
|
429
|
+
Icons.enlarge = function (props) {
|
|
430
|
+
return React.createElement(Icon, __assign({}, props), "\uE989");
|
|
431
|
+
};
|
|
432
|
+
Icons.shrink = function (props) {
|
|
433
|
+
return React.createElement(Icon, __assign({}, props), "\uE98A");
|
|
434
|
+
};
|
|
435
|
+
Icons.enlarge2 = function (props) {
|
|
436
|
+
return React.createElement(Icon, __assign({}, props), "\uE98B");
|
|
437
|
+
};
|
|
438
|
+
Icons.shrink2 = function (props) {
|
|
439
|
+
return React.createElement(Icon, __assign({}, props), "\uE98C");
|
|
440
|
+
};
|
|
441
|
+
Icons.key = function (props) {
|
|
442
|
+
return React.createElement(Icon, __assign({}, props), "\uE98D");
|
|
443
|
+
};
|
|
444
|
+
Icons.key2 = function (props) {
|
|
445
|
+
return React.createElement(Icon, __assign({}, props), "\uE98E");
|
|
446
|
+
};
|
|
447
|
+
Icons.lock = function (props) {
|
|
448
|
+
return React.createElement(Icon, __assign({}, props), "\uE98F");
|
|
449
|
+
};
|
|
450
|
+
Icons.unlocked = function (props) {
|
|
451
|
+
return React.createElement(Icon, __assign({}, props), "\uE990");
|
|
452
|
+
};
|
|
453
|
+
Icons.wrench = function (props) {
|
|
454
|
+
return React.createElement(Icon, __assign({}, props), "\uE991");
|
|
455
|
+
};
|
|
456
|
+
Icons.equalizer = function (props) {
|
|
457
|
+
return React.createElement(Icon, __assign({}, props), "\uE992");
|
|
458
|
+
};
|
|
459
|
+
Icons.equalizer2 = function (props) {
|
|
460
|
+
return React.createElement(Icon, __assign({}, props), "\uE993");
|
|
461
|
+
};
|
|
462
|
+
Icons.cog = function (props) {
|
|
463
|
+
return React.createElement(Icon, __assign({}, props), "\uE994");
|
|
464
|
+
};
|
|
465
|
+
Icons.cogs = function (props) {
|
|
466
|
+
return React.createElement(Icon, __assign({}, props), "\uE995");
|
|
467
|
+
};
|
|
468
|
+
Icons.hammer = function (props) {
|
|
469
|
+
return React.createElement(Icon, __assign({}, props), "\uE996");
|
|
470
|
+
};
|
|
471
|
+
Icons.magicwand = function (props) {
|
|
472
|
+
return React.createElement(Icon, __assign({}, props), "\uE997");
|
|
473
|
+
};
|
|
474
|
+
Icons.aidkit = function (props) {
|
|
475
|
+
return React.createElement(Icon, __assign({}, props), "\uE998");
|
|
476
|
+
};
|
|
477
|
+
Icons.bug = function (props) {
|
|
478
|
+
return React.createElement(Icon, __assign({}, props), "\uE999");
|
|
479
|
+
};
|
|
480
|
+
Icons.piechart = function (props) {
|
|
481
|
+
return React.createElement(Icon, __assign({}, props), "\uE99A");
|
|
482
|
+
};
|
|
483
|
+
Icons.statsdots = function (props) {
|
|
484
|
+
return React.createElement(Icon, __assign({}, props), "\uE99B");
|
|
485
|
+
};
|
|
486
|
+
Icons.statsbars = function (props) {
|
|
487
|
+
return React.createElement(Icon, __assign({}, props), "\uE99C");
|
|
488
|
+
};
|
|
489
|
+
Icons.statsbars2 = function (props) {
|
|
490
|
+
return React.createElement(Icon, __assign({}, props), "\uE99D");
|
|
491
|
+
};
|
|
492
|
+
Icons.trophy = function (props) {
|
|
493
|
+
return React.createElement(Icon, __assign({}, props), "\uE99E");
|
|
494
|
+
};
|
|
495
|
+
Icons.gift = function (props) {
|
|
496
|
+
return React.createElement(Icon, __assign({}, props), "\uE99F");
|
|
497
|
+
};
|
|
498
|
+
Icons.glass = function (props) {
|
|
499
|
+
return React.createElement(Icon, __assign({}, props), "\uE9A0");
|
|
500
|
+
};
|
|
501
|
+
Icons.glass2 = function (props) {
|
|
502
|
+
return React.createElement(Icon, __assign({}, props), "\uE9A1");
|
|
503
|
+
};
|
|
504
|
+
Icons.mug = function (props) {
|
|
505
|
+
return React.createElement(Icon, __assign({}, props), "\uE9A2");
|
|
506
|
+
};
|
|
507
|
+
Icons.spoonknife = function (props) {
|
|
508
|
+
return React.createElement(Icon, __assign({}, props), "\uE9A3");
|
|
509
|
+
};
|
|
510
|
+
Icons.leaf = function (props) {
|
|
511
|
+
return React.createElement(Icon, __assign({}, props), "\uE9A4");
|
|
512
|
+
};
|
|
513
|
+
Icons.rocket = function (props) {
|
|
514
|
+
return React.createElement(Icon, __assign({}, props), "\uE9A5");
|
|
515
|
+
};
|
|
516
|
+
Icons.meter = function (props) {
|
|
517
|
+
return React.createElement(Icon, __assign({}, props), "\uE9A6");
|
|
518
|
+
};
|
|
519
|
+
Icons.meter2 = function (props) {
|
|
520
|
+
return React.createElement(Icon, __assign({}, props), "\uE9A7");
|
|
521
|
+
};
|
|
522
|
+
Icons.hammer2 = function (props) {
|
|
523
|
+
return React.createElement(Icon, __assign({}, props), "\uE9A8");
|
|
524
|
+
};
|
|
525
|
+
Icons.fire = function (props) {
|
|
526
|
+
return React.createElement(Icon, __assign({}, props), "\uE9A9");
|
|
527
|
+
};
|
|
528
|
+
Icons.lab = function (props) {
|
|
529
|
+
return React.createElement(Icon, __assign({}, props), "\uE9AA");
|
|
530
|
+
};
|
|
531
|
+
Icons.magnet = function (props) {
|
|
532
|
+
return React.createElement(Icon, __assign({}, props), "\uE9AB");
|
|
533
|
+
};
|
|
534
|
+
Icons.bin = function (props) {
|
|
535
|
+
return React.createElement(Icon, __assign({}, props), "\uE9AC");
|
|
536
|
+
};
|
|
537
|
+
Icons.bin2 = function (props) {
|
|
538
|
+
return React.createElement(Icon, __assign({}, props), "\uE9AD");
|
|
539
|
+
};
|
|
540
|
+
Icons.briefcase = function (props) {
|
|
541
|
+
return React.createElement(Icon, __assign({}, props), "\uE9AE");
|
|
542
|
+
};
|
|
543
|
+
Icons.airplane = function (props) {
|
|
544
|
+
return React.createElement(Icon, __assign({}, props), "\uE9AF");
|
|
545
|
+
};
|
|
546
|
+
Icons.truck = function (props) {
|
|
547
|
+
return React.createElement(Icon, __assign({}, props), "\uE9B0");
|
|
548
|
+
};
|
|
549
|
+
Icons.road = function (props) {
|
|
550
|
+
return React.createElement(Icon, __assign({}, props), "\uE9B1");
|
|
551
|
+
};
|
|
552
|
+
Icons.accessibility = function (props) {
|
|
553
|
+
return React.createElement(Icon, __assign({}, props), "\uE9B2");
|
|
554
|
+
};
|
|
555
|
+
Icons.target = function (props) {
|
|
556
|
+
return React.createElement(Icon, __assign({}, props), "\uE9B3");
|
|
557
|
+
};
|
|
558
|
+
Icons.shield = function (props) {
|
|
559
|
+
return React.createElement(Icon, __assign({}, props), "\uE9B4");
|
|
560
|
+
};
|
|
561
|
+
Icons.power = function (props) {
|
|
562
|
+
return React.createElement(Icon, __assign({}, props), "\uE9B5");
|
|
563
|
+
};
|
|
564
|
+
Icons.cswitch = function (props) {
|
|
565
|
+
return React.createElement(Icon, __assign({}, props), "\uE9B6");
|
|
566
|
+
};
|
|
567
|
+
Icons.powercord = function (props) {
|
|
568
|
+
return React.createElement(Icon, __assign({}, props), "\uE9B7");
|
|
569
|
+
};
|
|
570
|
+
Icons.clipboard = function (props) {
|
|
571
|
+
return React.createElement(Icon, __assign({}, props), "\uE9B8");
|
|
572
|
+
};
|
|
573
|
+
Icons.listnumbered = function (props) {
|
|
574
|
+
return React.createElement(Icon, __assign({}, props), "\uE9B9");
|
|
575
|
+
};
|
|
576
|
+
Icons.list = function (props) {
|
|
577
|
+
return React.createElement(Icon, __assign({}, props), "\uE9BA");
|
|
578
|
+
};
|
|
579
|
+
Icons.list2 = function (props) {
|
|
580
|
+
return React.createElement(Icon, __assign({}, props), "\uE9BB");
|
|
581
|
+
};
|
|
582
|
+
Icons.tree = function (props) {
|
|
583
|
+
return React.createElement(Icon, __assign({}, props), "\uE9BC");
|
|
584
|
+
};
|
|
585
|
+
Icons.menu = function (props) {
|
|
586
|
+
return React.createElement(Icon, __assign({}, props), "\uE9BD");
|
|
587
|
+
};
|
|
588
|
+
Icons.menu2 = function (props) {
|
|
589
|
+
return React.createElement(Icon, __assign({}, props), "\uE9BE");
|
|
590
|
+
};
|
|
591
|
+
Icons.menu3 = function (props) {
|
|
592
|
+
return React.createElement(Icon, __assign({}, props), "\uE9BF");
|
|
593
|
+
};
|
|
594
|
+
Icons.menu4 = function (props) {
|
|
595
|
+
return React.createElement(Icon, __assign({}, props), "\uE9C0");
|
|
596
|
+
};
|
|
597
|
+
Icons.cloud = function (props) {
|
|
598
|
+
return React.createElement(Icon, __assign({}, props), "\uE9C1");
|
|
599
|
+
};
|
|
600
|
+
Icons.clouddownload = function (props) {
|
|
601
|
+
return React.createElement(Icon, __assign({}, props), "\uE9C2");
|
|
602
|
+
};
|
|
603
|
+
Icons.cloudupload = function (props) {
|
|
604
|
+
return React.createElement(Icon, __assign({}, props), "\uE9C3");
|
|
605
|
+
};
|
|
606
|
+
Icons.cloudcheck = function (props) {
|
|
607
|
+
return React.createElement(Icon, __assign({}, props), "\uE9C4");
|
|
608
|
+
};
|
|
609
|
+
Icons.download2 = function (props) {
|
|
610
|
+
return React.createElement(Icon, __assign({}, props), "\uE9C5");
|
|
611
|
+
};
|
|
612
|
+
Icons.upload2 = function (props) {
|
|
613
|
+
return React.createElement(Icon, __assign({}, props), "\uE9C6");
|
|
614
|
+
};
|
|
615
|
+
Icons.download3 = function (props) {
|
|
616
|
+
return React.createElement(Icon, __assign({}, props), "\uE9C7");
|
|
617
|
+
};
|
|
618
|
+
Icons.upload3 = function (props) {
|
|
619
|
+
return React.createElement(Icon, __assign({}, props), "\uE9C8");
|
|
620
|
+
};
|
|
621
|
+
Icons.sphere = function (props) {
|
|
622
|
+
return React.createElement(Icon, __assign({}, props), "\uE9C9");
|
|
623
|
+
};
|
|
624
|
+
Icons.earth = function (props) {
|
|
625
|
+
return React.createElement(Icon, __assign({}, props), "\uE9CA");
|
|
626
|
+
};
|
|
627
|
+
Icons.link = function (props) {
|
|
628
|
+
return React.createElement(Icon, __assign({}, props), "\uE9CB");
|
|
629
|
+
};
|
|
630
|
+
Icons.flag = function (props) {
|
|
631
|
+
return React.createElement(Icon, __assign({}, props), "\uE9CC");
|
|
632
|
+
};
|
|
633
|
+
Icons.attachment = function (props) {
|
|
634
|
+
return React.createElement(Icon, __assign({}, props), "\uE9CD");
|
|
635
|
+
};
|
|
636
|
+
Icons.eye = function (props) {
|
|
637
|
+
return React.createElement(Icon, __assign({}, props), "\uE9CE");
|
|
638
|
+
};
|
|
639
|
+
Icons.eyeplus = function (props) {
|
|
640
|
+
return React.createElement(Icon, __assign({}, props), "\uE9CF");
|
|
641
|
+
};
|
|
642
|
+
Icons.eyeminus = function (props) {
|
|
643
|
+
return React.createElement(Icon, __assign({}, props), "\uE9D0");
|
|
644
|
+
};
|
|
645
|
+
Icons.eyeblocked = function (props) {
|
|
646
|
+
return React.createElement(Icon, __assign({}, props), "\uE9D1");
|
|
647
|
+
};
|
|
648
|
+
Icons.bookmark = function (props) {
|
|
649
|
+
return React.createElement(Icon, __assign({}, props), "\uE9D2");
|
|
650
|
+
};
|
|
651
|
+
Icons.bookmarks = function (props) {
|
|
652
|
+
return React.createElement(Icon, __assign({}, props), "\uE9D3");
|
|
653
|
+
};
|
|
654
|
+
Icons.sun = function (props) {
|
|
655
|
+
return React.createElement(Icon, __assign({}, props), "\uE9D4");
|
|
656
|
+
};
|
|
657
|
+
Icons.contrast = function (props) {
|
|
658
|
+
return React.createElement(Icon, __assign({}, props), "\uE9D5");
|
|
659
|
+
};
|
|
660
|
+
Icons.brightnesscontrast = function (props) {
|
|
661
|
+
return React.createElement(Icon, __assign({}, props), "\uE9D6");
|
|
662
|
+
};
|
|
663
|
+
Icons.starempty = function (props) {
|
|
664
|
+
return React.createElement(Icon, __assign({}, props), "\uE9D7");
|
|
665
|
+
};
|
|
666
|
+
Icons.starhalf = function (props) {
|
|
667
|
+
return React.createElement(Icon, __assign({}, props), "\uE9D8");
|
|
668
|
+
};
|
|
669
|
+
Icons.starfull = function (props) {
|
|
670
|
+
return React.createElement(Icon, __assign({}, props), "\uE9D9");
|
|
671
|
+
};
|
|
672
|
+
Icons.heart = function (props) {
|
|
673
|
+
return React.createElement(Icon, __assign({}, props), "\uE9DA");
|
|
674
|
+
};
|
|
675
|
+
Icons.heartbroken = function (props) {
|
|
676
|
+
return React.createElement(Icon, __assign({}, props), "\uE9DB");
|
|
677
|
+
};
|
|
678
|
+
Icons.man = function (props) {
|
|
679
|
+
return React.createElement(Icon, __assign({}, props), "\uE9DC");
|
|
680
|
+
};
|
|
681
|
+
Icons.woman = function (props) {
|
|
682
|
+
return React.createElement(Icon, __assign({}, props), "\uE9DD");
|
|
683
|
+
};
|
|
684
|
+
Icons.manwoman = function (props) {
|
|
685
|
+
return React.createElement(Icon, __assign({}, props), "\uE9DE");
|
|
686
|
+
};
|
|
687
|
+
Icons.happy = function (props) {
|
|
688
|
+
return React.createElement(Icon, __assign({}, props), "\uE9DF");
|
|
689
|
+
};
|
|
690
|
+
Icons.happy2 = function (props) {
|
|
691
|
+
return React.createElement(Icon, __assign({}, props), "\uE9E0");
|
|
692
|
+
};
|
|
693
|
+
Icons.smile = function (props) {
|
|
694
|
+
return React.createElement(Icon, __assign({}, props), "\uE9E1");
|
|
695
|
+
};
|
|
696
|
+
Icons.smile2 = function (props) {
|
|
697
|
+
return React.createElement(Icon, __assign({}, props), "\uE9E2");
|
|
698
|
+
};
|
|
699
|
+
Icons.tongue = function (props) {
|
|
700
|
+
return React.createElement(Icon, __assign({}, props), "\uE9E3");
|
|
701
|
+
};
|
|
702
|
+
Icons.tongue2 = function (props) {
|
|
703
|
+
return React.createElement(Icon, __assign({}, props), "\uE9E4");
|
|
704
|
+
};
|
|
705
|
+
Icons.sad = function (props) {
|
|
706
|
+
return React.createElement(Icon, __assign({}, props), "\uE9E5");
|
|
707
|
+
};
|
|
708
|
+
Icons.sad2 = function (props) {
|
|
709
|
+
return React.createElement(Icon, __assign({}, props), "\uE9E6");
|
|
710
|
+
};
|
|
711
|
+
Icons.wink = function (props) {
|
|
712
|
+
return React.createElement(Icon, __assign({}, props), "\uE9E7");
|
|
713
|
+
};
|
|
714
|
+
Icons.wink2 = function (props) {
|
|
715
|
+
return React.createElement(Icon, __assign({}, props), "\uE9E8");
|
|
716
|
+
};
|
|
717
|
+
Icons.grin = function (props) {
|
|
718
|
+
return React.createElement(Icon, __assign({}, props), "\uE9E9");
|
|
719
|
+
};
|
|
720
|
+
Icons.grin2 = function (props) {
|
|
721
|
+
return React.createElement(Icon, __assign({}, props), "\uE9EA");
|
|
722
|
+
};
|
|
723
|
+
Icons.cool = function (props) {
|
|
724
|
+
return React.createElement(Icon, __assign({}, props), "\uE9EB");
|
|
725
|
+
};
|
|
726
|
+
Icons.cool2 = function (props) {
|
|
727
|
+
return React.createElement(Icon, __assign({}, props), "\uE9EC");
|
|
728
|
+
};
|
|
729
|
+
Icons.angry = function (props) {
|
|
730
|
+
return React.createElement(Icon, __assign({}, props), "\uE9ED");
|
|
731
|
+
};
|
|
732
|
+
Icons.angry2 = function (props) {
|
|
733
|
+
return React.createElement(Icon, __assign({}, props), "\uE9EE");
|
|
734
|
+
};
|
|
735
|
+
Icons.evil = function (props) {
|
|
736
|
+
return React.createElement(Icon, __assign({}, props), "\uE9EF");
|
|
737
|
+
};
|
|
738
|
+
Icons.evil2 = function (props) {
|
|
739
|
+
return React.createElement(Icon, __assign({}, props), "\uE9F0");
|
|
740
|
+
};
|
|
741
|
+
Icons.shocked = function (props) {
|
|
742
|
+
return React.createElement(Icon, __assign({}, props), "\uE9F1");
|
|
743
|
+
};
|
|
744
|
+
Icons.shocked2 = function (props) {
|
|
745
|
+
return React.createElement(Icon, __assign({}, props), "\uE9F2");
|
|
746
|
+
};
|
|
747
|
+
Icons.baffled = function (props) {
|
|
748
|
+
return React.createElement(Icon, __assign({}, props), "\uE9F3");
|
|
749
|
+
};
|
|
750
|
+
Icons.baffled2 = function (props) {
|
|
751
|
+
return React.createElement(Icon, __assign({}, props), "\uE9F4");
|
|
752
|
+
};
|
|
753
|
+
Icons.confused = function (props) {
|
|
754
|
+
return React.createElement(Icon, __assign({}, props), "\uE9F5");
|
|
755
|
+
};
|
|
756
|
+
Icons.confused2 = function (props) {
|
|
757
|
+
return React.createElement(Icon, __assign({}, props), "\uE9F6");
|
|
758
|
+
};
|
|
759
|
+
Icons.neutral = function (props) {
|
|
760
|
+
return React.createElement(Icon, __assign({}, props), "\uE9F7");
|
|
761
|
+
};
|
|
762
|
+
Icons.neutral2 = function (props) {
|
|
763
|
+
return React.createElement(Icon, __assign({}, props), "\uE9F8");
|
|
764
|
+
};
|
|
765
|
+
Icons.hipster = function (props) {
|
|
766
|
+
return React.createElement(Icon, __assign({}, props), "\uE9F9");
|
|
767
|
+
};
|
|
768
|
+
Icons.hipster2 = function (props) {
|
|
769
|
+
return React.createElement(Icon, __assign({}, props), "\uE9FA");
|
|
770
|
+
};
|
|
771
|
+
Icons.wondering = function (props) {
|
|
772
|
+
return React.createElement(Icon, __assign({}, props), "\uE9FB");
|
|
773
|
+
};
|
|
774
|
+
Icons.wondering2 = function (props) {
|
|
775
|
+
return React.createElement(Icon, __assign({}, props), "\uE9FC");
|
|
776
|
+
};
|
|
777
|
+
Icons.sleepy = function (props) {
|
|
778
|
+
return React.createElement(Icon, __assign({}, props), "\uE9FD");
|
|
779
|
+
};
|
|
780
|
+
Icons.sleepy2 = function (props) {
|
|
781
|
+
return React.createElement(Icon, __assign({}, props), "\uE9FE");
|
|
782
|
+
};
|
|
783
|
+
Icons.frustrated = function (props) {
|
|
784
|
+
return React.createElement(Icon, __assign({}, props), "\uE9FF");
|
|
785
|
+
};
|
|
786
|
+
Icons.frustrated2 = function (props) {
|
|
787
|
+
return React.createElement(Icon, __assign({}, props), "\uEA00");
|
|
788
|
+
};
|
|
789
|
+
Icons.crying = function (props) {
|
|
790
|
+
return React.createElement(Icon, __assign({}, props), "\uEA01");
|
|
791
|
+
};
|
|
792
|
+
Icons.crying2 = function (props) {
|
|
793
|
+
return React.createElement(Icon, __assign({}, props), "\uEA02");
|
|
794
|
+
};
|
|
795
|
+
Icons.pointup = function (props) {
|
|
796
|
+
return React.createElement(Icon, __assign({}, props), "\uEA03");
|
|
797
|
+
};
|
|
798
|
+
Icons.pointright = function (props) {
|
|
799
|
+
return React.createElement(Icon, __assign({}, props), "\uEA04");
|
|
800
|
+
};
|
|
801
|
+
Icons.pointdown = function (props) {
|
|
802
|
+
return React.createElement(Icon, __assign({}, props), "\uEA05");
|
|
803
|
+
};
|
|
804
|
+
Icons.pointleft = function (props) {
|
|
805
|
+
return React.createElement(Icon, __assign({}, props), "\uEA06");
|
|
806
|
+
};
|
|
807
|
+
Icons.warning = function (props) {
|
|
808
|
+
return React.createElement(Icon, __assign({}, props), "\uEA07");
|
|
809
|
+
};
|
|
810
|
+
Icons.notification = function (props) {
|
|
811
|
+
return React.createElement(Icon, __assign({}, props), "\uEA08");
|
|
812
|
+
};
|
|
813
|
+
Icons.question = function (props) {
|
|
814
|
+
return React.createElement(Icon, __assign({}, props), "\uEA09");
|
|
815
|
+
};
|
|
816
|
+
Icons.plus = function (props) {
|
|
817
|
+
return React.createElement(Icon, __assign({}, props), "\uEA0A");
|
|
818
|
+
};
|
|
819
|
+
Icons.minus = function (props) {
|
|
820
|
+
return React.createElement(Icon, __assign({}, props), "\uEA0B");
|
|
821
|
+
};
|
|
822
|
+
Icons.info = function (props) {
|
|
823
|
+
return React.createElement(Icon, __assign({}, props), "\uEA0C");
|
|
824
|
+
};
|
|
825
|
+
Icons.cancelcircle = function (props) {
|
|
826
|
+
return React.createElement(Icon, __assign({}, props), "\uEA0D");
|
|
827
|
+
};
|
|
828
|
+
Icons.blocked = function (props) {
|
|
829
|
+
return React.createElement(Icon, __assign({}, props), "\uEA0E");
|
|
830
|
+
};
|
|
831
|
+
Icons.cross = function (props) {
|
|
832
|
+
return React.createElement(Icon, __assign({}, props), "\uEA0F");
|
|
833
|
+
};
|
|
834
|
+
Icons.checkmark = function (props) {
|
|
835
|
+
return React.createElement(Icon, __assign({}, props), "\uEA10");
|
|
836
|
+
};
|
|
837
|
+
Icons.checkmark2 = function (props) {
|
|
838
|
+
return React.createElement(Icon, __assign({}, props), "\uEA11");
|
|
839
|
+
};
|
|
840
|
+
Icons.spellcheck = function (props) {
|
|
841
|
+
return React.createElement(Icon, __assign({}, props), "\uEA12");
|
|
842
|
+
};
|
|
843
|
+
Icons.enter = function (props) {
|
|
844
|
+
return React.createElement(Icon, __assign({}, props), "\uEA13");
|
|
845
|
+
};
|
|
846
|
+
Icons.exit = function (props) {
|
|
847
|
+
return React.createElement(Icon, __assign({}, props), "\uEA14");
|
|
848
|
+
};
|
|
849
|
+
Icons.play2 = function (props) {
|
|
850
|
+
return React.createElement(Icon, __assign({}, props), "\uEA15");
|
|
851
|
+
};
|
|
852
|
+
Icons.pause = function (props) {
|
|
853
|
+
return React.createElement(Icon, __assign({}, props), "\uEA16");
|
|
854
|
+
};
|
|
855
|
+
Icons.stop = function (props) {
|
|
856
|
+
return React.createElement(Icon, __assign({}, props), "\uEA17");
|
|
857
|
+
};
|
|
858
|
+
Icons.previous = function (props) {
|
|
859
|
+
return React.createElement(Icon, __assign({}, props), "\uEA18");
|
|
860
|
+
};
|
|
861
|
+
Icons.next = function (props) {
|
|
862
|
+
return React.createElement(Icon, __assign({}, props), "\uEA19");
|
|
863
|
+
};
|
|
864
|
+
Icons.backward = function (props) {
|
|
865
|
+
return React.createElement(Icon, __assign({}, props), "\uEA1A");
|
|
866
|
+
};
|
|
867
|
+
Icons.forward2 = function (props) {
|
|
868
|
+
return React.createElement(Icon, __assign({}, props), "\uEA1B");
|
|
869
|
+
};
|
|
870
|
+
Icons.play3 = function (props) {
|
|
871
|
+
return React.createElement(Icon, __assign({}, props), "\uEA1C");
|
|
872
|
+
};
|
|
873
|
+
Icons.pause2 = function (props) {
|
|
874
|
+
return React.createElement(Icon, __assign({}, props), "\uEA1D");
|
|
875
|
+
};
|
|
876
|
+
Icons.stop2 = function (props) {
|
|
877
|
+
return React.createElement(Icon, __assign({}, props), "\uEA1E");
|
|
878
|
+
};
|
|
879
|
+
Icons.backward2 = function (props) {
|
|
880
|
+
return React.createElement(Icon, __assign({}, props), "\uEA1F");
|
|
881
|
+
};
|
|
882
|
+
Icons.forward3 = function (props) {
|
|
883
|
+
return React.createElement(Icon, __assign({}, props), "\uEA20");
|
|
884
|
+
};
|
|
885
|
+
Icons.first = function (props) {
|
|
886
|
+
return React.createElement(Icon, __assign({}, props), "\uEA21");
|
|
887
|
+
};
|
|
888
|
+
Icons.last = function (props) {
|
|
889
|
+
return React.createElement(Icon, __assign({}, props), "\uEA22");
|
|
890
|
+
};
|
|
891
|
+
Icons.previous2 = function (props) {
|
|
892
|
+
return React.createElement(Icon, __assign({}, props), "\uEA23");
|
|
893
|
+
};
|
|
894
|
+
Icons.next2 = function (props) {
|
|
895
|
+
return React.createElement(Icon, __assign({}, props), "\uEA24");
|
|
896
|
+
};
|
|
897
|
+
Icons.eject = function (props) {
|
|
898
|
+
return React.createElement(Icon, __assign({}, props), "\uEA25");
|
|
899
|
+
};
|
|
900
|
+
Icons.volumehigh = function (props) {
|
|
901
|
+
return React.createElement(Icon, __assign({}, props), "\uEA26");
|
|
902
|
+
};
|
|
903
|
+
Icons.volumemedium = function (props) {
|
|
904
|
+
return React.createElement(Icon, __assign({}, props), "\uEA27");
|
|
905
|
+
};
|
|
906
|
+
Icons.volumelow = function (props) {
|
|
907
|
+
return React.createElement(Icon, __assign({}, props), "\uEA28");
|
|
908
|
+
};
|
|
909
|
+
Icons.volumemute = function (props) {
|
|
910
|
+
return React.createElement(Icon, __assign({}, props), "\uEA29");
|
|
911
|
+
};
|
|
912
|
+
Icons.volumemute2 = function (props) {
|
|
913
|
+
return React.createElement(Icon, __assign({}, props), "\uEA2A");
|
|
914
|
+
};
|
|
915
|
+
Icons.volumeincrease = function (props) {
|
|
916
|
+
return React.createElement(Icon, __assign({}, props), "\uEA2B");
|
|
917
|
+
};
|
|
918
|
+
Icons.volumedecrease = function (props) {
|
|
919
|
+
return React.createElement(Icon, __assign({}, props), "\uEA2C");
|
|
920
|
+
};
|
|
921
|
+
Icons.loop = function (props) {
|
|
922
|
+
return React.createElement(Icon, __assign({}, props), "\uEA2D");
|
|
923
|
+
};
|
|
924
|
+
Icons.loop2 = function (props) {
|
|
925
|
+
return React.createElement(Icon, __assign({}, props), "\uEA2E");
|
|
926
|
+
};
|
|
927
|
+
Icons.infinite = function (props) {
|
|
928
|
+
return React.createElement(Icon, __assign({}, props), "\uEA2F");
|
|
929
|
+
};
|
|
930
|
+
Icons.shuffle = function (props) {
|
|
931
|
+
return React.createElement(Icon, __assign({}, props), "\uEA30");
|
|
932
|
+
};
|
|
933
|
+
Icons.arrowupleft = function (props) {
|
|
934
|
+
return React.createElement(Icon, __assign({}, props), "\uEA31");
|
|
935
|
+
};
|
|
936
|
+
Icons.arrowup = function (props) {
|
|
937
|
+
return React.createElement(Icon, __assign({}, props), "\uEA32");
|
|
938
|
+
};
|
|
939
|
+
Icons.arrowupright = function (props) {
|
|
940
|
+
return React.createElement(Icon, __assign({}, props), "\uEA33");
|
|
941
|
+
};
|
|
942
|
+
Icons.arrowright = function (props) {
|
|
943
|
+
return React.createElement(Icon, __assign({}, props), "\uEA34");
|
|
944
|
+
};
|
|
945
|
+
Icons.arrowdownright = function (props) {
|
|
946
|
+
return React.createElement(Icon, __assign({}, props), "\uEA35");
|
|
947
|
+
};
|
|
948
|
+
Icons.arrowdown = function (props) {
|
|
949
|
+
return React.createElement(Icon, __assign({}, props), "\uEA36");
|
|
950
|
+
};
|
|
951
|
+
Icons.arrowdownleft = function (props) {
|
|
952
|
+
return React.createElement(Icon, __assign({}, props), "\uEA37");
|
|
953
|
+
};
|
|
954
|
+
Icons.arrowleft = function (props) {
|
|
955
|
+
return React.createElement(Icon, __assign({}, props), "\uEA38");
|
|
956
|
+
};
|
|
957
|
+
Icons.arrowupleft2 = function (props) {
|
|
958
|
+
return React.createElement(Icon, __assign({}, props), "\uEA39");
|
|
959
|
+
};
|
|
960
|
+
Icons.arrowup2 = function (props) {
|
|
961
|
+
return React.createElement(Icon, __assign({}, props), "\uEA3A");
|
|
962
|
+
};
|
|
963
|
+
Icons.arrowupright2 = function (props) {
|
|
964
|
+
return React.createElement(Icon, __assign({}, props), "\uEA3B");
|
|
965
|
+
};
|
|
966
|
+
Icons.arrowright2 = function (props) {
|
|
967
|
+
return React.createElement(Icon, __assign({}, props), "\uEA3C");
|
|
968
|
+
};
|
|
969
|
+
Icons.arrowdownright2 = function (props) {
|
|
970
|
+
return React.createElement(Icon, __assign({}, props), "\uEA3D");
|
|
971
|
+
};
|
|
972
|
+
Icons.arrowdown2 = function (props) {
|
|
973
|
+
return React.createElement(Icon, __assign({}, props), "\uEA3E");
|
|
974
|
+
};
|
|
975
|
+
Icons.arrowdownleft2 = function (props) {
|
|
976
|
+
return React.createElement(Icon, __assign({}, props), "\uEA3F");
|
|
977
|
+
};
|
|
978
|
+
Icons.arrowleft2 = function (props) {
|
|
979
|
+
return React.createElement(Icon, __assign({}, props), "\uEA40");
|
|
980
|
+
};
|
|
981
|
+
Icons.circleup = function (props) {
|
|
982
|
+
return React.createElement(Icon, __assign({}, props), "\uEA41");
|
|
983
|
+
};
|
|
984
|
+
Icons.circleright = function (props) {
|
|
985
|
+
return React.createElement(Icon, __assign({}, props), "\uEA42");
|
|
986
|
+
};
|
|
987
|
+
Icons.circledown = function (props) {
|
|
988
|
+
return React.createElement(Icon, __assign({}, props), "\uEA43");
|
|
989
|
+
};
|
|
990
|
+
Icons.circleleft = function (props) {
|
|
991
|
+
return React.createElement(Icon, __assign({}, props), "\uEA44");
|
|
992
|
+
};
|
|
993
|
+
Icons.tab = function (props) {
|
|
994
|
+
return React.createElement(Icon, __assign({}, props), "\uEA45");
|
|
995
|
+
};
|
|
996
|
+
Icons.moveup = function (props) {
|
|
997
|
+
return React.createElement(Icon, __assign({}, props), "\uEA46");
|
|
998
|
+
};
|
|
999
|
+
Icons.movedown = function (props) {
|
|
1000
|
+
return React.createElement(Icon, __assign({}, props), "\uEA47");
|
|
1001
|
+
};
|
|
1002
|
+
Icons.sortalphaasc = function (props) {
|
|
1003
|
+
return React.createElement(Icon, __assign({}, props), "\uEA48");
|
|
1004
|
+
};
|
|
1005
|
+
Icons.sortalphadesc = function (props) {
|
|
1006
|
+
return React.createElement(Icon, __assign({}, props), "\uEA49");
|
|
1007
|
+
};
|
|
1008
|
+
Icons.sortnumericasc = function (props) {
|
|
1009
|
+
return React.createElement(Icon, __assign({}, props), "\uEA4A");
|
|
1010
|
+
};
|
|
1011
|
+
Icons.sortnumbericdesc = function (props) {
|
|
1012
|
+
return React.createElement(Icon, __assign({}, props), "\uEA4B");
|
|
1013
|
+
};
|
|
1014
|
+
Icons.sortamountasc = function (props) {
|
|
1015
|
+
return React.createElement(Icon, __assign({}, props), "\uEA4C");
|
|
1016
|
+
};
|
|
1017
|
+
Icons.sortamountdesc = function (props) {
|
|
1018
|
+
return React.createElement(Icon, __assign({}, props), "\uEA4D");
|
|
1019
|
+
};
|
|
1020
|
+
Icons.command = function (props) {
|
|
1021
|
+
return React.createElement(Icon, __assign({}, props), "\uEA4E");
|
|
1022
|
+
};
|
|
1023
|
+
Icons.shift = function (props) {
|
|
1024
|
+
return React.createElement(Icon, __assign({}, props), "\uEA4F");
|
|
1025
|
+
};
|
|
1026
|
+
Icons.ctrl = function (props) {
|
|
1027
|
+
return React.createElement(Icon, __assign({}, props), "\uEA50");
|
|
1028
|
+
};
|
|
1029
|
+
Icons.opt = function (props) {
|
|
1030
|
+
return React.createElement(Icon, __assign({}, props), "\uEA51");
|
|
1031
|
+
};
|
|
1032
|
+
Icons.checkboxchecked = function (props) {
|
|
1033
|
+
return React.createElement(Icon, __assign({}, props), "\uEA52");
|
|
1034
|
+
};
|
|
1035
|
+
Icons.checkboxunchecked = function (props) {
|
|
1036
|
+
return React.createElement(Icon, __assign({}, props), "\uEA53");
|
|
1037
|
+
};
|
|
1038
|
+
Icons.radiochecked = function (props) {
|
|
1039
|
+
return React.createElement(Icon, __assign({}, props), "\uEA54");
|
|
1040
|
+
};
|
|
1041
|
+
Icons.radiochecked2 = function (props) {
|
|
1042
|
+
return React.createElement(Icon, __assign({}, props), "\uEA55");
|
|
1043
|
+
};
|
|
1044
|
+
Icons.radiounchecked = function (props) {
|
|
1045
|
+
return React.createElement(Icon, __assign({}, props), "\uEA56");
|
|
1046
|
+
};
|
|
1047
|
+
Icons.crop = function (props) {
|
|
1048
|
+
return React.createElement(Icon, __assign({}, props), "\uEA57");
|
|
1049
|
+
};
|
|
1050
|
+
Icons.makegroup = function (props) {
|
|
1051
|
+
return React.createElement(Icon, __assign({}, props), "\uEA58");
|
|
1052
|
+
};
|
|
1053
|
+
Icons.ungroup = function (props) {
|
|
1054
|
+
return React.createElement(Icon, __assign({}, props), "\uEA59");
|
|
1055
|
+
};
|
|
1056
|
+
Icons.scissors = function (props) {
|
|
1057
|
+
return React.createElement(Icon, __assign({}, props), "\uEA5A");
|
|
1058
|
+
};
|
|
1059
|
+
Icons.filter = function (props) {
|
|
1060
|
+
return React.createElement(Icon, __assign({}, props), "\uEA5B");
|
|
1061
|
+
};
|
|
1062
|
+
Icons.font = function (props) {
|
|
1063
|
+
return React.createElement(Icon, __assign({}, props), "\uEA5C");
|
|
1064
|
+
};
|
|
1065
|
+
Icons.ligature = function (props) {
|
|
1066
|
+
return React.createElement(Icon, __assign({}, props), "\uEA5D");
|
|
1067
|
+
};
|
|
1068
|
+
Icons.ligature2 = function (props) {
|
|
1069
|
+
return React.createElement(Icon, __assign({}, props), "\uEA5E");
|
|
1070
|
+
};
|
|
1071
|
+
Icons.textheight = function (props) {
|
|
1072
|
+
return React.createElement(Icon, __assign({}, props), "\uEA5F");
|
|
1073
|
+
};
|
|
1074
|
+
Icons.textwidth = function (props) {
|
|
1075
|
+
return React.createElement(Icon, __assign({}, props), "\uEA60");
|
|
1076
|
+
};
|
|
1077
|
+
Icons.fontsize = function (props) {
|
|
1078
|
+
return React.createElement(Icon, __assign({}, props), "\uEA61");
|
|
1079
|
+
};
|
|
1080
|
+
Icons.bold = function (props) {
|
|
1081
|
+
return React.createElement(Icon, __assign({}, props), "\uEA62");
|
|
1082
|
+
};
|
|
1083
|
+
Icons.underline = function (props) {
|
|
1084
|
+
return React.createElement(Icon, __assign({}, props), "\uEA63");
|
|
1085
|
+
};
|
|
1086
|
+
Icons.italic = function (props) {
|
|
1087
|
+
return React.createElement(Icon, __assign({}, props), "\uEA64");
|
|
1088
|
+
};
|
|
1089
|
+
Icons.strikethrough = function (props) {
|
|
1090
|
+
return React.createElement(Icon, __assign({}, props), "\uEA65");
|
|
1091
|
+
};
|
|
1092
|
+
Icons.omega = function (props) {
|
|
1093
|
+
return React.createElement(Icon, __assign({}, props), "\uEA66");
|
|
1094
|
+
};
|
|
1095
|
+
Icons.sigma = function (props) {
|
|
1096
|
+
return React.createElement(Icon, __assign({}, props), "\uEA67");
|
|
1097
|
+
};
|
|
1098
|
+
Icons.pagebreak = function (props) {
|
|
1099
|
+
return React.createElement(Icon, __assign({}, props), "\uEA68");
|
|
1100
|
+
};
|
|
1101
|
+
Icons.superscript = function (props) {
|
|
1102
|
+
return React.createElement(Icon, __assign({}, props), "\uEA69");
|
|
1103
|
+
};
|
|
1104
|
+
Icons.subscript = function (props) {
|
|
1105
|
+
return React.createElement(Icon, __assign({}, props), "\uEA6A");
|
|
1106
|
+
};
|
|
1107
|
+
Icons.superscript2 = function (props) {
|
|
1108
|
+
return React.createElement(Icon, __assign({}, props), "\uEA6B");
|
|
1109
|
+
};
|
|
1110
|
+
Icons.subscript2 = function (props) {
|
|
1111
|
+
return React.createElement(Icon, __assign({}, props), "\uEA6C");
|
|
1112
|
+
};
|
|
1113
|
+
Icons.textcolor = function (props) {
|
|
1114
|
+
return React.createElement(Icon, __assign({}, props), "\uEA6D");
|
|
1115
|
+
};
|
|
1116
|
+
Icons.pagebreak2 = function (props) {
|
|
1117
|
+
return React.createElement(Icon, __assign({}, props), "\uEA6E");
|
|
1118
|
+
};
|
|
1119
|
+
Icons.clearformatting = function (props) {
|
|
1120
|
+
return React.createElement(Icon, __assign({}, props), "\uEA6F");
|
|
1121
|
+
};
|
|
1122
|
+
Icons.table = function (props) {
|
|
1123
|
+
return React.createElement(Icon, __assign({}, props), "\uEA70");
|
|
1124
|
+
};
|
|
1125
|
+
Icons.table2 = function (props) {
|
|
1126
|
+
return React.createElement(Icon, __assign({}, props), "\uEA71");
|
|
1127
|
+
};
|
|
1128
|
+
Icons.inserttemplate = function (props) {
|
|
1129
|
+
return React.createElement(Icon, __assign({}, props), "\uEA72");
|
|
1130
|
+
};
|
|
1131
|
+
Icons.pilcrow = function (props) {
|
|
1132
|
+
return React.createElement(Icon, __assign({}, props), "\uEA73");
|
|
1133
|
+
};
|
|
1134
|
+
Icons.ltr = function (props) {
|
|
1135
|
+
return React.createElement(Icon, __assign({}, props), "\uEA74");
|
|
1136
|
+
};
|
|
1137
|
+
Icons.rtl = function (props) {
|
|
1138
|
+
return React.createElement(Icon, __assign({}, props), "\uEA75");
|
|
1139
|
+
};
|
|
1140
|
+
Icons.section = function (props) {
|
|
1141
|
+
return React.createElement(Icon, __assign({}, props), "\uEA76");
|
|
1142
|
+
};
|
|
1143
|
+
Icons.paragraphleft = function (props) {
|
|
1144
|
+
return React.createElement(Icon, __assign({}, props), "\uEA77");
|
|
1145
|
+
};
|
|
1146
|
+
Icons.paragraphcenter = function (props) {
|
|
1147
|
+
return React.createElement(Icon, __assign({}, props), "\uEA78");
|
|
1148
|
+
};
|
|
1149
|
+
Icons.paragraphright = function (props) {
|
|
1150
|
+
return React.createElement(Icon, __assign({}, props), "\uEA79");
|
|
1151
|
+
};
|
|
1152
|
+
Icons.paragraphjustify = function (props) {
|
|
1153
|
+
return React.createElement(Icon, __assign({}, props), "\uEA7A");
|
|
1154
|
+
};
|
|
1155
|
+
Icons.indentincrease = function (props) {
|
|
1156
|
+
return React.createElement(Icon, __assign({}, props), "\uEA7B");
|
|
1157
|
+
};
|
|
1158
|
+
Icons.indentdecrease = function (props) {
|
|
1159
|
+
return React.createElement(Icon, __assign({}, props), "\uEA7C");
|
|
1160
|
+
};
|
|
1161
|
+
Icons.share = function (props) {
|
|
1162
|
+
return React.createElement(Icon, __assign({}, props), "\uEA7D");
|
|
1163
|
+
};
|
|
1164
|
+
Icons.newtab = function (props) {
|
|
1165
|
+
return React.createElement(Icon, __assign({}, props), "\uEA7E");
|
|
1166
|
+
};
|
|
1167
|
+
Icons.embed = function (props) {
|
|
1168
|
+
return React.createElement(Icon, __assign({}, props), "\uEA7F");
|
|
1169
|
+
};
|
|
1170
|
+
Icons.embed2 = function (props) {
|
|
1171
|
+
return React.createElement(Icon, __assign({}, props), "\uEA80");
|
|
1172
|
+
};
|
|
1173
|
+
Icons.terminal = function (props) {
|
|
1174
|
+
return React.createElement(Icon, __assign({}, props), "\uEA81");
|
|
1175
|
+
};
|
|
1176
|
+
Icons.share2 = function (props) {
|
|
1177
|
+
return React.createElement(Icon, __assign({}, props), "\uEA82");
|
|
1178
|
+
};
|
|
1179
|
+
Icons.mail = function (props) {
|
|
1180
|
+
return React.createElement(Icon, __assign({}, props), "\uEA83");
|
|
1181
|
+
};
|
|
1182
|
+
Icons.mail2 = function (props) {
|
|
1183
|
+
return React.createElement(Icon, __assign({}, props), "\uEA84");
|
|
1184
|
+
};
|
|
1185
|
+
Icons.mail3 = function (props) {
|
|
1186
|
+
return React.createElement(Icon, __assign({}, props), "\uEA85");
|
|
1187
|
+
};
|
|
1188
|
+
Icons.mail4 = function (props) {
|
|
1189
|
+
return React.createElement(Icon, __assign({}, props), "\uEA86");
|
|
1190
|
+
};
|
|
1191
|
+
Icons.amazon = function (props) {
|
|
1192
|
+
return React.createElement(Icon, __assign({}, props), "\uEA87");
|
|
1193
|
+
};
|
|
1194
|
+
Icons.google = function (props) {
|
|
1195
|
+
return React.createElement(Icon, __assign({}, props), "\uEA88");
|
|
1196
|
+
};
|
|
1197
|
+
Icons.google2 = function (props) {
|
|
1198
|
+
return React.createElement(Icon, __assign({}, props), "\uEA89");
|
|
1199
|
+
};
|
|
1200
|
+
Icons.google3 = function (props) {
|
|
1201
|
+
return React.createElement(Icon, __assign({}, props), "\uEA8A");
|
|
1202
|
+
};
|
|
1203
|
+
Icons.googleplus = function (props) {
|
|
1204
|
+
return React.createElement(Icon, __assign({}, props), "\uEA8B");
|
|
1205
|
+
};
|
|
1206
|
+
Icons.googleplus2 = function (props) {
|
|
1207
|
+
return React.createElement(Icon, __assign({}, props), "\uEA8C");
|
|
1208
|
+
};
|
|
1209
|
+
Icons.googleplus3 = function (props) {
|
|
1210
|
+
return React.createElement(Icon, __assign({}, props), "\uEA8D");
|
|
1211
|
+
};
|
|
1212
|
+
Icons.hangouts = function (props) {
|
|
1213
|
+
return React.createElement(Icon, __assign({}, props), "\uEA8E");
|
|
1214
|
+
};
|
|
1215
|
+
Icons.googledrive = function (props) {
|
|
1216
|
+
return React.createElement(Icon, __assign({}, props), "\uEA8F");
|
|
1217
|
+
};
|
|
1218
|
+
Icons.facebook = function (props) {
|
|
1219
|
+
return React.createElement(Icon, __assign({}, props), "\uEA90");
|
|
1220
|
+
};
|
|
1221
|
+
Icons.facebook2 = function (props) {
|
|
1222
|
+
return React.createElement(Icon, __assign({}, props), "\uEA91");
|
|
1223
|
+
};
|
|
1224
|
+
Icons.instagram = function (props) {
|
|
1225
|
+
return React.createElement(Icon, __assign({}, props), "\uEA92");
|
|
1226
|
+
};
|
|
1227
|
+
Icons.whatsapp = function (props) {
|
|
1228
|
+
return React.createElement(Icon, __assign({}, props), "\uEA93");
|
|
1229
|
+
};
|
|
1230
|
+
Icons.spotify = function (props) {
|
|
1231
|
+
return React.createElement(Icon, __assign({}, props), "\uEA94");
|
|
1232
|
+
};
|
|
1233
|
+
Icons.telegram = function (props) {
|
|
1234
|
+
return React.createElement(Icon, __assign({}, props), "\uEA95");
|
|
1235
|
+
};
|
|
1236
|
+
Icons.twitter = function (props) {
|
|
1237
|
+
return React.createElement(Icon, __assign({}, props), "\uEA96");
|
|
1238
|
+
};
|
|
1239
|
+
Icons.vine = function (props) {
|
|
1240
|
+
return React.createElement(Icon, __assign({}, props), "\uEA97");
|
|
1241
|
+
};
|
|
1242
|
+
Icons.vk = function (props) {
|
|
1243
|
+
return React.createElement(Icon, __assign({}, props), "\uEA98");
|
|
1244
|
+
};
|
|
1245
|
+
Icons.renren = function (props) {
|
|
1246
|
+
return React.createElement(Icon, __assign({}, props), "\uEA99");
|
|
1247
|
+
};
|
|
1248
|
+
Icons.sinaweibo = function (props) {
|
|
1249
|
+
return React.createElement(Icon, __assign({}, props), "\uEA9A");
|
|
1250
|
+
};
|
|
1251
|
+
Icons.rss = function (props) {
|
|
1252
|
+
return React.createElement(Icon, __assign({}, props), "\uEA9B");
|
|
1253
|
+
};
|
|
1254
|
+
Icons.rss2 = function (props) {
|
|
1255
|
+
return React.createElement(Icon, __assign({}, props), "\uEA9C");
|
|
1256
|
+
};
|
|
1257
|
+
Icons.youtube = function (props) {
|
|
1258
|
+
return React.createElement(Icon, __assign({}, props), "\uEA9D");
|
|
1259
|
+
};
|
|
1260
|
+
Icons.youtube2 = function (props) {
|
|
1261
|
+
return React.createElement(Icon, __assign({}, props), "\uEA9E");
|
|
1262
|
+
};
|
|
1263
|
+
Icons.twitch = function (props) {
|
|
1264
|
+
return React.createElement(Icon, __assign({}, props), "\uEA9F");
|
|
1265
|
+
};
|
|
1266
|
+
Icons.vimeo = function (props) {
|
|
1267
|
+
return React.createElement(Icon, __assign({}, props), "\uEAA0");
|
|
1268
|
+
};
|
|
1269
|
+
Icons.vimeo2 = function (props) {
|
|
1270
|
+
return React.createElement(Icon, __assign({}, props), "\uEAA1");
|
|
1271
|
+
};
|
|
1272
|
+
Icons.lanyrd = function (props) {
|
|
1273
|
+
return React.createElement(Icon, __assign({}, props), "\uEAA2");
|
|
1274
|
+
};
|
|
1275
|
+
Icons.flickr = function (props) {
|
|
1276
|
+
return React.createElement(Icon, __assign({}, props), "\uEAA3");
|
|
1277
|
+
};
|
|
1278
|
+
Icons.flickr2 = function (props) {
|
|
1279
|
+
return React.createElement(Icon, __assign({}, props), "\uEAA4");
|
|
1280
|
+
};
|
|
1281
|
+
Icons.flickr3 = function (props) {
|
|
1282
|
+
return React.createElement(Icon, __assign({}, props), "\uEAA5");
|
|
1283
|
+
};
|
|
1284
|
+
Icons.flickr4 = function (props) {
|
|
1285
|
+
return React.createElement(Icon, __assign({}, props), "\uEAA6");
|
|
1286
|
+
};
|
|
1287
|
+
Icons.dribbble = function (props) {
|
|
1288
|
+
return React.createElement(Icon, __assign({}, props), "\uEAA7");
|
|
1289
|
+
};
|
|
1290
|
+
Icons.behance = function (props) {
|
|
1291
|
+
return React.createElement(Icon, __assign({}, props), "\uEAA8");
|
|
1292
|
+
};
|
|
1293
|
+
Icons.behance2 = function (props) {
|
|
1294
|
+
return React.createElement(Icon, __assign({}, props), "\uEAA9");
|
|
1295
|
+
};
|
|
1296
|
+
Icons.deviantart = function (props) {
|
|
1297
|
+
return React.createElement(Icon, __assign({}, props), "\uEAAA");
|
|
1298
|
+
};
|
|
1299
|
+
Icons.c500px = function (props) {
|
|
1300
|
+
return React.createElement(Icon, __assign({}, props), "\uEAAB");
|
|
1301
|
+
};
|
|
1302
|
+
Icons.steam = function (props) {
|
|
1303
|
+
return React.createElement(Icon, __assign({}, props), "\uEAAC");
|
|
1304
|
+
};
|
|
1305
|
+
Icons.steam2 = function (props) {
|
|
1306
|
+
return React.createElement(Icon, __assign({}, props), "\uEAAD");
|
|
1307
|
+
};
|
|
1308
|
+
Icons.dropbox = function (props) {
|
|
1309
|
+
return React.createElement(Icon, __assign({}, props), "\uEAAE");
|
|
1310
|
+
};
|
|
1311
|
+
Icons.onedrive = function (props) {
|
|
1312
|
+
return React.createElement(Icon, __assign({}, props), "\uEAAF");
|
|
1313
|
+
};
|
|
1314
|
+
Icons.github = function (props) {
|
|
1315
|
+
return React.createElement(Icon, __assign({}, props), "\uEAB0");
|
|
1316
|
+
};
|
|
1317
|
+
Icons.npm = function (props) {
|
|
1318
|
+
return React.createElement(Icon, __assign({}, props), "\uEAB1");
|
|
1319
|
+
};
|
|
1320
|
+
Icons.basecamp = function (props) {
|
|
1321
|
+
return React.createElement(Icon, __assign({}, props), "\uEAB2");
|
|
1322
|
+
};
|
|
1323
|
+
Icons.trello = function (props) {
|
|
1324
|
+
return React.createElement(Icon, __assign({}, props), "\uEAB3");
|
|
1325
|
+
};
|
|
1326
|
+
Icons.wordpress = function (props) {
|
|
1327
|
+
return React.createElement(Icon, __assign({}, props), "\uEAB4");
|
|
1328
|
+
};
|
|
1329
|
+
Icons.joomla = function (props) {
|
|
1330
|
+
return React.createElement(Icon, __assign({}, props), "\uEAB5");
|
|
1331
|
+
};
|
|
1332
|
+
Icons.ello = function (props) {
|
|
1333
|
+
return React.createElement(Icon, __assign({}, props), "\uEAB6");
|
|
1334
|
+
};
|
|
1335
|
+
Icons.blogger = function (props) {
|
|
1336
|
+
return React.createElement(Icon, __assign({}, props), "\uEAB7");
|
|
1337
|
+
};
|
|
1338
|
+
Icons.blogger2 = function (props) {
|
|
1339
|
+
return React.createElement(Icon, __assign({}, props), "\uEAB8");
|
|
1340
|
+
};
|
|
1341
|
+
Icons.tumblr = function (props) {
|
|
1342
|
+
return React.createElement(Icon, __assign({}, props), "\uEAB9");
|
|
1343
|
+
};
|
|
1344
|
+
Icons.tumblr2 = function (props) {
|
|
1345
|
+
return React.createElement(Icon, __assign({}, props), "\uEABA");
|
|
1346
|
+
};
|
|
1347
|
+
Icons.yahoo = function (props) {
|
|
1348
|
+
return React.createElement(Icon, __assign({}, props), "\uEABB");
|
|
1349
|
+
};
|
|
1350
|
+
Icons.yahoo2 = function (props) {
|
|
1351
|
+
return React.createElement(Icon, __assign({}, props), "\uEABC");
|
|
1352
|
+
};
|
|
1353
|
+
Icons.tux = function (props) {
|
|
1354
|
+
return React.createElement(Icon, __assign({}, props), "\uEABD");
|
|
1355
|
+
};
|
|
1356
|
+
Icons.appleinc = function (props) {
|
|
1357
|
+
return React.createElement(Icon, __assign({}, props), "\uEABE");
|
|
1358
|
+
};
|
|
1359
|
+
Icons.finder = function (props) {
|
|
1360
|
+
return React.createElement(Icon, __assign({}, props), "\uEABF");
|
|
1361
|
+
};
|
|
1362
|
+
Icons.android = function (props) {
|
|
1363
|
+
return React.createElement(Icon, __assign({}, props), "\uEAC0");
|
|
1364
|
+
};
|
|
1365
|
+
Icons.windows = function (props) {
|
|
1366
|
+
return React.createElement(Icon, __assign({}, props), "\uEAC1");
|
|
1367
|
+
};
|
|
1368
|
+
Icons.windows8 = function (props) {
|
|
1369
|
+
return React.createElement(Icon, __assign({}, props), "\uEAC2");
|
|
1370
|
+
};
|
|
1371
|
+
Icons.soundcloud = function (props) {
|
|
1372
|
+
return React.createElement(Icon, __assign({}, props), "\uEAC3");
|
|
1373
|
+
};
|
|
1374
|
+
Icons.soundcloud2 = function (props) {
|
|
1375
|
+
return React.createElement(Icon, __assign({}, props), "\uEAC4");
|
|
1376
|
+
};
|
|
1377
|
+
Icons.skype = function (props) {
|
|
1378
|
+
return React.createElement(Icon, __assign({}, props), "\uEAC5");
|
|
1379
|
+
};
|
|
1380
|
+
Icons.reddit = function (props) {
|
|
1381
|
+
return React.createElement(Icon, __assign({}, props), "\uEAC6");
|
|
1382
|
+
};
|
|
1383
|
+
Icons.hackernews = function (props) {
|
|
1384
|
+
return React.createElement(Icon, __assign({}, props), "\uEAC7");
|
|
1385
|
+
};
|
|
1386
|
+
Icons.wikipedia = function (props) {
|
|
1387
|
+
return React.createElement(Icon, __assign({}, props), "\uEAC8");
|
|
1388
|
+
};
|
|
1389
|
+
Icons.linkedin = function (props) {
|
|
1390
|
+
return React.createElement(Icon, __assign({}, props), "\uEAC9");
|
|
1391
|
+
};
|
|
1392
|
+
Icons.linkedin2 = function (props) {
|
|
1393
|
+
return React.createElement(Icon, __assign({}, props), "\uEACA");
|
|
1394
|
+
};
|
|
1395
|
+
Icons.lastfm = function (props) {
|
|
1396
|
+
return React.createElement(Icon, __assign({}, props), "\uEACB");
|
|
1397
|
+
};
|
|
1398
|
+
Icons.lastfm2 = function (props) {
|
|
1399
|
+
return React.createElement(Icon, __assign({}, props), "\uEACC");
|
|
1400
|
+
};
|
|
1401
|
+
Icons.delicious = function (props) {
|
|
1402
|
+
return React.createElement(Icon, __assign({}, props), "\uEACD");
|
|
1403
|
+
};
|
|
1404
|
+
Icons.stumbleupon = function (props) {
|
|
1405
|
+
return React.createElement(Icon, __assign({}, props), "\uEACE");
|
|
1406
|
+
};
|
|
1407
|
+
Icons.stumbleupon2 = function (props) {
|
|
1408
|
+
return React.createElement(Icon, __assign({}, props), "\uEACF");
|
|
1409
|
+
};
|
|
1410
|
+
Icons.stackoverflow = function (props) {
|
|
1411
|
+
return React.createElement(Icon, __assign({}, props), "\uEAD0");
|
|
1412
|
+
};
|
|
1413
|
+
Icons.pinterest = function (props) {
|
|
1414
|
+
return React.createElement(Icon, __assign({}, props), "\uEAD1");
|
|
1415
|
+
};
|
|
1416
|
+
Icons.pinterest2 = function (props) {
|
|
1417
|
+
return React.createElement(Icon, __assign({}, props), "\uEAD2");
|
|
1418
|
+
};
|
|
1419
|
+
Icons.xing = function (props) {
|
|
1420
|
+
return React.createElement(Icon, __assign({}, props), "\uEAD3");
|
|
1421
|
+
};
|
|
1422
|
+
Icons.xing2 = function (props) {
|
|
1423
|
+
return React.createElement(Icon, __assign({}, props), "\uEAD4");
|
|
1424
|
+
};
|
|
1425
|
+
Icons.flattr = function (props) {
|
|
1426
|
+
return React.createElement(Icon, __assign({}, props), "\uEAD5");
|
|
1427
|
+
};
|
|
1428
|
+
Icons.foursquare = function (props) {
|
|
1429
|
+
return React.createElement(Icon, __assign({}, props), "\uEAD6");
|
|
1430
|
+
};
|
|
1431
|
+
Icons.yelp = function (props) {
|
|
1432
|
+
return React.createElement(Icon, __assign({}, props), "\uEAD7");
|
|
1433
|
+
};
|
|
1434
|
+
Icons.paypal = function (props) {
|
|
1435
|
+
return React.createElement(Icon, __assign({}, props), "\uEAD8");
|
|
1436
|
+
};
|
|
1437
|
+
Icons.chrome = function (props) {
|
|
1438
|
+
return React.createElement(Icon, __assign({}, props), "\uEAD9");
|
|
1439
|
+
};
|
|
1440
|
+
Icons.firefox = function (props) {
|
|
1441
|
+
return React.createElement(Icon, __assign({}, props), "\uEADA");
|
|
1442
|
+
};
|
|
1443
|
+
Icons.IE = function (props) {
|
|
1444
|
+
return React.createElement(Icon, __assign({}, props), "\uEADB");
|
|
1445
|
+
};
|
|
1446
|
+
Icons.edge = function (props) {
|
|
1447
|
+
return React.createElement(Icon, __assign({}, props), "\uEADC");
|
|
1448
|
+
};
|
|
1449
|
+
Icons.safari = function (props) {
|
|
1450
|
+
return React.createElement(Icon, __assign({}, props), "\uEADD");
|
|
1451
|
+
};
|
|
1452
|
+
Icons.opera = function (props) {
|
|
1453
|
+
return React.createElement(Icon, __assign({}, props), "\uEADE");
|
|
1454
|
+
};
|
|
1455
|
+
Icons.filepdf = function (props) {
|
|
1456
|
+
return React.createElement(Icon, __assign({}, props), "\uEADF");
|
|
1457
|
+
};
|
|
1458
|
+
Icons.fileopenoffice = function (props) {
|
|
1459
|
+
return React.createElement(Icon, __assign({}, props), "\uEAE0");
|
|
1460
|
+
};
|
|
1461
|
+
Icons.fileword = function (props) {
|
|
1462
|
+
return React.createElement(Icon, __assign({}, props), "\uEAE1");
|
|
1463
|
+
};
|
|
1464
|
+
Icons.fileexcel = function (props) {
|
|
1465
|
+
return React.createElement(Icon, __assign({}, props), "\uEAE2");
|
|
1466
|
+
};
|
|
1467
|
+
Icons.libreoffice = function (props) {
|
|
1468
|
+
return React.createElement(Icon, __assign({}, props), "\uEAE3");
|
|
1469
|
+
};
|
|
1470
|
+
Icons.htmlfive = function (props) {
|
|
1471
|
+
return React.createElement(Icon, __assign({}, props), "\uEAE4");
|
|
1472
|
+
};
|
|
1473
|
+
Icons.htmlfive2 = function (props) {
|
|
1474
|
+
return React.createElement(Icon, __assign({}, props), "\uEAE5");
|
|
1475
|
+
};
|
|
1476
|
+
Icons.css3 = function (props) {
|
|
1477
|
+
return React.createElement(Icon, __assign({}, props), "\uEAE6");
|
|
1478
|
+
};
|
|
1479
|
+
Icons.git = function (props) {
|
|
1480
|
+
return React.createElement(Icon, __assign({}, props), "\uEAE7");
|
|
1481
|
+
};
|
|
1482
|
+
Icons.codepen = function (props) {
|
|
1483
|
+
return React.createElement(Icon, __assign({}, props), "\uEAE8");
|
|
1484
|
+
};
|
|
1485
|
+
Icons.svg = function (props) {
|
|
1486
|
+
return React.createElement(Icon, __assign({}, props), "\uEAE9");
|
|
1487
|
+
};
|
|
1488
|
+
Icons.IcoMoon = function (props) {
|
|
1489
|
+
return React.createElement(Icon, __assign({}, props), "\uEAEA");
|
|
1490
|
+
};
|
|
1491
|
+
Icons.loading = function (props) {
|
|
1492
|
+
return React.createElement(Icon, __assign({}, props), "\uE97A");
|
|
1493
|
+
};
|
|
1494
|
+
Icons.expand = function (props) {
|
|
1495
|
+
return React.createElement(Icon, __assign({}, props),
|
|
1496
|
+
React.createElement("div", { className: "icon-arrow" + (props.reverse ? " icon-arrow-reverse" : "") }));
|
|
1497
|
+
};
|
|
1498
|
+
})(Icons || (Icons = {}));
|
|
1499
|
+
;
|
|
1500
|
+
//# sourceMappingURL=index.js.map
|