@abydahana/iconpicker 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +303 -0
- package/dist/core/font-loader.d.ts +2 -0
- package/dist/core/font-loader.d.ts.map +1 -0
- package/dist/core/font-loader.js +35 -0
- package/dist/core/font-loader.js.map +1 -0
- package/dist/core/grid.d.ts +26 -0
- package/dist/core/grid.d.ts.map +1 -0
- package/dist/core/grid.js +101 -0
- package/dist/core/grid.js.map +1 -0
- package/dist/core/icon-picker.d.ts +29 -0
- package/dist/core/icon-picker.d.ts.map +1 -0
- package/dist/core/icon-picker.js +314 -0
- package/dist/core/icon-picker.js.map +1 -0
- package/dist/core/popover.d.ts +17 -0
- package/dist/core/popover.d.ts.map +1 -0
- package/dist/core/popover.js +96 -0
- package/dist/core/popover.js.map +1 -0
- package/dist/dom/template.d.ts +18 -0
- package/dist/dom/template.d.ts.map +1 -0
- package/dist/dom/template.js +121 -0
- package/dist/dom/template.js.map +1 -0
- package/dist/iconpicker.css +547 -0
- package/dist/iconsets/bootstrap.d.ts +3 -0
- package/dist/iconsets/bootstrap.d.ts.map +1 -0
- package/dist/iconsets/bootstrap.js +2059 -0
- package/dist/iconsets/bootstrap.js.map +1 -0
- package/dist/iconsets/boxicons.d.ts +3 -0
- package/dist/iconsets/boxicons.d.ts.map +1 -0
- package/dist/iconsets/boxicons.js +823 -0
- package/dist/iconsets/boxicons.js.map +1 -0
- package/dist/iconsets/fontawesome.d.ts +3 -0
- package/dist/iconsets/fontawesome.d.ts.map +1 -0
- package/dist/iconsets/fontawesome.js +1904 -0
- package/dist/iconsets/fontawesome.js.map +1 -0
- package/dist/iconsets/index.d.ts +10 -0
- package/dist/iconsets/index.d.ts.map +1 -0
- package/dist/iconsets/index.js +29 -0
- package/dist/iconsets/index.js.map +1 -0
- package/dist/iconsets/lucide.d.ts +3 -0
- package/dist/iconsets/lucide.d.ts.map +1 -0
- package/dist/iconsets/lucide.js +1816 -0
- package/dist/iconsets/lucide.js.map +1 -0
- package/dist/iconsets/mdi.d.ts +3 -0
- package/dist/iconsets/mdi.d.ts.map +1 -0
- package/dist/iconsets/mdi.js +7457 -0
- package/dist/iconsets/mdi.js.map +1 -0
- package/dist/iconsets/remix.d.ts +3 -0
- package/dist/iconsets/remix.d.ts.map +1 -0
- package/dist/iconsets/remix.js +2901 -0
- package/dist/iconsets/remix.js.map +1 -0
- package/dist/iconsets/tabler.d.ts +3 -0
- package/dist/iconsets/tabler.d.ts.map +1 -0
- package/dist/iconsets/tabler.js +4888 -0
- package/dist/iconsets/tabler.js.map +1 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +15 -0
- package/dist/index.js.map +1 -0
- package/dist/themes/aksara.css +72 -0
- package/dist/themes/base.css +211 -0
- package/dist/themes/bootstrap.css +70 -0
- package/dist/themes/default.css +72 -0
- package/dist/themes/tailwind.css +112 -0
- package/dist/types.d.ts +35 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/package.json +69 -0
- package/src/core/font-loader.ts +38 -0
- package/src/core/grid.ts +129 -0
- package/src/core/icon-picker.ts +353 -0
- package/src/core/popover.ts +113 -0
- package/src/dom/template.ts +173 -0
- package/src/iconsets/bootstrap.ts +2060 -0
- package/src/iconsets/boxicons.ts +824 -0
- package/src/iconsets/fontawesome.ts +1905 -0
- package/src/iconsets/index.ts +31 -0
- package/src/iconsets/lucide.ts +1817 -0
- package/src/iconsets/mdi.ts +7458 -0
- package/src/iconsets/remix.ts +2902 -0
- package/src/iconsets/tabler.ts +4889 -0
- package/src/index.ts +18 -0
- package/src/themes/aksara.css +72 -0
- package/src/themes/base.css +211 -0
- package/src/themes/bootstrap.css +70 -0
- package/src/themes/default.css +72 -0
- package/src/themes/index.css +5 -0
- package/src/themes/tailwind.css +112 -0
- package/src/types.ts +37 -0
|
@@ -0,0 +1,2059 @@
|
|
|
1
|
+
export const bootstrapIconSet = {
|
|
2
|
+
id: "bi",
|
|
3
|
+
title: "Bootstrap Icons",
|
|
4
|
+
prefix: "bi bi-",
|
|
5
|
+
formatter: (name) => `bi bi-${name}`,
|
|
6
|
+
icons: [
|
|
7
|
+
"0-circle",
|
|
8
|
+
"0-circle-fill",
|
|
9
|
+
"0-square",
|
|
10
|
+
"0-square-fill",
|
|
11
|
+
"1-circle",
|
|
12
|
+
"1-circle-fill",
|
|
13
|
+
"1-square",
|
|
14
|
+
"1-square-fill",
|
|
15
|
+
"123",
|
|
16
|
+
"2-circle",
|
|
17
|
+
"2-circle-fill",
|
|
18
|
+
"2-square",
|
|
19
|
+
"2-square-fill",
|
|
20
|
+
"3-circle",
|
|
21
|
+
"3-circle-fill",
|
|
22
|
+
"3-square",
|
|
23
|
+
"3-square-fill",
|
|
24
|
+
"4-circle",
|
|
25
|
+
"4-circle-fill",
|
|
26
|
+
"4-square",
|
|
27
|
+
"4-square-fill",
|
|
28
|
+
"5-circle",
|
|
29
|
+
"5-circle-fill",
|
|
30
|
+
"5-square",
|
|
31
|
+
"5-square-fill",
|
|
32
|
+
"6-circle",
|
|
33
|
+
"6-circle-fill",
|
|
34
|
+
"6-square",
|
|
35
|
+
"6-square-fill",
|
|
36
|
+
"7-circle",
|
|
37
|
+
"7-circle-fill",
|
|
38
|
+
"7-square",
|
|
39
|
+
"7-square-fill",
|
|
40
|
+
"8-circle",
|
|
41
|
+
"8-circle-fill",
|
|
42
|
+
"8-square",
|
|
43
|
+
"8-square-fill",
|
|
44
|
+
"9-circle",
|
|
45
|
+
"9-circle-fill",
|
|
46
|
+
"9-square",
|
|
47
|
+
"9-square-fill",
|
|
48
|
+
"activity",
|
|
49
|
+
"airplane",
|
|
50
|
+
"airplane-engines",
|
|
51
|
+
"airplane-engines-fill",
|
|
52
|
+
"airplane-fill",
|
|
53
|
+
"alarm",
|
|
54
|
+
"alarm-fill",
|
|
55
|
+
"alexa",
|
|
56
|
+
"align-bottom",
|
|
57
|
+
"align-center",
|
|
58
|
+
"align-end",
|
|
59
|
+
"align-middle",
|
|
60
|
+
"align-start",
|
|
61
|
+
"align-top",
|
|
62
|
+
"alipay",
|
|
63
|
+
"alphabet",
|
|
64
|
+
"alphabet-uppercase",
|
|
65
|
+
"alt",
|
|
66
|
+
"amazon",
|
|
67
|
+
"amd",
|
|
68
|
+
"android",
|
|
69
|
+
"android2",
|
|
70
|
+
"app",
|
|
71
|
+
"app-indicator",
|
|
72
|
+
"apple",
|
|
73
|
+
"archive",
|
|
74
|
+
"archive-fill",
|
|
75
|
+
"arrow-90deg-down",
|
|
76
|
+
"arrow-90deg-left",
|
|
77
|
+
"arrow-90deg-right",
|
|
78
|
+
"arrow-90deg-up",
|
|
79
|
+
"arrow-bar-down",
|
|
80
|
+
"arrow-bar-left",
|
|
81
|
+
"arrow-bar-right",
|
|
82
|
+
"arrow-bar-up",
|
|
83
|
+
"arrow-clockwise",
|
|
84
|
+
"arrow-counterclockwise",
|
|
85
|
+
"arrow-down",
|
|
86
|
+
"arrow-down-circle",
|
|
87
|
+
"arrow-down-circle-fill",
|
|
88
|
+
"arrow-down-left",
|
|
89
|
+
"arrow-down-left-circle",
|
|
90
|
+
"arrow-down-left-circle-fill",
|
|
91
|
+
"arrow-down-left-square",
|
|
92
|
+
"arrow-down-left-square-fill",
|
|
93
|
+
"arrow-down-right",
|
|
94
|
+
"arrow-down-right-circle",
|
|
95
|
+
"arrow-down-right-circle-fill",
|
|
96
|
+
"arrow-down-right-square",
|
|
97
|
+
"arrow-down-right-square-fill",
|
|
98
|
+
"arrow-down-short",
|
|
99
|
+
"arrow-down-square",
|
|
100
|
+
"arrow-down-square-fill",
|
|
101
|
+
"arrow-down-up",
|
|
102
|
+
"arrow-left",
|
|
103
|
+
"arrow-left-circle",
|
|
104
|
+
"arrow-left-circle-fill",
|
|
105
|
+
"arrow-left-right",
|
|
106
|
+
"arrow-left-short",
|
|
107
|
+
"arrow-left-square",
|
|
108
|
+
"arrow-left-square-fill",
|
|
109
|
+
"arrow-repeat",
|
|
110
|
+
"arrow-return-left",
|
|
111
|
+
"arrow-return-right",
|
|
112
|
+
"arrow-right",
|
|
113
|
+
"arrow-right-circle",
|
|
114
|
+
"arrow-right-circle-fill",
|
|
115
|
+
"arrow-right-short",
|
|
116
|
+
"arrow-right-square",
|
|
117
|
+
"arrow-right-square-fill",
|
|
118
|
+
"arrow-through-heart",
|
|
119
|
+
"arrow-through-heart-fill",
|
|
120
|
+
"arrow-up",
|
|
121
|
+
"arrow-up-circle",
|
|
122
|
+
"arrow-up-circle-fill",
|
|
123
|
+
"arrow-up-left",
|
|
124
|
+
"arrow-up-left-circle",
|
|
125
|
+
"arrow-up-left-circle-fill",
|
|
126
|
+
"arrow-up-left-square",
|
|
127
|
+
"arrow-up-left-square-fill",
|
|
128
|
+
"arrow-up-right",
|
|
129
|
+
"arrow-up-right-circle",
|
|
130
|
+
"arrow-up-right-circle-fill",
|
|
131
|
+
"arrow-up-right-square",
|
|
132
|
+
"arrow-up-right-square-fill",
|
|
133
|
+
"arrow-up-short",
|
|
134
|
+
"arrow-up-square",
|
|
135
|
+
"arrow-up-square-fill",
|
|
136
|
+
"arrows",
|
|
137
|
+
"arrows-angle-contract",
|
|
138
|
+
"arrows-angle-expand",
|
|
139
|
+
"arrows-collapse",
|
|
140
|
+
"arrows-collapse-vertical",
|
|
141
|
+
"arrows-expand",
|
|
142
|
+
"arrows-expand-vertical",
|
|
143
|
+
"arrows-fullscreen",
|
|
144
|
+
"arrows-move",
|
|
145
|
+
"arrows-vertical",
|
|
146
|
+
"aspect-ratio",
|
|
147
|
+
"aspect-ratio-fill",
|
|
148
|
+
"asterisk",
|
|
149
|
+
"at",
|
|
150
|
+
"award",
|
|
151
|
+
"award-fill",
|
|
152
|
+
"back",
|
|
153
|
+
"backpack",
|
|
154
|
+
"backpack-fill",
|
|
155
|
+
"backpack2",
|
|
156
|
+
"backpack2-fill",
|
|
157
|
+
"backpack3",
|
|
158
|
+
"backpack3-fill",
|
|
159
|
+
"backpack4",
|
|
160
|
+
"backpack4-fill",
|
|
161
|
+
"backspace",
|
|
162
|
+
"backspace-fill",
|
|
163
|
+
"backspace-reverse",
|
|
164
|
+
"backspace-reverse-fill",
|
|
165
|
+
"badge-3d",
|
|
166
|
+
"badge-3d-fill",
|
|
167
|
+
"badge-4k",
|
|
168
|
+
"badge-4k-fill",
|
|
169
|
+
"badge-8k",
|
|
170
|
+
"badge-8k-fill",
|
|
171
|
+
"badge-ad",
|
|
172
|
+
"badge-ad-fill",
|
|
173
|
+
"badge-ar",
|
|
174
|
+
"badge-ar-fill",
|
|
175
|
+
"badge-cc",
|
|
176
|
+
"badge-cc-fill",
|
|
177
|
+
"badge-hd",
|
|
178
|
+
"badge-hd-fill",
|
|
179
|
+
"badge-sd",
|
|
180
|
+
"badge-sd-fill",
|
|
181
|
+
"badge-tm",
|
|
182
|
+
"badge-tm-fill",
|
|
183
|
+
"badge-vo",
|
|
184
|
+
"badge-vo-fill",
|
|
185
|
+
"badge-vr",
|
|
186
|
+
"badge-vr-fill",
|
|
187
|
+
"badge-wc",
|
|
188
|
+
"badge-wc-fill",
|
|
189
|
+
"bag",
|
|
190
|
+
"bag-check",
|
|
191
|
+
"bag-check-fill",
|
|
192
|
+
"bag-dash",
|
|
193
|
+
"bag-dash-fill",
|
|
194
|
+
"bag-fill",
|
|
195
|
+
"bag-heart",
|
|
196
|
+
"bag-heart-fill",
|
|
197
|
+
"bag-plus",
|
|
198
|
+
"bag-plus-fill",
|
|
199
|
+
"bag-x",
|
|
200
|
+
"bag-x-fill",
|
|
201
|
+
"balloon",
|
|
202
|
+
"balloon-fill",
|
|
203
|
+
"balloon-heart",
|
|
204
|
+
"balloon-heart-fill",
|
|
205
|
+
"ban",
|
|
206
|
+
"ban-fill",
|
|
207
|
+
"bandaid",
|
|
208
|
+
"bandaid-fill",
|
|
209
|
+
"bank",
|
|
210
|
+
"bank2",
|
|
211
|
+
"bar-chart",
|
|
212
|
+
"bar-chart-fill",
|
|
213
|
+
"bar-chart-line",
|
|
214
|
+
"bar-chart-line-fill",
|
|
215
|
+
"bar-chart-steps",
|
|
216
|
+
"basket",
|
|
217
|
+
"basket-fill",
|
|
218
|
+
"basket2",
|
|
219
|
+
"basket2-fill",
|
|
220
|
+
"basket3",
|
|
221
|
+
"basket3-fill",
|
|
222
|
+
"battery",
|
|
223
|
+
"battery-charging",
|
|
224
|
+
"battery-full",
|
|
225
|
+
"battery-half",
|
|
226
|
+
"behance",
|
|
227
|
+
"bell",
|
|
228
|
+
"bell-fill",
|
|
229
|
+
"bell-slash",
|
|
230
|
+
"bell-slash-fill",
|
|
231
|
+
"bezier",
|
|
232
|
+
"bezier2",
|
|
233
|
+
"bicycle",
|
|
234
|
+
"bing",
|
|
235
|
+
"binoculars",
|
|
236
|
+
"binoculars-fill",
|
|
237
|
+
"blockquote-left",
|
|
238
|
+
"blockquote-right",
|
|
239
|
+
"bluetooth",
|
|
240
|
+
"body-text",
|
|
241
|
+
"book",
|
|
242
|
+
"book-fill",
|
|
243
|
+
"book-half",
|
|
244
|
+
"bookmark",
|
|
245
|
+
"bookmark-check",
|
|
246
|
+
"bookmark-check-fill",
|
|
247
|
+
"bookmark-dash",
|
|
248
|
+
"bookmark-dash-fill",
|
|
249
|
+
"bookmark-fill",
|
|
250
|
+
"bookmark-heart",
|
|
251
|
+
"bookmark-heart-fill",
|
|
252
|
+
"bookmark-plus",
|
|
253
|
+
"bookmark-plus-fill",
|
|
254
|
+
"bookmark-star",
|
|
255
|
+
"bookmark-star-fill",
|
|
256
|
+
"bookmark-x",
|
|
257
|
+
"bookmark-x-fill",
|
|
258
|
+
"bookmarks",
|
|
259
|
+
"bookmarks-fill",
|
|
260
|
+
"bookshelf",
|
|
261
|
+
"boombox",
|
|
262
|
+
"boombox-fill",
|
|
263
|
+
"bootstrap",
|
|
264
|
+
"bootstrap-fill",
|
|
265
|
+
"bootstrap-reboot",
|
|
266
|
+
"border",
|
|
267
|
+
"border-all",
|
|
268
|
+
"border-bottom",
|
|
269
|
+
"border-center",
|
|
270
|
+
"border-inner",
|
|
271
|
+
"border-left",
|
|
272
|
+
"border-middle",
|
|
273
|
+
"border-outer",
|
|
274
|
+
"border-right",
|
|
275
|
+
"border-style",
|
|
276
|
+
"border-top",
|
|
277
|
+
"border-width",
|
|
278
|
+
"bounding-box",
|
|
279
|
+
"bounding-box-circles",
|
|
280
|
+
"box",
|
|
281
|
+
"box-arrow-down",
|
|
282
|
+
"box-arrow-down-left",
|
|
283
|
+
"box-arrow-down-right",
|
|
284
|
+
"box-arrow-in-down",
|
|
285
|
+
"box-arrow-in-down-left",
|
|
286
|
+
"box-arrow-in-down-right",
|
|
287
|
+
"box-arrow-in-left",
|
|
288
|
+
"box-arrow-in-right",
|
|
289
|
+
"box-arrow-in-up",
|
|
290
|
+
"box-arrow-in-up-left",
|
|
291
|
+
"box-arrow-in-up-right",
|
|
292
|
+
"box-arrow-left",
|
|
293
|
+
"box-arrow-right",
|
|
294
|
+
"box-arrow-up",
|
|
295
|
+
"box-arrow-up-left",
|
|
296
|
+
"box-arrow-up-right",
|
|
297
|
+
"box-fill",
|
|
298
|
+
"box-seam",
|
|
299
|
+
"box-seam-fill",
|
|
300
|
+
"box2",
|
|
301
|
+
"box2-fill",
|
|
302
|
+
"box2-heart",
|
|
303
|
+
"box2-heart-fill",
|
|
304
|
+
"boxes",
|
|
305
|
+
"braces",
|
|
306
|
+
"braces-asterisk",
|
|
307
|
+
"bricks",
|
|
308
|
+
"briefcase",
|
|
309
|
+
"briefcase-fill",
|
|
310
|
+
"brightness-alt-high",
|
|
311
|
+
"brightness-alt-high-fill",
|
|
312
|
+
"brightness-alt-low",
|
|
313
|
+
"brightness-alt-low-fill",
|
|
314
|
+
"brightness-high",
|
|
315
|
+
"brightness-high-fill",
|
|
316
|
+
"brightness-low",
|
|
317
|
+
"brightness-low-fill",
|
|
318
|
+
"brilliance",
|
|
319
|
+
"broadcast",
|
|
320
|
+
"broadcast-pin",
|
|
321
|
+
"browser-chrome",
|
|
322
|
+
"browser-edge",
|
|
323
|
+
"browser-firefox",
|
|
324
|
+
"browser-safari",
|
|
325
|
+
"brush",
|
|
326
|
+
"brush-fill",
|
|
327
|
+
"bucket",
|
|
328
|
+
"bucket-fill",
|
|
329
|
+
"bug",
|
|
330
|
+
"bug-fill",
|
|
331
|
+
"building",
|
|
332
|
+
"building-add",
|
|
333
|
+
"building-check",
|
|
334
|
+
"building-dash",
|
|
335
|
+
"building-down",
|
|
336
|
+
"building-exclamation",
|
|
337
|
+
"building-fill",
|
|
338
|
+
"building-fill-add",
|
|
339
|
+
"building-fill-check",
|
|
340
|
+
"building-fill-dash",
|
|
341
|
+
"building-fill-down",
|
|
342
|
+
"building-fill-exclamation",
|
|
343
|
+
"building-fill-gear",
|
|
344
|
+
"building-fill-lock",
|
|
345
|
+
"building-fill-slash",
|
|
346
|
+
"building-fill-up",
|
|
347
|
+
"building-fill-x",
|
|
348
|
+
"building-gear",
|
|
349
|
+
"building-lock",
|
|
350
|
+
"building-slash",
|
|
351
|
+
"building-up",
|
|
352
|
+
"building-x",
|
|
353
|
+
"buildings",
|
|
354
|
+
"buildings-fill",
|
|
355
|
+
"bullseye",
|
|
356
|
+
"bus-front",
|
|
357
|
+
"bus-front-fill",
|
|
358
|
+
"c-circle",
|
|
359
|
+
"c-circle-fill",
|
|
360
|
+
"c-square",
|
|
361
|
+
"c-square-fill",
|
|
362
|
+
"cake",
|
|
363
|
+
"cake-fill",
|
|
364
|
+
"cake2",
|
|
365
|
+
"cake2-fill",
|
|
366
|
+
"calculator",
|
|
367
|
+
"calculator-fill",
|
|
368
|
+
"calendar",
|
|
369
|
+
"calendar-check",
|
|
370
|
+
"calendar-check-fill",
|
|
371
|
+
"calendar-date",
|
|
372
|
+
"calendar-date-fill",
|
|
373
|
+
"calendar-day",
|
|
374
|
+
"calendar-day-fill",
|
|
375
|
+
"calendar-event",
|
|
376
|
+
"calendar-event-fill",
|
|
377
|
+
"calendar-fill",
|
|
378
|
+
"calendar-heart",
|
|
379
|
+
"calendar-heart-fill",
|
|
380
|
+
"calendar-minus",
|
|
381
|
+
"calendar-minus-fill",
|
|
382
|
+
"calendar-month",
|
|
383
|
+
"calendar-month-fill",
|
|
384
|
+
"calendar-plus",
|
|
385
|
+
"calendar-plus-fill",
|
|
386
|
+
"calendar-range",
|
|
387
|
+
"calendar-range-fill",
|
|
388
|
+
"calendar-week",
|
|
389
|
+
"calendar-week-fill",
|
|
390
|
+
"calendar-x",
|
|
391
|
+
"calendar-x-fill",
|
|
392
|
+
"calendar2",
|
|
393
|
+
"calendar2-check",
|
|
394
|
+
"calendar2-check-fill",
|
|
395
|
+
"calendar2-date",
|
|
396
|
+
"calendar2-date-fill",
|
|
397
|
+
"calendar2-day",
|
|
398
|
+
"calendar2-day-fill",
|
|
399
|
+
"calendar2-event",
|
|
400
|
+
"calendar2-event-fill",
|
|
401
|
+
"calendar2-fill",
|
|
402
|
+
"calendar2-heart",
|
|
403
|
+
"calendar2-heart-fill",
|
|
404
|
+
"calendar2-minus",
|
|
405
|
+
"calendar2-minus-fill",
|
|
406
|
+
"calendar2-month",
|
|
407
|
+
"calendar2-month-fill",
|
|
408
|
+
"calendar2-plus",
|
|
409
|
+
"calendar2-plus-fill",
|
|
410
|
+
"calendar2-range",
|
|
411
|
+
"calendar2-range-fill",
|
|
412
|
+
"calendar2-week",
|
|
413
|
+
"calendar2-week-fill",
|
|
414
|
+
"calendar2-x",
|
|
415
|
+
"calendar2-x-fill",
|
|
416
|
+
"calendar3",
|
|
417
|
+
"calendar3-event",
|
|
418
|
+
"calendar3-event-fill",
|
|
419
|
+
"calendar3-fill",
|
|
420
|
+
"calendar3-range",
|
|
421
|
+
"calendar3-range-fill",
|
|
422
|
+
"calendar3-week",
|
|
423
|
+
"calendar3-week-fill",
|
|
424
|
+
"calendar4",
|
|
425
|
+
"calendar4-event",
|
|
426
|
+
"calendar4-range",
|
|
427
|
+
"calendar4-week",
|
|
428
|
+
"camera",
|
|
429
|
+
"camera-fill",
|
|
430
|
+
"camera-reels",
|
|
431
|
+
"camera-reels-fill",
|
|
432
|
+
"camera-video",
|
|
433
|
+
"camera-video-fill",
|
|
434
|
+
"camera-video-off",
|
|
435
|
+
"camera-video-off-fill",
|
|
436
|
+
"camera2",
|
|
437
|
+
"capslock",
|
|
438
|
+
"capslock-fill",
|
|
439
|
+
"capsule",
|
|
440
|
+
"capsule-pill",
|
|
441
|
+
"car-front",
|
|
442
|
+
"car-front-fill",
|
|
443
|
+
"card-checklist",
|
|
444
|
+
"card-heading",
|
|
445
|
+
"card-image",
|
|
446
|
+
"card-list",
|
|
447
|
+
"card-text",
|
|
448
|
+
"caret-down",
|
|
449
|
+
"caret-down-fill",
|
|
450
|
+
"caret-down-square",
|
|
451
|
+
"caret-down-square-fill",
|
|
452
|
+
"caret-left",
|
|
453
|
+
"caret-left-fill",
|
|
454
|
+
"caret-left-square",
|
|
455
|
+
"caret-left-square-fill",
|
|
456
|
+
"caret-right",
|
|
457
|
+
"caret-right-fill",
|
|
458
|
+
"caret-right-square",
|
|
459
|
+
"caret-right-square-fill",
|
|
460
|
+
"caret-up",
|
|
461
|
+
"caret-up-fill",
|
|
462
|
+
"caret-up-square",
|
|
463
|
+
"caret-up-square-fill",
|
|
464
|
+
"cart",
|
|
465
|
+
"cart-check",
|
|
466
|
+
"cart-check-fill",
|
|
467
|
+
"cart-dash",
|
|
468
|
+
"cart-dash-fill",
|
|
469
|
+
"cart-fill",
|
|
470
|
+
"cart-plus",
|
|
471
|
+
"cart-plus-fill",
|
|
472
|
+
"cart-x",
|
|
473
|
+
"cart-x-fill",
|
|
474
|
+
"cart2",
|
|
475
|
+
"cart3",
|
|
476
|
+
"cart4",
|
|
477
|
+
"cash",
|
|
478
|
+
"cash-coin",
|
|
479
|
+
"cash-stack",
|
|
480
|
+
"cassette",
|
|
481
|
+
"cassette-fill",
|
|
482
|
+
"cast",
|
|
483
|
+
"cc-circle",
|
|
484
|
+
"cc-circle-fill",
|
|
485
|
+
"cc-square",
|
|
486
|
+
"cc-square-fill",
|
|
487
|
+
"chat",
|
|
488
|
+
"chat-dots",
|
|
489
|
+
"chat-dots-fill",
|
|
490
|
+
"chat-fill",
|
|
491
|
+
"chat-heart",
|
|
492
|
+
"chat-heart-fill",
|
|
493
|
+
"chat-left",
|
|
494
|
+
"chat-left-dots",
|
|
495
|
+
"chat-left-dots-fill",
|
|
496
|
+
"chat-left-fill",
|
|
497
|
+
"chat-left-heart",
|
|
498
|
+
"chat-left-heart-fill",
|
|
499
|
+
"chat-left-quote",
|
|
500
|
+
"chat-left-quote-fill",
|
|
501
|
+
"chat-left-text",
|
|
502
|
+
"chat-left-text-fill",
|
|
503
|
+
"chat-quote",
|
|
504
|
+
"chat-quote-fill",
|
|
505
|
+
"chat-right",
|
|
506
|
+
"chat-right-dots",
|
|
507
|
+
"chat-right-dots-fill",
|
|
508
|
+
"chat-right-fill",
|
|
509
|
+
"chat-right-heart",
|
|
510
|
+
"chat-right-heart-fill",
|
|
511
|
+
"chat-right-quote",
|
|
512
|
+
"chat-right-quote-fill",
|
|
513
|
+
"chat-right-text",
|
|
514
|
+
"chat-right-text-fill",
|
|
515
|
+
"chat-square",
|
|
516
|
+
"chat-square-dots",
|
|
517
|
+
"chat-square-dots-fill",
|
|
518
|
+
"chat-square-fill",
|
|
519
|
+
"chat-square-heart",
|
|
520
|
+
"chat-square-heart-fill",
|
|
521
|
+
"chat-square-quote",
|
|
522
|
+
"chat-square-quote-fill",
|
|
523
|
+
"chat-square-text",
|
|
524
|
+
"chat-square-text-fill",
|
|
525
|
+
"chat-text",
|
|
526
|
+
"chat-text-fill",
|
|
527
|
+
"check",
|
|
528
|
+
"check-all",
|
|
529
|
+
"check-circle",
|
|
530
|
+
"check-circle-fill",
|
|
531
|
+
"check-lg",
|
|
532
|
+
"check-square",
|
|
533
|
+
"check-square-fill",
|
|
534
|
+
"check2",
|
|
535
|
+
"check2-all",
|
|
536
|
+
"check2-circle",
|
|
537
|
+
"check2-square",
|
|
538
|
+
"chevron-bar-contract",
|
|
539
|
+
"chevron-bar-down",
|
|
540
|
+
"chevron-bar-expand",
|
|
541
|
+
"chevron-bar-left",
|
|
542
|
+
"chevron-bar-right",
|
|
543
|
+
"chevron-bar-up",
|
|
544
|
+
"chevron-compact-down",
|
|
545
|
+
"chevron-compact-left",
|
|
546
|
+
"chevron-compact-right",
|
|
547
|
+
"chevron-compact-up",
|
|
548
|
+
"chevron-contract",
|
|
549
|
+
"chevron-double-down",
|
|
550
|
+
"chevron-double-left",
|
|
551
|
+
"chevron-double-right",
|
|
552
|
+
"chevron-double-up",
|
|
553
|
+
"chevron-down",
|
|
554
|
+
"chevron-expand",
|
|
555
|
+
"chevron-left",
|
|
556
|
+
"chevron-right",
|
|
557
|
+
"chevron-up",
|
|
558
|
+
"circle",
|
|
559
|
+
"circle-fill",
|
|
560
|
+
"circle-half",
|
|
561
|
+
"circle-square",
|
|
562
|
+
"clipboard",
|
|
563
|
+
"clipboard-check",
|
|
564
|
+
"clipboard-check-fill",
|
|
565
|
+
"clipboard-data",
|
|
566
|
+
"clipboard-data-fill",
|
|
567
|
+
"clipboard-fill",
|
|
568
|
+
"clipboard-heart",
|
|
569
|
+
"clipboard-heart-fill",
|
|
570
|
+
"clipboard-minus",
|
|
571
|
+
"clipboard-minus-fill",
|
|
572
|
+
"clipboard-plus",
|
|
573
|
+
"clipboard-plus-fill",
|
|
574
|
+
"clipboard-pulse",
|
|
575
|
+
"clipboard-x",
|
|
576
|
+
"clipboard-x-fill",
|
|
577
|
+
"clipboard2",
|
|
578
|
+
"clipboard2-check",
|
|
579
|
+
"clipboard2-check-fill",
|
|
580
|
+
"clipboard2-data",
|
|
581
|
+
"clipboard2-data-fill",
|
|
582
|
+
"clipboard2-fill",
|
|
583
|
+
"clipboard2-heart",
|
|
584
|
+
"clipboard2-heart-fill",
|
|
585
|
+
"clipboard2-minus",
|
|
586
|
+
"clipboard2-minus-fill",
|
|
587
|
+
"clipboard2-plus",
|
|
588
|
+
"clipboard2-plus-fill",
|
|
589
|
+
"clipboard2-pulse",
|
|
590
|
+
"clipboard2-pulse-fill",
|
|
591
|
+
"clipboard2-x",
|
|
592
|
+
"clipboard2-x-fill",
|
|
593
|
+
"clock",
|
|
594
|
+
"clock-fill",
|
|
595
|
+
"clock-history",
|
|
596
|
+
"cloud",
|
|
597
|
+
"cloud-arrow-down",
|
|
598
|
+
"cloud-arrow-down-fill",
|
|
599
|
+
"cloud-arrow-up",
|
|
600
|
+
"cloud-arrow-up-fill",
|
|
601
|
+
"cloud-check",
|
|
602
|
+
"cloud-check-fill",
|
|
603
|
+
"cloud-download",
|
|
604
|
+
"cloud-download-fill",
|
|
605
|
+
"cloud-drizzle",
|
|
606
|
+
"cloud-drizzle-fill",
|
|
607
|
+
"cloud-fill",
|
|
608
|
+
"cloud-fog",
|
|
609
|
+
"cloud-fog-fill",
|
|
610
|
+
"cloud-fog2",
|
|
611
|
+
"cloud-fog2-fill",
|
|
612
|
+
"cloud-hail",
|
|
613
|
+
"cloud-hail-fill",
|
|
614
|
+
"cloud-haze",
|
|
615
|
+
"cloud-haze-fill",
|
|
616
|
+
"cloud-haze2",
|
|
617
|
+
"cloud-haze2-fill",
|
|
618
|
+
"cloud-lightning",
|
|
619
|
+
"cloud-lightning-fill",
|
|
620
|
+
"cloud-lightning-rain",
|
|
621
|
+
"cloud-lightning-rain-fill",
|
|
622
|
+
"cloud-minus",
|
|
623
|
+
"cloud-minus-fill",
|
|
624
|
+
"cloud-moon",
|
|
625
|
+
"cloud-moon-fill",
|
|
626
|
+
"cloud-plus",
|
|
627
|
+
"cloud-plus-fill",
|
|
628
|
+
"cloud-rain",
|
|
629
|
+
"cloud-rain-fill",
|
|
630
|
+
"cloud-rain-heavy",
|
|
631
|
+
"cloud-rain-heavy-fill",
|
|
632
|
+
"cloud-slash",
|
|
633
|
+
"cloud-slash-fill",
|
|
634
|
+
"cloud-sleet",
|
|
635
|
+
"cloud-sleet-fill",
|
|
636
|
+
"cloud-snow",
|
|
637
|
+
"cloud-snow-fill",
|
|
638
|
+
"cloud-sun",
|
|
639
|
+
"cloud-sun-fill",
|
|
640
|
+
"cloud-upload",
|
|
641
|
+
"cloud-upload-fill",
|
|
642
|
+
"clouds",
|
|
643
|
+
"clouds-fill",
|
|
644
|
+
"cloudy",
|
|
645
|
+
"cloudy-fill",
|
|
646
|
+
"code",
|
|
647
|
+
"code-slash",
|
|
648
|
+
"code-square",
|
|
649
|
+
"coin",
|
|
650
|
+
"collection",
|
|
651
|
+
"collection-fill",
|
|
652
|
+
"collection-play",
|
|
653
|
+
"collection-play-fill",
|
|
654
|
+
"columns",
|
|
655
|
+
"columns-gap",
|
|
656
|
+
"command",
|
|
657
|
+
"compass",
|
|
658
|
+
"compass-fill",
|
|
659
|
+
"cone",
|
|
660
|
+
"cone-striped",
|
|
661
|
+
"controller",
|
|
662
|
+
"cookie",
|
|
663
|
+
"copy",
|
|
664
|
+
"cpu",
|
|
665
|
+
"cpu-fill",
|
|
666
|
+
"credit-card",
|
|
667
|
+
"credit-card-2-back",
|
|
668
|
+
"credit-card-2-back-fill",
|
|
669
|
+
"credit-card-2-front",
|
|
670
|
+
"credit-card-2-front-fill",
|
|
671
|
+
"credit-card-fill",
|
|
672
|
+
"crop",
|
|
673
|
+
"crosshair",
|
|
674
|
+
"crosshair2",
|
|
675
|
+
"cup",
|
|
676
|
+
"cup-fill",
|
|
677
|
+
"cup-hot",
|
|
678
|
+
"cup-hot-fill",
|
|
679
|
+
"cup-straw",
|
|
680
|
+
"currency-bitcoin",
|
|
681
|
+
"currency-dollar",
|
|
682
|
+
"currency-euro",
|
|
683
|
+
"currency-exchange",
|
|
684
|
+
"currency-pound",
|
|
685
|
+
"currency-rupee",
|
|
686
|
+
"currency-yen",
|
|
687
|
+
"cursor",
|
|
688
|
+
"cursor-fill",
|
|
689
|
+
"cursor-text",
|
|
690
|
+
"dash",
|
|
691
|
+
"dash-circle",
|
|
692
|
+
"dash-circle-dotted",
|
|
693
|
+
"dash-circle-fill",
|
|
694
|
+
"dash-lg",
|
|
695
|
+
"dash-square",
|
|
696
|
+
"dash-square-dotted",
|
|
697
|
+
"dash-square-fill",
|
|
698
|
+
"database",
|
|
699
|
+
"database-add",
|
|
700
|
+
"database-check",
|
|
701
|
+
"database-dash",
|
|
702
|
+
"database-down",
|
|
703
|
+
"database-exclamation",
|
|
704
|
+
"database-fill",
|
|
705
|
+
"database-fill-add",
|
|
706
|
+
"database-fill-check",
|
|
707
|
+
"database-fill-dash",
|
|
708
|
+
"database-fill-down",
|
|
709
|
+
"database-fill-exclamation",
|
|
710
|
+
"database-fill-gear",
|
|
711
|
+
"database-fill-lock",
|
|
712
|
+
"database-fill-slash",
|
|
713
|
+
"database-fill-up",
|
|
714
|
+
"database-fill-x",
|
|
715
|
+
"database-gear",
|
|
716
|
+
"database-lock",
|
|
717
|
+
"database-slash",
|
|
718
|
+
"database-up",
|
|
719
|
+
"database-x",
|
|
720
|
+
"device-hdd",
|
|
721
|
+
"device-hdd-fill",
|
|
722
|
+
"device-ssd",
|
|
723
|
+
"device-ssd-fill",
|
|
724
|
+
"diagram-2",
|
|
725
|
+
"diagram-2-fill",
|
|
726
|
+
"diagram-3",
|
|
727
|
+
"diagram-3-fill",
|
|
728
|
+
"diamond",
|
|
729
|
+
"diamond-fill",
|
|
730
|
+
"diamond-half",
|
|
731
|
+
"dice-1",
|
|
732
|
+
"dice-1-fill",
|
|
733
|
+
"dice-2",
|
|
734
|
+
"dice-2-fill",
|
|
735
|
+
"dice-3",
|
|
736
|
+
"dice-3-fill",
|
|
737
|
+
"dice-4",
|
|
738
|
+
"dice-4-fill",
|
|
739
|
+
"dice-5",
|
|
740
|
+
"dice-5-fill",
|
|
741
|
+
"dice-6",
|
|
742
|
+
"dice-6-fill",
|
|
743
|
+
"disc",
|
|
744
|
+
"disc-fill",
|
|
745
|
+
"discord",
|
|
746
|
+
"display",
|
|
747
|
+
"display-fill",
|
|
748
|
+
"displayport",
|
|
749
|
+
"displayport-fill",
|
|
750
|
+
"distribute-horizontal",
|
|
751
|
+
"distribute-vertical",
|
|
752
|
+
"door-closed",
|
|
753
|
+
"door-closed-fill",
|
|
754
|
+
"door-open",
|
|
755
|
+
"door-open-fill",
|
|
756
|
+
"dot",
|
|
757
|
+
"download",
|
|
758
|
+
"dpad",
|
|
759
|
+
"dpad-fill",
|
|
760
|
+
"dribbble",
|
|
761
|
+
"dropbox",
|
|
762
|
+
"droplet",
|
|
763
|
+
"droplet-fill",
|
|
764
|
+
"droplet-half",
|
|
765
|
+
"duffle",
|
|
766
|
+
"duffle-fill",
|
|
767
|
+
"ear",
|
|
768
|
+
"ear-fill",
|
|
769
|
+
"earbuds",
|
|
770
|
+
"easel",
|
|
771
|
+
"easel-fill",
|
|
772
|
+
"easel2",
|
|
773
|
+
"easel2-fill",
|
|
774
|
+
"easel3",
|
|
775
|
+
"easel3-fill",
|
|
776
|
+
"egg",
|
|
777
|
+
"egg-fill",
|
|
778
|
+
"egg-fried",
|
|
779
|
+
"eject",
|
|
780
|
+
"eject-fill",
|
|
781
|
+
"emoji-angry",
|
|
782
|
+
"emoji-angry-fill",
|
|
783
|
+
"emoji-astonished",
|
|
784
|
+
"emoji-astonished-fill",
|
|
785
|
+
"emoji-dizzy",
|
|
786
|
+
"emoji-dizzy-fill",
|
|
787
|
+
"emoji-expressionless",
|
|
788
|
+
"emoji-expressionless-fill",
|
|
789
|
+
"emoji-frown",
|
|
790
|
+
"emoji-frown-fill",
|
|
791
|
+
"emoji-grimace",
|
|
792
|
+
"emoji-grimace-fill",
|
|
793
|
+
"emoji-grin",
|
|
794
|
+
"emoji-grin-fill",
|
|
795
|
+
"emoji-heart-eyes",
|
|
796
|
+
"emoji-heart-eyes-fill",
|
|
797
|
+
"emoji-kiss",
|
|
798
|
+
"emoji-kiss-fill",
|
|
799
|
+
"emoji-laughing",
|
|
800
|
+
"emoji-laughing-fill",
|
|
801
|
+
"emoji-neutral",
|
|
802
|
+
"emoji-neutral-fill",
|
|
803
|
+
"emoji-smile",
|
|
804
|
+
"emoji-smile-fill",
|
|
805
|
+
"emoji-smile-upside-down",
|
|
806
|
+
"emoji-smile-upside-down-fill",
|
|
807
|
+
"emoji-sunglasses",
|
|
808
|
+
"emoji-sunglasses-fill",
|
|
809
|
+
"emoji-surprise",
|
|
810
|
+
"emoji-surprise-fill",
|
|
811
|
+
"emoji-tear",
|
|
812
|
+
"emoji-tear-fill",
|
|
813
|
+
"emoji-wink",
|
|
814
|
+
"emoji-wink-fill",
|
|
815
|
+
"envelope",
|
|
816
|
+
"envelope-arrow-down",
|
|
817
|
+
"envelope-arrow-down-fill",
|
|
818
|
+
"envelope-arrow-up",
|
|
819
|
+
"envelope-arrow-up-fill",
|
|
820
|
+
"envelope-at",
|
|
821
|
+
"envelope-at-fill",
|
|
822
|
+
"envelope-check",
|
|
823
|
+
"envelope-check-fill",
|
|
824
|
+
"envelope-dash",
|
|
825
|
+
"envelope-dash-fill",
|
|
826
|
+
"envelope-exclamation",
|
|
827
|
+
"envelope-exclamation-fill",
|
|
828
|
+
"envelope-fill",
|
|
829
|
+
"envelope-heart",
|
|
830
|
+
"envelope-heart-fill",
|
|
831
|
+
"envelope-open",
|
|
832
|
+
"envelope-open-fill",
|
|
833
|
+
"envelope-open-heart",
|
|
834
|
+
"envelope-open-heart-fill",
|
|
835
|
+
"envelope-paper",
|
|
836
|
+
"envelope-paper-fill",
|
|
837
|
+
"envelope-paper-heart",
|
|
838
|
+
"envelope-paper-heart-fill",
|
|
839
|
+
"envelope-plus",
|
|
840
|
+
"envelope-plus-fill",
|
|
841
|
+
"envelope-slash",
|
|
842
|
+
"envelope-slash-fill",
|
|
843
|
+
"envelope-x",
|
|
844
|
+
"envelope-x-fill",
|
|
845
|
+
"eraser",
|
|
846
|
+
"eraser-fill",
|
|
847
|
+
"escape",
|
|
848
|
+
"ethernet",
|
|
849
|
+
"ev-front",
|
|
850
|
+
"ev-front-fill",
|
|
851
|
+
"ev-station",
|
|
852
|
+
"ev-station-fill",
|
|
853
|
+
"exclamation",
|
|
854
|
+
"exclamation-circle",
|
|
855
|
+
"exclamation-circle-fill",
|
|
856
|
+
"exclamation-diamond",
|
|
857
|
+
"exclamation-diamond-fill",
|
|
858
|
+
"exclamation-lg",
|
|
859
|
+
"exclamation-octagon",
|
|
860
|
+
"exclamation-octagon-fill",
|
|
861
|
+
"exclamation-square",
|
|
862
|
+
"exclamation-square-fill",
|
|
863
|
+
"exclamation-triangle",
|
|
864
|
+
"exclamation-triangle-fill",
|
|
865
|
+
"exclude",
|
|
866
|
+
"explicit",
|
|
867
|
+
"explicit-fill",
|
|
868
|
+
"exposure",
|
|
869
|
+
"eye",
|
|
870
|
+
"eye-fill",
|
|
871
|
+
"eye-slash",
|
|
872
|
+
"eye-slash-fill",
|
|
873
|
+
"eyedropper",
|
|
874
|
+
"eyeglasses",
|
|
875
|
+
"facebook",
|
|
876
|
+
"fan",
|
|
877
|
+
"fast-forward",
|
|
878
|
+
"fast-forward-btn",
|
|
879
|
+
"fast-forward-btn-fill",
|
|
880
|
+
"fast-forward-circle",
|
|
881
|
+
"fast-forward-circle-fill",
|
|
882
|
+
"fast-forward-fill",
|
|
883
|
+
"feather",
|
|
884
|
+
"feather2",
|
|
885
|
+
"file",
|
|
886
|
+
"file-arrow-down",
|
|
887
|
+
"file-arrow-down-fill",
|
|
888
|
+
"file-arrow-up",
|
|
889
|
+
"file-arrow-up-fill",
|
|
890
|
+
"file-bar-graph",
|
|
891
|
+
"file-bar-graph-fill",
|
|
892
|
+
"file-binary",
|
|
893
|
+
"file-binary-fill",
|
|
894
|
+
"file-break",
|
|
895
|
+
"file-break-fill",
|
|
896
|
+
"file-check",
|
|
897
|
+
"file-check-fill",
|
|
898
|
+
"file-code",
|
|
899
|
+
"file-code-fill",
|
|
900
|
+
"file-diff",
|
|
901
|
+
"file-diff-fill",
|
|
902
|
+
"file-earmark",
|
|
903
|
+
"file-earmark-arrow-down",
|
|
904
|
+
"file-earmark-arrow-down-fill",
|
|
905
|
+
"file-earmark-arrow-up",
|
|
906
|
+
"file-earmark-arrow-up-fill",
|
|
907
|
+
"file-earmark-bar-graph",
|
|
908
|
+
"file-earmark-bar-graph-fill",
|
|
909
|
+
"file-earmark-binary",
|
|
910
|
+
"file-earmark-binary-fill",
|
|
911
|
+
"file-earmark-break",
|
|
912
|
+
"file-earmark-break-fill",
|
|
913
|
+
"file-earmark-check",
|
|
914
|
+
"file-earmark-check-fill",
|
|
915
|
+
"file-earmark-code",
|
|
916
|
+
"file-earmark-code-fill",
|
|
917
|
+
"file-earmark-diff",
|
|
918
|
+
"file-earmark-diff-fill",
|
|
919
|
+
"file-earmark-easel",
|
|
920
|
+
"file-earmark-easel-fill",
|
|
921
|
+
"file-earmark-excel",
|
|
922
|
+
"file-earmark-excel-fill",
|
|
923
|
+
"file-earmark-fill",
|
|
924
|
+
"file-earmark-font",
|
|
925
|
+
"file-earmark-font-fill",
|
|
926
|
+
"file-earmark-image",
|
|
927
|
+
"file-earmark-image-fill",
|
|
928
|
+
"file-earmark-lock",
|
|
929
|
+
"file-earmark-lock-fill",
|
|
930
|
+
"file-earmark-lock2",
|
|
931
|
+
"file-earmark-lock2-fill",
|
|
932
|
+
"file-earmark-medical",
|
|
933
|
+
"file-earmark-medical-fill",
|
|
934
|
+
"file-earmark-minus",
|
|
935
|
+
"file-earmark-minus-fill",
|
|
936
|
+
"file-earmark-music",
|
|
937
|
+
"file-earmark-music-fill",
|
|
938
|
+
"file-earmark-pdf",
|
|
939
|
+
"file-earmark-pdf-fill",
|
|
940
|
+
"file-earmark-person",
|
|
941
|
+
"file-earmark-person-fill",
|
|
942
|
+
"file-earmark-play",
|
|
943
|
+
"file-earmark-play-fill",
|
|
944
|
+
"file-earmark-plus",
|
|
945
|
+
"file-earmark-plus-fill",
|
|
946
|
+
"file-earmark-post",
|
|
947
|
+
"file-earmark-post-fill",
|
|
948
|
+
"file-earmark-ppt",
|
|
949
|
+
"file-earmark-ppt-fill",
|
|
950
|
+
"file-earmark-richtext",
|
|
951
|
+
"file-earmark-richtext-fill",
|
|
952
|
+
"file-earmark-ruled",
|
|
953
|
+
"file-earmark-ruled-fill",
|
|
954
|
+
"file-earmark-slides",
|
|
955
|
+
"file-earmark-slides-fill",
|
|
956
|
+
"file-earmark-spreadsheet",
|
|
957
|
+
"file-earmark-spreadsheet-fill",
|
|
958
|
+
"file-earmark-text",
|
|
959
|
+
"file-earmark-text-fill",
|
|
960
|
+
"file-earmark-word",
|
|
961
|
+
"file-earmark-word-fill",
|
|
962
|
+
"file-earmark-x",
|
|
963
|
+
"file-earmark-x-fill",
|
|
964
|
+
"file-earmark-zip",
|
|
965
|
+
"file-earmark-zip-fill",
|
|
966
|
+
"file-easel",
|
|
967
|
+
"file-easel-fill",
|
|
968
|
+
"file-excel",
|
|
969
|
+
"file-excel-fill",
|
|
970
|
+
"file-fill",
|
|
971
|
+
"file-font",
|
|
972
|
+
"file-font-fill",
|
|
973
|
+
"file-image",
|
|
974
|
+
"file-image-fill",
|
|
975
|
+
"file-lock",
|
|
976
|
+
"file-lock-fill",
|
|
977
|
+
"file-lock2",
|
|
978
|
+
"file-lock2-fill",
|
|
979
|
+
"file-medical",
|
|
980
|
+
"file-medical-fill",
|
|
981
|
+
"file-minus",
|
|
982
|
+
"file-minus-fill",
|
|
983
|
+
"file-music",
|
|
984
|
+
"file-music-fill",
|
|
985
|
+
"file-pdf",
|
|
986
|
+
"file-pdf-fill",
|
|
987
|
+
"file-person",
|
|
988
|
+
"file-person-fill",
|
|
989
|
+
"file-play",
|
|
990
|
+
"file-play-fill",
|
|
991
|
+
"file-plus",
|
|
992
|
+
"file-plus-fill",
|
|
993
|
+
"file-post",
|
|
994
|
+
"file-post-fill",
|
|
995
|
+
"file-ppt",
|
|
996
|
+
"file-ppt-fill",
|
|
997
|
+
"file-richtext",
|
|
998
|
+
"file-richtext-fill",
|
|
999
|
+
"file-ruled",
|
|
1000
|
+
"file-ruled-fill",
|
|
1001
|
+
"file-slides",
|
|
1002
|
+
"file-slides-fill",
|
|
1003
|
+
"file-spreadsheet",
|
|
1004
|
+
"file-spreadsheet-fill",
|
|
1005
|
+
"file-text",
|
|
1006
|
+
"file-text-fill",
|
|
1007
|
+
"file-word",
|
|
1008
|
+
"file-word-fill",
|
|
1009
|
+
"file-x",
|
|
1010
|
+
"file-x-fill",
|
|
1011
|
+
"file-zip",
|
|
1012
|
+
"file-zip-fill",
|
|
1013
|
+
"files",
|
|
1014
|
+
"files-alt",
|
|
1015
|
+
"filetype-aac",
|
|
1016
|
+
"filetype-ai",
|
|
1017
|
+
"filetype-bmp",
|
|
1018
|
+
"filetype-cs",
|
|
1019
|
+
"filetype-css",
|
|
1020
|
+
"filetype-csv",
|
|
1021
|
+
"filetype-doc",
|
|
1022
|
+
"filetype-docx",
|
|
1023
|
+
"filetype-exe",
|
|
1024
|
+
"filetype-gif",
|
|
1025
|
+
"filetype-heic",
|
|
1026
|
+
"filetype-html",
|
|
1027
|
+
"filetype-java",
|
|
1028
|
+
"filetype-jpg",
|
|
1029
|
+
"filetype-js",
|
|
1030
|
+
"filetype-json",
|
|
1031
|
+
"filetype-jsx",
|
|
1032
|
+
"filetype-key",
|
|
1033
|
+
"filetype-m4p",
|
|
1034
|
+
"filetype-md",
|
|
1035
|
+
"filetype-mdx",
|
|
1036
|
+
"filetype-mov",
|
|
1037
|
+
"filetype-mp3",
|
|
1038
|
+
"filetype-mp4",
|
|
1039
|
+
"filetype-otf",
|
|
1040
|
+
"filetype-pdf",
|
|
1041
|
+
"filetype-php",
|
|
1042
|
+
"filetype-png",
|
|
1043
|
+
"filetype-ppt",
|
|
1044
|
+
"filetype-pptx",
|
|
1045
|
+
"filetype-psd",
|
|
1046
|
+
"filetype-py",
|
|
1047
|
+
"filetype-raw",
|
|
1048
|
+
"filetype-rb",
|
|
1049
|
+
"filetype-sass",
|
|
1050
|
+
"filetype-scss",
|
|
1051
|
+
"filetype-sh",
|
|
1052
|
+
"filetype-sql",
|
|
1053
|
+
"filetype-svg",
|
|
1054
|
+
"filetype-tiff",
|
|
1055
|
+
"filetype-tsx",
|
|
1056
|
+
"filetype-ttf",
|
|
1057
|
+
"filetype-txt",
|
|
1058
|
+
"filetype-wav",
|
|
1059
|
+
"filetype-woff",
|
|
1060
|
+
"filetype-xls",
|
|
1061
|
+
"filetype-xlsx",
|
|
1062
|
+
"filetype-xml",
|
|
1063
|
+
"filetype-yml",
|
|
1064
|
+
"film",
|
|
1065
|
+
"filter",
|
|
1066
|
+
"filter-circle",
|
|
1067
|
+
"filter-circle-fill",
|
|
1068
|
+
"filter-left",
|
|
1069
|
+
"filter-right",
|
|
1070
|
+
"filter-square",
|
|
1071
|
+
"filter-square-fill",
|
|
1072
|
+
"fingerprint",
|
|
1073
|
+
"fire",
|
|
1074
|
+
"flag",
|
|
1075
|
+
"flag-fill",
|
|
1076
|
+
"floppy",
|
|
1077
|
+
"floppy-fill",
|
|
1078
|
+
"floppy2",
|
|
1079
|
+
"floppy2-fill",
|
|
1080
|
+
"flower1",
|
|
1081
|
+
"flower2",
|
|
1082
|
+
"flower3",
|
|
1083
|
+
"folder",
|
|
1084
|
+
"folder-check",
|
|
1085
|
+
"folder-fill",
|
|
1086
|
+
"folder-minus",
|
|
1087
|
+
"folder-plus",
|
|
1088
|
+
"folder-symlink",
|
|
1089
|
+
"folder-symlink-fill",
|
|
1090
|
+
"folder-x",
|
|
1091
|
+
"folder2",
|
|
1092
|
+
"folder2-open",
|
|
1093
|
+
"fonts",
|
|
1094
|
+
"forward",
|
|
1095
|
+
"forward-fill",
|
|
1096
|
+
"front",
|
|
1097
|
+
"fuel-pump",
|
|
1098
|
+
"fuel-pump-diesel",
|
|
1099
|
+
"fuel-pump-diesel-fill",
|
|
1100
|
+
"fuel-pump-fill",
|
|
1101
|
+
"fullscreen",
|
|
1102
|
+
"fullscreen-exit",
|
|
1103
|
+
"funnel",
|
|
1104
|
+
"funnel-fill",
|
|
1105
|
+
"gear",
|
|
1106
|
+
"gear-fill",
|
|
1107
|
+
"gear-wide",
|
|
1108
|
+
"gear-wide-connected",
|
|
1109
|
+
"gem",
|
|
1110
|
+
"gender-ambiguous",
|
|
1111
|
+
"gender-female",
|
|
1112
|
+
"gender-male",
|
|
1113
|
+
"gender-neuter",
|
|
1114
|
+
"gender-trans",
|
|
1115
|
+
"geo",
|
|
1116
|
+
"geo-alt",
|
|
1117
|
+
"geo-alt-fill",
|
|
1118
|
+
"geo-fill",
|
|
1119
|
+
"gift",
|
|
1120
|
+
"gift-fill",
|
|
1121
|
+
"git",
|
|
1122
|
+
"github",
|
|
1123
|
+
"gitlab",
|
|
1124
|
+
"globe",
|
|
1125
|
+
"globe-americas",
|
|
1126
|
+
"globe-asia-australia",
|
|
1127
|
+
"globe-central-south-asia",
|
|
1128
|
+
"globe-europe-africa",
|
|
1129
|
+
"globe2",
|
|
1130
|
+
"google",
|
|
1131
|
+
"google-play",
|
|
1132
|
+
"gpu-card",
|
|
1133
|
+
"graph-down",
|
|
1134
|
+
"graph-down-arrow",
|
|
1135
|
+
"graph-up",
|
|
1136
|
+
"graph-up-arrow",
|
|
1137
|
+
"grid",
|
|
1138
|
+
"grid-1x2",
|
|
1139
|
+
"grid-1x2-fill",
|
|
1140
|
+
"grid-3x2",
|
|
1141
|
+
"grid-3x2-gap",
|
|
1142
|
+
"grid-3x2-gap-fill",
|
|
1143
|
+
"grid-3x3",
|
|
1144
|
+
"grid-3x3-gap",
|
|
1145
|
+
"grid-3x3-gap-fill",
|
|
1146
|
+
"grid-fill",
|
|
1147
|
+
"grip-horizontal",
|
|
1148
|
+
"grip-vertical",
|
|
1149
|
+
"h-circle",
|
|
1150
|
+
"h-circle-fill",
|
|
1151
|
+
"h-square",
|
|
1152
|
+
"h-square-fill",
|
|
1153
|
+
"hammer",
|
|
1154
|
+
"hand-index",
|
|
1155
|
+
"hand-index-fill",
|
|
1156
|
+
"hand-index-thumb",
|
|
1157
|
+
"hand-index-thumb-fill",
|
|
1158
|
+
"hand-thumbs-down",
|
|
1159
|
+
"hand-thumbs-down-fill",
|
|
1160
|
+
"hand-thumbs-up",
|
|
1161
|
+
"hand-thumbs-up-fill",
|
|
1162
|
+
"handbag",
|
|
1163
|
+
"handbag-fill",
|
|
1164
|
+
"hash",
|
|
1165
|
+
"hdd",
|
|
1166
|
+
"hdd-fill",
|
|
1167
|
+
"hdd-network",
|
|
1168
|
+
"hdd-network-fill",
|
|
1169
|
+
"hdd-rack",
|
|
1170
|
+
"hdd-rack-fill",
|
|
1171
|
+
"hdd-stack",
|
|
1172
|
+
"hdd-stack-fill",
|
|
1173
|
+
"hdmi",
|
|
1174
|
+
"hdmi-fill",
|
|
1175
|
+
"headphones",
|
|
1176
|
+
"headset",
|
|
1177
|
+
"headset-vr",
|
|
1178
|
+
"heart",
|
|
1179
|
+
"heart-arrow",
|
|
1180
|
+
"heart-fill",
|
|
1181
|
+
"heart-half",
|
|
1182
|
+
"heart-pulse",
|
|
1183
|
+
"heart-pulse-fill",
|
|
1184
|
+
"heartbreak",
|
|
1185
|
+
"heartbreak-fill",
|
|
1186
|
+
"hearts",
|
|
1187
|
+
"heptagon",
|
|
1188
|
+
"heptagon-fill",
|
|
1189
|
+
"heptagon-half",
|
|
1190
|
+
"hexagon",
|
|
1191
|
+
"hexagon-fill",
|
|
1192
|
+
"hexagon-half",
|
|
1193
|
+
"highlighter",
|
|
1194
|
+
"highlights",
|
|
1195
|
+
"hospital",
|
|
1196
|
+
"hospital-fill",
|
|
1197
|
+
"hourglass",
|
|
1198
|
+
"hourglass-bottom",
|
|
1199
|
+
"hourglass-split",
|
|
1200
|
+
"hourglass-top",
|
|
1201
|
+
"house",
|
|
1202
|
+
"house-add",
|
|
1203
|
+
"house-add-fill",
|
|
1204
|
+
"house-check",
|
|
1205
|
+
"house-check-fill",
|
|
1206
|
+
"house-dash",
|
|
1207
|
+
"house-dash-fill",
|
|
1208
|
+
"house-door",
|
|
1209
|
+
"house-door-fill",
|
|
1210
|
+
"house-down",
|
|
1211
|
+
"house-down-fill",
|
|
1212
|
+
"house-exclamation",
|
|
1213
|
+
"house-exclamation-fill",
|
|
1214
|
+
"house-fill",
|
|
1215
|
+
"house-gear",
|
|
1216
|
+
"house-gear-fill",
|
|
1217
|
+
"house-heart",
|
|
1218
|
+
"house-heart-fill",
|
|
1219
|
+
"house-lock",
|
|
1220
|
+
"house-lock-fill",
|
|
1221
|
+
"house-slash",
|
|
1222
|
+
"house-slash-fill",
|
|
1223
|
+
"house-up",
|
|
1224
|
+
"house-up-fill",
|
|
1225
|
+
"house-x",
|
|
1226
|
+
"house-x-fill",
|
|
1227
|
+
"houses",
|
|
1228
|
+
"houses-fill",
|
|
1229
|
+
"hr",
|
|
1230
|
+
"hurricane",
|
|
1231
|
+
"hypnotize",
|
|
1232
|
+
"image",
|
|
1233
|
+
"image-alt",
|
|
1234
|
+
"image-fill",
|
|
1235
|
+
"images",
|
|
1236
|
+
"inbox",
|
|
1237
|
+
"inbox-fill",
|
|
1238
|
+
"inboxes",
|
|
1239
|
+
"inboxes-fill",
|
|
1240
|
+
"incognito",
|
|
1241
|
+
"indent",
|
|
1242
|
+
"infinity",
|
|
1243
|
+
"info",
|
|
1244
|
+
"info-circle",
|
|
1245
|
+
"info-circle-fill",
|
|
1246
|
+
"info-lg",
|
|
1247
|
+
"info-square",
|
|
1248
|
+
"info-square-fill",
|
|
1249
|
+
"input-cursor",
|
|
1250
|
+
"input-cursor-text",
|
|
1251
|
+
"instagram",
|
|
1252
|
+
"intersect",
|
|
1253
|
+
"journal",
|
|
1254
|
+
"journal-album",
|
|
1255
|
+
"journal-arrow-down",
|
|
1256
|
+
"journal-arrow-up",
|
|
1257
|
+
"journal-bookmark",
|
|
1258
|
+
"journal-bookmark-fill",
|
|
1259
|
+
"journal-check",
|
|
1260
|
+
"journal-code",
|
|
1261
|
+
"journal-medical",
|
|
1262
|
+
"journal-minus",
|
|
1263
|
+
"journal-plus",
|
|
1264
|
+
"journal-richtext",
|
|
1265
|
+
"journal-text",
|
|
1266
|
+
"journal-x",
|
|
1267
|
+
"journals",
|
|
1268
|
+
"joystick",
|
|
1269
|
+
"justify",
|
|
1270
|
+
"justify-left",
|
|
1271
|
+
"justify-right",
|
|
1272
|
+
"kanban",
|
|
1273
|
+
"kanban-fill",
|
|
1274
|
+
"key",
|
|
1275
|
+
"key-fill",
|
|
1276
|
+
"keyboard",
|
|
1277
|
+
"keyboard-fill",
|
|
1278
|
+
"ladder",
|
|
1279
|
+
"lamp",
|
|
1280
|
+
"lamp-fill",
|
|
1281
|
+
"laptop",
|
|
1282
|
+
"laptop-fill",
|
|
1283
|
+
"layer-backward",
|
|
1284
|
+
"layer-forward",
|
|
1285
|
+
"layers",
|
|
1286
|
+
"layers-fill",
|
|
1287
|
+
"layers-half",
|
|
1288
|
+
"layout-sidebar",
|
|
1289
|
+
"layout-sidebar-inset",
|
|
1290
|
+
"layout-sidebar-inset-reverse",
|
|
1291
|
+
"layout-sidebar-reverse",
|
|
1292
|
+
"layout-split",
|
|
1293
|
+
"layout-text-sidebar",
|
|
1294
|
+
"layout-text-sidebar-reverse",
|
|
1295
|
+
"layout-text-window",
|
|
1296
|
+
"layout-text-window-reverse",
|
|
1297
|
+
"layout-three-columns",
|
|
1298
|
+
"layout-wtf",
|
|
1299
|
+
"life-preserver",
|
|
1300
|
+
"lightbulb",
|
|
1301
|
+
"lightbulb-fill",
|
|
1302
|
+
"lightbulb-off",
|
|
1303
|
+
"lightbulb-off-fill",
|
|
1304
|
+
"lightning",
|
|
1305
|
+
"lightning-charge",
|
|
1306
|
+
"lightning-charge-fill",
|
|
1307
|
+
"lightning-fill",
|
|
1308
|
+
"line",
|
|
1309
|
+
"link",
|
|
1310
|
+
"link-45deg",
|
|
1311
|
+
"linkedin",
|
|
1312
|
+
"list",
|
|
1313
|
+
"list-check",
|
|
1314
|
+
"list-columns",
|
|
1315
|
+
"list-columns-reverse",
|
|
1316
|
+
"list-nested",
|
|
1317
|
+
"list-ol",
|
|
1318
|
+
"list-stars",
|
|
1319
|
+
"list-task",
|
|
1320
|
+
"list-ul",
|
|
1321
|
+
"lock",
|
|
1322
|
+
"lock-fill",
|
|
1323
|
+
"luggage",
|
|
1324
|
+
"luggage-fill",
|
|
1325
|
+
"lungs",
|
|
1326
|
+
"lungs-fill",
|
|
1327
|
+
"magic",
|
|
1328
|
+
"magnet",
|
|
1329
|
+
"magnet-fill",
|
|
1330
|
+
"mailbox",
|
|
1331
|
+
"mailbox-flag",
|
|
1332
|
+
"mailbox2",
|
|
1333
|
+
"mailbox2-flag",
|
|
1334
|
+
"map",
|
|
1335
|
+
"map-fill",
|
|
1336
|
+
"markdown",
|
|
1337
|
+
"markdown-fill",
|
|
1338
|
+
"marker-tip",
|
|
1339
|
+
"mask",
|
|
1340
|
+
"mastodon",
|
|
1341
|
+
"medium",
|
|
1342
|
+
"megaphone",
|
|
1343
|
+
"megaphone-fill",
|
|
1344
|
+
"memory",
|
|
1345
|
+
"menu-app",
|
|
1346
|
+
"menu-app-fill",
|
|
1347
|
+
"menu-button",
|
|
1348
|
+
"menu-button-fill",
|
|
1349
|
+
"menu-button-wide",
|
|
1350
|
+
"menu-button-wide-fill",
|
|
1351
|
+
"menu-down",
|
|
1352
|
+
"menu-up",
|
|
1353
|
+
"messenger",
|
|
1354
|
+
"meta",
|
|
1355
|
+
"mic",
|
|
1356
|
+
"mic-fill",
|
|
1357
|
+
"mic-mute",
|
|
1358
|
+
"mic-mute-fill",
|
|
1359
|
+
"microsoft",
|
|
1360
|
+
"microsoft-teams",
|
|
1361
|
+
"minecart",
|
|
1362
|
+
"minecart-loaded",
|
|
1363
|
+
"modem",
|
|
1364
|
+
"modem-fill",
|
|
1365
|
+
"moisture",
|
|
1366
|
+
"moon",
|
|
1367
|
+
"moon-fill",
|
|
1368
|
+
"moon-stars",
|
|
1369
|
+
"moon-stars-fill",
|
|
1370
|
+
"mortarboard",
|
|
1371
|
+
"mortarboard-fill",
|
|
1372
|
+
"motherboard",
|
|
1373
|
+
"motherboard-fill",
|
|
1374
|
+
"mouse",
|
|
1375
|
+
"mouse-fill",
|
|
1376
|
+
"mouse2",
|
|
1377
|
+
"mouse2-fill",
|
|
1378
|
+
"mouse3",
|
|
1379
|
+
"mouse3-fill",
|
|
1380
|
+
"music-note",
|
|
1381
|
+
"music-note-beamed",
|
|
1382
|
+
"music-note-list",
|
|
1383
|
+
"music-player",
|
|
1384
|
+
"music-player-fill",
|
|
1385
|
+
"newspaper",
|
|
1386
|
+
"nintendo-switch",
|
|
1387
|
+
"node-minus",
|
|
1388
|
+
"node-minus-fill",
|
|
1389
|
+
"node-plus",
|
|
1390
|
+
"node-plus-fill",
|
|
1391
|
+
"noise-reduction",
|
|
1392
|
+
"nut",
|
|
1393
|
+
"nut-fill",
|
|
1394
|
+
"nvidia",
|
|
1395
|
+
"nvme",
|
|
1396
|
+
"nvme-fill",
|
|
1397
|
+
"octagon",
|
|
1398
|
+
"octagon-fill",
|
|
1399
|
+
"octagon-half",
|
|
1400
|
+
"opencollective",
|
|
1401
|
+
"optical-audio",
|
|
1402
|
+
"optical-audio-fill",
|
|
1403
|
+
"option",
|
|
1404
|
+
"outlet",
|
|
1405
|
+
"p-circle",
|
|
1406
|
+
"p-circle-fill",
|
|
1407
|
+
"p-square",
|
|
1408
|
+
"p-square-fill",
|
|
1409
|
+
"paint-bucket",
|
|
1410
|
+
"palette",
|
|
1411
|
+
"palette-fill",
|
|
1412
|
+
"palette2",
|
|
1413
|
+
"paperclip",
|
|
1414
|
+
"paragraph",
|
|
1415
|
+
"pass",
|
|
1416
|
+
"pass-fill",
|
|
1417
|
+
"passport",
|
|
1418
|
+
"passport-fill",
|
|
1419
|
+
"patch-check",
|
|
1420
|
+
"patch-check-fill",
|
|
1421
|
+
"patch-exclamation",
|
|
1422
|
+
"patch-exclamation-fill",
|
|
1423
|
+
"patch-minus",
|
|
1424
|
+
"patch-minus-fill",
|
|
1425
|
+
"patch-plus",
|
|
1426
|
+
"patch-plus-fill",
|
|
1427
|
+
"patch-question",
|
|
1428
|
+
"patch-question-fill",
|
|
1429
|
+
"pause",
|
|
1430
|
+
"pause-btn",
|
|
1431
|
+
"pause-btn-fill",
|
|
1432
|
+
"pause-circle",
|
|
1433
|
+
"pause-circle-fill",
|
|
1434
|
+
"pause-fill",
|
|
1435
|
+
"paypal",
|
|
1436
|
+
"pc",
|
|
1437
|
+
"pc-display",
|
|
1438
|
+
"pc-display-horizontal",
|
|
1439
|
+
"pc-horizontal",
|
|
1440
|
+
"pci-card",
|
|
1441
|
+
"pci-card-network",
|
|
1442
|
+
"pci-card-sound",
|
|
1443
|
+
"peace",
|
|
1444
|
+
"peace-fill",
|
|
1445
|
+
"pen",
|
|
1446
|
+
"pen-fill",
|
|
1447
|
+
"pencil",
|
|
1448
|
+
"pencil-fill",
|
|
1449
|
+
"pencil-square",
|
|
1450
|
+
"pentagon",
|
|
1451
|
+
"pentagon-fill",
|
|
1452
|
+
"pentagon-half",
|
|
1453
|
+
"people",
|
|
1454
|
+
"people-fill",
|
|
1455
|
+
"percent",
|
|
1456
|
+
"person",
|
|
1457
|
+
"person-add",
|
|
1458
|
+
"person-arms-up",
|
|
1459
|
+
"person-badge",
|
|
1460
|
+
"person-badge-fill",
|
|
1461
|
+
"person-bounding-box",
|
|
1462
|
+
"person-check",
|
|
1463
|
+
"person-check-fill",
|
|
1464
|
+
"person-circle",
|
|
1465
|
+
"person-dash",
|
|
1466
|
+
"person-dash-fill",
|
|
1467
|
+
"person-down",
|
|
1468
|
+
"person-exclamation",
|
|
1469
|
+
"person-fill",
|
|
1470
|
+
"person-fill-add",
|
|
1471
|
+
"person-fill-check",
|
|
1472
|
+
"person-fill-dash",
|
|
1473
|
+
"person-fill-down",
|
|
1474
|
+
"person-fill-exclamation",
|
|
1475
|
+
"person-fill-gear",
|
|
1476
|
+
"person-fill-lock",
|
|
1477
|
+
"person-fill-slash",
|
|
1478
|
+
"person-fill-up",
|
|
1479
|
+
"person-fill-x",
|
|
1480
|
+
"person-gear",
|
|
1481
|
+
"person-heart",
|
|
1482
|
+
"person-hearts",
|
|
1483
|
+
"person-lines-fill",
|
|
1484
|
+
"person-lock",
|
|
1485
|
+
"person-plus",
|
|
1486
|
+
"person-plus-fill",
|
|
1487
|
+
"person-raised-hand",
|
|
1488
|
+
"person-rolodex",
|
|
1489
|
+
"person-slash",
|
|
1490
|
+
"person-square",
|
|
1491
|
+
"person-standing",
|
|
1492
|
+
"person-standing-dress",
|
|
1493
|
+
"person-up",
|
|
1494
|
+
"person-vcard",
|
|
1495
|
+
"person-vcard-fill",
|
|
1496
|
+
"person-video",
|
|
1497
|
+
"person-video2",
|
|
1498
|
+
"person-video3",
|
|
1499
|
+
"person-walking",
|
|
1500
|
+
"person-wheelchair",
|
|
1501
|
+
"person-workspace",
|
|
1502
|
+
"person-x",
|
|
1503
|
+
"person-x-fill",
|
|
1504
|
+
"phone",
|
|
1505
|
+
"phone-fill",
|
|
1506
|
+
"phone-flip",
|
|
1507
|
+
"phone-landscape",
|
|
1508
|
+
"phone-landscape-fill",
|
|
1509
|
+
"phone-vibrate",
|
|
1510
|
+
"phone-vibrate-fill",
|
|
1511
|
+
"pie-chart",
|
|
1512
|
+
"pie-chart-fill",
|
|
1513
|
+
"piggy-bank",
|
|
1514
|
+
"piggy-bank-fill",
|
|
1515
|
+
"pin",
|
|
1516
|
+
"pin-angle",
|
|
1517
|
+
"pin-angle-fill",
|
|
1518
|
+
"pin-fill",
|
|
1519
|
+
"pin-map",
|
|
1520
|
+
"pin-map-fill",
|
|
1521
|
+
"pinterest",
|
|
1522
|
+
"pip",
|
|
1523
|
+
"pip-fill",
|
|
1524
|
+
"play",
|
|
1525
|
+
"play-btn",
|
|
1526
|
+
"play-btn-fill",
|
|
1527
|
+
"play-circle",
|
|
1528
|
+
"play-circle-fill",
|
|
1529
|
+
"play-fill",
|
|
1530
|
+
"playstation",
|
|
1531
|
+
"plug",
|
|
1532
|
+
"plug-fill",
|
|
1533
|
+
"plugin",
|
|
1534
|
+
"plus",
|
|
1535
|
+
"plus-circle",
|
|
1536
|
+
"plus-circle-dotted",
|
|
1537
|
+
"plus-circle-fill",
|
|
1538
|
+
"plus-lg",
|
|
1539
|
+
"plus-slash-minus",
|
|
1540
|
+
"plus-square",
|
|
1541
|
+
"plus-square-dotted",
|
|
1542
|
+
"plus-square-fill",
|
|
1543
|
+
"postage",
|
|
1544
|
+
"postage-fill",
|
|
1545
|
+
"postage-heart",
|
|
1546
|
+
"postage-heart-fill",
|
|
1547
|
+
"postcard",
|
|
1548
|
+
"postcard-fill",
|
|
1549
|
+
"postcard-heart",
|
|
1550
|
+
"postcard-heart-fill",
|
|
1551
|
+
"power",
|
|
1552
|
+
"prescription",
|
|
1553
|
+
"prescription2",
|
|
1554
|
+
"printer",
|
|
1555
|
+
"printer-fill",
|
|
1556
|
+
"projector",
|
|
1557
|
+
"projector-fill",
|
|
1558
|
+
"puzzle",
|
|
1559
|
+
"puzzle-fill",
|
|
1560
|
+
"qr-code",
|
|
1561
|
+
"qr-code-scan",
|
|
1562
|
+
"question",
|
|
1563
|
+
"question-circle",
|
|
1564
|
+
"question-circle-fill",
|
|
1565
|
+
"question-diamond",
|
|
1566
|
+
"question-diamond-fill",
|
|
1567
|
+
"question-lg",
|
|
1568
|
+
"question-octagon",
|
|
1569
|
+
"question-octagon-fill",
|
|
1570
|
+
"question-square",
|
|
1571
|
+
"question-square-fill",
|
|
1572
|
+
"quora",
|
|
1573
|
+
"quote",
|
|
1574
|
+
"r-circle",
|
|
1575
|
+
"r-circle-fill",
|
|
1576
|
+
"r-square",
|
|
1577
|
+
"r-square-fill",
|
|
1578
|
+
"radar",
|
|
1579
|
+
"radioactive",
|
|
1580
|
+
"rainbow",
|
|
1581
|
+
"receipt",
|
|
1582
|
+
"receipt-cutoff",
|
|
1583
|
+
"reception-0",
|
|
1584
|
+
"reception-1",
|
|
1585
|
+
"reception-2",
|
|
1586
|
+
"reception-3",
|
|
1587
|
+
"reception-4",
|
|
1588
|
+
"record",
|
|
1589
|
+
"record-btn",
|
|
1590
|
+
"record-btn-fill",
|
|
1591
|
+
"record-circle",
|
|
1592
|
+
"record-circle-fill",
|
|
1593
|
+
"record-fill",
|
|
1594
|
+
"record2",
|
|
1595
|
+
"record2-fill",
|
|
1596
|
+
"recycle",
|
|
1597
|
+
"reddit",
|
|
1598
|
+
"regex",
|
|
1599
|
+
"repeat",
|
|
1600
|
+
"repeat-1",
|
|
1601
|
+
"reply",
|
|
1602
|
+
"reply-all",
|
|
1603
|
+
"reply-all-fill",
|
|
1604
|
+
"reply-fill",
|
|
1605
|
+
"rewind",
|
|
1606
|
+
"rewind-btn",
|
|
1607
|
+
"rewind-btn-fill",
|
|
1608
|
+
"rewind-circle",
|
|
1609
|
+
"rewind-circle-fill",
|
|
1610
|
+
"rewind-fill",
|
|
1611
|
+
"robot",
|
|
1612
|
+
"rocket",
|
|
1613
|
+
"rocket-fill",
|
|
1614
|
+
"rocket-takeoff",
|
|
1615
|
+
"rocket-takeoff-fill",
|
|
1616
|
+
"router",
|
|
1617
|
+
"router-fill",
|
|
1618
|
+
"rss",
|
|
1619
|
+
"rss-fill",
|
|
1620
|
+
"rulers",
|
|
1621
|
+
"safe",
|
|
1622
|
+
"safe-fill",
|
|
1623
|
+
"safe2",
|
|
1624
|
+
"safe2-fill",
|
|
1625
|
+
"save",
|
|
1626
|
+
"save-fill",
|
|
1627
|
+
"save2",
|
|
1628
|
+
"save2-fill",
|
|
1629
|
+
"scissors",
|
|
1630
|
+
"scooter",
|
|
1631
|
+
"screwdriver",
|
|
1632
|
+
"sd-card",
|
|
1633
|
+
"sd-card-fill",
|
|
1634
|
+
"search",
|
|
1635
|
+
"search-heart",
|
|
1636
|
+
"search-heart-fill",
|
|
1637
|
+
"segmented-nav",
|
|
1638
|
+
"send",
|
|
1639
|
+
"send-arrow-down",
|
|
1640
|
+
"send-arrow-down-fill",
|
|
1641
|
+
"send-arrow-up",
|
|
1642
|
+
"send-arrow-up-fill",
|
|
1643
|
+
"send-check",
|
|
1644
|
+
"send-check-fill",
|
|
1645
|
+
"send-dash",
|
|
1646
|
+
"send-dash-fill",
|
|
1647
|
+
"send-exclamation",
|
|
1648
|
+
"send-exclamation-fill",
|
|
1649
|
+
"send-fill",
|
|
1650
|
+
"send-plus",
|
|
1651
|
+
"send-plus-fill",
|
|
1652
|
+
"send-slash",
|
|
1653
|
+
"send-slash-fill",
|
|
1654
|
+
"send-x",
|
|
1655
|
+
"send-x-fill",
|
|
1656
|
+
"server",
|
|
1657
|
+
"shadows",
|
|
1658
|
+
"share",
|
|
1659
|
+
"share-fill",
|
|
1660
|
+
"shield",
|
|
1661
|
+
"shield-check",
|
|
1662
|
+
"shield-exclamation",
|
|
1663
|
+
"shield-fill",
|
|
1664
|
+
"shield-fill-check",
|
|
1665
|
+
"shield-fill-exclamation",
|
|
1666
|
+
"shield-fill-minus",
|
|
1667
|
+
"shield-fill-plus",
|
|
1668
|
+
"shield-fill-x",
|
|
1669
|
+
"shield-lock",
|
|
1670
|
+
"shield-lock-fill",
|
|
1671
|
+
"shield-minus",
|
|
1672
|
+
"shield-plus",
|
|
1673
|
+
"shield-shaded",
|
|
1674
|
+
"shield-slash",
|
|
1675
|
+
"shield-slash-fill",
|
|
1676
|
+
"shield-x",
|
|
1677
|
+
"shift",
|
|
1678
|
+
"shift-fill",
|
|
1679
|
+
"shop",
|
|
1680
|
+
"shop-window",
|
|
1681
|
+
"shuffle",
|
|
1682
|
+
"sign-dead-end",
|
|
1683
|
+
"sign-dead-end-fill",
|
|
1684
|
+
"sign-do-not-enter",
|
|
1685
|
+
"sign-do-not-enter-fill",
|
|
1686
|
+
"sign-intersection",
|
|
1687
|
+
"sign-intersection-fill",
|
|
1688
|
+
"sign-intersection-side",
|
|
1689
|
+
"sign-intersection-side-fill",
|
|
1690
|
+
"sign-intersection-t",
|
|
1691
|
+
"sign-intersection-t-fill",
|
|
1692
|
+
"sign-intersection-y",
|
|
1693
|
+
"sign-intersection-y-fill",
|
|
1694
|
+
"sign-merge-left",
|
|
1695
|
+
"sign-merge-left-fill",
|
|
1696
|
+
"sign-merge-right",
|
|
1697
|
+
"sign-merge-right-fill",
|
|
1698
|
+
"sign-no-left-turn",
|
|
1699
|
+
"sign-no-left-turn-fill",
|
|
1700
|
+
"sign-no-parking",
|
|
1701
|
+
"sign-no-parking-fill",
|
|
1702
|
+
"sign-no-right-turn",
|
|
1703
|
+
"sign-no-right-turn-fill",
|
|
1704
|
+
"sign-railroad",
|
|
1705
|
+
"sign-railroad-fill",
|
|
1706
|
+
"sign-stop",
|
|
1707
|
+
"sign-stop-fill",
|
|
1708
|
+
"sign-stop-lights",
|
|
1709
|
+
"sign-stop-lights-fill",
|
|
1710
|
+
"sign-turn-left",
|
|
1711
|
+
"sign-turn-left-fill",
|
|
1712
|
+
"sign-turn-right",
|
|
1713
|
+
"sign-turn-right-fill",
|
|
1714
|
+
"sign-turn-slight-left",
|
|
1715
|
+
"sign-turn-slight-left-fill",
|
|
1716
|
+
"sign-turn-slight-right",
|
|
1717
|
+
"sign-turn-slight-right-fill",
|
|
1718
|
+
"sign-yield",
|
|
1719
|
+
"sign-yield-fill",
|
|
1720
|
+
"signal",
|
|
1721
|
+
"signpost",
|
|
1722
|
+
"signpost-2",
|
|
1723
|
+
"signpost-2-fill",
|
|
1724
|
+
"signpost-fill",
|
|
1725
|
+
"signpost-split",
|
|
1726
|
+
"signpost-split-fill",
|
|
1727
|
+
"sim",
|
|
1728
|
+
"sim-fill",
|
|
1729
|
+
"sim-slash",
|
|
1730
|
+
"sim-slash-fill",
|
|
1731
|
+
"sina-weibo",
|
|
1732
|
+
"skip-backward",
|
|
1733
|
+
"skip-backward-btn",
|
|
1734
|
+
"skip-backward-btn-fill",
|
|
1735
|
+
"skip-backward-circle",
|
|
1736
|
+
"skip-backward-circle-fill",
|
|
1737
|
+
"skip-backward-fill",
|
|
1738
|
+
"skip-end",
|
|
1739
|
+
"skip-end-btn",
|
|
1740
|
+
"skip-end-btn-fill",
|
|
1741
|
+
"skip-end-circle",
|
|
1742
|
+
"skip-end-circle-fill",
|
|
1743
|
+
"skip-end-fill",
|
|
1744
|
+
"skip-forward",
|
|
1745
|
+
"skip-forward-btn",
|
|
1746
|
+
"skip-forward-btn-fill",
|
|
1747
|
+
"skip-forward-circle",
|
|
1748
|
+
"skip-forward-circle-fill",
|
|
1749
|
+
"skip-forward-fill",
|
|
1750
|
+
"skip-start",
|
|
1751
|
+
"skip-start-btn",
|
|
1752
|
+
"skip-start-btn-fill",
|
|
1753
|
+
"skip-start-circle",
|
|
1754
|
+
"skip-start-circle-fill",
|
|
1755
|
+
"skip-start-fill",
|
|
1756
|
+
"skype",
|
|
1757
|
+
"slack",
|
|
1758
|
+
"slash",
|
|
1759
|
+
"slash-circle",
|
|
1760
|
+
"slash-circle-fill",
|
|
1761
|
+
"slash-lg",
|
|
1762
|
+
"slash-square",
|
|
1763
|
+
"slash-square-fill",
|
|
1764
|
+
"sliders",
|
|
1765
|
+
"sliders2",
|
|
1766
|
+
"sliders2-vertical",
|
|
1767
|
+
"smartwatch",
|
|
1768
|
+
"snapchat",
|
|
1769
|
+
"snow",
|
|
1770
|
+
"snow2",
|
|
1771
|
+
"snow3",
|
|
1772
|
+
"sort-alpha-down",
|
|
1773
|
+
"sort-alpha-down-alt",
|
|
1774
|
+
"sort-alpha-up",
|
|
1775
|
+
"sort-alpha-up-alt",
|
|
1776
|
+
"sort-down",
|
|
1777
|
+
"sort-down-alt",
|
|
1778
|
+
"sort-numeric-down",
|
|
1779
|
+
"sort-numeric-down-alt",
|
|
1780
|
+
"sort-numeric-up",
|
|
1781
|
+
"sort-numeric-up-alt",
|
|
1782
|
+
"sort-up",
|
|
1783
|
+
"sort-up-alt",
|
|
1784
|
+
"soundwave",
|
|
1785
|
+
"sourceforge",
|
|
1786
|
+
"speaker",
|
|
1787
|
+
"speaker-fill",
|
|
1788
|
+
"speedometer",
|
|
1789
|
+
"speedometer2",
|
|
1790
|
+
"spellcheck",
|
|
1791
|
+
"spotify",
|
|
1792
|
+
"square",
|
|
1793
|
+
"square-fill",
|
|
1794
|
+
"square-half",
|
|
1795
|
+
"stack",
|
|
1796
|
+
"stack-overflow",
|
|
1797
|
+
"star",
|
|
1798
|
+
"star-fill",
|
|
1799
|
+
"star-half",
|
|
1800
|
+
"stars",
|
|
1801
|
+
"steam",
|
|
1802
|
+
"stickies",
|
|
1803
|
+
"stickies-fill",
|
|
1804
|
+
"sticky",
|
|
1805
|
+
"sticky-fill",
|
|
1806
|
+
"stop",
|
|
1807
|
+
"stop-btn",
|
|
1808
|
+
"stop-btn-fill",
|
|
1809
|
+
"stop-circle",
|
|
1810
|
+
"stop-circle-fill",
|
|
1811
|
+
"stop-fill",
|
|
1812
|
+
"stoplights",
|
|
1813
|
+
"stoplights-fill",
|
|
1814
|
+
"stopwatch",
|
|
1815
|
+
"stopwatch-fill",
|
|
1816
|
+
"strava",
|
|
1817
|
+
"stripe",
|
|
1818
|
+
"subscript",
|
|
1819
|
+
"substack",
|
|
1820
|
+
"subtract",
|
|
1821
|
+
"suit-club",
|
|
1822
|
+
"suit-club-fill",
|
|
1823
|
+
"suit-diamond",
|
|
1824
|
+
"suit-diamond-fill",
|
|
1825
|
+
"suit-heart",
|
|
1826
|
+
"suit-heart-fill",
|
|
1827
|
+
"suit-spade",
|
|
1828
|
+
"suit-spade-fill",
|
|
1829
|
+
"suitcase",
|
|
1830
|
+
"suitcase-fill",
|
|
1831
|
+
"suitcase-lg",
|
|
1832
|
+
"suitcase-lg-fill",
|
|
1833
|
+
"suitcase2",
|
|
1834
|
+
"suitcase2-fill",
|
|
1835
|
+
"sun",
|
|
1836
|
+
"sun-fill",
|
|
1837
|
+
"sunglasses",
|
|
1838
|
+
"sunrise",
|
|
1839
|
+
"sunrise-fill",
|
|
1840
|
+
"sunset",
|
|
1841
|
+
"sunset-fill",
|
|
1842
|
+
"superscript",
|
|
1843
|
+
"symmetry-horizontal",
|
|
1844
|
+
"symmetry-vertical",
|
|
1845
|
+
"table",
|
|
1846
|
+
"tablet",
|
|
1847
|
+
"tablet-fill",
|
|
1848
|
+
"tablet-landscape",
|
|
1849
|
+
"tablet-landscape-fill",
|
|
1850
|
+
"tag",
|
|
1851
|
+
"tag-fill",
|
|
1852
|
+
"tags",
|
|
1853
|
+
"tags-fill",
|
|
1854
|
+
"taxi-front",
|
|
1855
|
+
"taxi-front-fill",
|
|
1856
|
+
"telegram",
|
|
1857
|
+
"telephone",
|
|
1858
|
+
"telephone-fill",
|
|
1859
|
+
"telephone-forward",
|
|
1860
|
+
"telephone-forward-fill",
|
|
1861
|
+
"telephone-inbound",
|
|
1862
|
+
"telephone-inbound-fill",
|
|
1863
|
+
"telephone-minus",
|
|
1864
|
+
"telephone-minus-fill",
|
|
1865
|
+
"telephone-outbound",
|
|
1866
|
+
"telephone-outbound-fill",
|
|
1867
|
+
"telephone-plus",
|
|
1868
|
+
"telephone-plus-fill",
|
|
1869
|
+
"telephone-x",
|
|
1870
|
+
"telephone-x-fill",
|
|
1871
|
+
"tencent-qq",
|
|
1872
|
+
"terminal",
|
|
1873
|
+
"terminal-dash",
|
|
1874
|
+
"terminal-fill",
|
|
1875
|
+
"terminal-plus",
|
|
1876
|
+
"terminal-split",
|
|
1877
|
+
"terminal-x",
|
|
1878
|
+
"text-center",
|
|
1879
|
+
"text-indent-left",
|
|
1880
|
+
"text-indent-right",
|
|
1881
|
+
"text-left",
|
|
1882
|
+
"text-paragraph",
|
|
1883
|
+
"text-right",
|
|
1884
|
+
"text-wrap",
|
|
1885
|
+
"textarea",
|
|
1886
|
+
"textarea-resize",
|
|
1887
|
+
"textarea-t",
|
|
1888
|
+
"thermometer",
|
|
1889
|
+
"thermometer-half",
|
|
1890
|
+
"thermometer-high",
|
|
1891
|
+
"thermometer-low",
|
|
1892
|
+
"thermometer-snow",
|
|
1893
|
+
"thermometer-sun",
|
|
1894
|
+
"threads",
|
|
1895
|
+
"threads-fill",
|
|
1896
|
+
"three-dots",
|
|
1897
|
+
"three-dots-vertical",
|
|
1898
|
+
"thunderbolt",
|
|
1899
|
+
"thunderbolt-fill",
|
|
1900
|
+
"ticket",
|
|
1901
|
+
"ticket-detailed",
|
|
1902
|
+
"ticket-detailed-fill",
|
|
1903
|
+
"ticket-fill",
|
|
1904
|
+
"ticket-perforated",
|
|
1905
|
+
"ticket-perforated-fill",
|
|
1906
|
+
"tiktok",
|
|
1907
|
+
"toggle-off",
|
|
1908
|
+
"toggle-on",
|
|
1909
|
+
"toggle2-off",
|
|
1910
|
+
"toggle2-on",
|
|
1911
|
+
"toggles",
|
|
1912
|
+
"toggles2",
|
|
1913
|
+
"tools",
|
|
1914
|
+
"tornado",
|
|
1915
|
+
"train-freight-front",
|
|
1916
|
+
"train-freight-front-fill",
|
|
1917
|
+
"train-front",
|
|
1918
|
+
"train-front-fill",
|
|
1919
|
+
"train-lightrail-front",
|
|
1920
|
+
"train-lightrail-front-fill",
|
|
1921
|
+
"translate",
|
|
1922
|
+
"transparency",
|
|
1923
|
+
"trash",
|
|
1924
|
+
"trash-fill",
|
|
1925
|
+
"trash2",
|
|
1926
|
+
"trash2-fill",
|
|
1927
|
+
"trash3",
|
|
1928
|
+
"trash3-fill",
|
|
1929
|
+
"tree",
|
|
1930
|
+
"tree-fill",
|
|
1931
|
+
"trello",
|
|
1932
|
+
"triangle",
|
|
1933
|
+
"triangle-fill",
|
|
1934
|
+
"triangle-half",
|
|
1935
|
+
"trophy",
|
|
1936
|
+
"trophy-fill",
|
|
1937
|
+
"tropical-storm",
|
|
1938
|
+
"truck",
|
|
1939
|
+
"truck-flatbed",
|
|
1940
|
+
"truck-front",
|
|
1941
|
+
"truck-front-fill",
|
|
1942
|
+
"tsunami",
|
|
1943
|
+
"tv",
|
|
1944
|
+
"tv-fill",
|
|
1945
|
+
"twitch",
|
|
1946
|
+
"twitter",
|
|
1947
|
+
"twitter-x",
|
|
1948
|
+
"type",
|
|
1949
|
+
"type-bold",
|
|
1950
|
+
"type-h1",
|
|
1951
|
+
"type-h2",
|
|
1952
|
+
"type-h3",
|
|
1953
|
+
"type-h4",
|
|
1954
|
+
"type-h5",
|
|
1955
|
+
"type-h6",
|
|
1956
|
+
"type-italic",
|
|
1957
|
+
"type-strikethrough",
|
|
1958
|
+
"type-underline",
|
|
1959
|
+
"ubuntu",
|
|
1960
|
+
"ui-checks",
|
|
1961
|
+
"ui-checks-grid",
|
|
1962
|
+
"ui-radios",
|
|
1963
|
+
"ui-radios-grid",
|
|
1964
|
+
"umbrella",
|
|
1965
|
+
"umbrella-fill",
|
|
1966
|
+
"unindent",
|
|
1967
|
+
"union",
|
|
1968
|
+
"unity",
|
|
1969
|
+
"universal-access",
|
|
1970
|
+
"universal-access-circle",
|
|
1971
|
+
"unlock",
|
|
1972
|
+
"unlock-fill",
|
|
1973
|
+
"upc",
|
|
1974
|
+
"upc-scan",
|
|
1975
|
+
"upload",
|
|
1976
|
+
"usb",
|
|
1977
|
+
"usb-c",
|
|
1978
|
+
"usb-c-fill",
|
|
1979
|
+
"usb-drive",
|
|
1980
|
+
"usb-drive-fill",
|
|
1981
|
+
"usb-fill",
|
|
1982
|
+
"usb-micro",
|
|
1983
|
+
"usb-micro-fill",
|
|
1984
|
+
"usb-mini",
|
|
1985
|
+
"usb-mini-fill",
|
|
1986
|
+
"usb-plug",
|
|
1987
|
+
"usb-plug-fill",
|
|
1988
|
+
"usb-symbol",
|
|
1989
|
+
"valentine",
|
|
1990
|
+
"valentine2",
|
|
1991
|
+
"vector-pen",
|
|
1992
|
+
"view-list",
|
|
1993
|
+
"view-stacked",
|
|
1994
|
+
"vignette",
|
|
1995
|
+
"vimeo",
|
|
1996
|
+
"vinyl",
|
|
1997
|
+
"vinyl-fill",
|
|
1998
|
+
"virus",
|
|
1999
|
+
"virus2",
|
|
2000
|
+
"voicemail",
|
|
2001
|
+
"volume-down",
|
|
2002
|
+
"volume-down-fill",
|
|
2003
|
+
"volume-mute",
|
|
2004
|
+
"volume-mute-fill",
|
|
2005
|
+
"volume-off",
|
|
2006
|
+
"volume-off-fill",
|
|
2007
|
+
"volume-up",
|
|
2008
|
+
"volume-up-fill",
|
|
2009
|
+
"vr",
|
|
2010
|
+
"wallet",
|
|
2011
|
+
"wallet-fill",
|
|
2012
|
+
"wallet2",
|
|
2013
|
+
"watch",
|
|
2014
|
+
"water",
|
|
2015
|
+
"webcam",
|
|
2016
|
+
"webcam-fill",
|
|
2017
|
+
"wechat",
|
|
2018
|
+
"whatsapp",
|
|
2019
|
+
"wifi",
|
|
2020
|
+
"wifi-1",
|
|
2021
|
+
"wifi-2",
|
|
2022
|
+
"wifi-off",
|
|
2023
|
+
"wikipedia",
|
|
2024
|
+
"wind",
|
|
2025
|
+
"window",
|
|
2026
|
+
"window-dash",
|
|
2027
|
+
"window-desktop",
|
|
2028
|
+
"window-dock",
|
|
2029
|
+
"window-fullscreen",
|
|
2030
|
+
"window-plus",
|
|
2031
|
+
"window-sidebar",
|
|
2032
|
+
"window-split",
|
|
2033
|
+
"window-stack",
|
|
2034
|
+
"window-x",
|
|
2035
|
+
"windows",
|
|
2036
|
+
"wordpress",
|
|
2037
|
+
"wrench",
|
|
2038
|
+
"wrench-adjustable",
|
|
2039
|
+
"wrench-adjustable-circle",
|
|
2040
|
+
"wrench-adjustable-circle-fill",
|
|
2041
|
+
"x",
|
|
2042
|
+
"x-circle",
|
|
2043
|
+
"x-circle-fill",
|
|
2044
|
+
"x-diamond",
|
|
2045
|
+
"x-diamond-fill",
|
|
2046
|
+
"x-lg",
|
|
2047
|
+
"x-octagon",
|
|
2048
|
+
"x-octagon-fill",
|
|
2049
|
+
"x-square",
|
|
2050
|
+
"x-square-fill",
|
|
2051
|
+
"xbox",
|
|
2052
|
+
"yelp",
|
|
2053
|
+
"yin-yang",
|
|
2054
|
+
"youtube",
|
|
2055
|
+
"zoom-in",
|
|
2056
|
+
"zoom-out"
|
|
2057
|
+
]
|
|
2058
|
+
};
|
|
2059
|
+
//# sourceMappingURL=bootstrap.js.map
|