astro-tractstack 2.0.0-rc.9 → 2.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 +8 -97
- package/README.md +7 -5
- package/bin/create-tractstack.js +31 -8
- package/dist/index.js +106 -29
- package/package.json +10 -5
- package/templates/css/frontend.css +1 -1
- package/templates/custom/minimal/CodeHook.astro +13 -12
- package/templates/custom/minimal/CustomRoutes.astro +25 -31
- package/templates/custom/with-examples/CodeHook.astro +22 -11
- package/templates/custom/with-examples/CustomRoutes.astro +4 -8
- package/templates/custom/with-examples/ProductCard.astro +29 -0
- package/templates/custom/with-examples/ProductCardWrapper.astro +43 -0
- package/templates/custom/with-examples/ProductGrid.astro +64 -0
- package/templates/custom/with-examples/pages/Collections.astro +58 -98
- package/templates/gitignore +42 -0
- package/templates/prettierignore +5 -0
- package/templates/prettierrc +19 -0
- package/templates/src/client/app.js +127 -0
- package/templates/src/client/htmx.min.js +3519 -0
- package/templates/src/client/view.js +429 -0
- package/templates/src/components/Footer.astro +4 -9
- package/templates/src/components/Header.astro +67 -60
- package/templates/src/components/Menu.tsx +188 -52
- package/templates/src/components/codehooks/BunnyVideoSetup.tsx +2 -2
- package/templates/src/components/codehooks/EpinetDurationSelector.tsx +9 -13
- package/templates/src/components/codehooks/EpinetTableView.tsx +11 -7
- package/templates/src/components/codehooks/EpinetWrapper.tsx +1 -0
- package/templates/src/components/codehooks/FeaturedArticle.astro +105 -0
- package/templates/src/components/codehooks/FeaturedArticleSetup.tsx +318 -0
- package/templates/src/components/codehooks/ListContent.astro +32 -162
- package/templates/src/components/codehooks/ListContentSetup.tsx +43 -138
- package/templates/src/components/codehooks/ProductCardSetup.tsx +152 -0
- package/templates/src/components/codehooks/ProductGridSetup.tsx +274 -0
- package/templates/src/components/codehooks/SearchWidget.tsx +453 -0
- package/templates/src/components/compositor/Node.tsx +3 -6
- package/templates/src/components/compositor/PanelVisibilityWrapper.tsx +21 -11
- package/templates/src/components/compositor/elements/BunnyVideo.tsx +21 -20
- package/templates/src/components/compositor/nodes/Pane.tsx +51 -21
- package/templates/src/components/compositor/nodes/RenderChildren.tsx +6 -1
- package/templates/src/components/compositor/nodes/Widget.tsx +16 -2
- package/templates/src/components/compositor/preview/FeaturedArticlePreview.tsx +155 -0
- package/templates/src/components/compositor/preview/PaneSnapshotGenerator.tsx +20 -1
- package/templates/src/components/edit/Header.tsx +10 -4
- package/templates/src/components/edit/PanelSwitch.tsx +11 -7
- package/templates/src/components/edit/SettingsPanel.tsx +29 -18
- package/templates/src/components/edit/ToolBar.tsx +1 -28
- package/templates/src/components/edit/ToolMode.tsx +45 -32
- package/templates/src/components/edit/pane/AddPanePanel_break.tsx +12 -2
- package/templates/src/components/edit/pane/AddPanePanel_codehook.tsx +8 -2
- package/templates/src/components/edit/pane/AddPanePanel_newAICopy_modal.tsx +1 -1
- package/templates/src/components/edit/pane/ConfigPanePanel.tsx +17 -27
- package/templates/src/components/edit/pane/PageGenSelector.tsx +16 -16
- package/templates/src/components/edit/pane/PageGenSpecial.tsx +26 -49
- package/templates/src/components/edit/pane/PageGen_preview.tsx +17 -2
- package/templates/src/components/edit/pane/PanePanel_path.tsx +2 -4
- package/templates/src/components/edit/pane/PanePanel_title.tsx +243 -76
- package/templates/src/components/edit/panels/StyleBreakPanel.tsx +17 -19
- package/templates/src/components/edit/panels/StyleCodeHookPanel.tsx +48 -37
- package/templates/src/components/edit/panels/StyleElementPanel_add.tsx +60 -55
- package/templates/src/components/edit/panels/StyleImagePanel_add.tsx +56 -50
- package/templates/src/components/edit/panels/StyleLiElementPanel_add.tsx +54 -47
- package/templates/src/components/edit/panels/StyleLinkPanel_add.tsx +54 -44
- package/templates/src/components/edit/panels/StyleLinkPanel_config.tsx +113 -138
- package/templates/src/components/edit/panels/StyleParentPanel_add.tsx +54 -40
- package/templates/src/components/edit/panels/StyleWidgetPanel.tsx +3 -3
- package/templates/src/components/edit/panels/StyleWidgetPanel_add.tsx +56 -49
- package/templates/src/components/edit/panels/StyleWidgetPanel_config.tsx +14 -5
- package/templates/src/components/edit/state/SaveModal.tsx +316 -169
- package/templates/src/components/edit/storyfragment/StoryFragmentPanel_og.tsx +1 -1
- package/templates/src/components/edit/storyfragment/StoryFragmentPanel_slug.tsx +56 -55
- package/templates/src/components/edit/widgets/BunnyWidget.tsx +538 -59
- package/templates/src/components/edit/widgets/InteractiveDisclosureWidget.tsx +656 -0
- package/templates/src/components/edit/widgets/ToggleWidget.tsx +9 -16
- package/templates/src/components/fields/ArtpackImage.tsx +4 -1
- package/templates/src/components/fields/BackgroundImage.tsx +1 -1
- package/templates/src/components/fields/BackgroundImageWrapper.tsx +127 -35
- package/templates/src/components/fields/ColorPickerCombo.tsx +66 -62
- package/templates/src/components/fields/ImageUpload.tsx +1 -1
- package/templates/src/components/fields/ViewportComboBox.tsx +59 -42
- package/templates/src/components/form/ActionBuilderBeliefSelector.tsx +117 -0
- package/templates/src/components/form/ActionBuilderField.tsx +306 -87
- package/templates/src/components/search/SearchModal.tsx +420 -0
- package/templates/src/components/search/SearchResults.tsx +367 -0
- package/templates/src/components/search/SearchWrapper.tsx +46 -0
- package/templates/src/components/storykeep/Dashboard_Advanced.tsx +1 -1
- package/templates/src/components/storykeep/Dashboard_Analytics.tsx +34 -8
- package/templates/src/components/storykeep/Dashboard_Branding.tsx +1 -1
- package/templates/src/components/storykeep/Dashboard_Content.tsx +6 -0
- package/templates/src/components/storykeep/StoryKeepBackdrop.astro +87 -0
- package/templates/src/components/storykeep/controls/content/BeliefForm.tsx +38 -34
- package/templates/src/components/storykeep/controls/content/KnownResourceForm.tsx +1 -1
- package/templates/src/components/storykeep/controls/content/MenuForm.tsx +56 -8
- package/templates/src/components/storykeep/controls/content/ResourceForm.tsx +18 -3
- package/templates/src/components/storykeep/controls/content/StoryFragmentTable.tsx +5 -8
- package/templates/src/components/storykeep/state/FetchAnalytics.tsx +274 -228
- package/templates/src/components/storykeep/widgets/Wizard.tsx +14 -7
- package/templates/src/components/widgets/ImpressionWrapper.tsx +0 -1
- package/templates/src/constants/shapes.ts +9 -0
- package/templates/src/constants.ts +2121 -16
- package/templates/src/hooks/useSearch.ts +228 -0
- package/templates/src/layouts/Layout.astro +213 -104
- package/templates/src/lib/storyData.ts +4 -1
- package/templates/src/pages/[...slug]/edit.astro +14 -14
- package/templates/src/pages/[...slug].astro +82 -21
- package/templates/src/pages/api/orphan-analysis.ts +0 -1
- package/templates/src/pages/api/tailwind.ts +23 -21
- package/templates/src/pages/context/[...contextSlug]/edit.astro +14 -14
- package/templates/src/pages/context/[...contextSlug].astro +7 -2
- package/templates/src/pages/storykeep/advanced.astro +5 -4
- package/templates/src/pages/storykeep/branding.astro +5 -4
- package/templates/src/pages/storykeep/content.astro +5 -4
- package/templates/src/pages/storykeep/init.astro +40 -1
- package/templates/src/pages/storykeep/login.astro +1 -1
- package/templates/src/pages/storykeep.astro +5 -4
- package/templates/src/stores/nodes.ts +59 -88
- package/templates/src/stores/orphanAnalysis.ts +19 -21
- package/templates/src/stores/storykeep.ts +7 -0
- package/templates/src/types/compositorTypes.ts +6 -0
- package/templates/src/types/tractstack.ts +17 -0
- package/templates/src/utils/actions/lispLexer.ts +2 -2
- package/templates/src/utils/actions/preParse_Action.ts +3 -0
- package/templates/src/utils/api/beliefHelpers.ts +12 -36
- package/templates/src/utils/api/menuHelpers.ts +2 -2
- package/templates/src/utils/api.ts +26 -0
- package/templates/src/utils/compositor/TemplateNodes.ts +7 -0
- package/templates/src/utils/compositor/allowInsert.ts +5 -3
- package/templates/src/utils/compositor/nodesHelper.ts +4 -0
- package/templates/src/utils/compositor/processMarkdown.ts +16 -2
- package/templates/src/utils/compositor/reduceNodesClassNames.ts +4 -0
- package/templates/src/utils/compositor/templateMarkdownStyles.ts +13 -13
- package/templates/src/utils/compositor/typeGuards.ts +1 -0
- package/templates/src/utils/customHelpers.ts +38 -0
- package/templates/src/utils/helpers.ts +2 -2
- package/templates/src/utils/layout.ts +65 -144
- package/utils/inject-files.ts +95 -18
- package/templates/src/client/analytics-events.js +0 -207
- package/templates/src/client/belief-events.js +0 -191
- package/templates/src/client/sse.js +0 -613
- package/templates/src/components/codehooks/FeaturedContent.astro +0 -273
- package/templates/src/components/codehooks/FeaturedContentSetup.tsx +0 -738
- package/templates/src/components/compositor/preview/FeaturedContentPreview.tsx +0 -128
- package/templates/src/components/edit/pane/PanePanel_slug.tsx +0 -219
|
@@ -39,6 +39,27 @@ export const colors = [
|
|
|
39
39
|
|
|
40
40
|
export const collections = ['kCz'];
|
|
41
41
|
|
|
42
|
+
export type ActionCommand = 'goto' | 'bunnyMoment' | 'declare' | 'identifyAs';
|
|
43
|
+
|
|
44
|
+
export const ACTION_COMMANDS: Record<
|
|
45
|
+
ActionCommand,
|
|
46
|
+
{ name: string; description: string }
|
|
47
|
+
> = {
|
|
48
|
+
goto: { name: 'Navigation', description: 'Navigate to a page or URL.' },
|
|
49
|
+
bunnyMoment: {
|
|
50
|
+
name: 'Video Moment',
|
|
51
|
+
description: 'Jump to a specific time in a video.',
|
|
52
|
+
},
|
|
53
|
+
declare: {
|
|
54
|
+
name: 'Declare Belief',
|
|
55
|
+
description: 'Set a specific state for a belief.',
|
|
56
|
+
},
|
|
57
|
+
identifyAs: {
|
|
58
|
+
name: 'Identify As',
|
|
59
|
+
description: 'Set an identity value for a belief.',
|
|
60
|
+
},
|
|
61
|
+
};
|
|
62
|
+
|
|
42
63
|
export const GOTO_TARGETS: GotoTargets = {
|
|
43
64
|
storykeep: {
|
|
44
65
|
name: 'StoryKeep',
|
|
@@ -115,6 +136,7 @@ export const toolAddModes = [
|
|
|
115
136
|
'belief',
|
|
116
137
|
'identify',
|
|
117
138
|
'toggle',
|
|
139
|
+
'interactiveDisclosure',
|
|
118
140
|
//"aside",
|
|
119
141
|
] as const;
|
|
120
142
|
|
|
@@ -130,24 +152,10 @@ export const toolAddModeTitles: Record<ToolAddMode, string> = {
|
|
|
130
152
|
belief: 'Belief Select',
|
|
131
153
|
identify: 'Identity As',
|
|
132
154
|
toggle: 'Toggle Belief',
|
|
155
|
+
interactiveDisclosure: 'Interactive Disclosure',
|
|
133
156
|
//aside: "Aside Text",
|
|
134
157
|
};
|
|
135
158
|
|
|
136
|
-
export const toolAddModeInsertDefault: Record<ToolAddMode, string> = {
|
|
137
|
-
p: '...',
|
|
138
|
-
h2: '## title',
|
|
139
|
-
h3: '### subtitle',
|
|
140
|
-
h4: '#### section title',
|
|
141
|
-
img: '', // on initial insert must wrap in ul
|
|
142
|
-
signup: '* `signup(Major Updates Only|Keep in touch!|false)`',
|
|
143
|
-
yt: '* `youtube(tag|title)`',
|
|
144
|
-
bunny: '* `bunny(id|title)`',
|
|
145
|
-
belief: '* `belief(BeliefTag|likert|prompt)`',
|
|
146
|
-
identify: '* `identifyAs(BeliefTag|TARGET_VALUE|prompt)`',
|
|
147
|
-
toggle: '* `toggle(BeliefTag|prompt)`',
|
|
148
|
-
//aside: "...", // on initial insert must wrap in ol
|
|
149
|
-
};
|
|
150
|
-
|
|
151
159
|
export const toolAddModesIcons: Record<ToolAddMode, string> = {
|
|
152
160
|
p: 'text.svg',
|
|
153
161
|
h2: 'h2.svg',
|
|
@@ -160,6 +168,7 @@ export const toolAddModesIcons: Record<ToolAddMode, string> = {
|
|
|
160
168
|
identify: '',
|
|
161
169
|
toggle: '',
|
|
162
170
|
belief: '',
|
|
171
|
+
interactiveDisclosure: '',
|
|
163
172
|
//aside: "",
|
|
164
173
|
};
|
|
165
174
|
|
|
@@ -196,6 +205,18 @@ export const widgetMeta: WidgetMeta = {
|
|
|
196
205
|
],
|
|
197
206
|
isBelief: true,
|
|
198
207
|
},
|
|
208
|
+
interactiveDisclosure: {
|
|
209
|
+
title: `Interactive Disclosure`,
|
|
210
|
+
parameters: [
|
|
211
|
+
{
|
|
212
|
+
label: 'Belief Tag',
|
|
213
|
+
defaultValue: 'BELIEF',
|
|
214
|
+
type: 'string',
|
|
215
|
+
isBeliefTag: true,
|
|
216
|
+
},
|
|
217
|
+
],
|
|
218
|
+
isBelief: true,
|
|
219
|
+
},
|
|
199
220
|
toggle: {
|
|
200
221
|
title: `Toggle Belief Widget`,
|
|
201
222
|
parameters: [
|
|
@@ -219,7 +240,7 @@ export const widgetMeta: WidgetMeta = {
|
|
|
219
240
|
bunny: {
|
|
220
241
|
title: `BunnyCDN Video Embed`,
|
|
221
242
|
parameters: [
|
|
222
|
-
{ label: '
|
|
243
|
+
{ label: 'Video ID', defaultValue: '234/uuid', type: 'string' },
|
|
223
244
|
{ label: 'Title', defaultValue: 'Descriptive Title', type: 'string' },
|
|
224
245
|
],
|
|
225
246
|
},
|
|
@@ -270,3 +291,2087 @@ export const contactPersona = [
|
|
|
270
291
|
disabled: false,
|
|
271
292
|
},
|
|
272
293
|
];
|
|
294
|
+
|
|
295
|
+
export const regexpHook =
|
|
296
|
+
/^(identifyAs|youtube|bunny|bunnyContext|toggle|resource|belief|interactiveDisclosure|signup)\((.*)\)$/;
|
|
297
|
+
|
|
298
|
+
export const biIcons = [
|
|
299
|
+
'0-circle',
|
|
300
|
+
'0-circle-fill',
|
|
301
|
+
'0-square',
|
|
302
|
+
'0-square-fill',
|
|
303
|
+
'1-circle',
|
|
304
|
+
'1-circle-fill',
|
|
305
|
+
'1-square',
|
|
306
|
+
'1-square-fill',
|
|
307
|
+
'123',
|
|
308
|
+
'2-circle',
|
|
309
|
+
'2-circle-fill',
|
|
310
|
+
'2-square',
|
|
311
|
+
'2-square-fill',
|
|
312
|
+
'3-circle',
|
|
313
|
+
'3-circle-fill',
|
|
314
|
+
'3-square',
|
|
315
|
+
'3-square-fill',
|
|
316
|
+
'4-circle',
|
|
317
|
+
'4-circle-fill',
|
|
318
|
+
'4-square',
|
|
319
|
+
'4-square-fill',
|
|
320
|
+
'5-circle',
|
|
321
|
+
'5-circle-fill',
|
|
322
|
+
'5-square',
|
|
323
|
+
'5-square-fill',
|
|
324
|
+
'6-circle',
|
|
325
|
+
'6-circle-fill',
|
|
326
|
+
'6-square',
|
|
327
|
+
'6-square-fill',
|
|
328
|
+
'7-circle',
|
|
329
|
+
'7-circle-fill',
|
|
330
|
+
'7-square',
|
|
331
|
+
'7-square-fill',
|
|
332
|
+
'8-circle',
|
|
333
|
+
'8-circle-fill',
|
|
334
|
+
'8-square',
|
|
335
|
+
'8-square-fill',
|
|
336
|
+
'9-circle',
|
|
337
|
+
'9-circle-fill',
|
|
338
|
+
'9-square',
|
|
339
|
+
'9-square-fill',
|
|
340
|
+
'activity',
|
|
341
|
+
'airplane',
|
|
342
|
+
'airplane-engines',
|
|
343
|
+
'airplane-engines-fill',
|
|
344
|
+
'airplane-fill',
|
|
345
|
+
'alarm',
|
|
346
|
+
'alarm-fill',
|
|
347
|
+
'alexa',
|
|
348
|
+
'align-bottom',
|
|
349
|
+
'align-center',
|
|
350
|
+
'align-end',
|
|
351
|
+
'align-middle',
|
|
352
|
+
'align-start',
|
|
353
|
+
'align-top',
|
|
354
|
+
'alipay',
|
|
355
|
+
'alphabet',
|
|
356
|
+
'alphabet-uppercase',
|
|
357
|
+
'alt',
|
|
358
|
+
'amazon',
|
|
359
|
+
'amd',
|
|
360
|
+
'android',
|
|
361
|
+
'android2',
|
|
362
|
+
'anthropic',
|
|
363
|
+
'app',
|
|
364
|
+
'app-indicator',
|
|
365
|
+
'apple',
|
|
366
|
+
'apple-music',
|
|
367
|
+
'archive',
|
|
368
|
+
'archive-fill',
|
|
369
|
+
'arrow-90deg-down',
|
|
370
|
+
'arrow-90deg-left',
|
|
371
|
+
'arrow-90deg-right',
|
|
372
|
+
'arrow-90deg-up',
|
|
373
|
+
'arrow-bar-down',
|
|
374
|
+
'arrow-bar-left',
|
|
375
|
+
'arrow-bar-right',
|
|
376
|
+
'arrow-bar-up',
|
|
377
|
+
'arrow-clockwise',
|
|
378
|
+
'arrow-counterclockwise',
|
|
379
|
+
'arrow-down',
|
|
380
|
+
'arrow-down-circle',
|
|
381
|
+
'arrow-down-circle-fill',
|
|
382
|
+
'arrow-down-left-circle',
|
|
383
|
+
'arrow-down-left-circle-fill',
|
|
384
|
+
'arrow-down-left-square',
|
|
385
|
+
'arrow-down-left-square-fill',
|
|
386
|
+
'arrow-down-right-circle',
|
|
387
|
+
'arrow-down-right-circle-fill',
|
|
388
|
+
'arrow-down-right-square',
|
|
389
|
+
'arrow-down-right-square-fill',
|
|
390
|
+
'arrow-down-square',
|
|
391
|
+
'arrow-down-square-fill',
|
|
392
|
+
'arrow-down-left',
|
|
393
|
+
'arrow-down-right',
|
|
394
|
+
'arrow-down-short',
|
|
395
|
+
'arrow-down-up',
|
|
396
|
+
'arrow-left',
|
|
397
|
+
'arrow-left-circle',
|
|
398
|
+
'arrow-left-circle-fill',
|
|
399
|
+
'arrow-left-square',
|
|
400
|
+
'arrow-left-square-fill',
|
|
401
|
+
'arrow-left-right',
|
|
402
|
+
'arrow-left-short',
|
|
403
|
+
'arrow-repeat',
|
|
404
|
+
'arrow-return-left',
|
|
405
|
+
'arrow-return-right',
|
|
406
|
+
'arrow-right',
|
|
407
|
+
'arrow-right-circle',
|
|
408
|
+
'arrow-right-circle-fill',
|
|
409
|
+
'arrow-right-square',
|
|
410
|
+
'arrow-right-square-fill',
|
|
411
|
+
'arrow-right-short',
|
|
412
|
+
'arrow-through-heart',
|
|
413
|
+
'arrow-through-heart-fill',
|
|
414
|
+
'arrow-up',
|
|
415
|
+
'arrow-up-circle',
|
|
416
|
+
'arrow-up-circle-fill',
|
|
417
|
+
'arrow-up-left-circle',
|
|
418
|
+
'arrow-up-left-circle-fill',
|
|
419
|
+
'arrow-up-left-square',
|
|
420
|
+
'arrow-up-left-square-fill',
|
|
421
|
+
'arrow-up-right-circle',
|
|
422
|
+
'arrow-up-right-circle-fill',
|
|
423
|
+
'arrow-up-right-square',
|
|
424
|
+
'arrow-up-right-square-fill',
|
|
425
|
+
'arrow-up-square',
|
|
426
|
+
'arrow-up-square-fill',
|
|
427
|
+
'arrow-up-left',
|
|
428
|
+
'arrow-up-right',
|
|
429
|
+
'arrow-up-short',
|
|
430
|
+
'arrows',
|
|
431
|
+
'arrows-angle-contract',
|
|
432
|
+
'arrows-angle-expand',
|
|
433
|
+
'arrows-collapse',
|
|
434
|
+
'arrows-collapse-vertical',
|
|
435
|
+
'arrows-expand',
|
|
436
|
+
'arrows-expand-vertical',
|
|
437
|
+
'arrows-fullscreen',
|
|
438
|
+
'arrows-move',
|
|
439
|
+
'arrows-vertical',
|
|
440
|
+
'aspect-ratio',
|
|
441
|
+
'aspect-ratio-fill',
|
|
442
|
+
'asterisk',
|
|
443
|
+
'at',
|
|
444
|
+
'award',
|
|
445
|
+
'award-fill',
|
|
446
|
+
'back',
|
|
447
|
+
'backpack',
|
|
448
|
+
'backpack-fill',
|
|
449
|
+
'backpack2',
|
|
450
|
+
'backpack2-fill',
|
|
451
|
+
'backpack3',
|
|
452
|
+
'backpack3-fill',
|
|
453
|
+
'backpack4',
|
|
454
|
+
'backpack4-fill',
|
|
455
|
+
'backspace',
|
|
456
|
+
'backspace-fill',
|
|
457
|
+
'backspace-reverse',
|
|
458
|
+
'backspace-reverse-fill',
|
|
459
|
+
'badge-3d',
|
|
460
|
+
'badge-3d-fill',
|
|
461
|
+
'badge-4k',
|
|
462
|
+
'badge-4k-fill',
|
|
463
|
+
'badge-8k',
|
|
464
|
+
'badge-8k-fill',
|
|
465
|
+
'badge-ad',
|
|
466
|
+
'badge-ad-fill',
|
|
467
|
+
'badge-ar',
|
|
468
|
+
'badge-ar-fill',
|
|
469
|
+
'badge-cc',
|
|
470
|
+
'badge-cc-fill',
|
|
471
|
+
'badge-hd',
|
|
472
|
+
'badge-hd-fill',
|
|
473
|
+
'badge-sd',
|
|
474
|
+
'badge-sd-fill',
|
|
475
|
+
'badge-tm',
|
|
476
|
+
'badge-tm-fill',
|
|
477
|
+
'badge-vo',
|
|
478
|
+
'badge-vo-fill',
|
|
479
|
+
'badge-vr',
|
|
480
|
+
'badge-vr-fill',
|
|
481
|
+
'badge-wc',
|
|
482
|
+
'badge-wc-fill',
|
|
483
|
+
'bag',
|
|
484
|
+
'bag-check',
|
|
485
|
+
'bag-check-fill',
|
|
486
|
+
'bag-dash',
|
|
487
|
+
'bag-dash-fill',
|
|
488
|
+
'bag-fill',
|
|
489
|
+
'bag-heart',
|
|
490
|
+
'bag-heart-fill',
|
|
491
|
+
'bag-plus',
|
|
492
|
+
'bag-plus-fill',
|
|
493
|
+
'bag-x',
|
|
494
|
+
'bag-x-fill',
|
|
495
|
+
'balloon',
|
|
496
|
+
'balloon-fill',
|
|
497
|
+
'balloon-heart',
|
|
498
|
+
'balloon-heart-fill',
|
|
499
|
+
'ban',
|
|
500
|
+
'ban-fill',
|
|
501
|
+
'bandaid',
|
|
502
|
+
'bandaid-fill',
|
|
503
|
+
'bank',
|
|
504
|
+
'bank2',
|
|
505
|
+
'bar-chart',
|
|
506
|
+
'bar-chart-fill',
|
|
507
|
+
'bar-chart-line',
|
|
508
|
+
'bar-chart-line-fill',
|
|
509
|
+
'bar-chart-steps',
|
|
510
|
+
'basket',
|
|
511
|
+
'basket-fill',
|
|
512
|
+
'basket2',
|
|
513
|
+
'basket2-fill',
|
|
514
|
+
'basket3',
|
|
515
|
+
'basket3-fill',
|
|
516
|
+
'battery',
|
|
517
|
+
'battery-charging',
|
|
518
|
+
'battery-full',
|
|
519
|
+
'battery-half',
|
|
520
|
+
'battery-low',
|
|
521
|
+
'beaker',
|
|
522
|
+
'beaker-fill',
|
|
523
|
+
'behance',
|
|
524
|
+
'bell',
|
|
525
|
+
'bell-fill',
|
|
526
|
+
'bell-slash',
|
|
527
|
+
'bell-slash-fill',
|
|
528
|
+
'bezier',
|
|
529
|
+
'bezier2',
|
|
530
|
+
'bicycle',
|
|
531
|
+
'bing',
|
|
532
|
+
'binoculars',
|
|
533
|
+
'binoculars-fill',
|
|
534
|
+
'blockquote-left',
|
|
535
|
+
'blockquote-right',
|
|
536
|
+
'bluesky',
|
|
537
|
+
'bluetooth',
|
|
538
|
+
'body-text',
|
|
539
|
+
'book',
|
|
540
|
+
'book-fill',
|
|
541
|
+
'book-half',
|
|
542
|
+
'bookmark',
|
|
543
|
+
'bookmark-check',
|
|
544
|
+
'bookmark-check-fill',
|
|
545
|
+
'bookmark-dash',
|
|
546
|
+
'bookmark-dash-fill',
|
|
547
|
+
'bookmark-fill',
|
|
548
|
+
'bookmark-heart',
|
|
549
|
+
'bookmark-heart-fill',
|
|
550
|
+
'bookmark-plus',
|
|
551
|
+
'bookmark-plus-fill',
|
|
552
|
+
'bookmark-star',
|
|
553
|
+
'bookmark-star-fill',
|
|
554
|
+
'bookmark-x',
|
|
555
|
+
'bookmark-x-fill',
|
|
556
|
+
'bookmarks',
|
|
557
|
+
'bookmarks-fill',
|
|
558
|
+
'bookshelf',
|
|
559
|
+
'boombox',
|
|
560
|
+
'boombox-fill',
|
|
561
|
+
'bootstrap',
|
|
562
|
+
'bootstrap-fill',
|
|
563
|
+
'bootstrap-reboot',
|
|
564
|
+
'border',
|
|
565
|
+
'border-all',
|
|
566
|
+
'border-bottom',
|
|
567
|
+
'border-center',
|
|
568
|
+
'border-inner',
|
|
569
|
+
'border-left',
|
|
570
|
+
'border-middle',
|
|
571
|
+
'border-outer',
|
|
572
|
+
'border-right',
|
|
573
|
+
'border-style',
|
|
574
|
+
'border-top',
|
|
575
|
+
'border-width',
|
|
576
|
+
'bounding-box',
|
|
577
|
+
'bounding-box-circles',
|
|
578
|
+
'box',
|
|
579
|
+
'box-arrow-down-left',
|
|
580
|
+
'box-arrow-down-right',
|
|
581
|
+
'box-arrow-down',
|
|
582
|
+
'box-arrow-in-down',
|
|
583
|
+
'box-arrow-in-down-left',
|
|
584
|
+
'box-arrow-in-down-right',
|
|
585
|
+
'box-arrow-in-left',
|
|
586
|
+
'box-arrow-in-right',
|
|
587
|
+
'box-arrow-in-up',
|
|
588
|
+
'box-arrow-in-up-left',
|
|
589
|
+
'box-arrow-in-up-right',
|
|
590
|
+
'box-arrow-left',
|
|
591
|
+
'box-arrow-right',
|
|
592
|
+
'box-arrow-up',
|
|
593
|
+
'box-arrow-up-left',
|
|
594
|
+
'box-arrow-up-right',
|
|
595
|
+
'box-fill',
|
|
596
|
+
'box-seam',
|
|
597
|
+
'box-seam-fill',
|
|
598
|
+
'box2',
|
|
599
|
+
'box2-fill',
|
|
600
|
+
'box2-heart',
|
|
601
|
+
'box2-heart-fill',
|
|
602
|
+
'boxes',
|
|
603
|
+
'braces',
|
|
604
|
+
'braces-asterisk',
|
|
605
|
+
'bricks',
|
|
606
|
+
'briefcase',
|
|
607
|
+
'briefcase-fill',
|
|
608
|
+
'brightness-alt-high',
|
|
609
|
+
'brightness-alt-high-fill',
|
|
610
|
+
'brightness-alt-low',
|
|
611
|
+
'brightness-alt-low-fill',
|
|
612
|
+
'brightness-high',
|
|
613
|
+
'brightness-high-fill',
|
|
614
|
+
'brightness-low',
|
|
615
|
+
'brightness-low-fill',
|
|
616
|
+
'brilliance',
|
|
617
|
+
'broadcast',
|
|
618
|
+
'broadcast-pin',
|
|
619
|
+
'browser-chrome',
|
|
620
|
+
'browser-edge',
|
|
621
|
+
'browser-firefox',
|
|
622
|
+
'browser-safari',
|
|
623
|
+
'brush',
|
|
624
|
+
'brush-fill',
|
|
625
|
+
'bucket',
|
|
626
|
+
'bucket-fill',
|
|
627
|
+
'bug',
|
|
628
|
+
'bug-fill',
|
|
629
|
+
'building',
|
|
630
|
+
'building-add',
|
|
631
|
+
'building-check',
|
|
632
|
+
'building-dash',
|
|
633
|
+
'building-down',
|
|
634
|
+
'building-exclamation',
|
|
635
|
+
'building-fill',
|
|
636
|
+
'building-fill-add',
|
|
637
|
+
'building-fill-check',
|
|
638
|
+
'building-fill-dash',
|
|
639
|
+
'building-fill-down',
|
|
640
|
+
'building-fill-exclamation',
|
|
641
|
+
'building-fill-gear',
|
|
642
|
+
'building-fill-lock',
|
|
643
|
+
'building-fill-slash',
|
|
644
|
+
'building-fill-up',
|
|
645
|
+
'building-fill-x',
|
|
646
|
+
'building-gear',
|
|
647
|
+
'building-lock',
|
|
648
|
+
'building-slash',
|
|
649
|
+
'building-up',
|
|
650
|
+
'building-x',
|
|
651
|
+
'buildings',
|
|
652
|
+
'buildings-fill',
|
|
653
|
+
'bullseye',
|
|
654
|
+
'bus-front',
|
|
655
|
+
'bus-front-fill',
|
|
656
|
+
'c-circle',
|
|
657
|
+
'c-circle-fill',
|
|
658
|
+
'c-square',
|
|
659
|
+
'c-square-fill',
|
|
660
|
+
'cake',
|
|
661
|
+
'cake-fill',
|
|
662
|
+
'cake2',
|
|
663
|
+
'cake2-fill',
|
|
664
|
+
'calculator',
|
|
665
|
+
'calculator-fill',
|
|
666
|
+
'calendar',
|
|
667
|
+
'calendar-check',
|
|
668
|
+
'calendar-check-fill',
|
|
669
|
+
'calendar-date',
|
|
670
|
+
'calendar-date-fill',
|
|
671
|
+
'calendar-day',
|
|
672
|
+
'calendar-day-fill',
|
|
673
|
+
'calendar-event',
|
|
674
|
+
'calendar-event-fill',
|
|
675
|
+
'calendar-fill',
|
|
676
|
+
'calendar-heart',
|
|
677
|
+
'calendar-heart-fill',
|
|
678
|
+
'calendar-minus',
|
|
679
|
+
'calendar-minus-fill',
|
|
680
|
+
'calendar-month',
|
|
681
|
+
'calendar-month-fill',
|
|
682
|
+
'calendar-plus',
|
|
683
|
+
'calendar-plus-fill',
|
|
684
|
+
'calendar-range',
|
|
685
|
+
'calendar-range-fill',
|
|
686
|
+
'calendar-week',
|
|
687
|
+
'calendar-week-fill',
|
|
688
|
+
'calendar-x',
|
|
689
|
+
'calendar-x-fill',
|
|
690
|
+
'calendar2',
|
|
691
|
+
'calendar2-check',
|
|
692
|
+
'calendar2-check-fill',
|
|
693
|
+
'calendar2-date',
|
|
694
|
+
'calendar2-date-fill',
|
|
695
|
+
'calendar2-day',
|
|
696
|
+
'calendar2-day-fill',
|
|
697
|
+
'calendar2-event',
|
|
698
|
+
'calendar2-event-fill',
|
|
699
|
+
'calendar2-fill',
|
|
700
|
+
'calendar2-heart',
|
|
701
|
+
'calendar2-heart-fill',
|
|
702
|
+
'calendar2-minus',
|
|
703
|
+
'calendar2-minus-fill',
|
|
704
|
+
'calendar2-month',
|
|
705
|
+
'calendar2-month-fill',
|
|
706
|
+
'calendar2-plus',
|
|
707
|
+
'calendar2-plus-fill',
|
|
708
|
+
'calendar2-range',
|
|
709
|
+
'calendar2-range-fill',
|
|
710
|
+
'calendar2-week',
|
|
711
|
+
'calendar2-week-fill',
|
|
712
|
+
'calendar2-x',
|
|
713
|
+
'calendar2-x-fill',
|
|
714
|
+
'calendar3',
|
|
715
|
+
'calendar3-event',
|
|
716
|
+
'calendar3-event-fill',
|
|
717
|
+
'calendar3-fill',
|
|
718
|
+
'calendar3-range',
|
|
719
|
+
'calendar3-range-fill',
|
|
720
|
+
'calendar3-week',
|
|
721
|
+
'calendar3-week-fill',
|
|
722
|
+
'calendar4',
|
|
723
|
+
'calendar4-event',
|
|
724
|
+
'calendar4-range',
|
|
725
|
+
'calendar4-week',
|
|
726
|
+
'camera',
|
|
727
|
+
'camera2',
|
|
728
|
+
'camera-fill',
|
|
729
|
+
'camera-reels',
|
|
730
|
+
'camera-reels-fill',
|
|
731
|
+
'camera-video',
|
|
732
|
+
'camera-video-fill',
|
|
733
|
+
'camera-video-off',
|
|
734
|
+
'camera-video-off-fill',
|
|
735
|
+
'capslock',
|
|
736
|
+
'capslock-fill',
|
|
737
|
+
'capsule',
|
|
738
|
+
'capsule-pill',
|
|
739
|
+
'car-front',
|
|
740
|
+
'car-front-fill',
|
|
741
|
+
'card-checklist',
|
|
742
|
+
'card-heading',
|
|
743
|
+
'card-image',
|
|
744
|
+
'card-list',
|
|
745
|
+
'card-text',
|
|
746
|
+
'caret-down',
|
|
747
|
+
'caret-down-fill',
|
|
748
|
+
'caret-down-square',
|
|
749
|
+
'caret-down-square-fill',
|
|
750
|
+
'caret-left',
|
|
751
|
+
'caret-left-fill',
|
|
752
|
+
'caret-left-square',
|
|
753
|
+
'caret-left-square-fill',
|
|
754
|
+
'caret-right',
|
|
755
|
+
'caret-right-fill',
|
|
756
|
+
'caret-right-square',
|
|
757
|
+
'caret-right-square-fill',
|
|
758
|
+
'caret-up',
|
|
759
|
+
'caret-up-fill',
|
|
760
|
+
'caret-up-square',
|
|
761
|
+
'caret-up-square-fill',
|
|
762
|
+
'cart',
|
|
763
|
+
'cart-check',
|
|
764
|
+
'cart-check-fill',
|
|
765
|
+
'cart-dash',
|
|
766
|
+
'cart-dash-fill',
|
|
767
|
+
'cart-fill',
|
|
768
|
+
'cart-plus',
|
|
769
|
+
'cart-plus-fill',
|
|
770
|
+
'cart-x',
|
|
771
|
+
'cart-x-fill',
|
|
772
|
+
'cart2',
|
|
773
|
+
'cart3',
|
|
774
|
+
'cart4',
|
|
775
|
+
'cash',
|
|
776
|
+
'cash-coin',
|
|
777
|
+
'cash-stack',
|
|
778
|
+
'cassette',
|
|
779
|
+
'cassette-fill',
|
|
780
|
+
'cast',
|
|
781
|
+
'cc-circle',
|
|
782
|
+
'cc-circle-fill',
|
|
783
|
+
'cc-square',
|
|
784
|
+
'cc-square-fill',
|
|
785
|
+
'chat',
|
|
786
|
+
'chat-dots',
|
|
787
|
+
'chat-dots-fill',
|
|
788
|
+
'chat-fill',
|
|
789
|
+
'chat-heart',
|
|
790
|
+
'chat-heart-fill',
|
|
791
|
+
'chat-left',
|
|
792
|
+
'chat-left-dots',
|
|
793
|
+
'chat-left-dots-fill',
|
|
794
|
+
'chat-left-fill',
|
|
795
|
+
'chat-left-heart',
|
|
796
|
+
'chat-left-heart-fill',
|
|
797
|
+
'chat-left-quote',
|
|
798
|
+
'chat-left-quote-fill',
|
|
799
|
+
'chat-left-text',
|
|
800
|
+
'chat-left-text-fill',
|
|
801
|
+
'chat-quote',
|
|
802
|
+
'chat-quote-fill',
|
|
803
|
+
'chat-right',
|
|
804
|
+
'chat-right-dots',
|
|
805
|
+
'chat-right-dots-fill',
|
|
806
|
+
'chat-right-fill',
|
|
807
|
+
'chat-right-heart',
|
|
808
|
+
'chat-right-heart-fill',
|
|
809
|
+
'chat-right-quote',
|
|
810
|
+
'chat-right-quote-fill',
|
|
811
|
+
'chat-right-text',
|
|
812
|
+
'chat-right-text-fill',
|
|
813
|
+
'chat-square',
|
|
814
|
+
'chat-square-dots',
|
|
815
|
+
'chat-square-dots-fill',
|
|
816
|
+
'chat-square-fill',
|
|
817
|
+
'chat-square-heart',
|
|
818
|
+
'chat-square-heart-fill',
|
|
819
|
+
'chat-square-quote',
|
|
820
|
+
'chat-square-quote-fill',
|
|
821
|
+
'chat-square-text',
|
|
822
|
+
'chat-square-text-fill',
|
|
823
|
+
'chat-text',
|
|
824
|
+
'chat-text-fill',
|
|
825
|
+
'check',
|
|
826
|
+
'check-all',
|
|
827
|
+
'check-circle',
|
|
828
|
+
'check-circle-fill',
|
|
829
|
+
'check-lg',
|
|
830
|
+
'check-square',
|
|
831
|
+
'check-square-fill',
|
|
832
|
+
'check2',
|
|
833
|
+
'check2-all',
|
|
834
|
+
'check2-circle',
|
|
835
|
+
'check2-square',
|
|
836
|
+
'chevron-bar-contract',
|
|
837
|
+
'chevron-bar-down',
|
|
838
|
+
'chevron-bar-expand',
|
|
839
|
+
'chevron-bar-left',
|
|
840
|
+
'chevron-bar-right',
|
|
841
|
+
'chevron-bar-up',
|
|
842
|
+
'chevron-compact-down',
|
|
843
|
+
'chevron-compact-left',
|
|
844
|
+
'chevron-compact-right',
|
|
845
|
+
'chevron-compact-up',
|
|
846
|
+
'chevron-contract',
|
|
847
|
+
'chevron-double-down',
|
|
848
|
+
'chevron-double-left',
|
|
849
|
+
'chevron-double-right',
|
|
850
|
+
'chevron-double-up',
|
|
851
|
+
'chevron-down',
|
|
852
|
+
'chevron-expand',
|
|
853
|
+
'chevron-left',
|
|
854
|
+
'chevron-right',
|
|
855
|
+
'chevron-up',
|
|
856
|
+
'circle',
|
|
857
|
+
'circle-fill',
|
|
858
|
+
'circle-half',
|
|
859
|
+
'slash-circle',
|
|
860
|
+
'circle-square',
|
|
861
|
+
'claude',
|
|
862
|
+
'clipboard',
|
|
863
|
+
'clipboard-check',
|
|
864
|
+
'clipboard-check-fill',
|
|
865
|
+
'clipboard-data',
|
|
866
|
+
'clipboard-data-fill',
|
|
867
|
+
'clipboard-fill',
|
|
868
|
+
'clipboard-heart',
|
|
869
|
+
'clipboard-heart-fill',
|
|
870
|
+
'clipboard-minus',
|
|
871
|
+
'clipboard-minus-fill',
|
|
872
|
+
'clipboard-plus',
|
|
873
|
+
'clipboard-plus-fill',
|
|
874
|
+
'clipboard-pulse',
|
|
875
|
+
'clipboard-x',
|
|
876
|
+
'clipboard-x-fill',
|
|
877
|
+
'clipboard2',
|
|
878
|
+
'clipboard2-check',
|
|
879
|
+
'clipboard2-check-fill',
|
|
880
|
+
'clipboard2-data',
|
|
881
|
+
'clipboard2-data-fill',
|
|
882
|
+
'clipboard2-fill',
|
|
883
|
+
'clipboard2-heart',
|
|
884
|
+
'clipboard2-heart-fill',
|
|
885
|
+
'clipboard2-minus',
|
|
886
|
+
'clipboard2-minus-fill',
|
|
887
|
+
'clipboard2-plus',
|
|
888
|
+
'clipboard2-plus-fill',
|
|
889
|
+
'clipboard2-pulse',
|
|
890
|
+
'clipboard2-pulse-fill',
|
|
891
|
+
'clipboard2-x',
|
|
892
|
+
'clipboard2-x-fill',
|
|
893
|
+
'clock',
|
|
894
|
+
'clock-fill',
|
|
895
|
+
'clock-history',
|
|
896
|
+
'cloud',
|
|
897
|
+
'cloud-arrow-down',
|
|
898
|
+
'cloud-arrow-down-fill',
|
|
899
|
+
'cloud-arrow-up',
|
|
900
|
+
'cloud-arrow-up-fill',
|
|
901
|
+
'cloud-check',
|
|
902
|
+
'cloud-check-fill',
|
|
903
|
+
'cloud-download',
|
|
904
|
+
'cloud-download-fill',
|
|
905
|
+
'cloud-drizzle',
|
|
906
|
+
'cloud-drizzle-fill',
|
|
907
|
+
'cloud-fill',
|
|
908
|
+
'cloud-fog',
|
|
909
|
+
'cloud-fog-fill',
|
|
910
|
+
'cloud-fog2',
|
|
911
|
+
'cloud-fog2-fill',
|
|
912
|
+
'cloud-hail',
|
|
913
|
+
'cloud-hail-fill',
|
|
914
|
+
'cloud-haze',
|
|
915
|
+
'cloud-haze-fill',
|
|
916
|
+
'cloud-haze2',
|
|
917
|
+
'cloud-haze2-fill',
|
|
918
|
+
'cloud-lightning',
|
|
919
|
+
'cloud-lightning-fill',
|
|
920
|
+
'cloud-lightning-rain',
|
|
921
|
+
'cloud-lightning-rain-fill',
|
|
922
|
+
'cloud-minus',
|
|
923
|
+
'cloud-minus-fill',
|
|
924
|
+
'cloud-moon',
|
|
925
|
+
'cloud-moon-fill',
|
|
926
|
+
'cloud-plus',
|
|
927
|
+
'cloud-plus-fill',
|
|
928
|
+
'cloud-rain',
|
|
929
|
+
'cloud-rain-fill',
|
|
930
|
+
'cloud-rain-heavy',
|
|
931
|
+
'cloud-rain-heavy-fill',
|
|
932
|
+
'cloud-slash',
|
|
933
|
+
'cloud-slash-fill',
|
|
934
|
+
'cloud-sleet',
|
|
935
|
+
'cloud-sleet-fill',
|
|
936
|
+
'cloud-snow',
|
|
937
|
+
'cloud-snow-fill',
|
|
938
|
+
'cloud-sun',
|
|
939
|
+
'cloud-sun-fill',
|
|
940
|
+
'cloud-upload',
|
|
941
|
+
'cloud-upload-fill',
|
|
942
|
+
'clouds',
|
|
943
|
+
'clouds-fill',
|
|
944
|
+
'cloudy',
|
|
945
|
+
'cloudy-fill',
|
|
946
|
+
'code',
|
|
947
|
+
'code-slash',
|
|
948
|
+
'code-square',
|
|
949
|
+
'coin',
|
|
950
|
+
'collection',
|
|
951
|
+
'collection-fill',
|
|
952
|
+
'collection-play',
|
|
953
|
+
'collection-play-fill',
|
|
954
|
+
'columns',
|
|
955
|
+
'columns-gap',
|
|
956
|
+
'command',
|
|
957
|
+
'compass',
|
|
958
|
+
'compass-fill',
|
|
959
|
+
'cone',
|
|
960
|
+
'cone-striped',
|
|
961
|
+
'controller',
|
|
962
|
+
'cookie',
|
|
963
|
+
'copy',
|
|
964
|
+
'cpu',
|
|
965
|
+
'cpu-fill',
|
|
966
|
+
'credit-card',
|
|
967
|
+
'credit-card-2-back',
|
|
968
|
+
'credit-card-2-back-fill',
|
|
969
|
+
'credit-card-2-front',
|
|
970
|
+
'credit-card-2-front-fill',
|
|
971
|
+
'credit-card-fill',
|
|
972
|
+
'crop',
|
|
973
|
+
'crosshair',
|
|
974
|
+
'crosshair2',
|
|
975
|
+
'css',
|
|
976
|
+
'cup',
|
|
977
|
+
'cup-fill',
|
|
978
|
+
'cup-hot',
|
|
979
|
+
'cup-hot-fill',
|
|
980
|
+
'cup-straw',
|
|
981
|
+
'currency-bitcoin',
|
|
982
|
+
'currency-dollar',
|
|
983
|
+
'currency-euro',
|
|
984
|
+
'currency-exchange',
|
|
985
|
+
'currency-pound',
|
|
986
|
+
'currency-rupee',
|
|
987
|
+
'currency-yen',
|
|
988
|
+
'cursor',
|
|
989
|
+
'cursor-fill',
|
|
990
|
+
'cursor-text',
|
|
991
|
+
'dash',
|
|
992
|
+
'dash-circle',
|
|
993
|
+
'dash-circle-dotted',
|
|
994
|
+
'dash-circle-fill',
|
|
995
|
+
'dash-lg',
|
|
996
|
+
'dash-square',
|
|
997
|
+
'dash-square-dotted',
|
|
998
|
+
'dash-square-fill',
|
|
999
|
+
'database',
|
|
1000
|
+
'database-add',
|
|
1001
|
+
'database-check',
|
|
1002
|
+
'database-dash',
|
|
1003
|
+
'database-down',
|
|
1004
|
+
'database-exclamation',
|
|
1005
|
+
'database-fill',
|
|
1006
|
+
'database-fill-add',
|
|
1007
|
+
'database-fill-check',
|
|
1008
|
+
'database-fill-dash',
|
|
1009
|
+
'database-fill-down',
|
|
1010
|
+
'database-fill-exclamation',
|
|
1011
|
+
'database-fill-gear',
|
|
1012
|
+
'database-fill-lock',
|
|
1013
|
+
'database-fill-slash',
|
|
1014
|
+
'database-fill-up',
|
|
1015
|
+
'database-fill-x',
|
|
1016
|
+
'database-gear',
|
|
1017
|
+
'database-lock',
|
|
1018
|
+
'database-slash',
|
|
1019
|
+
'database-up',
|
|
1020
|
+
'database-x',
|
|
1021
|
+
'device-hdd',
|
|
1022
|
+
'device-hdd-fill',
|
|
1023
|
+
'device-ssd',
|
|
1024
|
+
'device-ssd-fill',
|
|
1025
|
+
'diagram-2',
|
|
1026
|
+
'diagram-2-fill',
|
|
1027
|
+
'diagram-3',
|
|
1028
|
+
'diagram-3-fill',
|
|
1029
|
+
'diamond',
|
|
1030
|
+
'diamond-fill',
|
|
1031
|
+
'diamond-half',
|
|
1032
|
+
'dice-1',
|
|
1033
|
+
'dice-1-fill',
|
|
1034
|
+
'dice-2',
|
|
1035
|
+
'dice-2-fill',
|
|
1036
|
+
'dice-3',
|
|
1037
|
+
'dice-3-fill',
|
|
1038
|
+
'dice-4',
|
|
1039
|
+
'dice-4-fill',
|
|
1040
|
+
'dice-5',
|
|
1041
|
+
'dice-5-fill',
|
|
1042
|
+
'dice-6',
|
|
1043
|
+
'dice-6-fill',
|
|
1044
|
+
'disc',
|
|
1045
|
+
'disc-fill',
|
|
1046
|
+
'discord',
|
|
1047
|
+
'display',
|
|
1048
|
+
'display-fill',
|
|
1049
|
+
'displayport',
|
|
1050
|
+
'displayport-fill',
|
|
1051
|
+
'distribute-horizontal',
|
|
1052
|
+
'distribute-vertical',
|
|
1053
|
+
'door-closed',
|
|
1054
|
+
'door-closed-fill',
|
|
1055
|
+
'door-open',
|
|
1056
|
+
'door-open-fill',
|
|
1057
|
+
'dot',
|
|
1058
|
+
'download',
|
|
1059
|
+
'dpad',
|
|
1060
|
+
'dpad-fill',
|
|
1061
|
+
'dribbble',
|
|
1062
|
+
'dropbox',
|
|
1063
|
+
'droplet',
|
|
1064
|
+
'droplet-fill',
|
|
1065
|
+
'droplet-half',
|
|
1066
|
+
'duffle',
|
|
1067
|
+
'duffle-fill',
|
|
1068
|
+
'ear',
|
|
1069
|
+
'ear-fill',
|
|
1070
|
+
'earbuds',
|
|
1071
|
+
'easel',
|
|
1072
|
+
'easel-fill',
|
|
1073
|
+
'easel2',
|
|
1074
|
+
'easel2-fill',
|
|
1075
|
+
'easel3',
|
|
1076
|
+
'easel3-fill',
|
|
1077
|
+
'egg',
|
|
1078
|
+
'egg-fill',
|
|
1079
|
+
'egg-fried',
|
|
1080
|
+
'eject',
|
|
1081
|
+
'eject-fill',
|
|
1082
|
+
'emoji-angry',
|
|
1083
|
+
'emoji-angry-fill',
|
|
1084
|
+
'emoji-astonished',
|
|
1085
|
+
'emoji-astonished-fill',
|
|
1086
|
+
'emoji-dizzy',
|
|
1087
|
+
'emoji-dizzy-fill',
|
|
1088
|
+
'emoji-expressionless',
|
|
1089
|
+
'emoji-expressionless-fill',
|
|
1090
|
+
'emoji-frown',
|
|
1091
|
+
'emoji-frown-fill',
|
|
1092
|
+
'emoji-grimace',
|
|
1093
|
+
'emoji-grimace-fill',
|
|
1094
|
+
'emoji-grin',
|
|
1095
|
+
'emoji-grin-fill',
|
|
1096
|
+
'emoji-heart-eyes',
|
|
1097
|
+
'emoji-heart-eyes-fill',
|
|
1098
|
+
'emoji-kiss',
|
|
1099
|
+
'emoji-kiss-fill',
|
|
1100
|
+
'emoji-laughing',
|
|
1101
|
+
'emoji-laughing-fill',
|
|
1102
|
+
'emoji-neutral',
|
|
1103
|
+
'emoji-neutral-fill',
|
|
1104
|
+
'emoji-smile',
|
|
1105
|
+
'emoji-smile-fill',
|
|
1106
|
+
'emoji-smile-upside-down',
|
|
1107
|
+
'emoji-smile-upside-down-fill',
|
|
1108
|
+
'emoji-sunglasses',
|
|
1109
|
+
'emoji-sunglasses-fill',
|
|
1110
|
+
'emoji-surprise',
|
|
1111
|
+
'emoji-surprise-fill',
|
|
1112
|
+
'emoji-tear',
|
|
1113
|
+
'emoji-tear-fill',
|
|
1114
|
+
'emoji-wink',
|
|
1115
|
+
'emoji-wink-fill',
|
|
1116
|
+
'envelope',
|
|
1117
|
+
'envelope-arrow-down',
|
|
1118
|
+
'envelope-arrow-down-fill',
|
|
1119
|
+
'envelope-arrow-up',
|
|
1120
|
+
'envelope-arrow-up-fill',
|
|
1121
|
+
'envelope-at',
|
|
1122
|
+
'envelope-at-fill',
|
|
1123
|
+
'envelope-check',
|
|
1124
|
+
'envelope-check-fill',
|
|
1125
|
+
'envelope-dash',
|
|
1126
|
+
'envelope-dash-fill',
|
|
1127
|
+
'envelope-exclamation',
|
|
1128
|
+
'envelope-exclamation-fill',
|
|
1129
|
+
'envelope-fill',
|
|
1130
|
+
'envelope-heart',
|
|
1131
|
+
'envelope-heart-fill',
|
|
1132
|
+
'envelope-open',
|
|
1133
|
+
'envelope-open-fill',
|
|
1134
|
+
'envelope-open-heart',
|
|
1135
|
+
'envelope-open-heart-fill',
|
|
1136
|
+
'envelope-paper',
|
|
1137
|
+
'envelope-paper-fill',
|
|
1138
|
+
'envelope-paper-heart',
|
|
1139
|
+
'envelope-paper-heart-fill',
|
|
1140
|
+
'envelope-plus',
|
|
1141
|
+
'envelope-plus-fill',
|
|
1142
|
+
'envelope-slash',
|
|
1143
|
+
'envelope-slash-fill',
|
|
1144
|
+
'envelope-x',
|
|
1145
|
+
'envelope-x-fill',
|
|
1146
|
+
'eraser',
|
|
1147
|
+
'eraser-fill',
|
|
1148
|
+
'escape',
|
|
1149
|
+
'ethernet',
|
|
1150
|
+
'ev-front',
|
|
1151
|
+
'ev-front-fill',
|
|
1152
|
+
'ev-station',
|
|
1153
|
+
'ev-station-fill',
|
|
1154
|
+
'exclamation',
|
|
1155
|
+
'exclamation-circle',
|
|
1156
|
+
'exclamation-circle-fill',
|
|
1157
|
+
'exclamation-diamond',
|
|
1158
|
+
'exclamation-diamond-fill',
|
|
1159
|
+
'exclamation-lg',
|
|
1160
|
+
'exclamation-octagon',
|
|
1161
|
+
'exclamation-octagon-fill',
|
|
1162
|
+
'exclamation-square',
|
|
1163
|
+
'exclamation-square-fill',
|
|
1164
|
+
'exclamation-triangle',
|
|
1165
|
+
'exclamation-triangle-fill',
|
|
1166
|
+
'exclude',
|
|
1167
|
+
'explicit',
|
|
1168
|
+
'explicit-fill',
|
|
1169
|
+
'exposure',
|
|
1170
|
+
'eye',
|
|
1171
|
+
'eye-fill',
|
|
1172
|
+
'eye-slash',
|
|
1173
|
+
'eye-slash-fill',
|
|
1174
|
+
'eyedropper',
|
|
1175
|
+
'eyeglasses',
|
|
1176
|
+
'facebook',
|
|
1177
|
+
'fan',
|
|
1178
|
+
'fast-forward',
|
|
1179
|
+
'fast-forward-btn',
|
|
1180
|
+
'fast-forward-btn-fill',
|
|
1181
|
+
'fast-forward-circle',
|
|
1182
|
+
'fast-forward-circle-fill',
|
|
1183
|
+
'fast-forward-fill',
|
|
1184
|
+
'feather',
|
|
1185
|
+
'feather2',
|
|
1186
|
+
'file',
|
|
1187
|
+
'file-arrow-down',
|
|
1188
|
+
'file-arrow-down-fill',
|
|
1189
|
+
'file-arrow-up',
|
|
1190
|
+
'file-arrow-up-fill',
|
|
1191
|
+
'file-bar-graph',
|
|
1192
|
+
'file-bar-graph-fill',
|
|
1193
|
+
'file-binary',
|
|
1194
|
+
'file-binary-fill',
|
|
1195
|
+
'file-break',
|
|
1196
|
+
'file-break-fill',
|
|
1197
|
+
'file-check',
|
|
1198
|
+
'file-check-fill',
|
|
1199
|
+
'file-code',
|
|
1200
|
+
'file-code-fill',
|
|
1201
|
+
'file-diff',
|
|
1202
|
+
'file-diff-fill',
|
|
1203
|
+
'file-earmark',
|
|
1204
|
+
'file-earmark-arrow-down',
|
|
1205
|
+
'file-earmark-arrow-down-fill',
|
|
1206
|
+
'file-earmark-arrow-up',
|
|
1207
|
+
'file-earmark-arrow-up-fill',
|
|
1208
|
+
'file-earmark-bar-graph',
|
|
1209
|
+
'file-earmark-bar-graph-fill',
|
|
1210
|
+
'file-earmark-binary',
|
|
1211
|
+
'file-earmark-binary-fill',
|
|
1212
|
+
'file-earmark-break',
|
|
1213
|
+
'file-earmark-break-fill',
|
|
1214
|
+
'file-earmark-check',
|
|
1215
|
+
'file-earmark-check-fill',
|
|
1216
|
+
'file-earmark-code',
|
|
1217
|
+
'file-earmark-code-fill',
|
|
1218
|
+
'file-earmark-diff',
|
|
1219
|
+
'file-earmark-diff-fill',
|
|
1220
|
+
'file-earmark-easel',
|
|
1221
|
+
'file-earmark-easel-fill',
|
|
1222
|
+
'file-earmark-excel',
|
|
1223
|
+
'file-earmark-excel-fill',
|
|
1224
|
+
'file-earmark-fill',
|
|
1225
|
+
'file-earmark-font',
|
|
1226
|
+
'file-earmark-font-fill',
|
|
1227
|
+
'file-earmark-image',
|
|
1228
|
+
'file-earmark-image-fill',
|
|
1229
|
+
'file-earmark-lock',
|
|
1230
|
+
'file-earmark-lock-fill',
|
|
1231
|
+
'file-earmark-lock2',
|
|
1232
|
+
'file-earmark-lock2-fill',
|
|
1233
|
+
'file-earmark-medical',
|
|
1234
|
+
'file-earmark-medical-fill',
|
|
1235
|
+
'file-earmark-minus',
|
|
1236
|
+
'file-earmark-minus-fill',
|
|
1237
|
+
'file-earmark-music',
|
|
1238
|
+
'file-earmark-music-fill',
|
|
1239
|
+
'file-earmark-pdf',
|
|
1240
|
+
'file-earmark-pdf-fill',
|
|
1241
|
+
'file-earmark-person',
|
|
1242
|
+
'file-earmark-person-fill',
|
|
1243
|
+
'file-earmark-play',
|
|
1244
|
+
'file-earmark-play-fill',
|
|
1245
|
+
'file-earmark-plus',
|
|
1246
|
+
'file-earmark-plus-fill',
|
|
1247
|
+
'file-earmark-post',
|
|
1248
|
+
'file-earmark-post-fill',
|
|
1249
|
+
'file-earmark-ppt',
|
|
1250
|
+
'file-earmark-ppt-fill',
|
|
1251
|
+
'file-earmark-richtext',
|
|
1252
|
+
'file-earmark-richtext-fill',
|
|
1253
|
+
'file-earmark-ruled',
|
|
1254
|
+
'file-earmark-ruled-fill',
|
|
1255
|
+
'file-earmark-slides',
|
|
1256
|
+
'file-earmark-slides-fill',
|
|
1257
|
+
'file-earmark-spreadsheet',
|
|
1258
|
+
'file-earmark-spreadsheet-fill',
|
|
1259
|
+
'file-earmark-text',
|
|
1260
|
+
'file-earmark-text-fill',
|
|
1261
|
+
'file-earmark-word',
|
|
1262
|
+
'file-earmark-word-fill',
|
|
1263
|
+
'file-earmark-x',
|
|
1264
|
+
'file-earmark-x-fill',
|
|
1265
|
+
'file-earmark-zip',
|
|
1266
|
+
'file-earmark-zip-fill',
|
|
1267
|
+
'file-easel',
|
|
1268
|
+
'file-easel-fill',
|
|
1269
|
+
'file-excel',
|
|
1270
|
+
'file-excel-fill',
|
|
1271
|
+
'file-fill',
|
|
1272
|
+
'file-font',
|
|
1273
|
+
'file-font-fill',
|
|
1274
|
+
'file-image',
|
|
1275
|
+
'file-image-fill',
|
|
1276
|
+
'file-lock',
|
|
1277
|
+
'file-lock-fill',
|
|
1278
|
+
'file-lock2',
|
|
1279
|
+
'file-lock2-fill',
|
|
1280
|
+
'file-medical',
|
|
1281
|
+
'file-medical-fill',
|
|
1282
|
+
'file-minus',
|
|
1283
|
+
'file-minus-fill',
|
|
1284
|
+
'file-music',
|
|
1285
|
+
'file-music-fill',
|
|
1286
|
+
'file-pdf',
|
|
1287
|
+
'file-pdf-fill',
|
|
1288
|
+
'file-person',
|
|
1289
|
+
'file-person-fill',
|
|
1290
|
+
'file-play',
|
|
1291
|
+
'file-play-fill',
|
|
1292
|
+
'file-plus',
|
|
1293
|
+
'file-plus-fill',
|
|
1294
|
+
'file-post',
|
|
1295
|
+
'file-post-fill',
|
|
1296
|
+
'file-ppt',
|
|
1297
|
+
'file-ppt-fill',
|
|
1298
|
+
'file-richtext',
|
|
1299
|
+
'file-richtext-fill',
|
|
1300
|
+
'file-ruled',
|
|
1301
|
+
'file-ruled-fill',
|
|
1302
|
+
'file-slides',
|
|
1303
|
+
'file-slides-fill',
|
|
1304
|
+
'file-spreadsheet',
|
|
1305
|
+
'file-spreadsheet-fill',
|
|
1306
|
+
'file-text',
|
|
1307
|
+
'file-text-fill',
|
|
1308
|
+
'file-word',
|
|
1309
|
+
'file-word-fill',
|
|
1310
|
+
'file-x',
|
|
1311
|
+
'file-x-fill',
|
|
1312
|
+
'file-zip',
|
|
1313
|
+
'file-zip-fill',
|
|
1314
|
+
'files',
|
|
1315
|
+
'files-alt',
|
|
1316
|
+
'filetype-aac',
|
|
1317
|
+
'filetype-ai',
|
|
1318
|
+
'filetype-bmp',
|
|
1319
|
+
'filetype-cs',
|
|
1320
|
+
'filetype-css',
|
|
1321
|
+
'filetype-csv',
|
|
1322
|
+
'filetype-doc',
|
|
1323
|
+
'filetype-docx',
|
|
1324
|
+
'filetype-exe',
|
|
1325
|
+
'filetype-gif',
|
|
1326
|
+
'filetype-heic',
|
|
1327
|
+
'filetype-html',
|
|
1328
|
+
'filetype-java',
|
|
1329
|
+
'filetype-jpg',
|
|
1330
|
+
'filetype-js',
|
|
1331
|
+
'filetype-json',
|
|
1332
|
+
'filetype-jsx',
|
|
1333
|
+
'filetype-key',
|
|
1334
|
+
'filetype-m4p',
|
|
1335
|
+
'filetype-md',
|
|
1336
|
+
'filetype-mdx',
|
|
1337
|
+
'filetype-mov',
|
|
1338
|
+
'filetype-mp3',
|
|
1339
|
+
'filetype-mp4',
|
|
1340
|
+
'filetype-otf',
|
|
1341
|
+
'filetype-pdf',
|
|
1342
|
+
'filetype-php',
|
|
1343
|
+
'filetype-png',
|
|
1344
|
+
'filetype-ppt',
|
|
1345
|
+
'filetype-pptx',
|
|
1346
|
+
'filetype-psd',
|
|
1347
|
+
'filetype-py',
|
|
1348
|
+
'filetype-raw',
|
|
1349
|
+
'filetype-rb',
|
|
1350
|
+
'filetype-sass',
|
|
1351
|
+
'filetype-scss',
|
|
1352
|
+
'filetype-sh',
|
|
1353
|
+
'filetype-sql',
|
|
1354
|
+
'filetype-svg',
|
|
1355
|
+
'filetype-tiff',
|
|
1356
|
+
'filetype-tsx',
|
|
1357
|
+
'filetype-ttf',
|
|
1358
|
+
'filetype-txt',
|
|
1359
|
+
'filetype-wav',
|
|
1360
|
+
'filetype-woff',
|
|
1361
|
+
'filetype-xls',
|
|
1362
|
+
'filetype-xlsx',
|
|
1363
|
+
'filetype-xml',
|
|
1364
|
+
'filetype-yml',
|
|
1365
|
+
'film',
|
|
1366
|
+
'filter',
|
|
1367
|
+
'filter-circle',
|
|
1368
|
+
'filter-circle-fill',
|
|
1369
|
+
'filter-left',
|
|
1370
|
+
'filter-right',
|
|
1371
|
+
'filter-square',
|
|
1372
|
+
'filter-square-fill',
|
|
1373
|
+
'fingerprint',
|
|
1374
|
+
'fire',
|
|
1375
|
+
'flag',
|
|
1376
|
+
'flag-fill',
|
|
1377
|
+
'flask',
|
|
1378
|
+
'flask-fill',
|
|
1379
|
+
'flask-florence',
|
|
1380
|
+
'flask-florence-fill',
|
|
1381
|
+
'floppy',
|
|
1382
|
+
'floppy-fill',
|
|
1383
|
+
'floppy2',
|
|
1384
|
+
'floppy2-fill',
|
|
1385
|
+
'flower1',
|
|
1386
|
+
'flower2',
|
|
1387
|
+
'flower3',
|
|
1388
|
+
'folder',
|
|
1389
|
+
'folder-check',
|
|
1390
|
+
'folder-fill',
|
|
1391
|
+
'folder-minus',
|
|
1392
|
+
'folder-plus',
|
|
1393
|
+
'folder-symlink',
|
|
1394
|
+
'folder-symlink-fill',
|
|
1395
|
+
'folder-x',
|
|
1396
|
+
'folder2',
|
|
1397
|
+
'folder2-open',
|
|
1398
|
+
'fonts',
|
|
1399
|
+
'fork-knife',
|
|
1400
|
+
'forward',
|
|
1401
|
+
'forward-fill',
|
|
1402
|
+
'front',
|
|
1403
|
+
'fuel-pump',
|
|
1404
|
+
'fuel-pump-diesel',
|
|
1405
|
+
'fuel-pump-diesel-fill',
|
|
1406
|
+
'fuel-pump-fill',
|
|
1407
|
+
'fullscreen',
|
|
1408
|
+
'fullscreen-exit',
|
|
1409
|
+
'funnel',
|
|
1410
|
+
'funnel-fill',
|
|
1411
|
+
'gear',
|
|
1412
|
+
'gear-fill',
|
|
1413
|
+
'gear-wide',
|
|
1414
|
+
'gear-wide-connected',
|
|
1415
|
+
'gem',
|
|
1416
|
+
'gender-ambiguous',
|
|
1417
|
+
'gender-female',
|
|
1418
|
+
'gender-male',
|
|
1419
|
+
'gender-neuter',
|
|
1420
|
+
'gender-trans',
|
|
1421
|
+
'geo',
|
|
1422
|
+
'geo-alt',
|
|
1423
|
+
'geo-alt-fill',
|
|
1424
|
+
'geo-fill',
|
|
1425
|
+
'gift',
|
|
1426
|
+
'gift-fill',
|
|
1427
|
+
'git',
|
|
1428
|
+
'github',
|
|
1429
|
+
'gitlab',
|
|
1430
|
+
'globe',
|
|
1431
|
+
'globe-americas',
|
|
1432
|
+
'globe-americas-fill',
|
|
1433
|
+
'globe-asia-australia',
|
|
1434
|
+
'globe-asia-australia-fill',
|
|
1435
|
+
'globe-central-south-asia',
|
|
1436
|
+
'globe-central-south-asia-fill',
|
|
1437
|
+
'globe-europe-africa',
|
|
1438
|
+
'globe-europe-africa-fill',
|
|
1439
|
+
'globe2',
|
|
1440
|
+
'google',
|
|
1441
|
+
'google-play',
|
|
1442
|
+
'gpu-card',
|
|
1443
|
+
'graph-down',
|
|
1444
|
+
'graph-down-arrow',
|
|
1445
|
+
'graph-up',
|
|
1446
|
+
'graph-up-arrow',
|
|
1447
|
+
'grid',
|
|
1448
|
+
'grid-1x2',
|
|
1449
|
+
'grid-1x2-fill',
|
|
1450
|
+
'grid-3x2',
|
|
1451
|
+
'grid-3x2-gap',
|
|
1452
|
+
'grid-3x2-gap-fill',
|
|
1453
|
+
'grid-3x3',
|
|
1454
|
+
'grid-3x3-gap',
|
|
1455
|
+
'grid-3x3-gap-fill',
|
|
1456
|
+
'grid-fill',
|
|
1457
|
+
'grip-horizontal',
|
|
1458
|
+
'grip-vertical',
|
|
1459
|
+
'h-circle',
|
|
1460
|
+
'h-circle-fill',
|
|
1461
|
+
'h-square',
|
|
1462
|
+
'h-square-fill',
|
|
1463
|
+
'hammer',
|
|
1464
|
+
'hand-index',
|
|
1465
|
+
'hand-index-fill',
|
|
1466
|
+
'hand-index-thumb',
|
|
1467
|
+
'hand-index-thumb-fill',
|
|
1468
|
+
'hand-thumbs-down',
|
|
1469
|
+
'hand-thumbs-down-fill',
|
|
1470
|
+
'hand-thumbs-up',
|
|
1471
|
+
'hand-thumbs-up-fill',
|
|
1472
|
+
'handbag',
|
|
1473
|
+
'handbag-fill',
|
|
1474
|
+
'hash',
|
|
1475
|
+
'hdd',
|
|
1476
|
+
'hdd-fill',
|
|
1477
|
+
'hdd-network',
|
|
1478
|
+
'hdd-network-fill',
|
|
1479
|
+
'hdd-rack',
|
|
1480
|
+
'hdd-rack-fill',
|
|
1481
|
+
'hdd-stack',
|
|
1482
|
+
'hdd-stack-fill',
|
|
1483
|
+
'hdmi',
|
|
1484
|
+
'hdmi-fill',
|
|
1485
|
+
'headphones',
|
|
1486
|
+
'headset',
|
|
1487
|
+
'headset-vr',
|
|
1488
|
+
'heart',
|
|
1489
|
+
'heart-arrow',
|
|
1490
|
+
'heart-fill',
|
|
1491
|
+
'heart-half',
|
|
1492
|
+
'heart-pulse',
|
|
1493
|
+
'heart-pulse-fill',
|
|
1494
|
+
'heartbreak',
|
|
1495
|
+
'heartbreak-fill',
|
|
1496
|
+
'hearts',
|
|
1497
|
+
'heptagon',
|
|
1498
|
+
'heptagon-fill',
|
|
1499
|
+
'heptagon-half',
|
|
1500
|
+
'hexagon',
|
|
1501
|
+
'hexagon-fill',
|
|
1502
|
+
'hexagon-half',
|
|
1503
|
+
'highlighter',
|
|
1504
|
+
'highlights',
|
|
1505
|
+
'hospital',
|
|
1506
|
+
'hospital-fill',
|
|
1507
|
+
'hourglass',
|
|
1508
|
+
'hourglass-bottom',
|
|
1509
|
+
'hourglass-split',
|
|
1510
|
+
'hourglass-top',
|
|
1511
|
+
'house',
|
|
1512
|
+
'house-add',
|
|
1513
|
+
'house-add-fill',
|
|
1514
|
+
'house-check',
|
|
1515
|
+
'house-check-fill',
|
|
1516
|
+
'house-dash',
|
|
1517
|
+
'house-dash-fill',
|
|
1518
|
+
'house-door',
|
|
1519
|
+
'house-door-fill',
|
|
1520
|
+
'house-down',
|
|
1521
|
+
'house-down-fill',
|
|
1522
|
+
'house-exclamation',
|
|
1523
|
+
'house-exclamation-fill',
|
|
1524
|
+
'house-fill',
|
|
1525
|
+
'house-gear',
|
|
1526
|
+
'house-gear-fill',
|
|
1527
|
+
'house-heart',
|
|
1528
|
+
'house-heart-fill',
|
|
1529
|
+
'house-lock',
|
|
1530
|
+
'house-lock-fill',
|
|
1531
|
+
'house-slash',
|
|
1532
|
+
'house-slash-fill',
|
|
1533
|
+
'house-up',
|
|
1534
|
+
'house-up-fill',
|
|
1535
|
+
'house-x',
|
|
1536
|
+
'house-x-fill',
|
|
1537
|
+
'houses',
|
|
1538
|
+
'houses-fill',
|
|
1539
|
+
'hr',
|
|
1540
|
+
'hurricane',
|
|
1541
|
+
'hypnotize',
|
|
1542
|
+
'image',
|
|
1543
|
+
'image-alt',
|
|
1544
|
+
'image-fill',
|
|
1545
|
+
'images',
|
|
1546
|
+
'inbox',
|
|
1547
|
+
'inbox-fill',
|
|
1548
|
+
'inboxes-fill',
|
|
1549
|
+
'inboxes',
|
|
1550
|
+
'incognito',
|
|
1551
|
+
'indent',
|
|
1552
|
+
'infinity',
|
|
1553
|
+
'info',
|
|
1554
|
+
'info-circle',
|
|
1555
|
+
'info-circle-fill',
|
|
1556
|
+
'info-lg',
|
|
1557
|
+
'info-square',
|
|
1558
|
+
'info-square-fill',
|
|
1559
|
+
'input-cursor',
|
|
1560
|
+
'input-cursor-text',
|
|
1561
|
+
'instagram',
|
|
1562
|
+
'intersect',
|
|
1563
|
+
'javascript',
|
|
1564
|
+
'journal',
|
|
1565
|
+
'journal-album',
|
|
1566
|
+
'journal-arrow-down',
|
|
1567
|
+
'journal-arrow-up',
|
|
1568
|
+
'journal-bookmark',
|
|
1569
|
+
'journal-bookmark-fill',
|
|
1570
|
+
'journal-check',
|
|
1571
|
+
'journal-code',
|
|
1572
|
+
'journal-medical',
|
|
1573
|
+
'journal-minus',
|
|
1574
|
+
'journal-plus',
|
|
1575
|
+
'journal-richtext',
|
|
1576
|
+
'journal-text',
|
|
1577
|
+
'journal-x',
|
|
1578
|
+
'journals',
|
|
1579
|
+
'joystick',
|
|
1580
|
+
'justify',
|
|
1581
|
+
'justify-left',
|
|
1582
|
+
'justify-right',
|
|
1583
|
+
'kanban',
|
|
1584
|
+
'kanban-fill',
|
|
1585
|
+
'key',
|
|
1586
|
+
'key-fill',
|
|
1587
|
+
'keyboard',
|
|
1588
|
+
'keyboard-fill',
|
|
1589
|
+
'ladder',
|
|
1590
|
+
'lamp',
|
|
1591
|
+
'lamp-fill',
|
|
1592
|
+
'laptop',
|
|
1593
|
+
'laptop-fill',
|
|
1594
|
+
'layer-backward',
|
|
1595
|
+
'layer-forward',
|
|
1596
|
+
'layers',
|
|
1597
|
+
'layers-fill',
|
|
1598
|
+
'layers-half',
|
|
1599
|
+
'layout-sidebar',
|
|
1600
|
+
'layout-sidebar-inset-reverse',
|
|
1601
|
+
'layout-sidebar-inset',
|
|
1602
|
+
'layout-sidebar-reverse',
|
|
1603
|
+
'layout-split',
|
|
1604
|
+
'layout-text-sidebar',
|
|
1605
|
+
'layout-text-sidebar-reverse',
|
|
1606
|
+
'layout-text-window',
|
|
1607
|
+
'layout-text-window-reverse',
|
|
1608
|
+
'layout-three-columns',
|
|
1609
|
+
'layout-wtf',
|
|
1610
|
+
'leaf',
|
|
1611
|
+
'leaf-fill',
|
|
1612
|
+
'life-preserver',
|
|
1613
|
+
'lightbulb',
|
|
1614
|
+
'lightbulb-fill',
|
|
1615
|
+
'lightbulb-off',
|
|
1616
|
+
'lightbulb-off-fill',
|
|
1617
|
+
'lightning',
|
|
1618
|
+
'lightning-charge',
|
|
1619
|
+
'lightning-charge-fill',
|
|
1620
|
+
'lightning-fill',
|
|
1621
|
+
'line',
|
|
1622
|
+
'link',
|
|
1623
|
+
'link-45deg',
|
|
1624
|
+
'linkedin',
|
|
1625
|
+
'list',
|
|
1626
|
+
'list-check',
|
|
1627
|
+
'list-columns',
|
|
1628
|
+
'list-columns-reverse',
|
|
1629
|
+
'list-nested',
|
|
1630
|
+
'list-ol',
|
|
1631
|
+
'list-stars',
|
|
1632
|
+
'list-task',
|
|
1633
|
+
'list-ul',
|
|
1634
|
+
'lock',
|
|
1635
|
+
'lock-fill',
|
|
1636
|
+
'luggage',
|
|
1637
|
+
'luggage-fill',
|
|
1638
|
+
'lungs',
|
|
1639
|
+
'lungs-fill',
|
|
1640
|
+
'magic',
|
|
1641
|
+
'magnet',
|
|
1642
|
+
'magnet-fill',
|
|
1643
|
+
'mailbox',
|
|
1644
|
+
'mailbox-flag',
|
|
1645
|
+
'mailbox2',
|
|
1646
|
+
'mailbox2-flag',
|
|
1647
|
+
'map',
|
|
1648
|
+
'map-fill',
|
|
1649
|
+
'markdown',
|
|
1650
|
+
'markdown-fill',
|
|
1651
|
+
'marker-tip',
|
|
1652
|
+
'mask',
|
|
1653
|
+
'mastodon',
|
|
1654
|
+
'measuring-cup',
|
|
1655
|
+
'measuring-cup-fill',
|
|
1656
|
+
'medium',
|
|
1657
|
+
'megaphone',
|
|
1658
|
+
'megaphone-fill',
|
|
1659
|
+
'memory',
|
|
1660
|
+
'menu-app',
|
|
1661
|
+
'menu-app-fill',
|
|
1662
|
+
'menu-button',
|
|
1663
|
+
'menu-button-fill',
|
|
1664
|
+
'menu-button-wide',
|
|
1665
|
+
'menu-button-wide-fill',
|
|
1666
|
+
'menu-down',
|
|
1667
|
+
'menu-up',
|
|
1668
|
+
'messenger',
|
|
1669
|
+
'meta',
|
|
1670
|
+
'mic',
|
|
1671
|
+
'mic-fill',
|
|
1672
|
+
'mic-mute',
|
|
1673
|
+
'mic-mute-fill',
|
|
1674
|
+
'microsoft',
|
|
1675
|
+
'microsoft-teams',
|
|
1676
|
+
'minecart',
|
|
1677
|
+
'minecart-loaded',
|
|
1678
|
+
'modem',
|
|
1679
|
+
'modem-fill',
|
|
1680
|
+
'moisture',
|
|
1681
|
+
'moon',
|
|
1682
|
+
'moon-fill',
|
|
1683
|
+
'moon-stars',
|
|
1684
|
+
'moon-stars-fill',
|
|
1685
|
+
'mortarboard',
|
|
1686
|
+
'mortarboard-fill',
|
|
1687
|
+
'motherboard',
|
|
1688
|
+
'motherboard-fill',
|
|
1689
|
+
'mouse',
|
|
1690
|
+
'mouse-fill',
|
|
1691
|
+
'mouse2',
|
|
1692
|
+
'mouse2-fill',
|
|
1693
|
+
'mouse3',
|
|
1694
|
+
'mouse3-fill',
|
|
1695
|
+
'music-note',
|
|
1696
|
+
'music-note-beamed',
|
|
1697
|
+
'music-note-list',
|
|
1698
|
+
'music-player',
|
|
1699
|
+
'music-player-fill',
|
|
1700
|
+
'newspaper',
|
|
1701
|
+
'nintendo-switch',
|
|
1702
|
+
'node-minus',
|
|
1703
|
+
'node-minus-fill',
|
|
1704
|
+
'node-plus',
|
|
1705
|
+
'node-plus-fill',
|
|
1706
|
+
'noise-reduction',
|
|
1707
|
+
'nut',
|
|
1708
|
+
'nut-fill',
|
|
1709
|
+
'nvidia',
|
|
1710
|
+
'nvme',
|
|
1711
|
+
'nvme-fill',
|
|
1712
|
+
'octagon',
|
|
1713
|
+
'octagon-fill',
|
|
1714
|
+
'octagon-half',
|
|
1715
|
+
'openai',
|
|
1716
|
+
'opencollective',
|
|
1717
|
+
'optical-audio',
|
|
1718
|
+
'optical-audio-fill',
|
|
1719
|
+
'option',
|
|
1720
|
+
'outlet',
|
|
1721
|
+
'p-circle',
|
|
1722
|
+
'p-circle-fill',
|
|
1723
|
+
'p-square',
|
|
1724
|
+
'p-square-fill',
|
|
1725
|
+
'paint-bucket',
|
|
1726
|
+
'palette',
|
|
1727
|
+
'palette-fill',
|
|
1728
|
+
'palette2',
|
|
1729
|
+
'paperclip',
|
|
1730
|
+
'paragraph',
|
|
1731
|
+
'pass',
|
|
1732
|
+
'pass-fill',
|
|
1733
|
+
'passport',
|
|
1734
|
+
'passport-fill',
|
|
1735
|
+
'patch-check',
|
|
1736
|
+
'patch-check-fill',
|
|
1737
|
+
'patch-exclamation',
|
|
1738
|
+
'patch-exclamation-fill',
|
|
1739
|
+
'patch-minus',
|
|
1740
|
+
'patch-minus-fill',
|
|
1741
|
+
'patch-plus',
|
|
1742
|
+
'patch-plus-fill',
|
|
1743
|
+
'patch-question',
|
|
1744
|
+
'patch-question-fill',
|
|
1745
|
+
'pause',
|
|
1746
|
+
'pause-btn',
|
|
1747
|
+
'pause-btn-fill',
|
|
1748
|
+
'pause-circle',
|
|
1749
|
+
'pause-circle-fill',
|
|
1750
|
+
'pause-fill',
|
|
1751
|
+
'paypal',
|
|
1752
|
+
'pc',
|
|
1753
|
+
'pc-display',
|
|
1754
|
+
'pc-display-horizontal',
|
|
1755
|
+
'pc-horizontal',
|
|
1756
|
+
'pci-card',
|
|
1757
|
+
'pci-card-network',
|
|
1758
|
+
'pci-card-sound',
|
|
1759
|
+
'peace',
|
|
1760
|
+
'peace-fill',
|
|
1761
|
+
'pen',
|
|
1762
|
+
'pen-fill',
|
|
1763
|
+
'pencil',
|
|
1764
|
+
'pencil-fill',
|
|
1765
|
+
'pencil-square',
|
|
1766
|
+
'pentagon',
|
|
1767
|
+
'pentagon-fill',
|
|
1768
|
+
'pentagon-half',
|
|
1769
|
+
'people',
|
|
1770
|
+
'person-circle',
|
|
1771
|
+
'people-fill',
|
|
1772
|
+
'percent',
|
|
1773
|
+
'perplexity',
|
|
1774
|
+
'person',
|
|
1775
|
+
'person-add',
|
|
1776
|
+
'person-arms-up',
|
|
1777
|
+
'person-badge',
|
|
1778
|
+
'person-badge-fill',
|
|
1779
|
+
'person-bounding-box',
|
|
1780
|
+
'person-check',
|
|
1781
|
+
'person-check-fill',
|
|
1782
|
+
'person-dash',
|
|
1783
|
+
'person-dash-fill',
|
|
1784
|
+
'person-down',
|
|
1785
|
+
'person-exclamation',
|
|
1786
|
+
'person-fill',
|
|
1787
|
+
'person-fill-add',
|
|
1788
|
+
'person-fill-check',
|
|
1789
|
+
'person-fill-dash',
|
|
1790
|
+
'person-fill-down',
|
|
1791
|
+
'person-fill-exclamation',
|
|
1792
|
+
'person-fill-gear',
|
|
1793
|
+
'person-fill-lock',
|
|
1794
|
+
'person-fill-slash',
|
|
1795
|
+
'person-fill-up',
|
|
1796
|
+
'person-fill-x',
|
|
1797
|
+
'person-gear',
|
|
1798
|
+
'person-heart',
|
|
1799
|
+
'person-hearts',
|
|
1800
|
+
'person-lines-fill',
|
|
1801
|
+
'person-lock',
|
|
1802
|
+
'person-plus',
|
|
1803
|
+
'person-plus-fill',
|
|
1804
|
+
'person-raised-hand',
|
|
1805
|
+
'person-rolodex',
|
|
1806
|
+
'person-slash',
|
|
1807
|
+
'person-square',
|
|
1808
|
+
'person-standing',
|
|
1809
|
+
'person-standing-dress',
|
|
1810
|
+
'person-up',
|
|
1811
|
+
'person-vcard',
|
|
1812
|
+
'person-vcard-fill',
|
|
1813
|
+
'person-video',
|
|
1814
|
+
'person-video2',
|
|
1815
|
+
'person-video3',
|
|
1816
|
+
'person-walking',
|
|
1817
|
+
'person-wheelchair',
|
|
1818
|
+
'person-workspace',
|
|
1819
|
+
'person-x',
|
|
1820
|
+
'person-x-fill',
|
|
1821
|
+
'phone',
|
|
1822
|
+
'phone-fill',
|
|
1823
|
+
'phone-flip',
|
|
1824
|
+
'phone-landscape',
|
|
1825
|
+
'phone-landscape-fill',
|
|
1826
|
+
'phone-vibrate',
|
|
1827
|
+
'phone-vibrate-fill',
|
|
1828
|
+
'pie-chart',
|
|
1829
|
+
'pie-chart-fill',
|
|
1830
|
+
'piggy-bank',
|
|
1831
|
+
'piggy-bank-fill',
|
|
1832
|
+
'pin',
|
|
1833
|
+
'pin-angle',
|
|
1834
|
+
'pin-angle-fill',
|
|
1835
|
+
'pin-fill',
|
|
1836
|
+
'pin-map',
|
|
1837
|
+
'pin-map-fill',
|
|
1838
|
+
'pinterest',
|
|
1839
|
+
'pip',
|
|
1840
|
+
'pip-fill',
|
|
1841
|
+
'play',
|
|
1842
|
+
'play-btn',
|
|
1843
|
+
'play-btn-fill',
|
|
1844
|
+
'play-circle',
|
|
1845
|
+
'play-circle-fill',
|
|
1846
|
+
'play-fill',
|
|
1847
|
+
'playstation',
|
|
1848
|
+
'plug',
|
|
1849
|
+
'plug-fill',
|
|
1850
|
+
'plugin',
|
|
1851
|
+
'plus',
|
|
1852
|
+
'plus-circle',
|
|
1853
|
+
'plus-circle-dotted',
|
|
1854
|
+
'plus-circle-fill',
|
|
1855
|
+
'plus-lg',
|
|
1856
|
+
'plus-slash-minus',
|
|
1857
|
+
'plus-square',
|
|
1858
|
+
'plus-square-dotted',
|
|
1859
|
+
'plus-square-fill',
|
|
1860
|
+
'postage',
|
|
1861
|
+
'postage-fill',
|
|
1862
|
+
'postage-heart',
|
|
1863
|
+
'postage-heart-fill',
|
|
1864
|
+
'postcard',
|
|
1865
|
+
'postcard-fill',
|
|
1866
|
+
'postcard-heart',
|
|
1867
|
+
'postcard-heart-fill',
|
|
1868
|
+
'power',
|
|
1869
|
+
'prescription',
|
|
1870
|
+
'prescription2',
|
|
1871
|
+
'printer',
|
|
1872
|
+
'printer-fill',
|
|
1873
|
+
'projector',
|
|
1874
|
+
'projector-fill',
|
|
1875
|
+
'puzzle',
|
|
1876
|
+
'puzzle-fill',
|
|
1877
|
+
'qr-code',
|
|
1878
|
+
'qr-code-scan',
|
|
1879
|
+
'question',
|
|
1880
|
+
'question-circle',
|
|
1881
|
+
'question-diamond',
|
|
1882
|
+
'question-diamond-fill',
|
|
1883
|
+
'question-circle-fill',
|
|
1884
|
+
'question-lg',
|
|
1885
|
+
'question-octagon',
|
|
1886
|
+
'question-octagon-fill',
|
|
1887
|
+
'question-square',
|
|
1888
|
+
'question-square-fill',
|
|
1889
|
+
'quora',
|
|
1890
|
+
'quote',
|
|
1891
|
+
'r-circle',
|
|
1892
|
+
'r-circle-fill',
|
|
1893
|
+
'r-square',
|
|
1894
|
+
'r-square-fill',
|
|
1895
|
+
'radar',
|
|
1896
|
+
'radioactive',
|
|
1897
|
+
'rainbow',
|
|
1898
|
+
'receipt',
|
|
1899
|
+
'receipt-cutoff',
|
|
1900
|
+
'reception-0',
|
|
1901
|
+
'reception-1',
|
|
1902
|
+
'reception-2',
|
|
1903
|
+
'reception-3',
|
|
1904
|
+
'reception-4',
|
|
1905
|
+
'record',
|
|
1906
|
+
'record-btn',
|
|
1907
|
+
'record-btn-fill',
|
|
1908
|
+
'record-circle',
|
|
1909
|
+
'record-circle-fill',
|
|
1910
|
+
'record-fill',
|
|
1911
|
+
'record2',
|
|
1912
|
+
'record2-fill',
|
|
1913
|
+
'recycle',
|
|
1914
|
+
'reddit',
|
|
1915
|
+
'regex',
|
|
1916
|
+
'repeat',
|
|
1917
|
+
'repeat-1',
|
|
1918
|
+
'reply',
|
|
1919
|
+
'reply-all',
|
|
1920
|
+
'reply-all-fill',
|
|
1921
|
+
'reply-fill',
|
|
1922
|
+
'rewind',
|
|
1923
|
+
'rewind-btn',
|
|
1924
|
+
'rewind-btn-fill',
|
|
1925
|
+
'rewind-circle',
|
|
1926
|
+
'rewind-circle-fill',
|
|
1927
|
+
'rewind-fill',
|
|
1928
|
+
'robot',
|
|
1929
|
+
'rocket',
|
|
1930
|
+
'rocket-fill',
|
|
1931
|
+
'rocket-takeoff',
|
|
1932
|
+
'rocket-takeoff-fill',
|
|
1933
|
+
'router',
|
|
1934
|
+
'router-fill',
|
|
1935
|
+
'rss',
|
|
1936
|
+
'rss-fill',
|
|
1937
|
+
'rulers',
|
|
1938
|
+
'safe',
|
|
1939
|
+
'safe-fill',
|
|
1940
|
+
'safe2',
|
|
1941
|
+
'safe2-fill',
|
|
1942
|
+
'save',
|
|
1943
|
+
'save-fill',
|
|
1944
|
+
'save2',
|
|
1945
|
+
'save2-fill',
|
|
1946
|
+
'scissors',
|
|
1947
|
+
'scooter',
|
|
1948
|
+
'screwdriver',
|
|
1949
|
+
'sd-card',
|
|
1950
|
+
'sd-card-fill',
|
|
1951
|
+
'search',
|
|
1952
|
+
'search-heart',
|
|
1953
|
+
'search-heart-fill',
|
|
1954
|
+
'segmented-nav',
|
|
1955
|
+
'send',
|
|
1956
|
+
'send-arrow-down',
|
|
1957
|
+
'send-arrow-down-fill',
|
|
1958
|
+
'send-arrow-up',
|
|
1959
|
+
'send-arrow-up-fill',
|
|
1960
|
+
'send-check',
|
|
1961
|
+
'send-check-fill',
|
|
1962
|
+
'send-dash',
|
|
1963
|
+
'send-dash-fill',
|
|
1964
|
+
'send-exclamation',
|
|
1965
|
+
'send-exclamation-fill',
|
|
1966
|
+
'send-fill',
|
|
1967
|
+
'send-plus',
|
|
1968
|
+
'send-plus-fill',
|
|
1969
|
+
'send-slash',
|
|
1970
|
+
'send-slash-fill',
|
|
1971
|
+
'send-x',
|
|
1972
|
+
'send-x-fill',
|
|
1973
|
+
'server',
|
|
1974
|
+
'shadows',
|
|
1975
|
+
'share',
|
|
1976
|
+
'share-fill',
|
|
1977
|
+
'shield',
|
|
1978
|
+
'shield-check',
|
|
1979
|
+
'shield-exclamation',
|
|
1980
|
+
'shield-fill',
|
|
1981
|
+
'shield-fill-check',
|
|
1982
|
+
'shield-fill-exclamation',
|
|
1983
|
+
'shield-fill-minus',
|
|
1984
|
+
'shield-fill-plus',
|
|
1985
|
+
'shield-fill-x',
|
|
1986
|
+
'shield-lock',
|
|
1987
|
+
'shield-lock-fill',
|
|
1988
|
+
'shield-minus',
|
|
1989
|
+
'shield-plus',
|
|
1990
|
+
'shield-shaded',
|
|
1991
|
+
'shield-slash',
|
|
1992
|
+
'shield-slash-fill',
|
|
1993
|
+
'shield-x',
|
|
1994
|
+
'shift',
|
|
1995
|
+
'shift-fill',
|
|
1996
|
+
'shop',
|
|
1997
|
+
'shop-window',
|
|
1998
|
+
'shuffle',
|
|
1999
|
+
'sign-dead-end',
|
|
2000
|
+
'sign-dead-end-fill',
|
|
2001
|
+
'sign-do-not-enter',
|
|
2002
|
+
'sign-do-not-enter-fill',
|
|
2003
|
+
'sign-intersection',
|
|
2004
|
+
'sign-intersection-fill',
|
|
2005
|
+
'sign-intersection-side',
|
|
2006
|
+
'sign-intersection-side-fill',
|
|
2007
|
+
'sign-intersection-t',
|
|
2008
|
+
'sign-intersection-t-fill',
|
|
2009
|
+
'sign-intersection-y',
|
|
2010
|
+
'sign-intersection-y-fill',
|
|
2011
|
+
'sign-merge-left',
|
|
2012
|
+
'sign-merge-left-fill',
|
|
2013
|
+
'sign-merge-right',
|
|
2014
|
+
'sign-merge-right-fill',
|
|
2015
|
+
'sign-no-left-turn',
|
|
2016
|
+
'sign-no-left-turn-fill',
|
|
2017
|
+
'sign-no-parking',
|
|
2018
|
+
'sign-no-parking-fill',
|
|
2019
|
+
'sign-no-right-turn',
|
|
2020
|
+
'sign-no-right-turn-fill',
|
|
2021
|
+
'sign-railroad',
|
|
2022
|
+
'sign-railroad-fill',
|
|
2023
|
+
'sign-stop',
|
|
2024
|
+
'sign-stop-fill',
|
|
2025
|
+
'sign-stop-lights',
|
|
2026
|
+
'sign-stop-lights-fill',
|
|
2027
|
+
'sign-turn-left',
|
|
2028
|
+
'sign-turn-left-fill',
|
|
2029
|
+
'sign-turn-right',
|
|
2030
|
+
'sign-turn-right-fill',
|
|
2031
|
+
'sign-turn-slight-left',
|
|
2032
|
+
'sign-turn-slight-left-fill',
|
|
2033
|
+
'sign-turn-slight-right',
|
|
2034
|
+
'sign-turn-slight-right-fill',
|
|
2035
|
+
'sign-yield',
|
|
2036
|
+
'sign-yield-fill',
|
|
2037
|
+
'signal',
|
|
2038
|
+
'signpost',
|
|
2039
|
+
'signpost-2',
|
|
2040
|
+
'signpost-2-fill',
|
|
2041
|
+
'signpost-fill',
|
|
2042
|
+
'signpost-split',
|
|
2043
|
+
'signpost-split-fill',
|
|
2044
|
+
'sim',
|
|
2045
|
+
'sim-fill',
|
|
2046
|
+
'sim-slash',
|
|
2047
|
+
'sim-slash-fill',
|
|
2048
|
+
'sina-weibo',
|
|
2049
|
+
'skip-backward',
|
|
2050
|
+
'skip-backward-btn',
|
|
2051
|
+
'skip-backward-btn-fill',
|
|
2052
|
+
'skip-backward-circle',
|
|
2053
|
+
'skip-backward-circle-fill',
|
|
2054
|
+
'skip-backward-fill',
|
|
2055
|
+
'skip-end',
|
|
2056
|
+
'skip-end-btn',
|
|
2057
|
+
'skip-end-btn-fill',
|
|
2058
|
+
'skip-end-circle',
|
|
2059
|
+
'skip-end-circle-fill',
|
|
2060
|
+
'skip-end-fill',
|
|
2061
|
+
'skip-forward',
|
|
2062
|
+
'skip-forward-btn',
|
|
2063
|
+
'skip-forward-btn-fill',
|
|
2064
|
+
'skip-forward-circle',
|
|
2065
|
+
'skip-forward-circle-fill',
|
|
2066
|
+
'skip-forward-fill',
|
|
2067
|
+
'skip-start',
|
|
2068
|
+
'skip-start-btn',
|
|
2069
|
+
'skip-start-btn-fill',
|
|
2070
|
+
'skip-start-circle',
|
|
2071
|
+
'skip-start-circle-fill',
|
|
2072
|
+
'skip-start-fill',
|
|
2073
|
+
'skype',
|
|
2074
|
+
'slack',
|
|
2075
|
+
'slash',
|
|
2076
|
+
'slash-circle-fill',
|
|
2077
|
+
'slash-lg',
|
|
2078
|
+
'slash-square',
|
|
2079
|
+
'slash-square-fill',
|
|
2080
|
+
'sliders',
|
|
2081
|
+
'sliders2',
|
|
2082
|
+
'sliders2-vertical',
|
|
2083
|
+
'smartwatch',
|
|
2084
|
+
'snapchat',
|
|
2085
|
+
'snow',
|
|
2086
|
+
'snow2',
|
|
2087
|
+
'snow3',
|
|
2088
|
+
'sort-alpha-down',
|
|
2089
|
+
'sort-alpha-down-alt',
|
|
2090
|
+
'sort-alpha-up',
|
|
2091
|
+
'sort-alpha-up-alt',
|
|
2092
|
+
'sort-down',
|
|
2093
|
+
'sort-down-alt',
|
|
2094
|
+
'sort-numeric-down',
|
|
2095
|
+
'sort-numeric-down-alt',
|
|
2096
|
+
'sort-numeric-up',
|
|
2097
|
+
'sort-numeric-up-alt',
|
|
2098
|
+
'sort-up',
|
|
2099
|
+
'sort-up-alt',
|
|
2100
|
+
'soundwave',
|
|
2101
|
+
'sourceforge',
|
|
2102
|
+
'speaker',
|
|
2103
|
+
'speaker-fill',
|
|
2104
|
+
'speedometer',
|
|
2105
|
+
'speedometer2',
|
|
2106
|
+
'spellcheck',
|
|
2107
|
+
'spotify',
|
|
2108
|
+
'square',
|
|
2109
|
+
'square-fill',
|
|
2110
|
+
'square-half',
|
|
2111
|
+
'stack',
|
|
2112
|
+
'stack-overflow',
|
|
2113
|
+
'star',
|
|
2114
|
+
'star-fill',
|
|
2115
|
+
'star-half',
|
|
2116
|
+
'stars',
|
|
2117
|
+
'steam',
|
|
2118
|
+
'stickies',
|
|
2119
|
+
'stickies-fill',
|
|
2120
|
+
'sticky',
|
|
2121
|
+
'sticky-fill',
|
|
2122
|
+
'stop',
|
|
2123
|
+
'stop-btn',
|
|
2124
|
+
'stop-btn-fill',
|
|
2125
|
+
'stop-circle',
|
|
2126
|
+
'stop-circle-fill',
|
|
2127
|
+
'stop-fill',
|
|
2128
|
+
'stoplights',
|
|
2129
|
+
'stoplights-fill',
|
|
2130
|
+
'stopwatch',
|
|
2131
|
+
'stopwatch-fill',
|
|
2132
|
+
'strava',
|
|
2133
|
+
'stripe',
|
|
2134
|
+
'subscript',
|
|
2135
|
+
'substack',
|
|
2136
|
+
'subtract',
|
|
2137
|
+
'suit-club',
|
|
2138
|
+
'suit-club-fill',
|
|
2139
|
+
'suit-diamond',
|
|
2140
|
+
'suit-diamond-fill',
|
|
2141
|
+
'suit-heart',
|
|
2142
|
+
'suit-heart-fill',
|
|
2143
|
+
'suit-spade',
|
|
2144
|
+
'suit-spade-fill',
|
|
2145
|
+
'suitcase',
|
|
2146
|
+
'suitcase-fill',
|
|
2147
|
+
'suitcase-lg',
|
|
2148
|
+
'suitcase-lg-fill',
|
|
2149
|
+
'suitcase2',
|
|
2150
|
+
'suitcase2-fill',
|
|
2151
|
+
'sun',
|
|
2152
|
+
'sun-fill',
|
|
2153
|
+
'sunglasses',
|
|
2154
|
+
'sunrise',
|
|
2155
|
+
'sunrise-fill',
|
|
2156
|
+
'sunset',
|
|
2157
|
+
'sunset-fill',
|
|
2158
|
+
'superscript',
|
|
2159
|
+
'symmetry-horizontal',
|
|
2160
|
+
'symmetry-vertical',
|
|
2161
|
+
'table',
|
|
2162
|
+
'tablet',
|
|
2163
|
+
'tablet-fill',
|
|
2164
|
+
'tablet-landscape',
|
|
2165
|
+
'tablet-landscape-fill',
|
|
2166
|
+
'tag',
|
|
2167
|
+
'tag-fill',
|
|
2168
|
+
'tags',
|
|
2169
|
+
'tags-fill',
|
|
2170
|
+
'taxi-front',
|
|
2171
|
+
'taxi-front-fill',
|
|
2172
|
+
'telegram',
|
|
2173
|
+
'telephone',
|
|
2174
|
+
'telephone-fill',
|
|
2175
|
+
'telephone-forward',
|
|
2176
|
+
'telephone-forward-fill',
|
|
2177
|
+
'telephone-inbound',
|
|
2178
|
+
'telephone-inbound-fill',
|
|
2179
|
+
'telephone-minus',
|
|
2180
|
+
'telephone-minus-fill',
|
|
2181
|
+
'telephone-outbound',
|
|
2182
|
+
'telephone-outbound-fill',
|
|
2183
|
+
'telephone-plus',
|
|
2184
|
+
'telephone-plus-fill',
|
|
2185
|
+
'telephone-x',
|
|
2186
|
+
'telephone-x-fill',
|
|
2187
|
+
'tencent-qq',
|
|
2188
|
+
'terminal',
|
|
2189
|
+
'terminal-dash',
|
|
2190
|
+
'terminal-fill',
|
|
2191
|
+
'terminal-plus',
|
|
2192
|
+
'terminal-split',
|
|
2193
|
+
'terminal-x',
|
|
2194
|
+
'text-center',
|
|
2195
|
+
'text-indent-left',
|
|
2196
|
+
'text-indent-right',
|
|
2197
|
+
'text-left',
|
|
2198
|
+
'text-paragraph',
|
|
2199
|
+
'text-right',
|
|
2200
|
+
'text-wrap',
|
|
2201
|
+
'textarea',
|
|
2202
|
+
'textarea-resize',
|
|
2203
|
+
'textarea-t',
|
|
2204
|
+
'thermometer',
|
|
2205
|
+
'thermometer-half',
|
|
2206
|
+
'thermometer-high',
|
|
2207
|
+
'thermometer-low',
|
|
2208
|
+
'thermometer-snow',
|
|
2209
|
+
'thermometer-sun',
|
|
2210
|
+
'threads',
|
|
2211
|
+
'threads-fill',
|
|
2212
|
+
'three-dots',
|
|
2213
|
+
'three-dots-vertical',
|
|
2214
|
+
'thunderbolt',
|
|
2215
|
+
'thunderbolt-fill',
|
|
2216
|
+
'ticket',
|
|
2217
|
+
'ticket-detailed',
|
|
2218
|
+
'ticket-detailed-fill',
|
|
2219
|
+
'ticket-fill',
|
|
2220
|
+
'ticket-perforated',
|
|
2221
|
+
'ticket-perforated-fill',
|
|
2222
|
+
'tiktok',
|
|
2223
|
+
'toggle-off',
|
|
2224
|
+
'toggle-on',
|
|
2225
|
+
'toggle2-off',
|
|
2226
|
+
'toggle2-on',
|
|
2227
|
+
'toggles',
|
|
2228
|
+
'toggles2',
|
|
2229
|
+
'tools',
|
|
2230
|
+
'tornado',
|
|
2231
|
+
'train-freight-front',
|
|
2232
|
+
'train-freight-front-fill',
|
|
2233
|
+
'train-front',
|
|
2234
|
+
'train-front-fill',
|
|
2235
|
+
'train-lightrail-front',
|
|
2236
|
+
'train-lightrail-front-fill',
|
|
2237
|
+
'translate',
|
|
2238
|
+
'transparency',
|
|
2239
|
+
'trash',
|
|
2240
|
+
'trash-fill',
|
|
2241
|
+
'trash2',
|
|
2242
|
+
'trash2-fill',
|
|
2243
|
+
'trash3',
|
|
2244
|
+
'trash3-fill',
|
|
2245
|
+
'tree',
|
|
2246
|
+
'tree-fill',
|
|
2247
|
+
'trello',
|
|
2248
|
+
'triangle',
|
|
2249
|
+
'triangle-fill',
|
|
2250
|
+
'triangle-half',
|
|
2251
|
+
'trophy',
|
|
2252
|
+
'trophy-fill',
|
|
2253
|
+
'tropical-storm',
|
|
2254
|
+
'truck',
|
|
2255
|
+
'truck-flatbed',
|
|
2256
|
+
'truck-front',
|
|
2257
|
+
'truck-front-fill',
|
|
2258
|
+
'tsunami',
|
|
2259
|
+
'tux',
|
|
2260
|
+
'tv',
|
|
2261
|
+
'tv-fill',
|
|
2262
|
+
'twitch',
|
|
2263
|
+
'twitter',
|
|
2264
|
+
'twitter-x',
|
|
2265
|
+
'type',
|
|
2266
|
+
'type-bold',
|
|
2267
|
+
'type-h1',
|
|
2268
|
+
'type-h2',
|
|
2269
|
+
'type-h3',
|
|
2270
|
+
'type-h4',
|
|
2271
|
+
'type-h5',
|
|
2272
|
+
'type-h6',
|
|
2273
|
+
'type-italic',
|
|
2274
|
+
'type-strikethrough',
|
|
2275
|
+
'type-underline',
|
|
2276
|
+
'typescript',
|
|
2277
|
+
'ubuntu',
|
|
2278
|
+
'ui-checks',
|
|
2279
|
+
'ui-checks-grid',
|
|
2280
|
+
'ui-radios',
|
|
2281
|
+
'ui-radios-grid',
|
|
2282
|
+
'umbrella',
|
|
2283
|
+
'umbrella-fill',
|
|
2284
|
+
'unindent',
|
|
2285
|
+
'union',
|
|
2286
|
+
'unity',
|
|
2287
|
+
'universal-access',
|
|
2288
|
+
'universal-access-circle',
|
|
2289
|
+
'unlock',
|
|
2290
|
+
'unlock-fill',
|
|
2291
|
+
'unlock2',
|
|
2292
|
+
'unlock2-fill',
|
|
2293
|
+
'upc',
|
|
2294
|
+
'upc-scan',
|
|
2295
|
+
'upload',
|
|
2296
|
+
'usb',
|
|
2297
|
+
'usb-c',
|
|
2298
|
+
'usb-c-fill',
|
|
2299
|
+
'usb-drive',
|
|
2300
|
+
'usb-drive-fill',
|
|
2301
|
+
'usb-fill',
|
|
2302
|
+
'usb-micro',
|
|
2303
|
+
'usb-micro-fill',
|
|
2304
|
+
'usb-mini',
|
|
2305
|
+
'usb-mini-fill',
|
|
2306
|
+
'usb-plug',
|
|
2307
|
+
'usb-plug-fill',
|
|
2308
|
+
'usb-symbol',
|
|
2309
|
+
'valentine',
|
|
2310
|
+
'valentine2',
|
|
2311
|
+
'vector-pen',
|
|
2312
|
+
'view-list',
|
|
2313
|
+
'view-stacked',
|
|
2314
|
+
'vignette',
|
|
2315
|
+
'vimeo',
|
|
2316
|
+
'vinyl',
|
|
2317
|
+
'vinyl-fill',
|
|
2318
|
+
'virus',
|
|
2319
|
+
'virus2',
|
|
2320
|
+
'voicemail',
|
|
2321
|
+
'volume-down',
|
|
2322
|
+
'volume-down-fill',
|
|
2323
|
+
'volume-mute',
|
|
2324
|
+
'volume-mute-fill',
|
|
2325
|
+
'volume-off',
|
|
2326
|
+
'volume-off-fill',
|
|
2327
|
+
'volume-up',
|
|
2328
|
+
'volume-up-fill',
|
|
2329
|
+
'vr',
|
|
2330
|
+
'wallet',
|
|
2331
|
+
'wallet-fill',
|
|
2332
|
+
'wallet2',
|
|
2333
|
+
'watch',
|
|
2334
|
+
'water',
|
|
2335
|
+
'webcam',
|
|
2336
|
+
'webcam-fill',
|
|
2337
|
+
'wechat',
|
|
2338
|
+
'whatsapp',
|
|
2339
|
+
'wifi',
|
|
2340
|
+
'wifi-1',
|
|
2341
|
+
'wifi-2',
|
|
2342
|
+
'wifi-off',
|
|
2343
|
+
'wikipedia',
|
|
2344
|
+
'wind',
|
|
2345
|
+
'window',
|
|
2346
|
+
'window-dash',
|
|
2347
|
+
'window-desktop',
|
|
2348
|
+
'window-dock',
|
|
2349
|
+
'window-fullscreen',
|
|
2350
|
+
'window-plus',
|
|
2351
|
+
'window-sidebar',
|
|
2352
|
+
'window-split',
|
|
2353
|
+
'window-stack',
|
|
2354
|
+
'window-x',
|
|
2355
|
+
'windows',
|
|
2356
|
+
'wordpress',
|
|
2357
|
+
'wrench',
|
|
2358
|
+
'wrench-adjustable',
|
|
2359
|
+
'wrench-adjustable-circle',
|
|
2360
|
+
'wrench-adjustable-circle-fill',
|
|
2361
|
+
'x',
|
|
2362
|
+
'x-circle',
|
|
2363
|
+
'x-circle-fill',
|
|
2364
|
+
'x-diamond',
|
|
2365
|
+
'x-diamond-fill',
|
|
2366
|
+
'x-lg',
|
|
2367
|
+
'x-octagon',
|
|
2368
|
+
'x-octagon-fill',
|
|
2369
|
+
'x-square',
|
|
2370
|
+
'x-square-fill',
|
|
2371
|
+
'xbox',
|
|
2372
|
+
'yelp',
|
|
2373
|
+
'yin-yang',
|
|
2374
|
+
'youtube',
|
|
2375
|
+
'zoom-in',
|
|
2376
|
+
'zoom-out',
|
|
2377
|
+
];
|