@jant/core 0.3.36 → 0.3.38
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/bin/commands/export.js +1 -1
- package/bin/commands/import-site.js +529 -0
- package/bin/commands/reset-password.js +3 -2
- package/dist/client/assets/heic-to-DIRPI3VF.js +1 -0
- package/dist/client/assets/url-FWFqPJPb.js +1 -0
- package/dist/client/client.css +1 -1
- package/dist/client/client.js +4012 -3276
- package/dist/index.js +10285 -5809
- package/package.json +11 -3
- package/src/__tests__/helpers/app.ts +9 -9
- package/src/__tests__/helpers/db.ts +91 -93
- package/src/app.tsx +157 -27
- package/src/auth.ts +20 -2
- package/src/client/archive-nav.js +187 -0
- package/src/client/audio-player.ts +478 -0
- package/src/client/audio-processor.ts +84 -0
- package/src/client/avatar-upload.ts +3 -2
- package/src/client/components/__tests__/jant-compose-dialog.test.ts +645 -49
- package/src/client/components/__tests__/jant-compose-editor.test.ts +208 -16
- package/src/client/components/__tests__/jant-post-form.test.ts +19 -9
- package/src/client/components/__tests__/jant-settings-avatar.test.ts +2 -2
- package/src/client/components/__tests__/jant-settings-general.test.ts +3 -3
- package/src/client/components/collection-sidebar-types.ts +7 -9
- package/src/client/components/compose-types.ts +101 -4
- package/src/client/components/jant-collection-form.ts +43 -7
- package/src/client/components/jant-collection-sidebar.ts +88 -84
- package/src/client/components/jant-compose-dialog.ts +1655 -219
- package/src/client/components/jant-compose-editor.ts +732 -168
- package/src/client/components/jant-compose-fullscreen.ts +23 -78
- package/src/client/components/jant-media-lightbox.ts +2 -0
- package/src/client/components/jant-nav-manager.ts +24 -284
- package/src/client/components/jant-post-form.ts +89 -9
- package/src/client/components/jant-post-menu.ts +1019 -0
- package/src/client/components/jant-settings-avatar.ts +3 -3
- package/src/client/components/jant-settings-general.ts +38 -4
- package/src/client/components/jant-text-preview.ts +232 -0
- package/src/client/components/nav-manager-types.ts +4 -19
- package/src/client/components/post-form-template.ts +107 -12
- package/src/client/components/post-form-types.ts +11 -4
- package/src/client/compose-bridge.ts +410 -109
- package/src/client/image-processor.ts +26 -8
- package/src/client/media-metadata.ts +247 -0
- package/src/client/multipart-upload.ts +160 -0
- package/src/client/post-form-bridge.ts +52 -1
- package/src/client/settings-bridge.ts +0 -12
- package/src/client/thread-context.ts +140 -0
- package/src/client/tiptap/create-editor.ts +46 -0
- package/src/client/tiptap/extensions.ts +5 -0
- package/src/client/tiptap/image-node.ts +2 -8
- package/src/client/tiptap/paste-image.ts +2 -13
- package/src/client/tiptap/slash-commands.ts +173 -63
- package/src/client/toast.ts +101 -3
- package/src/client/types/sortablejs.d.ts +15 -0
- package/src/client/upload-with-metadata.ts +54 -0
- package/src/client/video-processor.ts +207 -0
- package/src/client.ts +5 -2
- package/src/db/__tests__/migrations.test.ts +118 -0
- package/src/db/index.ts +52 -0
- package/src/db/migrations/0000_baseline.sql +269 -0
- package/src/db/migrations/0001_fts_setup.sql +31 -0
- package/src/db/migrations/meta/0000_snapshot.json +703 -119
- package/src/db/migrations/meta/0001_snapshot.json +1337 -0
- package/src/db/migrations/meta/_journal.json +4 -39
- package/src/db/schema.ts +409 -145
- package/src/i18n/__tests__/detect.test.ts +115 -0
- package/src/i18n/context.tsx +2 -2
- package/src/i18n/detect.ts +85 -1
- package/src/i18n/i18n.ts +1 -1
- package/src/i18n/index.ts +2 -1
- package/src/i18n/locales/en.po +487 -1217
- package/src/i18n/locales/en.ts +1 -1
- package/src/i18n/locales/zh-Hans.po +613 -996
- package/src/i18n/locales/zh-Hans.ts +1 -1
- package/src/i18n/locales/zh-Hant.po +624 -1007
- package/src/i18n/locales/zh-Hant.ts +1 -1
- package/src/i18n/middleware.ts +6 -0
- package/src/index.ts +5 -7
- package/src/lib/__tests__/blurhash-placeholder.test.ts +75 -0
- package/src/lib/__tests__/constants.test.ts +0 -1
- package/src/lib/__tests__/markdown-to-tiptap.test.ts +358 -0
- package/src/lib/__tests__/nanoid.test.ts +26 -0
- package/src/lib/__tests__/schemas.test.ts +181 -63
- package/src/lib/__tests__/slug.test.ts +126 -0
- package/src/lib/__tests__/sse.test.ts +6 -6
- package/src/lib/__tests__/summary.test.ts +264 -0
- package/src/lib/__tests__/theme.test.ts +1 -1
- package/src/lib/__tests__/timeline.test.ts +33 -30
- package/src/lib/__tests__/tiptap-to-markdown.test.ts +346 -0
- package/src/lib/__tests__/view.test.ts +141 -66
- package/src/lib/blurhash-placeholder.ts +102 -0
- package/src/lib/constants.ts +3 -1
- package/src/lib/emoji-catalog.ts +885 -68
- package/src/lib/errors.ts +11 -8
- package/src/lib/feed.ts +78 -32
- package/src/lib/html.ts +2 -1
- package/src/lib/icon-catalog.ts +5033 -1
- package/src/lib/icons.ts +3 -2
- package/src/lib/index.ts +0 -1
- package/src/lib/markdown-to-tiptap.ts +286 -0
- package/src/lib/media-helpers.ts +12 -3
- package/src/lib/nanoid.ts +29 -0
- package/src/lib/navigation.ts +1 -1
- package/src/lib/render.tsx +20 -2
- package/src/lib/resolve-config.ts +6 -2
- package/src/lib/schemas.ts +224 -55
- package/src/lib/search-snippet.ts +34 -0
- package/src/lib/slug.ts +96 -0
- package/src/lib/sse.ts +6 -6
- package/src/lib/storage.ts +115 -7
- package/src/lib/summary.ts +66 -0
- package/src/lib/theme.ts +11 -8
- package/src/lib/timeline.ts +74 -34
- package/src/lib/tiptap-render.ts +5 -10
- package/src/lib/tiptap-to-markdown.ts +305 -0
- package/src/lib/upload.ts +190 -29
- package/src/lib/url.ts +31 -0
- package/src/lib/view.ts +204 -37
- package/src/middleware/__tests__/auth.test.ts +191 -11
- package/src/middleware/__tests__/onboarding.test.ts +12 -10
- package/src/middleware/auth.ts +63 -9
- package/src/middleware/onboarding.ts +1 -1
- package/src/middleware/secure-headers.ts +40 -0
- package/src/preset.css +45 -2
- package/src/routes/__tests__/compose.test.ts +17 -24
- package/src/routes/api/__tests__/collections.test.ts +109 -61
- package/src/routes/api/__tests__/nav-items.test.ts +46 -29
- package/src/routes/api/__tests__/posts.test.ts +132 -68
- package/src/routes/api/__tests__/search.test.ts +15 -2
- package/src/routes/api/__tests__/upload-multipart.test.ts +534 -0
- package/src/routes/api/collections.ts +51 -42
- package/src/routes/api/custom-urls.ts +80 -0
- package/src/routes/api/export.ts +31 -0
- package/src/routes/api/nav-items.ts +23 -19
- package/src/routes/api/posts.ts +43 -39
- package/src/routes/api/search.ts +3 -4
- package/src/routes/api/upload-multipart.ts +245 -0
- package/src/routes/api/upload.ts +85 -19
- package/src/routes/auth/__tests__/setup.test.ts +20 -60
- package/src/routes/auth/setup.tsx +26 -33
- package/src/routes/auth/signin.tsx +3 -7
- package/src/routes/compose.tsx +10 -55
- package/src/routes/dash/__tests__/settings-avatar.test.ts +1 -1
- package/src/routes/dash/custom-urls.tsx +414 -0
- package/src/routes/dash/settings.tsx +304 -232
- package/src/routes/feed/__tests__/rss.test.ts +27 -28
- package/src/routes/feed/rss.ts +6 -4
- package/src/routes/feed/sitemap.ts +2 -12
- package/src/routes/pages/__tests__/collections.test.ts +5 -6
- package/src/routes/pages/__tests__/featured.test.ts +41 -22
- package/src/routes/pages/archive.tsx +175 -39
- package/src/routes/pages/collection.tsx +22 -10
- package/src/routes/pages/collections.tsx +3 -3
- package/src/routes/pages/featured.tsx +28 -4
- package/src/routes/pages/home.tsx +16 -15
- package/src/routes/pages/latest.tsx +1 -11
- package/src/routes/pages/new.tsx +39 -0
- package/src/routes/pages/page.tsx +95 -49
- package/src/routes/pages/search.tsx +1 -1
- package/src/services/__tests__/api-token.test.ts +135 -0
- package/src/services/__tests__/collection.test.ts +275 -227
- package/src/services/__tests__/custom-url.test.ts +213 -0
- package/src/services/__tests__/media.test.ts +162 -22
- package/src/services/__tests__/navigation.test.ts +109 -68
- package/src/services/__tests__/post-timeline.test.ts +205 -32
- package/src/services/__tests__/post.test.ts +713 -234
- package/src/services/__tests__/search.test.ts +67 -10
- package/src/services/api-token.ts +166 -0
- package/src/services/auth.ts +17 -2
- package/src/services/collection.ts +397 -131
- package/src/services/custom-url.ts +188 -0
- package/src/services/export.ts +802 -0
- package/src/services/index.ts +26 -19
- package/src/services/media.ts +100 -22
- package/src/services/navigation.ts +158 -47
- package/src/services/path.ts +339 -0
- package/src/services/post.ts +687 -154
- package/src/services/search.ts +160 -75
- package/src/styles/components.css +58 -7
- package/src/styles/tokens.css +84 -6
- package/src/styles/ui.css +2964 -457
- package/src/types/bindings.ts +4 -1
- package/src/types/config.ts +12 -4
- package/src/types/constants.ts +15 -3
- package/src/types/entities.ts +74 -35
- package/src/types/operations.ts +11 -24
- package/src/types/props.ts +51 -16
- package/src/types/views.ts +45 -22
- package/src/ui/color-themes.ts +133 -23
- package/src/ui/compose/ComposeDialog.tsx +239 -17
- package/src/ui/compose/ComposePrompt.tsx +1 -1
- package/src/ui/dash/CrudPageHeader.tsx +1 -1
- package/src/ui/dash/ListItemRow.tsx +1 -1
- package/src/ui/dash/StatusBadge.tsx +3 -1
- package/src/ui/dash/appearance/AdvancedContent.tsx +22 -1
- package/src/ui/dash/appearance/ColorThemeContent.tsx +22 -2
- package/src/ui/dash/appearance/FontThemeContent.tsx +1 -1
- package/src/ui/dash/appearance/NavigationContent.tsx +5 -45
- package/src/ui/dash/index.ts +0 -3
- package/src/ui/dash/settings/AccountContent.tsx +3 -57
- package/src/ui/dash/settings/AccountMenuContent.tsx +147 -0
- package/src/ui/dash/settings/ApiTokensContent.tsx +232 -0
- package/src/ui/dash/settings/AvatarContent.tsx +8 -0
- package/src/ui/dash/settings/SessionsContent.tsx +159 -0
- package/src/ui/dash/settings/SettingsRootContent.tsx +45 -15
- package/src/ui/feed/LinkCard.tsx +89 -40
- package/src/ui/feed/NoteCard.tsx +39 -25
- package/src/ui/feed/PostStatusBadges.tsx +67 -0
- package/src/ui/feed/QuoteCard.tsx +38 -23
- package/src/ui/feed/ThreadPreview.tsx +90 -26
- package/src/ui/feed/TimelineFeed.tsx +3 -2
- package/src/ui/feed/TimelineItem.tsx +15 -6
- package/src/ui/feed/__tests__/thread-preview.test.ts +107 -0
- package/src/ui/feed/thread-preview-state.ts +61 -0
- package/src/ui/font-themes.ts +2 -2
- package/src/ui/layouts/BaseLayout.tsx +2 -2
- package/src/ui/layouts/SiteLayout.tsx +105 -92
- package/src/ui/pages/ArchivePage.tsx +923 -98
- package/src/ui/pages/ComposePage.tsx +54 -0
- package/src/ui/pages/PostPage.tsx +30 -45
- package/src/ui/pages/SearchPage.tsx +181 -37
- package/src/ui/shared/AdminBreadcrumb.tsx +29 -0
- package/src/ui/shared/CollectionsSidebar.tsx +47 -37
- package/src/ui/shared/MediaGallery.tsx +445 -149
- package/src/ui/shared/PostFooter.tsx +204 -0
- package/src/ui/shared/StarRating.tsx +27 -0
- package/src/ui/shared/__tests__/format-chars.test.ts +35 -0
- package/src/ui/shared/index.ts +0 -1
- package/dist/client/assets/url-8Dj-5CLW.js +0 -1
- package/src/client/media-upload.ts +0 -161
- package/src/client/page-slug-bridge.ts +0 -42
- package/src/db/migrations/0000_square_wallflower.sql +0 -118
- package/src/db/migrations/0001_add_search_fts.sql +0 -34
- package/src/db/migrations/0002_add_media_attachments.sql +0 -3
- package/src/db/migrations/0003_add_navigation_links.sql +0 -8
- package/src/db/migrations/0004_add_storage_provider.sql +0 -3
- package/src/db/migrations/0005_v2_schema_migration.sql +0 -268
- package/src/db/migrations/0006_rename_slug_to_path.sql +0 -5
- package/src/db/migrations/0007_post_collections_m2m.sql +0 -94
- package/src/db/migrations/0008_add_collection_dividers.sql +0 -8
- package/src/db/migrations/0009_drop_collection_show_divider.sql +0 -2
- package/src/db/migrations/0010_add_performance_indexes.sql +0 -16
- package/src/db/migrations/0011_add_path_registry.sql +0 -23
- package/src/db/migrations/0012_add_tiptap_columns.sql +0 -2
- package/src/db/migrations/0013_replace_featured_with_visibility.sql +0 -8
- package/src/db/migrations/meta/0003_snapshot.json +0 -821
- package/src/lib/__tests__/sqid.test.ts +0 -65
- package/src/lib/sqid.ts +0 -79
- package/src/routes/api/__tests__/pages.test.ts +0 -218
- package/src/routes/api/pages.ts +0 -73
- package/src/routes/dash/__tests__/pages.test.ts +0 -226
- package/src/routes/dash/index.tsx +0 -109
- package/src/routes/dash/media.tsx +0 -135
- package/src/routes/dash/pages.tsx +0 -245
- package/src/routes/dash/posts.tsx +0 -338
- package/src/routes/dash/redirects.tsx +0 -263
- package/src/routes/pages/post.tsx +0 -59
- package/src/services/__tests__/page.test.ts +0 -298
- package/src/services/__tests__/path-registry.test.ts +0 -165
- package/src/services/__tests__/redirect.test.ts +0 -159
- package/src/services/page.ts +0 -216
- package/src/services/path-registry.ts +0 -160
- package/src/services/redirect.ts +0 -97
- package/src/ui/dash/PageForm.tsx +0 -187
- package/src/ui/dash/PostList.tsx +0 -95
- package/src/ui/dash/media/MediaListContent.tsx +0 -206
- package/src/ui/dash/media/ViewMediaContent.tsx +0 -208
- package/src/ui/dash/pages/PagesContent.tsx +0 -75
- package/src/ui/dash/posts/PostForm.tsx +0 -260
- package/src/ui/layouts/DashLayout.tsx +0 -247
- package/src/ui/pages/SinglePage.tsx +0 -23
- package/src/ui/shared/ThreadView.tsx +0 -136
package/src/lib/icon-catalog.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Icon Catalog
|
|
3
3
|
*
|
|
4
4
|
* Curated subset of Lucide icons organized by category.
|
|
5
|
-
* Used by the
|
|
5
|
+
* Used by the settings icon picker to keep the response payload small.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
/** Curated icon names (kebab-case) organized by category */
|
|
@@ -179,3 +179,5035 @@ export const ICON_CATALOG: Record<string, string[]> = {
|
|
|
179
179
|
export function getAllCatalogIconNames(): string[] {
|
|
180
180
|
return Object.values(ICON_CATALOG).flat();
|
|
181
181
|
}
|
|
182
|
+
|
|
183
|
+
/** All available Lucide icon names (kebab-case), sorted alphabetically.
|
|
184
|
+
* Generated from lucide-static — run `mise run generate-icons` to update. */
|
|
185
|
+
export const ALL_ICON_NAMES: string[] = [
|
|
186
|
+
"a-arrow-down",
|
|
187
|
+
"a-arrow-up",
|
|
188
|
+
"a-large-small",
|
|
189
|
+
"accessibility",
|
|
190
|
+
"activity",
|
|
191
|
+
"air-vent",
|
|
192
|
+
"airplay",
|
|
193
|
+
"alarm-clock",
|
|
194
|
+
"alarm-clock-check",
|
|
195
|
+
"alarm-clock-minus",
|
|
196
|
+
"alarm-clock-off",
|
|
197
|
+
"alarm-clock-plus",
|
|
198
|
+
"alarm-smoke",
|
|
199
|
+
"album",
|
|
200
|
+
"align-center-horizontal",
|
|
201
|
+
"align-center-vertical",
|
|
202
|
+
"align-end-horizontal",
|
|
203
|
+
"align-end-vertical",
|
|
204
|
+
"align-horizontal-distribute-center",
|
|
205
|
+
"align-horizontal-distribute-end",
|
|
206
|
+
"align-horizontal-distribute-start",
|
|
207
|
+
"align-horizontal-justify-center",
|
|
208
|
+
"align-horizontal-justify-end",
|
|
209
|
+
"align-horizontal-justify-start",
|
|
210
|
+
"align-horizontal-space-around",
|
|
211
|
+
"align-horizontal-space-between",
|
|
212
|
+
"align-start-horizontal",
|
|
213
|
+
"align-start-vertical",
|
|
214
|
+
"align-vertical-distribute-center",
|
|
215
|
+
"align-vertical-distribute-end",
|
|
216
|
+
"align-vertical-distribute-start",
|
|
217
|
+
"align-vertical-justify-center",
|
|
218
|
+
"align-vertical-justify-end",
|
|
219
|
+
"align-vertical-justify-start",
|
|
220
|
+
"align-vertical-space-around",
|
|
221
|
+
"align-vertical-space-between",
|
|
222
|
+
"ambulance",
|
|
223
|
+
"ampersand",
|
|
224
|
+
"ampersands",
|
|
225
|
+
"amphora",
|
|
226
|
+
"anchor",
|
|
227
|
+
"angry",
|
|
228
|
+
"annoyed",
|
|
229
|
+
"antenna",
|
|
230
|
+
"anvil",
|
|
231
|
+
"aperture",
|
|
232
|
+
"app-window",
|
|
233
|
+
"app-window-mac",
|
|
234
|
+
"apple",
|
|
235
|
+
"archive",
|
|
236
|
+
"archive-restore",
|
|
237
|
+
"archive-x",
|
|
238
|
+
"armchair",
|
|
239
|
+
"arrow-big-down",
|
|
240
|
+
"arrow-big-down-dash",
|
|
241
|
+
"arrow-big-left",
|
|
242
|
+
"arrow-big-left-dash",
|
|
243
|
+
"arrow-big-right",
|
|
244
|
+
"arrow-big-right-dash",
|
|
245
|
+
"arrow-big-up",
|
|
246
|
+
"arrow-big-up-dash",
|
|
247
|
+
"arrow-down",
|
|
248
|
+
"arrow-down-0-1",
|
|
249
|
+
"arrow-down-1-0",
|
|
250
|
+
"arrow-down-a-z",
|
|
251
|
+
"arrow-down-from-line",
|
|
252
|
+
"arrow-down-left",
|
|
253
|
+
"arrow-down-narrow-wide",
|
|
254
|
+
"arrow-down-right",
|
|
255
|
+
"arrow-down-to-dot",
|
|
256
|
+
"arrow-down-to-line",
|
|
257
|
+
"arrow-down-up",
|
|
258
|
+
"arrow-down-wide-narrow",
|
|
259
|
+
"arrow-down-z-a",
|
|
260
|
+
"arrow-left",
|
|
261
|
+
"arrow-left-from-line",
|
|
262
|
+
"arrow-left-right",
|
|
263
|
+
"arrow-left-to-line",
|
|
264
|
+
"arrow-right",
|
|
265
|
+
"arrow-right-from-line",
|
|
266
|
+
"arrow-right-left",
|
|
267
|
+
"arrow-right-to-line",
|
|
268
|
+
"arrow-up",
|
|
269
|
+
"arrow-up-0-1",
|
|
270
|
+
"arrow-up-1-0",
|
|
271
|
+
"arrow-up-a-z",
|
|
272
|
+
"arrow-up-down",
|
|
273
|
+
"arrow-up-from-dot",
|
|
274
|
+
"arrow-up-from-line",
|
|
275
|
+
"arrow-up-left",
|
|
276
|
+
"arrow-up-narrow-wide",
|
|
277
|
+
"arrow-up-right",
|
|
278
|
+
"arrow-up-to-line",
|
|
279
|
+
"arrow-up-wide-narrow",
|
|
280
|
+
"arrow-up-z-a",
|
|
281
|
+
"arrows-up-from-line",
|
|
282
|
+
"asterisk",
|
|
283
|
+
"at-sign",
|
|
284
|
+
"atom",
|
|
285
|
+
"audio-lines",
|
|
286
|
+
"audio-waveform",
|
|
287
|
+
"award",
|
|
288
|
+
"axe",
|
|
289
|
+
"axis-3d",
|
|
290
|
+
"baby",
|
|
291
|
+
"backpack",
|
|
292
|
+
"badge",
|
|
293
|
+
"badge-alert",
|
|
294
|
+
"badge-cent",
|
|
295
|
+
"badge-check",
|
|
296
|
+
"badge-dollar-sign",
|
|
297
|
+
"badge-euro",
|
|
298
|
+
"badge-indian-rupee",
|
|
299
|
+
"badge-info",
|
|
300
|
+
"badge-japanese-yen",
|
|
301
|
+
"badge-minus",
|
|
302
|
+
"badge-percent",
|
|
303
|
+
"badge-plus",
|
|
304
|
+
"badge-pound-sterling",
|
|
305
|
+
"badge-question-mark",
|
|
306
|
+
"badge-russian-ruble",
|
|
307
|
+
"badge-swiss-franc",
|
|
308
|
+
"badge-turkish-lira",
|
|
309
|
+
"badge-x",
|
|
310
|
+
"baggage-claim",
|
|
311
|
+
"balloon",
|
|
312
|
+
"ban",
|
|
313
|
+
"banana",
|
|
314
|
+
"bandage",
|
|
315
|
+
"banknote",
|
|
316
|
+
"banknote-arrow-down",
|
|
317
|
+
"banknote-arrow-up",
|
|
318
|
+
"banknote-x",
|
|
319
|
+
"barcode",
|
|
320
|
+
"barrel",
|
|
321
|
+
"baseline",
|
|
322
|
+
"bath",
|
|
323
|
+
"battery",
|
|
324
|
+
"battery-charging",
|
|
325
|
+
"battery-full",
|
|
326
|
+
"battery-low",
|
|
327
|
+
"battery-medium",
|
|
328
|
+
"battery-plus",
|
|
329
|
+
"battery-warning",
|
|
330
|
+
"beaker",
|
|
331
|
+
"bean",
|
|
332
|
+
"bean-off",
|
|
333
|
+
"bed",
|
|
334
|
+
"bed-double",
|
|
335
|
+
"bed-single",
|
|
336
|
+
"beef",
|
|
337
|
+
"beer",
|
|
338
|
+
"beer-off",
|
|
339
|
+
"bell",
|
|
340
|
+
"bell-dot",
|
|
341
|
+
"bell-electric",
|
|
342
|
+
"bell-minus",
|
|
343
|
+
"bell-off",
|
|
344
|
+
"bell-plus",
|
|
345
|
+
"bell-ring",
|
|
346
|
+
"between-horizontal-end",
|
|
347
|
+
"between-horizontal-start",
|
|
348
|
+
"between-vertical-end",
|
|
349
|
+
"between-vertical-start",
|
|
350
|
+
"biceps-flexed",
|
|
351
|
+
"bike",
|
|
352
|
+
"binary",
|
|
353
|
+
"binoculars",
|
|
354
|
+
"biohazard",
|
|
355
|
+
"bird",
|
|
356
|
+
"birdhouse",
|
|
357
|
+
"bitcoin",
|
|
358
|
+
"blend",
|
|
359
|
+
"blinds",
|
|
360
|
+
"blocks",
|
|
361
|
+
"bluetooth",
|
|
362
|
+
"bluetooth-connected",
|
|
363
|
+
"bluetooth-off",
|
|
364
|
+
"bluetooth-searching",
|
|
365
|
+
"bold",
|
|
366
|
+
"bolt",
|
|
367
|
+
"bomb",
|
|
368
|
+
"bone",
|
|
369
|
+
"book",
|
|
370
|
+
"book-a",
|
|
371
|
+
"book-alert",
|
|
372
|
+
"book-audio",
|
|
373
|
+
"book-check",
|
|
374
|
+
"book-copy",
|
|
375
|
+
"book-dashed",
|
|
376
|
+
"book-down",
|
|
377
|
+
"book-headphones",
|
|
378
|
+
"book-heart",
|
|
379
|
+
"book-image",
|
|
380
|
+
"book-key",
|
|
381
|
+
"book-lock",
|
|
382
|
+
"book-marked",
|
|
383
|
+
"book-minus",
|
|
384
|
+
"book-open",
|
|
385
|
+
"book-open-check",
|
|
386
|
+
"book-open-text",
|
|
387
|
+
"book-plus",
|
|
388
|
+
"book-search",
|
|
389
|
+
"book-text",
|
|
390
|
+
"book-type",
|
|
391
|
+
"book-up",
|
|
392
|
+
"book-up-2",
|
|
393
|
+
"book-user",
|
|
394
|
+
"book-x",
|
|
395
|
+
"bookmark",
|
|
396
|
+
"bookmark-check",
|
|
397
|
+
"bookmark-minus",
|
|
398
|
+
"bookmark-plus",
|
|
399
|
+
"bookmark-x",
|
|
400
|
+
"boom-box",
|
|
401
|
+
"bot",
|
|
402
|
+
"bot-message-square",
|
|
403
|
+
"bot-off",
|
|
404
|
+
"bottle-wine",
|
|
405
|
+
"bow-arrow",
|
|
406
|
+
"box",
|
|
407
|
+
"boxes",
|
|
408
|
+
"braces",
|
|
409
|
+
"brackets",
|
|
410
|
+
"brain",
|
|
411
|
+
"brain-circuit",
|
|
412
|
+
"brain-cog",
|
|
413
|
+
"brick-wall",
|
|
414
|
+
"brick-wall-fire",
|
|
415
|
+
"brick-wall-shield",
|
|
416
|
+
"briefcase",
|
|
417
|
+
"briefcase-business",
|
|
418
|
+
"briefcase-conveyor-belt",
|
|
419
|
+
"briefcase-medical",
|
|
420
|
+
"bring-to-front",
|
|
421
|
+
"brush",
|
|
422
|
+
"brush-cleaning",
|
|
423
|
+
"bubbles",
|
|
424
|
+
"bug",
|
|
425
|
+
"bug-off",
|
|
426
|
+
"bug-play",
|
|
427
|
+
"building",
|
|
428
|
+
"building-2",
|
|
429
|
+
"bus",
|
|
430
|
+
"bus-front",
|
|
431
|
+
"cable",
|
|
432
|
+
"cable-car",
|
|
433
|
+
"cake",
|
|
434
|
+
"cake-slice",
|
|
435
|
+
"calculator",
|
|
436
|
+
"calendar",
|
|
437
|
+
"calendar-1",
|
|
438
|
+
"calendar-arrow-down",
|
|
439
|
+
"calendar-arrow-up",
|
|
440
|
+
"calendar-check",
|
|
441
|
+
"calendar-check-2",
|
|
442
|
+
"calendar-clock",
|
|
443
|
+
"calendar-cog",
|
|
444
|
+
"calendar-days",
|
|
445
|
+
"calendar-fold",
|
|
446
|
+
"calendar-heart",
|
|
447
|
+
"calendar-minus",
|
|
448
|
+
"calendar-minus-2",
|
|
449
|
+
"calendar-off",
|
|
450
|
+
"calendar-plus",
|
|
451
|
+
"calendar-plus-2",
|
|
452
|
+
"calendar-range",
|
|
453
|
+
"calendar-search",
|
|
454
|
+
"calendar-sync",
|
|
455
|
+
"calendar-x",
|
|
456
|
+
"calendar-x-2",
|
|
457
|
+
"calendars",
|
|
458
|
+
"camera",
|
|
459
|
+
"camera-off",
|
|
460
|
+
"candy",
|
|
461
|
+
"candy-cane",
|
|
462
|
+
"candy-off",
|
|
463
|
+
"cannabis",
|
|
464
|
+
"cannabis-off",
|
|
465
|
+
"captions",
|
|
466
|
+
"captions-off",
|
|
467
|
+
"car",
|
|
468
|
+
"car-front",
|
|
469
|
+
"car-taxi-front",
|
|
470
|
+
"caravan",
|
|
471
|
+
"card-sim",
|
|
472
|
+
"carrot",
|
|
473
|
+
"case-lower",
|
|
474
|
+
"case-sensitive",
|
|
475
|
+
"case-upper",
|
|
476
|
+
"cassette-tape",
|
|
477
|
+
"cast",
|
|
478
|
+
"castle",
|
|
479
|
+
"cat",
|
|
480
|
+
"cctv",
|
|
481
|
+
"chart-area",
|
|
482
|
+
"chart-bar",
|
|
483
|
+
"chart-bar-big",
|
|
484
|
+
"chart-bar-decreasing",
|
|
485
|
+
"chart-bar-increasing",
|
|
486
|
+
"chart-bar-stacked",
|
|
487
|
+
"chart-candlestick",
|
|
488
|
+
"chart-column",
|
|
489
|
+
"chart-column-big",
|
|
490
|
+
"chart-column-decreasing",
|
|
491
|
+
"chart-column-increasing",
|
|
492
|
+
"chart-column-stacked",
|
|
493
|
+
"chart-gantt",
|
|
494
|
+
"chart-line",
|
|
495
|
+
"chart-network",
|
|
496
|
+
"chart-no-axes-column",
|
|
497
|
+
"chart-no-axes-column-decreasing",
|
|
498
|
+
"chart-no-axes-column-increasing",
|
|
499
|
+
"chart-no-axes-combined",
|
|
500
|
+
"chart-no-axes-gantt",
|
|
501
|
+
"chart-pie",
|
|
502
|
+
"chart-scatter",
|
|
503
|
+
"chart-spline",
|
|
504
|
+
"check",
|
|
505
|
+
"check-check",
|
|
506
|
+
"check-line",
|
|
507
|
+
"chef-hat",
|
|
508
|
+
"cherry",
|
|
509
|
+
"chess-bishop",
|
|
510
|
+
"chess-king",
|
|
511
|
+
"chess-knight",
|
|
512
|
+
"chess-pawn",
|
|
513
|
+
"chess-queen",
|
|
514
|
+
"chess-rook",
|
|
515
|
+
"chevron-down",
|
|
516
|
+
"chevron-first",
|
|
517
|
+
"chevron-last",
|
|
518
|
+
"chevron-left",
|
|
519
|
+
"chevron-right",
|
|
520
|
+
"chevron-up",
|
|
521
|
+
"chevrons-down",
|
|
522
|
+
"chevrons-down-up",
|
|
523
|
+
"chevrons-left",
|
|
524
|
+
"chevrons-left-right",
|
|
525
|
+
"chevrons-left-right-ellipsis",
|
|
526
|
+
"chevrons-right",
|
|
527
|
+
"chevrons-right-left",
|
|
528
|
+
"chevrons-up",
|
|
529
|
+
"chevrons-up-down",
|
|
530
|
+
"chromium",
|
|
531
|
+
"church",
|
|
532
|
+
"cigarette",
|
|
533
|
+
"cigarette-off",
|
|
534
|
+
"circle",
|
|
535
|
+
"circle-alert",
|
|
536
|
+
"circle-arrow-down",
|
|
537
|
+
"circle-arrow-left",
|
|
538
|
+
"circle-arrow-out-down-left",
|
|
539
|
+
"circle-arrow-out-down-right",
|
|
540
|
+
"circle-arrow-out-up-left",
|
|
541
|
+
"circle-arrow-out-up-right",
|
|
542
|
+
"circle-arrow-right",
|
|
543
|
+
"circle-arrow-up",
|
|
544
|
+
"circle-check",
|
|
545
|
+
"circle-check-big",
|
|
546
|
+
"circle-chevron-down",
|
|
547
|
+
"circle-chevron-left",
|
|
548
|
+
"circle-chevron-right",
|
|
549
|
+
"circle-chevron-up",
|
|
550
|
+
"circle-dashed",
|
|
551
|
+
"circle-divide",
|
|
552
|
+
"circle-dollar-sign",
|
|
553
|
+
"circle-dot",
|
|
554
|
+
"circle-dot-dashed",
|
|
555
|
+
"circle-ellipsis",
|
|
556
|
+
"circle-equal",
|
|
557
|
+
"circle-fading-arrow-up",
|
|
558
|
+
"circle-fading-plus",
|
|
559
|
+
"circle-gauge",
|
|
560
|
+
"circle-minus",
|
|
561
|
+
"circle-off",
|
|
562
|
+
"circle-parking",
|
|
563
|
+
"circle-parking-off",
|
|
564
|
+
"circle-pause",
|
|
565
|
+
"circle-percent",
|
|
566
|
+
"circle-pile",
|
|
567
|
+
"circle-play",
|
|
568
|
+
"circle-plus",
|
|
569
|
+
"circle-pound-sterling",
|
|
570
|
+
"circle-power",
|
|
571
|
+
"circle-question-mark",
|
|
572
|
+
"circle-slash",
|
|
573
|
+
"circle-slash-2",
|
|
574
|
+
"circle-small",
|
|
575
|
+
"circle-star",
|
|
576
|
+
"circle-stop",
|
|
577
|
+
"circle-user",
|
|
578
|
+
"circle-user-round",
|
|
579
|
+
"circle-x",
|
|
580
|
+
"circuit-board",
|
|
581
|
+
"citrus",
|
|
582
|
+
"clapperboard",
|
|
583
|
+
"clipboard",
|
|
584
|
+
"clipboard-check",
|
|
585
|
+
"clipboard-clock",
|
|
586
|
+
"clipboard-copy",
|
|
587
|
+
"clipboard-list",
|
|
588
|
+
"clipboard-minus",
|
|
589
|
+
"clipboard-paste",
|
|
590
|
+
"clipboard-pen",
|
|
591
|
+
"clipboard-pen-line",
|
|
592
|
+
"clipboard-plus",
|
|
593
|
+
"clipboard-type",
|
|
594
|
+
"clipboard-x",
|
|
595
|
+
"clock",
|
|
596
|
+
"clock-1",
|
|
597
|
+
"clock-10",
|
|
598
|
+
"clock-11",
|
|
599
|
+
"clock-12",
|
|
600
|
+
"clock-2",
|
|
601
|
+
"clock-3",
|
|
602
|
+
"clock-4",
|
|
603
|
+
"clock-5",
|
|
604
|
+
"clock-6",
|
|
605
|
+
"clock-7",
|
|
606
|
+
"clock-8",
|
|
607
|
+
"clock-9",
|
|
608
|
+
"clock-alert",
|
|
609
|
+
"clock-arrow-down",
|
|
610
|
+
"clock-arrow-up",
|
|
611
|
+
"clock-check",
|
|
612
|
+
"clock-fading",
|
|
613
|
+
"clock-plus",
|
|
614
|
+
"closed-caption",
|
|
615
|
+
"cloud",
|
|
616
|
+
"cloud-alert",
|
|
617
|
+
"cloud-backup",
|
|
618
|
+
"cloud-check",
|
|
619
|
+
"cloud-cog",
|
|
620
|
+
"cloud-download",
|
|
621
|
+
"cloud-drizzle",
|
|
622
|
+
"cloud-fog",
|
|
623
|
+
"cloud-hail",
|
|
624
|
+
"cloud-lightning",
|
|
625
|
+
"cloud-moon",
|
|
626
|
+
"cloud-moon-rain",
|
|
627
|
+
"cloud-off",
|
|
628
|
+
"cloud-rain",
|
|
629
|
+
"cloud-rain-wind",
|
|
630
|
+
"cloud-snow",
|
|
631
|
+
"cloud-sun",
|
|
632
|
+
"cloud-sun-rain",
|
|
633
|
+
"cloud-sync",
|
|
634
|
+
"cloud-upload",
|
|
635
|
+
"cloudy",
|
|
636
|
+
"clover",
|
|
637
|
+
"club",
|
|
638
|
+
"code",
|
|
639
|
+
"code-xml",
|
|
640
|
+
"codepen",
|
|
641
|
+
"codesandbox",
|
|
642
|
+
"coffee",
|
|
643
|
+
"cog",
|
|
644
|
+
"coins",
|
|
645
|
+
"columns-2",
|
|
646
|
+
"columns-3",
|
|
647
|
+
"columns-3-cog",
|
|
648
|
+
"columns-4",
|
|
649
|
+
"combine",
|
|
650
|
+
"command",
|
|
651
|
+
"compass",
|
|
652
|
+
"component",
|
|
653
|
+
"computer",
|
|
654
|
+
"concierge-bell",
|
|
655
|
+
"cone",
|
|
656
|
+
"construction",
|
|
657
|
+
"contact",
|
|
658
|
+
"contact-round",
|
|
659
|
+
"container",
|
|
660
|
+
"contrast",
|
|
661
|
+
"cookie",
|
|
662
|
+
"cooking-pot",
|
|
663
|
+
"copy",
|
|
664
|
+
"copy-check",
|
|
665
|
+
"copy-minus",
|
|
666
|
+
"copy-plus",
|
|
667
|
+
"copy-slash",
|
|
668
|
+
"copy-x",
|
|
669
|
+
"copyleft",
|
|
670
|
+
"copyright",
|
|
671
|
+
"corner-down-left",
|
|
672
|
+
"corner-down-right",
|
|
673
|
+
"corner-left-down",
|
|
674
|
+
"corner-left-up",
|
|
675
|
+
"corner-right-down",
|
|
676
|
+
"corner-right-up",
|
|
677
|
+
"corner-up-left",
|
|
678
|
+
"corner-up-right",
|
|
679
|
+
"cpu",
|
|
680
|
+
"creative-commons",
|
|
681
|
+
"credit-card",
|
|
682
|
+
"croissant",
|
|
683
|
+
"crop",
|
|
684
|
+
"cross",
|
|
685
|
+
"crosshair",
|
|
686
|
+
"crown",
|
|
687
|
+
"cuboid",
|
|
688
|
+
"cup-soda",
|
|
689
|
+
"currency",
|
|
690
|
+
"cylinder",
|
|
691
|
+
"dam",
|
|
692
|
+
"database",
|
|
693
|
+
"database-backup",
|
|
694
|
+
"database-search",
|
|
695
|
+
"database-zap",
|
|
696
|
+
"decimals-arrow-left",
|
|
697
|
+
"decimals-arrow-right",
|
|
698
|
+
"delete",
|
|
699
|
+
"dessert",
|
|
700
|
+
"diameter",
|
|
701
|
+
"diamond",
|
|
702
|
+
"diamond-minus",
|
|
703
|
+
"diamond-percent",
|
|
704
|
+
"diamond-plus",
|
|
705
|
+
"dice-1",
|
|
706
|
+
"dice-2",
|
|
707
|
+
"dice-3",
|
|
708
|
+
"dice-4",
|
|
709
|
+
"dice-5",
|
|
710
|
+
"dice-6",
|
|
711
|
+
"dices",
|
|
712
|
+
"diff",
|
|
713
|
+
"disc",
|
|
714
|
+
"disc-2",
|
|
715
|
+
"disc-3",
|
|
716
|
+
"disc-album",
|
|
717
|
+
"divide",
|
|
718
|
+
"dna",
|
|
719
|
+
"dna-off",
|
|
720
|
+
"dock",
|
|
721
|
+
"dog",
|
|
722
|
+
"dollar-sign",
|
|
723
|
+
"donut",
|
|
724
|
+
"door-closed",
|
|
725
|
+
"door-closed-locked",
|
|
726
|
+
"door-open",
|
|
727
|
+
"dot",
|
|
728
|
+
"download",
|
|
729
|
+
"drafting-compass",
|
|
730
|
+
"drama",
|
|
731
|
+
"dribbble",
|
|
732
|
+
"drill",
|
|
733
|
+
"drone",
|
|
734
|
+
"droplet",
|
|
735
|
+
"droplet-off",
|
|
736
|
+
"droplets",
|
|
737
|
+
"drum",
|
|
738
|
+
"drumstick",
|
|
739
|
+
"dumbbell",
|
|
740
|
+
"ear",
|
|
741
|
+
"ear-off",
|
|
742
|
+
"earth",
|
|
743
|
+
"earth-lock",
|
|
744
|
+
"eclipse",
|
|
745
|
+
"egg",
|
|
746
|
+
"egg-fried",
|
|
747
|
+
"egg-off",
|
|
748
|
+
"ellipsis",
|
|
749
|
+
"ellipsis-vertical",
|
|
750
|
+
"equal",
|
|
751
|
+
"equal-approximately",
|
|
752
|
+
"equal-not",
|
|
753
|
+
"eraser",
|
|
754
|
+
"ethernet-port",
|
|
755
|
+
"euro",
|
|
756
|
+
"ev-charger",
|
|
757
|
+
"expand",
|
|
758
|
+
"external-link",
|
|
759
|
+
"eye",
|
|
760
|
+
"eye-closed",
|
|
761
|
+
"eye-off",
|
|
762
|
+
"facebook",
|
|
763
|
+
"factory",
|
|
764
|
+
"fan",
|
|
765
|
+
"fast-forward",
|
|
766
|
+
"feather",
|
|
767
|
+
"fence",
|
|
768
|
+
"ferris-wheel",
|
|
769
|
+
"figma",
|
|
770
|
+
"file",
|
|
771
|
+
"file-archive",
|
|
772
|
+
"file-axis-3d",
|
|
773
|
+
"file-badge",
|
|
774
|
+
"file-box",
|
|
775
|
+
"file-braces",
|
|
776
|
+
"file-braces-corner",
|
|
777
|
+
"file-chart-column",
|
|
778
|
+
"file-chart-column-increasing",
|
|
779
|
+
"file-chart-line",
|
|
780
|
+
"file-chart-pie",
|
|
781
|
+
"file-check",
|
|
782
|
+
"file-check-corner",
|
|
783
|
+
"file-clock",
|
|
784
|
+
"file-code",
|
|
785
|
+
"file-code-corner",
|
|
786
|
+
"file-cog",
|
|
787
|
+
"file-diff",
|
|
788
|
+
"file-digit",
|
|
789
|
+
"file-down",
|
|
790
|
+
"file-exclamation-point",
|
|
791
|
+
"file-headphone",
|
|
792
|
+
"file-heart",
|
|
793
|
+
"file-image",
|
|
794
|
+
"file-input",
|
|
795
|
+
"file-key",
|
|
796
|
+
"file-lock",
|
|
797
|
+
"file-minus",
|
|
798
|
+
"file-minus-corner",
|
|
799
|
+
"file-music",
|
|
800
|
+
"file-output",
|
|
801
|
+
"file-pen",
|
|
802
|
+
"file-pen-line",
|
|
803
|
+
"file-play",
|
|
804
|
+
"file-plus",
|
|
805
|
+
"file-plus-corner",
|
|
806
|
+
"file-question-mark",
|
|
807
|
+
"file-scan",
|
|
808
|
+
"file-search",
|
|
809
|
+
"file-search-corner",
|
|
810
|
+
"file-signal",
|
|
811
|
+
"file-sliders",
|
|
812
|
+
"file-spreadsheet",
|
|
813
|
+
"file-stack",
|
|
814
|
+
"file-symlink",
|
|
815
|
+
"file-terminal",
|
|
816
|
+
"file-text",
|
|
817
|
+
"file-type",
|
|
818
|
+
"file-type-corner",
|
|
819
|
+
"file-up",
|
|
820
|
+
"file-user",
|
|
821
|
+
"file-video-camera",
|
|
822
|
+
"file-volume",
|
|
823
|
+
"file-x",
|
|
824
|
+
"file-x-corner",
|
|
825
|
+
"files",
|
|
826
|
+
"film",
|
|
827
|
+
"fingerprint-pattern",
|
|
828
|
+
"fire-extinguisher",
|
|
829
|
+
"fish",
|
|
830
|
+
"fish-off",
|
|
831
|
+
"fish-symbol",
|
|
832
|
+
"fishing-hook",
|
|
833
|
+
"flag",
|
|
834
|
+
"flag-off",
|
|
835
|
+
"flag-triangle-left",
|
|
836
|
+
"flag-triangle-right",
|
|
837
|
+
"flame",
|
|
838
|
+
"flame-kindling",
|
|
839
|
+
"flashlight",
|
|
840
|
+
"flashlight-off",
|
|
841
|
+
"flask-conical",
|
|
842
|
+
"flask-conical-off",
|
|
843
|
+
"flask-round",
|
|
844
|
+
"flip-horizontal",
|
|
845
|
+
"flip-horizontal-2",
|
|
846
|
+
"flip-vertical",
|
|
847
|
+
"flip-vertical-2",
|
|
848
|
+
"flower",
|
|
849
|
+
"flower-2",
|
|
850
|
+
"focus",
|
|
851
|
+
"fold-horizontal",
|
|
852
|
+
"fold-vertical",
|
|
853
|
+
"folder",
|
|
854
|
+
"folder-archive",
|
|
855
|
+
"folder-check",
|
|
856
|
+
"folder-clock",
|
|
857
|
+
"folder-closed",
|
|
858
|
+
"folder-code",
|
|
859
|
+
"folder-cog",
|
|
860
|
+
"folder-dot",
|
|
861
|
+
"folder-down",
|
|
862
|
+
"folder-git",
|
|
863
|
+
"folder-git-2",
|
|
864
|
+
"folder-heart",
|
|
865
|
+
"folder-input",
|
|
866
|
+
"folder-kanban",
|
|
867
|
+
"folder-key",
|
|
868
|
+
"folder-lock",
|
|
869
|
+
"folder-minus",
|
|
870
|
+
"folder-open",
|
|
871
|
+
"folder-open-dot",
|
|
872
|
+
"folder-output",
|
|
873
|
+
"folder-pen",
|
|
874
|
+
"folder-plus",
|
|
875
|
+
"folder-root",
|
|
876
|
+
"folder-search",
|
|
877
|
+
"folder-search-2",
|
|
878
|
+
"folder-symlink",
|
|
879
|
+
"folder-sync",
|
|
880
|
+
"folder-tree",
|
|
881
|
+
"folder-up",
|
|
882
|
+
"folder-x",
|
|
883
|
+
"folders",
|
|
884
|
+
"footprints",
|
|
885
|
+
"forklift",
|
|
886
|
+
"form",
|
|
887
|
+
"forward",
|
|
888
|
+
"frame",
|
|
889
|
+
"framer",
|
|
890
|
+
"frown",
|
|
891
|
+
"fuel",
|
|
892
|
+
"fullscreen",
|
|
893
|
+
"funnel",
|
|
894
|
+
"funnel-plus",
|
|
895
|
+
"funnel-x",
|
|
896
|
+
"gallery-horizontal",
|
|
897
|
+
"gallery-horizontal-end",
|
|
898
|
+
"gallery-thumbnails",
|
|
899
|
+
"gallery-vertical",
|
|
900
|
+
"gallery-vertical-end",
|
|
901
|
+
"gamepad",
|
|
902
|
+
"gamepad-2",
|
|
903
|
+
"gamepad-directional",
|
|
904
|
+
"gauge",
|
|
905
|
+
"gavel",
|
|
906
|
+
"gem",
|
|
907
|
+
"georgian-lari",
|
|
908
|
+
"ghost",
|
|
909
|
+
"gift",
|
|
910
|
+
"git-branch",
|
|
911
|
+
"git-branch-minus",
|
|
912
|
+
"git-branch-plus",
|
|
913
|
+
"git-commit-horizontal",
|
|
914
|
+
"git-commit-vertical",
|
|
915
|
+
"git-compare",
|
|
916
|
+
"git-compare-arrows",
|
|
917
|
+
"git-fork",
|
|
918
|
+
"git-graph",
|
|
919
|
+
"git-merge",
|
|
920
|
+
"git-merge-conflict",
|
|
921
|
+
"git-pull-request",
|
|
922
|
+
"git-pull-request-arrow",
|
|
923
|
+
"git-pull-request-closed",
|
|
924
|
+
"git-pull-request-create",
|
|
925
|
+
"git-pull-request-create-arrow",
|
|
926
|
+
"git-pull-request-draft",
|
|
927
|
+
"github",
|
|
928
|
+
"gitlab",
|
|
929
|
+
"glass-water",
|
|
930
|
+
"glasses",
|
|
931
|
+
"globe",
|
|
932
|
+
"globe-lock",
|
|
933
|
+
"globe-off",
|
|
934
|
+
"globe-x",
|
|
935
|
+
"goal",
|
|
936
|
+
"gpu",
|
|
937
|
+
"graduation-cap",
|
|
938
|
+
"grape",
|
|
939
|
+
"grid-2x2",
|
|
940
|
+
"grid-2x2-check",
|
|
941
|
+
"grid-2x2-plus",
|
|
942
|
+
"grid-2x2-x",
|
|
943
|
+
"grid-3x2",
|
|
944
|
+
"grid-3x3",
|
|
945
|
+
"grip",
|
|
946
|
+
"grip-horizontal",
|
|
947
|
+
"grip-vertical",
|
|
948
|
+
"group",
|
|
949
|
+
"guitar",
|
|
950
|
+
"ham",
|
|
951
|
+
"hamburger",
|
|
952
|
+
"hammer",
|
|
953
|
+
"hand",
|
|
954
|
+
"hand-coins",
|
|
955
|
+
"hand-fist",
|
|
956
|
+
"hand-grab",
|
|
957
|
+
"hand-heart",
|
|
958
|
+
"hand-helping",
|
|
959
|
+
"hand-metal",
|
|
960
|
+
"hand-platter",
|
|
961
|
+
"handbag",
|
|
962
|
+
"handshake",
|
|
963
|
+
"hard-drive",
|
|
964
|
+
"hard-drive-download",
|
|
965
|
+
"hard-drive-upload",
|
|
966
|
+
"hard-hat",
|
|
967
|
+
"hash",
|
|
968
|
+
"hat-glasses",
|
|
969
|
+
"haze",
|
|
970
|
+
"hd",
|
|
971
|
+
"hdmi-port",
|
|
972
|
+
"heading",
|
|
973
|
+
"heading-1",
|
|
974
|
+
"heading-2",
|
|
975
|
+
"heading-3",
|
|
976
|
+
"heading-4",
|
|
977
|
+
"heading-5",
|
|
978
|
+
"heading-6",
|
|
979
|
+
"headphone-off",
|
|
980
|
+
"headphones",
|
|
981
|
+
"headset",
|
|
982
|
+
"heart",
|
|
983
|
+
"heart-crack",
|
|
984
|
+
"heart-handshake",
|
|
985
|
+
"heart-minus",
|
|
986
|
+
"heart-off",
|
|
987
|
+
"heart-plus",
|
|
988
|
+
"heart-pulse",
|
|
989
|
+
"heater",
|
|
990
|
+
"helicopter",
|
|
991
|
+
"hexagon",
|
|
992
|
+
"highlighter",
|
|
993
|
+
"history",
|
|
994
|
+
"hop",
|
|
995
|
+
"hop-off",
|
|
996
|
+
"hospital",
|
|
997
|
+
"hotel",
|
|
998
|
+
"hourglass",
|
|
999
|
+
"house",
|
|
1000
|
+
"house-heart",
|
|
1001
|
+
"house-plug",
|
|
1002
|
+
"house-plus",
|
|
1003
|
+
"house-wifi",
|
|
1004
|
+
"ice-cream-bowl",
|
|
1005
|
+
"ice-cream-cone",
|
|
1006
|
+
"id-card",
|
|
1007
|
+
"id-card-lanyard",
|
|
1008
|
+
"image",
|
|
1009
|
+
"image-down",
|
|
1010
|
+
"image-minus",
|
|
1011
|
+
"image-off",
|
|
1012
|
+
"image-play",
|
|
1013
|
+
"image-plus",
|
|
1014
|
+
"image-up",
|
|
1015
|
+
"image-upscale",
|
|
1016
|
+
"images",
|
|
1017
|
+
"import",
|
|
1018
|
+
"inbox",
|
|
1019
|
+
"indian-rupee",
|
|
1020
|
+
"infinity",
|
|
1021
|
+
"info",
|
|
1022
|
+
"inspection-panel",
|
|
1023
|
+
"instagram",
|
|
1024
|
+
"italic",
|
|
1025
|
+
"iteration-ccw",
|
|
1026
|
+
"iteration-cw",
|
|
1027
|
+
"japanese-yen",
|
|
1028
|
+
"joystick",
|
|
1029
|
+
"kanban",
|
|
1030
|
+
"kayak",
|
|
1031
|
+
"key",
|
|
1032
|
+
"key-round",
|
|
1033
|
+
"key-square",
|
|
1034
|
+
"keyboard",
|
|
1035
|
+
"keyboard-music",
|
|
1036
|
+
"keyboard-off",
|
|
1037
|
+
"lamp",
|
|
1038
|
+
"lamp-ceiling",
|
|
1039
|
+
"lamp-desk",
|
|
1040
|
+
"lamp-floor",
|
|
1041
|
+
"lamp-wall-down",
|
|
1042
|
+
"lamp-wall-up",
|
|
1043
|
+
"land-plot",
|
|
1044
|
+
"landmark",
|
|
1045
|
+
"languages",
|
|
1046
|
+
"laptop",
|
|
1047
|
+
"laptop-minimal",
|
|
1048
|
+
"laptop-minimal-check",
|
|
1049
|
+
"lasso",
|
|
1050
|
+
"lasso-select",
|
|
1051
|
+
"laugh",
|
|
1052
|
+
"layers",
|
|
1053
|
+
"layers-2",
|
|
1054
|
+
"layers-plus",
|
|
1055
|
+
"layout-dashboard",
|
|
1056
|
+
"layout-grid",
|
|
1057
|
+
"layout-list",
|
|
1058
|
+
"layout-panel-left",
|
|
1059
|
+
"layout-panel-top",
|
|
1060
|
+
"layout-template",
|
|
1061
|
+
"leaf",
|
|
1062
|
+
"leafy-green",
|
|
1063
|
+
"lectern",
|
|
1064
|
+
"lens-concave",
|
|
1065
|
+
"lens-convex",
|
|
1066
|
+
"library",
|
|
1067
|
+
"library-big",
|
|
1068
|
+
"life-buoy",
|
|
1069
|
+
"ligature",
|
|
1070
|
+
"lightbulb",
|
|
1071
|
+
"lightbulb-off",
|
|
1072
|
+
"line-dot-right-horizontal",
|
|
1073
|
+
"line-squiggle",
|
|
1074
|
+
"link",
|
|
1075
|
+
"link-2",
|
|
1076
|
+
"link-2-off",
|
|
1077
|
+
"linkedin",
|
|
1078
|
+
"list",
|
|
1079
|
+
"list-check",
|
|
1080
|
+
"list-checks",
|
|
1081
|
+
"list-chevrons-down-up",
|
|
1082
|
+
"list-chevrons-up-down",
|
|
1083
|
+
"list-collapse",
|
|
1084
|
+
"list-end",
|
|
1085
|
+
"list-filter",
|
|
1086
|
+
"list-filter-plus",
|
|
1087
|
+
"list-indent-decrease",
|
|
1088
|
+
"list-indent-increase",
|
|
1089
|
+
"list-minus",
|
|
1090
|
+
"list-music",
|
|
1091
|
+
"list-ordered",
|
|
1092
|
+
"list-plus",
|
|
1093
|
+
"list-restart",
|
|
1094
|
+
"list-start",
|
|
1095
|
+
"list-todo",
|
|
1096
|
+
"list-tree",
|
|
1097
|
+
"list-video",
|
|
1098
|
+
"list-x",
|
|
1099
|
+
"loader",
|
|
1100
|
+
"loader-circle",
|
|
1101
|
+
"loader-pinwheel",
|
|
1102
|
+
"locate",
|
|
1103
|
+
"locate-fixed",
|
|
1104
|
+
"locate-off",
|
|
1105
|
+
"lock",
|
|
1106
|
+
"lock-keyhole",
|
|
1107
|
+
"lock-keyhole-open",
|
|
1108
|
+
"lock-open",
|
|
1109
|
+
"log-in",
|
|
1110
|
+
"log-out",
|
|
1111
|
+
"logs",
|
|
1112
|
+
"lollipop",
|
|
1113
|
+
"luggage",
|
|
1114
|
+
"magnet",
|
|
1115
|
+
"mail",
|
|
1116
|
+
"mail-check",
|
|
1117
|
+
"mail-minus",
|
|
1118
|
+
"mail-open",
|
|
1119
|
+
"mail-plus",
|
|
1120
|
+
"mail-question-mark",
|
|
1121
|
+
"mail-search",
|
|
1122
|
+
"mail-warning",
|
|
1123
|
+
"mail-x",
|
|
1124
|
+
"mailbox",
|
|
1125
|
+
"mails",
|
|
1126
|
+
"map",
|
|
1127
|
+
"map-minus",
|
|
1128
|
+
"map-pin",
|
|
1129
|
+
"map-pin-check",
|
|
1130
|
+
"map-pin-check-inside",
|
|
1131
|
+
"map-pin-house",
|
|
1132
|
+
"map-pin-minus",
|
|
1133
|
+
"map-pin-minus-inside",
|
|
1134
|
+
"map-pin-off",
|
|
1135
|
+
"map-pin-pen",
|
|
1136
|
+
"map-pin-plus",
|
|
1137
|
+
"map-pin-plus-inside",
|
|
1138
|
+
"map-pin-x",
|
|
1139
|
+
"map-pin-x-inside",
|
|
1140
|
+
"map-pinned",
|
|
1141
|
+
"map-plus",
|
|
1142
|
+
"mars",
|
|
1143
|
+
"mars-stroke",
|
|
1144
|
+
"martini",
|
|
1145
|
+
"maximize",
|
|
1146
|
+
"maximize-2",
|
|
1147
|
+
"medal",
|
|
1148
|
+
"megaphone",
|
|
1149
|
+
"megaphone-off",
|
|
1150
|
+
"meh",
|
|
1151
|
+
"memory-stick",
|
|
1152
|
+
"menu",
|
|
1153
|
+
"merge",
|
|
1154
|
+
"message-circle",
|
|
1155
|
+
"message-circle-check",
|
|
1156
|
+
"message-circle-code",
|
|
1157
|
+
"message-circle-dashed",
|
|
1158
|
+
"message-circle-heart",
|
|
1159
|
+
"message-circle-more",
|
|
1160
|
+
"message-circle-off",
|
|
1161
|
+
"message-circle-plus",
|
|
1162
|
+
"message-circle-question-mark",
|
|
1163
|
+
"message-circle-reply",
|
|
1164
|
+
"message-circle-warning",
|
|
1165
|
+
"message-circle-x",
|
|
1166
|
+
"message-square",
|
|
1167
|
+
"message-square-code",
|
|
1168
|
+
"message-square-dashed",
|
|
1169
|
+
"message-square-diff",
|
|
1170
|
+
"message-square-dot",
|
|
1171
|
+
"message-square-heart",
|
|
1172
|
+
"message-square-lock",
|
|
1173
|
+
"message-square-more",
|
|
1174
|
+
"message-square-off",
|
|
1175
|
+
"message-square-plus",
|
|
1176
|
+
"message-square-quote",
|
|
1177
|
+
"message-square-reply",
|
|
1178
|
+
"message-square-share",
|
|
1179
|
+
"message-square-text",
|
|
1180
|
+
"message-square-warning",
|
|
1181
|
+
"message-square-x",
|
|
1182
|
+
"messages-square",
|
|
1183
|
+
"mic",
|
|
1184
|
+
"mic-off",
|
|
1185
|
+
"mic-vocal",
|
|
1186
|
+
"microchip",
|
|
1187
|
+
"microscope",
|
|
1188
|
+
"microwave",
|
|
1189
|
+
"milestone",
|
|
1190
|
+
"milk",
|
|
1191
|
+
"milk-off",
|
|
1192
|
+
"minimize",
|
|
1193
|
+
"minimize-2",
|
|
1194
|
+
"minus",
|
|
1195
|
+
"mirror-rectangular",
|
|
1196
|
+
"mirror-round",
|
|
1197
|
+
"monitor",
|
|
1198
|
+
"monitor-check",
|
|
1199
|
+
"monitor-cloud",
|
|
1200
|
+
"monitor-cog",
|
|
1201
|
+
"monitor-dot",
|
|
1202
|
+
"monitor-down",
|
|
1203
|
+
"monitor-off",
|
|
1204
|
+
"monitor-pause",
|
|
1205
|
+
"monitor-play",
|
|
1206
|
+
"monitor-smartphone",
|
|
1207
|
+
"monitor-speaker",
|
|
1208
|
+
"monitor-stop",
|
|
1209
|
+
"monitor-up",
|
|
1210
|
+
"monitor-x",
|
|
1211
|
+
"moon",
|
|
1212
|
+
"moon-star",
|
|
1213
|
+
"motorbike",
|
|
1214
|
+
"mountain",
|
|
1215
|
+
"mountain-snow",
|
|
1216
|
+
"mouse",
|
|
1217
|
+
"mouse-left",
|
|
1218
|
+
"mouse-off",
|
|
1219
|
+
"mouse-pointer",
|
|
1220
|
+
"mouse-pointer-2",
|
|
1221
|
+
"mouse-pointer-2-off",
|
|
1222
|
+
"mouse-pointer-ban",
|
|
1223
|
+
"mouse-pointer-click",
|
|
1224
|
+
"move",
|
|
1225
|
+
"move-3d",
|
|
1226
|
+
"move-diagonal",
|
|
1227
|
+
"move-diagonal-2",
|
|
1228
|
+
"move-down",
|
|
1229
|
+
"move-down-left",
|
|
1230
|
+
"move-down-right",
|
|
1231
|
+
"move-horizontal",
|
|
1232
|
+
"move-left",
|
|
1233
|
+
"move-right",
|
|
1234
|
+
"move-up",
|
|
1235
|
+
"move-up-left",
|
|
1236
|
+
"move-up-right",
|
|
1237
|
+
"move-vertical",
|
|
1238
|
+
"music",
|
|
1239
|
+
"music-2",
|
|
1240
|
+
"music-3",
|
|
1241
|
+
"music-4",
|
|
1242
|
+
"navigation",
|
|
1243
|
+
"navigation-2",
|
|
1244
|
+
"navigation-2-off",
|
|
1245
|
+
"navigation-off",
|
|
1246
|
+
"network",
|
|
1247
|
+
"newspaper",
|
|
1248
|
+
"nfc",
|
|
1249
|
+
"non-binary",
|
|
1250
|
+
"notebook",
|
|
1251
|
+
"notebook-pen",
|
|
1252
|
+
"notebook-tabs",
|
|
1253
|
+
"notebook-text",
|
|
1254
|
+
"notepad-text",
|
|
1255
|
+
"notepad-text-dashed",
|
|
1256
|
+
"nut",
|
|
1257
|
+
"nut-off",
|
|
1258
|
+
"octagon",
|
|
1259
|
+
"octagon-alert",
|
|
1260
|
+
"octagon-minus",
|
|
1261
|
+
"octagon-pause",
|
|
1262
|
+
"octagon-x",
|
|
1263
|
+
"omega",
|
|
1264
|
+
"option",
|
|
1265
|
+
"orbit",
|
|
1266
|
+
"origami",
|
|
1267
|
+
"package",
|
|
1268
|
+
"package-2",
|
|
1269
|
+
"package-check",
|
|
1270
|
+
"package-minus",
|
|
1271
|
+
"package-open",
|
|
1272
|
+
"package-plus",
|
|
1273
|
+
"package-search",
|
|
1274
|
+
"package-x",
|
|
1275
|
+
"paint-bucket",
|
|
1276
|
+
"paint-roller",
|
|
1277
|
+
"paintbrush",
|
|
1278
|
+
"paintbrush-vertical",
|
|
1279
|
+
"palette",
|
|
1280
|
+
"panda",
|
|
1281
|
+
"panel-bottom",
|
|
1282
|
+
"panel-bottom-close",
|
|
1283
|
+
"panel-bottom-dashed",
|
|
1284
|
+
"panel-bottom-open",
|
|
1285
|
+
"panel-left",
|
|
1286
|
+
"panel-left-close",
|
|
1287
|
+
"panel-left-dashed",
|
|
1288
|
+
"panel-left-open",
|
|
1289
|
+
"panel-left-right-dashed",
|
|
1290
|
+
"panel-right",
|
|
1291
|
+
"panel-right-close",
|
|
1292
|
+
"panel-right-dashed",
|
|
1293
|
+
"panel-right-open",
|
|
1294
|
+
"panel-top",
|
|
1295
|
+
"panel-top-bottom-dashed",
|
|
1296
|
+
"panel-top-close",
|
|
1297
|
+
"panel-top-dashed",
|
|
1298
|
+
"panel-top-open",
|
|
1299
|
+
"panels-left-bottom",
|
|
1300
|
+
"panels-right-bottom",
|
|
1301
|
+
"panels-top-left",
|
|
1302
|
+
"paperclip",
|
|
1303
|
+
"parentheses",
|
|
1304
|
+
"parking-meter",
|
|
1305
|
+
"party-popper",
|
|
1306
|
+
"pause",
|
|
1307
|
+
"paw-print",
|
|
1308
|
+
"pc-case",
|
|
1309
|
+
"pen",
|
|
1310
|
+
"pen-line",
|
|
1311
|
+
"pen-off",
|
|
1312
|
+
"pen-tool",
|
|
1313
|
+
"pencil",
|
|
1314
|
+
"pencil-line",
|
|
1315
|
+
"pencil-off",
|
|
1316
|
+
"pencil-ruler",
|
|
1317
|
+
"pentagon",
|
|
1318
|
+
"percent",
|
|
1319
|
+
"person-standing",
|
|
1320
|
+
"philippine-peso",
|
|
1321
|
+
"phone",
|
|
1322
|
+
"phone-call",
|
|
1323
|
+
"phone-forwarded",
|
|
1324
|
+
"phone-incoming",
|
|
1325
|
+
"phone-missed",
|
|
1326
|
+
"phone-off",
|
|
1327
|
+
"phone-outgoing",
|
|
1328
|
+
"pi",
|
|
1329
|
+
"piano",
|
|
1330
|
+
"pickaxe",
|
|
1331
|
+
"picture-in-picture",
|
|
1332
|
+
"picture-in-picture-2",
|
|
1333
|
+
"piggy-bank",
|
|
1334
|
+
"pilcrow",
|
|
1335
|
+
"pilcrow-left",
|
|
1336
|
+
"pilcrow-right",
|
|
1337
|
+
"pill",
|
|
1338
|
+
"pill-bottle",
|
|
1339
|
+
"pin",
|
|
1340
|
+
"pin-off",
|
|
1341
|
+
"pipette",
|
|
1342
|
+
"pizza",
|
|
1343
|
+
"plane",
|
|
1344
|
+
"plane-landing",
|
|
1345
|
+
"plane-takeoff",
|
|
1346
|
+
"play",
|
|
1347
|
+
"plug",
|
|
1348
|
+
"plug-2",
|
|
1349
|
+
"plug-zap",
|
|
1350
|
+
"plus",
|
|
1351
|
+
"pocket",
|
|
1352
|
+
"pocket-knife",
|
|
1353
|
+
"podcast",
|
|
1354
|
+
"pointer",
|
|
1355
|
+
"pointer-off",
|
|
1356
|
+
"popcorn",
|
|
1357
|
+
"popsicle",
|
|
1358
|
+
"pound-sterling",
|
|
1359
|
+
"power",
|
|
1360
|
+
"power-off",
|
|
1361
|
+
"presentation",
|
|
1362
|
+
"printer",
|
|
1363
|
+
"printer-check",
|
|
1364
|
+
"printer-x",
|
|
1365
|
+
"projector",
|
|
1366
|
+
"proportions",
|
|
1367
|
+
"puzzle",
|
|
1368
|
+
"pyramid",
|
|
1369
|
+
"qr-code",
|
|
1370
|
+
"quote",
|
|
1371
|
+
"rabbit",
|
|
1372
|
+
"radar",
|
|
1373
|
+
"radiation",
|
|
1374
|
+
"radical",
|
|
1375
|
+
"radio",
|
|
1376
|
+
"radio-receiver",
|
|
1377
|
+
"radio-tower",
|
|
1378
|
+
"radius",
|
|
1379
|
+
"rail-symbol",
|
|
1380
|
+
"rainbow",
|
|
1381
|
+
"rat",
|
|
1382
|
+
"ratio",
|
|
1383
|
+
"receipt",
|
|
1384
|
+
"receipt-cent",
|
|
1385
|
+
"receipt-euro",
|
|
1386
|
+
"receipt-indian-rupee",
|
|
1387
|
+
"receipt-japanese-yen",
|
|
1388
|
+
"receipt-pound-sterling",
|
|
1389
|
+
"receipt-russian-ruble",
|
|
1390
|
+
"receipt-swiss-franc",
|
|
1391
|
+
"receipt-text",
|
|
1392
|
+
"receipt-turkish-lira",
|
|
1393
|
+
"rectangle-circle",
|
|
1394
|
+
"rectangle-ellipsis",
|
|
1395
|
+
"rectangle-goggles",
|
|
1396
|
+
"rectangle-horizontal",
|
|
1397
|
+
"rectangle-vertical",
|
|
1398
|
+
"recycle",
|
|
1399
|
+
"redo",
|
|
1400
|
+
"redo-2",
|
|
1401
|
+
"redo-dot",
|
|
1402
|
+
"refresh-ccw",
|
|
1403
|
+
"refresh-ccw-dot",
|
|
1404
|
+
"refresh-cw",
|
|
1405
|
+
"refresh-cw-off",
|
|
1406
|
+
"refrigerator",
|
|
1407
|
+
"regex",
|
|
1408
|
+
"remove-formatting",
|
|
1409
|
+
"repeat",
|
|
1410
|
+
"repeat-1",
|
|
1411
|
+
"repeat-2",
|
|
1412
|
+
"replace",
|
|
1413
|
+
"replace-all",
|
|
1414
|
+
"reply",
|
|
1415
|
+
"reply-all",
|
|
1416
|
+
"rewind",
|
|
1417
|
+
"ribbon",
|
|
1418
|
+
"rocket",
|
|
1419
|
+
"rocking-chair",
|
|
1420
|
+
"roller-coaster",
|
|
1421
|
+
"rose",
|
|
1422
|
+
"rotate-3d",
|
|
1423
|
+
"rotate-ccw",
|
|
1424
|
+
"rotate-ccw-key",
|
|
1425
|
+
"rotate-ccw-square",
|
|
1426
|
+
"rotate-cw",
|
|
1427
|
+
"rotate-cw-square",
|
|
1428
|
+
"route",
|
|
1429
|
+
"route-off",
|
|
1430
|
+
"router",
|
|
1431
|
+
"rows-2",
|
|
1432
|
+
"rows-3",
|
|
1433
|
+
"rows-4",
|
|
1434
|
+
"rss",
|
|
1435
|
+
"ruler",
|
|
1436
|
+
"ruler-dimension-line",
|
|
1437
|
+
"russian-ruble",
|
|
1438
|
+
"sailboat",
|
|
1439
|
+
"salad",
|
|
1440
|
+
"sandwich",
|
|
1441
|
+
"satellite",
|
|
1442
|
+
"satellite-dish",
|
|
1443
|
+
"saudi-riyal",
|
|
1444
|
+
"save",
|
|
1445
|
+
"save-all",
|
|
1446
|
+
"save-off",
|
|
1447
|
+
"scale",
|
|
1448
|
+
"scale-3d",
|
|
1449
|
+
"scaling",
|
|
1450
|
+
"scan",
|
|
1451
|
+
"scan-barcode",
|
|
1452
|
+
"scan-eye",
|
|
1453
|
+
"scan-face",
|
|
1454
|
+
"scan-heart",
|
|
1455
|
+
"scan-line",
|
|
1456
|
+
"scan-qr-code",
|
|
1457
|
+
"scan-search",
|
|
1458
|
+
"scan-text",
|
|
1459
|
+
"school",
|
|
1460
|
+
"scissors",
|
|
1461
|
+
"scissors-line-dashed",
|
|
1462
|
+
"scooter",
|
|
1463
|
+
"screen-share",
|
|
1464
|
+
"screen-share-off",
|
|
1465
|
+
"scroll",
|
|
1466
|
+
"scroll-text",
|
|
1467
|
+
"search",
|
|
1468
|
+
"search-alert",
|
|
1469
|
+
"search-check",
|
|
1470
|
+
"search-code",
|
|
1471
|
+
"search-slash",
|
|
1472
|
+
"search-x",
|
|
1473
|
+
"section",
|
|
1474
|
+
"send",
|
|
1475
|
+
"send-horizontal",
|
|
1476
|
+
"send-to-back",
|
|
1477
|
+
"separator-horizontal",
|
|
1478
|
+
"separator-vertical",
|
|
1479
|
+
"server",
|
|
1480
|
+
"server-cog",
|
|
1481
|
+
"server-crash",
|
|
1482
|
+
"server-off",
|
|
1483
|
+
"settings",
|
|
1484
|
+
"settings-2",
|
|
1485
|
+
"shapes",
|
|
1486
|
+
"share",
|
|
1487
|
+
"share-2",
|
|
1488
|
+
"sheet",
|
|
1489
|
+
"shell",
|
|
1490
|
+
"shelving-unit",
|
|
1491
|
+
"shield",
|
|
1492
|
+
"shield-alert",
|
|
1493
|
+
"shield-ban",
|
|
1494
|
+
"shield-check",
|
|
1495
|
+
"shield-ellipsis",
|
|
1496
|
+
"shield-half",
|
|
1497
|
+
"shield-minus",
|
|
1498
|
+
"shield-off",
|
|
1499
|
+
"shield-plus",
|
|
1500
|
+
"shield-question-mark",
|
|
1501
|
+
"shield-user",
|
|
1502
|
+
"shield-x",
|
|
1503
|
+
"ship",
|
|
1504
|
+
"ship-wheel",
|
|
1505
|
+
"shirt",
|
|
1506
|
+
"shopping-bag",
|
|
1507
|
+
"shopping-basket",
|
|
1508
|
+
"shopping-cart",
|
|
1509
|
+
"shovel",
|
|
1510
|
+
"shower-head",
|
|
1511
|
+
"shredder",
|
|
1512
|
+
"shrimp",
|
|
1513
|
+
"shrink",
|
|
1514
|
+
"shrub",
|
|
1515
|
+
"shuffle",
|
|
1516
|
+
"sigma",
|
|
1517
|
+
"signal",
|
|
1518
|
+
"signal-high",
|
|
1519
|
+
"signal-low",
|
|
1520
|
+
"signal-medium",
|
|
1521
|
+
"signal-zero",
|
|
1522
|
+
"signature",
|
|
1523
|
+
"signpost",
|
|
1524
|
+
"signpost-big",
|
|
1525
|
+
"siren",
|
|
1526
|
+
"skip-back",
|
|
1527
|
+
"skip-forward",
|
|
1528
|
+
"skull",
|
|
1529
|
+
"slack",
|
|
1530
|
+
"slash",
|
|
1531
|
+
"slice",
|
|
1532
|
+
"sliders-horizontal",
|
|
1533
|
+
"sliders-vertical",
|
|
1534
|
+
"smartphone",
|
|
1535
|
+
"smartphone-charging",
|
|
1536
|
+
"smartphone-nfc",
|
|
1537
|
+
"smile",
|
|
1538
|
+
"smile-plus",
|
|
1539
|
+
"snail",
|
|
1540
|
+
"snowflake",
|
|
1541
|
+
"soap-dispenser-droplet",
|
|
1542
|
+
"sofa",
|
|
1543
|
+
"solar-panel",
|
|
1544
|
+
"soup",
|
|
1545
|
+
"space",
|
|
1546
|
+
"spade",
|
|
1547
|
+
"sparkle",
|
|
1548
|
+
"sparkles",
|
|
1549
|
+
"speaker",
|
|
1550
|
+
"speech",
|
|
1551
|
+
"spell-check",
|
|
1552
|
+
"spell-check-2",
|
|
1553
|
+
"spline",
|
|
1554
|
+
"spline-pointer",
|
|
1555
|
+
"split",
|
|
1556
|
+
"spool",
|
|
1557
|
+
"spotlight",
|
|
1558
|
+
"spray-can",
|
|
1559
|
+
"sprout",
|
|
1560
|
+
"square",
|
|
1561
|
+
"square-activity",
|
|
1562
|
+
"square-arrow-down",
|
|
1563
|
+
"square-arrow-down-left",
|
|
1564
|
+
"square-arrow-down-right",
|
|
1565
|
+
"square-arrow-left",
|
|
1566
|
+
"square-arrow-out-down-left",
|
|
1567
|
+
"square-arrow-out-down-right",
|
|
1568
|
+
"square-arrow-out-up-left",
|
|
1569
|
+
"square-arrow-out-up-right",
|
|
1570
|
+
"square-arrow-right",
|
|
1571
|
+
"square-arrow-up",
|
|
1572
|
+
"square-arrow-up-left",
|
|
1573
|
+
"square-arrow-up-right",
|
|
1574
|
+
"square-asterisk",
|
|
1575
|
+
"square-bottom-dashed-scissors",
|
|
1576
|
+
"square-chart-gantt",
|
|
1577
|
+
"square-check",
|
|
1578
|
+
"square-check-big",
|
|
1579
|
+
"square-chevron-down",
|
|
1580
|
+
"square-chevron-left",
|
|
1581
|
+
"square-chevron-right",
|
|
1582
|
+
"square-chevron-up",
|
|
1583
|
+
"square-code",
|
|
1584
|
+
"square-dashed",
|
|
1585
|
+
"square-dashed-bottom",
|
|
1586
|
+
"square-dashed-bottom-code",
|
|
1587
|
+
"square-dashed-kanban",
|
|
1588
|
+
"square-dashed-mouse-pointer",
|
|
1589
|
+
"square-dashed-top-solid",
|
|
1590
|
+
"square-divide",
|
|
1591
|
+
"square-dot",
|
|
1592
|
+
"square-equal",
|
|
1593
|
+
"square-function",
|
|
1594
|
+
"square-kanban",
|
|
1595
|
+
"square-library",
|
|
1596
|
+
"square-m",
|
|
1597
|
+
"square-menu",
|
|
1598
|
+
"square-minus",
|
|
1599
|
+
"square-mouse-pointer",
|
|
1600
|
+
"square-parking",
|
|
1601
|
+
"square-parking-off",
|
|
1602
|
+
"square-pause",
|
|
1603
|
+
"square-pen",
|
|
1604
|
+
"square-percent",
|
|
1605
|
+
"square-pi",
|
|
1606
|
+
"square-pilcrow",
|
|
1607
|
+
"square-play",
|
|
1608
|
+
"square-plus",
|
|
1609
|
+
"square-power",
|
|
1610
|
+
"square-radical",
|
|
1611
|
+
"square-round-corner",
|
|
1612
|
+
"square-scissors",
|
|
1613
|
+
"square-sigma",
|
|
1614
|
+
"square-slash",
|
|
1615
|
+
"square-split-horizontal",
|
|
1616
|
+
"square-split-vertical",
|
|
1617
|
+
"square-square",
|
|
1618
|
+
"square-stack",
|
|
1619
|
+
"square-star",
|
|
1620
|
+
"square-stop",
|
|
1621
|
+
"square-terminal",
|
|
1622
|
+
"square-user",
|
|
1623
|
+
"square-user-round",
|
|
1624
|
+
"square-x",
|
|
1625
|
+
"squares-exclude",
|
|
1626
|
+
"squares-intersect",
|
|
1627
|
+
"squares-subtract",
|
|
1628
|
+
"squares-unite",
|
|
1629
|
+
"squircle",
|
|
1630
|
+
"squircle-dashed",
|
|
1631
|
+
"squirrel",
|
|
1632
|
+
"stamp",
|
|
1633
|
+
"star",
|
|
1634
|
+
"star-half",
|
|
1635
|
+
"star-off",
|
|
1636
|
+
"step-back",
|
|
1637
|
+
"step-forward",
|
|
1638
|
+
"stethoscope",
|
|
1639
|
+
"sticker",
|
|
1640
|
+
"sticky-note",
|
|
1641
|
+
"stone",
|
|
1642
|
+
"store",
|
|
1643
|
+
"stretch-horizontal",
|
|
1644
|
+
"stretch-vertical",
|
|
1645
|
+
"strikethrough",
|
|
1646
|
+
"subscript",
|
|
1647
|
+
"sun",
|
|
1648
|
+
"sun-dim",
|
|
1649
|
+
"sun-medium",
|
|
1650
|
+
"sun-moon",
|
|
1651
|
+
"sun-snow",
|
|
1652
|
+
"sunrise",
|
|
1653
|
+
"sunset",
|
|
1654
|
+
"superscript",
|
|
1655
|
+
"swatch-book",
|
|
1656
|
+
"swiss-franc",
|
|
1657
|
+
"switch-camera",
|
|
1658
|
+
"sword",
|
|
1659
|
+
"swords",
|
|
1660
|
+
"syringe",
|
|
1661
|
+
"table",
|
|
1662
|
+
"table-2",
|
|
1663
|
+
"table-cells-merge",
|
|
1664
|
+
"table-cells-split",
|
|
1665
|
+
"table-columns-split",
|
|
1666
|
+
"table-of-contents",
|
|
1667
|
+
"table-properties",
|
|
1668
|
+
"table-rows-split",
|
|
1669
|
+
"tablet",
|
|
1670
|
+
"tablet-smartphone",
|
|
1671
|
+
"tablets",
|
|
1672
|
+
"tag",
|
|
1673
|
+
"tags",
|
|
1674
|
+
"tally-1",
|
|
1675
|
+
"tally-2",
|
|
1676
|
+
"tally-3",
|
|
1677
|
+
"tally-4",
|
|
1678
|
+
"tally-5",
|
|
1679
|
+
"tangent",
|
|
1680
|
+
"target",
|
|
1681
|
+
"telescope",
|
|
1682
|
+
"tent",
|
|
1683
|
+
"tent-tree",
|
|
1684
|
+
"terminal",
|
|
1685
|
+
"test-tube",
|
|
1686
|
+
"test-tube-diagonal",
|
|
1687
|
+
"test-tubes",
|
|
1688
|
+
"text-align-center",
|
|
1689
|
+
"text-align-end",
|
|
1690
|
+
"text-align-justify",
|
|
1691
|
+
"text-align-start",
|
|
1692
|
+
"text-cursor",
|
|
1693
|
+
"text-cursor-input",
|
|
1694
|
+
"text-initial",
|
|
1695
|
+
"text-quote",
|
|
1696
|
+
"text-search",
|
|
1697
|
+
"text-select",
|
|
1698
|
+
"text-wrap",
|
|
1699
|
+
"theater",
|
|
1700
|
+
"thermometer",
|
|
1701
|
+
"thermometer-snowflake",
|
|
1702
|
+
"thermometer-sun",
|
|
1703
|
+
"thumbs-down",
|
|
1704
|
+
"thumbs-up",
|
|
1705
|
+
"ticket",
|
|
1706
|
+
"ticket-check",
|
|
1707
|
+
"ticket-minus",
|
|
1708
|
+
"ticket-percent",
|
|
1709
|
+
"ticket-plus",
|
|
1710
|
+
"ticket-slash",
|
|
1711
|
+
"ticket-x",
|
|
1712
|
+
"tickets",
|
|
1713
|
+
"tickets-plane",
|
|
1714
|
+
"timer",
|
|
1715
|
+
"timer-off",
|
|
1716
|
+
"timer-reset",
|
|
1717
|
+
"toggle-left",
|
|
1718
|
+
"toggle-right",
|
|
1719
|
+
"toilet",
|
|
1720
|
+
"tool-case",
|
|
1721
|
+
"toolbox",
|
|
1722
|
+
"tornado",
|
|
1723
|
+
"torus",
|
|
1724
|
+
"touchpad",
|
|
1725
|
+
"touchpad-off",
|
|
1726
|
+
"towel-rack",
|
|
1727
|
+
"tower-control",
|
|
1728
|
+
"toy-brick",
|
|
1729
|
+
"tractor",
|
|
1730
|
+
"traffic-cone",
|
|
1731
|
+
"train-front",
|
|
1732
|
+
"train-front-tunnel",
|
|
1733
|
+
"train-track",
|
|
1734
|
+
"tram-front",
|
|
1735
|
+
"transgender",
|
|
1736
|
+
"trash",
|
|
1737
|
+
"trash-2",
|
|
1738
|
+
"tree-deciduous",
|
|
1739
|
+
"tree-palm",
|
|
1740
|
+
"tree-pine",
|
|
1741
|
+
"trees",
|
|
1742
|
+
"trello",
|
|
1743
|
+
"trending-down",
|
|
1744
|
+
"trending-up",
|
|
1745
|
+
"trending-up-down",
|
|
1746
|
+
"triangle",
|
|
1747
|
+
"triangle-alert",
|
|
1748
|
+
"triangle-dashed",
|
|
1749
|
+
"triangle-right",
|
|
1750
|
+
"trophy",
|
|
1751
|
+
"truck",
|
|
1752
|
+
"truck-electric",
|
|
1753
|
+
"turkish-lira",
|
|
1754
|
+
"turntable",
|
|
1755
|
+
"turtle",
|
|
1756
|
+
"tv",
|
|
1757
|
+
"tv-minimal",
|
|
1758
|
+
"tv-minimal-play",
|
|
1759
|
+
"twitch",
|
|
1760
|
+
"twitter",
|
|
1761
|
+
"type",
|
|
1762
|
+
"type-outline",
|
|
1763
|
+
"umbrella",
|
|
1764
|
+
"umbrella-off",
|
|
1765
|
+
"underline",
|
|
1766
|
+
"undo",
|
|
1767
|
+
"undo-2",
|
|
1768
|
+
"undo-dot",
|
|
1769
|
+
"unfold-horizontal",
|
|
1770
|
+
"unfold-vertical",
|
|
1771
|
+
"ungroup",
|
|
1772
|
+
"university",
|
|
1773
|
+
"unlink",
|
|
1774
|
+
"unlink-2",
|
|
1775
|
+
"unplug",
|
|
1776
|
+
"upload",
|
|
1777
|
+
"usb",
|
|
1778
|
+
"user",
|
|
1779
|
+
"user-check",
|
|
1780
|
+
"user-cog",
|
|
1781
|
+
"user-key",
|
|
1782
|
+
"user-lock",
|
|
1783
|
+
"user-minus",
|
|
1784
|
+
"user-pen",
|
|
1785
|
+
"user-plus",
|
|
1786
|
+
"user-round",
|
|
1787
|
+
"user-round-check",
|
|
1788
|
+
"user-round-cog",
|
|
1789
|
+
"user-round-key",
|
|
1790
|
+
"user-round-minus",
|
|
1791
|
+
"user-round-pen",
|
|
1792
|
+
"user-round-plus",
|
|
1793
|
+
"user-round-search",
|
|
1794
|
+
"user-round-x",
|
|
1795
|
+
"user-search",
|
|
1796
|
+
"user-star",
|
|
1797
|
+
"user-x",
|
|
1798
|
+
"users",
|
|
1799
|
+
"users-round",
|
|
1800
|
+
"utensils",
|
|
1801
|
+
"utensils-crossed",
|
|
1802
|
+
"utility-pole",
|
|
1803
|
+
"van",
|
|
1804
|
+
"variable",
|
|
1805
|
+
"vault",
|
|
1806
|
+
"vector-square",
|
|
1807
|
+
"vegan",
|
|
1808
|
+
"venetian-mask",
|
|
1809
|
+
"venus",
|
|
1810
|
+
"venus-and-mars",
|
|
1811
|
+
"vibrate",
|
|
1812
|
+
"vibrate-off",
|
|
1813
|
+
"video",
|
|
1814
|
+
"video-off",
|
|
1815
|
+
"videotape",
|
|
1816
|
+
"view",
|
|
1817
|
+
"voicemail",
|
|
1818
|
+
"volleyball",
|
|
1819
|
+
"volume",
|
|
1820
|
+
"volume-1",
|
|
1821
|
+
"volume-2",
|
|
1822
|
+
"volume-off",
|
|
1823
|
+
"volume-x",
|
|
1824
|
+
"vote",
|
|
1825
|
+
"wallet",
|
|
1826
|
+
"wallet-cards",
|
|
1827
|
+
"wallet-minimal",
|
|
1828
|
+
"wallpaper",
|
|
1829
|
+
"wand",
|
|
1830
|
+
"wand-sparkles",
|
|
1831
|
+
"warehouse",
|
|
1832
|
+
"washing-machine",
|
|
1833
|
+
"watch",
|
|
1834
|
+
"waves",
|
|
1835
|
+
"waves-arrow-down",
|
|
1836
|
+
"waves-arrow-up",
|
|
1837
|
+
"waves-ladder",
|
|
1838
|
+
"waypoints",
|
|
1839
|
+
"webcam",
|
|
1840
|
+
"webhook",
|
|
1841
|
+
"webhook-off",
|
|
1842
|
+
"weight",
|
|
1843
|
+
"weight-tilde",
|
|
1844
|
+
"wheat",
|
|
1845
|
+
"wheat-off",
|
|
1846
|
+
"whole-word",
|
|
1847
|
+
"wifi",
|
|
1848
|
+
"wifi-cog",
|
|
1849
|
+
"wifi-high",
|
|
1850
|
+
"wifi-low",
|
|
1851
|
+
"wifi-off",
|
|
1852
|
+
"wifi-pen",
|
|
1853
|
+
"wifi-sync",
|
|
1854
|
+
"wifi-zero",
|
|
1855
|
+
"wind",
|
|
1856
|
+
"wind-arrow-down",
|
|
1857
|
+
"wine",
|
|
1858
|
+
"wine-off",
|
|
1859
|
+
"workflow",
|
|
1860
|
+
"worm",
|
|
1861
|
+
"wrench",
|
|
1862
|
+
"x",
|
|
1863
|
+
"x-line-top",
|
|
1864
|
+
"youtube",
|
|
1865
|
+
"zap",
|
|
1866
|
+
"zap-off",
|
|
1867
|
+
"zoom-in",
|
|
1868
|
+
"zoom-out",
|
|
1869
|
+
];
|
|
1870
|
+
|
|
1871
|
+
/** All Lucide icons grouped by official category.
|
|
1872
|
+
* Generated from lucide.dev — run `mise run generate-icons` to update. */
|
|
1873
|
+
export const ALL_ICON_CATEGORIES: Record<string, string[]> = {
|
|
1874
|
+
accessibility: [
|
|
1875
|
+
"accessibility",
|
|
1876
|
+
"baby",
|
|
1877
|
+
"badge-info",
|
|
1878
|
+
"badge-question-mark",
|
|
1879
|
+
"circle-question-mark",
|
|
1880
|
+
"closed-caption",
|
|
1881
|
+
"contrast",
|
|
1882
|
+
"ear",
|
|
1883
|
+
"ear-off",
|
|
1884
|
+
"eclipse",
|
|
1885
|
+
"eye",
|
|
1886
|
+
"eye-closed",
|
|
1887
|
+
"eye-off",
|
|
1888
|
+
"glasses",
|
|
1889
|
+
"hand",
|
|
1890
|
+
"info",
|
|
1891
|
+
"life-buoy",
|
|
1892
|
+
"moon",
|
|
1893
|
+
"moon-star",
|
|
1894
|
+
"person-standing",
|
|
1895
|
+
"scan-eye",
|
|
1896
|
+
"scan-search",
|
|
1897
|
+
"speech",
|
|
1898
|
+
"sun",
|
|
1899
|
+
"sun-dim",
|
|
1900
|
+
"sun-medium",
|
|
1901
|
+
"sun-moon",
|
|
1902
|
+
"transgender",
|
|
1903
|
+
"zoom-in",
|
|
1904
|
+
"zoom-out",
|
|
1905
|
+
],
|
|
1906
|
+
account: [
|
|
1907
|
+
"activity",
|
|
1908
|
+
"at-sign",
|
|
1909
|
+
"award",
|
|
1910
|
+
"badge",
|
|
1911
|
+
"badge-alert",
|
|
1912
|
+
"badge-info",
|
|
1913
|
+
"ban",
|
|
1914
|
+
"bell",
|
|
1915
|
+
"bell-dot",
|
|
1916
|
+
"book-user",
|
|
1917
|
+
"bookmark",
|
|
1918
|
+
"bookmark-check",
|
|
1919
|
+
"bookmark-minus",
|
|
1920
|
+
"bookmark-plus",
|
|
1921
|
+
"bookmark-x",
|
|
1922
|
+
"building",
|
|
1923
|
+
"building-2",
|
|
1924
|
+
"cake",
|
|
1925
|
+
"circle-user",
|
|
1926
|
+
"circle-user-round",
|
|
1927
|
+
"cog",
|
|
1928
|
+
"contact",
|
|
1929
|
+
"contact-round",
|
|
1930
|
+
"cookie",
|
|
1931
|
+
"credit-card",
|
|
1932
|
+
"file-user",
|
|
1933
|
+
"fingerprint-pattern",
|
|
1934
|
+
"flag",
|
|
1935
|
+
"flag-off",
|
|
1936
|
+
"frown",
|
|
1937
|
+
"gift",
|
|
1938
|
+
"hand-coins",
|
|
1939
|
+
"handshake",
|
|
1940
|
+
"hat-glasses",
|
|
1941
|
+
"heart-handshake",
|
|
1942
|
+
"heart-minus",
|
|
1943
|
+
"heart-plus",
|
|
1944
|
+
"id-card",
|
|
1945
|
+
"id-card-lanyard",
|
|
1946
|
+
"inbox",
|
|
1947
|
+
"key",
|
|
1948
|
+
"key-round",
|
|
1949
|
+
"key-square",
|
|
1950
|
+
"link",
|
|
1951
|
+
"link-2",
|
|
1952
|
+
"log-in",
|
|
1953
|
+
"log-out",
|
|
1954
|
+
"mail",
|
|
1955
|
+
"map-pin",
|
|
1956
|
+
"map-pin-check",
|
|
1957
|
+
"map-pin-check-inside",
|
|
1958
|
+
"map-pin-house",
|
|
1959
|
+
"map-pin-minus",
|
|
1960
|
+
"map-pin-minus-inside",
|
|
1961
|
+
"map-pin-pen",
|
|
1962
|
+
"map-pin-plus",
|
|
1963
|
+
"map-pin-plus-inside",
|
|
1964
|
+
"map-pin-x",
|
|
1965
|
+
"map-pin-x-inside",
|
|
1966
|
+
"map-pinned",
|
|
1967
|
+
"menu",
|
|
1968
|
+
"message-circle-check",
|
|
1969
|
+
"message-circle-x",
|
|
1970
|
+
"notebook-tabs",
|
|
1971
|
+
"pin",
|
|
1972
|
+
"rotate-ccw-key",
|
|
1973
|
+
"scan-eye",
|
|
1974
|
+
"scan-face",
|
|
1975
|
+
"scan-qr-code",
|
|
1976
|
+
"settings",
|
|
1977
|
+
"settings-2",
|
|
1978
|
+
"share",
|
|
1979
|
+
"share-2",
|
|
1980
|
+
"shield",
|
|
1981
|
+
"shield-alert",
|
|
1982
|
+
"shield-ban",
|
|
1983
|
+
"shield-check",
|
|
1984
|
+
"shield-ellipsis",
|
|
1985
|
+
"shield-half",
|
|
1986
|
+
"shield-minus",
|
|
1987
|
+
"shield-off",
|
|
1988
|
+
"shield-plus",
|
|
1989
|
+
"shield-question-mark",
|
|
1990
|
+
"shield-user",
|
|
1991
|
+
"shield-x",
|
|
1992
|
+
"slack",
|
|
1993
|
+
"sliders-horizontal",
|
|
1994
|
+
"sliders-vertical",
|
|
1995
|
+
"smile",
|
|
1996
|
+
"square-user",
|
|
1997
|
+
"square-user-round",
|
|
1998
|
+
"star",
|
|
1999
|
+
"tag",
|
|
2000
|
+
"tags",
|
|
2001
|
+
"thumbs-down",
|
|
2002
|
+
"thumbs-up",
|
|
2003
|
+
"ticket",
|
|
2004
|
+
"tickets",
|
|
2005
|
+
"toggle-left",
|
|
2006
|
+
"toggle-right",
|
|
2007
|
+
"trello",
|
|
2008
|
+
"twitch",
|
|
2009
|
+
"twitter",
|
|
2010
|
+
"user",
|
|
2011
|
+
"user-check",
|
|
2012
|
+
"user-cog",
|
|
2013
|
+
"user-key",
|
|
2014
|
+
"user-lock",
|
|
2015
|
+
"user-minus",
|
|
2016
|
+
"user-pen",
|
|
2017
|
+
"user-plus",
|
|
2018
|
+
"user-round",
|
|
2019
|
+
"user-round-check",
|
|
2020
|
+
"user-round-cog",
|
|
2021
|
+
"user-round-key",
|
|
2022
|
+
"user-round-minus",
|
|
2023
|
+
"user-round-pen",
|
|
2024
|
+
"user-round-plus",
|
|
2025
|
+
"user-round-search",
|
|
2026
|
+
"user-round-x",
|
|
2027
|
+
"user-search",
|
|
2028
|
+
"user-star",
|
|
2029
|
+
"user-x",
|
|
2030
|
+
"users",
|
|
2031
|
+
"users-round",
|
|
2032
|
+
"venetian-mask",
|
|
2033
|
+
"vibrate",
|
|
2034
|
+
"vibrate-off",
|
|
2035
|
+
"wallet",
|
|
2036
|
+
"wallet-cards",
|
|
2037
|
+
"wallet-minimal",
|
|
2038
|
+
"wallpaper",
|
|
2039
|
+
"waypoints",
|
|
2040
|
+
"webhook",
|
|
2041
|
+
"webhook-off",
|
|
2042
|
+
"wrench",
|
|
2043
|
+
],
|
|
2044
|
+
animals: [
|
|
2045
|
+
"bird",
|
|
2046
|
+
"birdhouse",
|
|
2047
|
+
"bone",
|
|
2048
|
+
"bug",
|
|
2049
|
+
"bug-off",
|
|
2050
|
+
"bug-play",
|
|
2051
|
+
"cat",
|
|
2052
|
+
"dog",
|
|
2053
|
+
"egg",
|
|
2054
|
+
"fish",
|
|
2055
|
+
"fish-off",
|
|
2056
|
+
"fish-symbol",
|
|
2057
|
+
"origami",
|
|
2058
|
+
"panda",
|
|
2059
|
+
"paw-print",
|
|
2060
|
+
"rabbit",
|
|
2061
|
+
"rat",
|
|
2062
|
+
"shell",
|
|
2063
|
+
"shrimp",
|
|
2064
|
+
"snail",
|
|
2065
|
+
"squirrel",
|
|
2066
|
+
"turtle",
|
|
2067
|
+
"worm",
|
|
2068
|
+
],
|
|
2069
|
+
arrows: [
|
|
2070
|
+
"arrow-big-down",
|
|
2071
|
+
"arrow-big-down-dash",
|
|
2072
|
+
"arrow-big-left",
|
|
2073
|
+
"arrow-big-left-dash",
|
|
2074
|
+
"arrow-big-right",
|
|
2075
|
+
"arrow-big-right-dash",
|
|
2076
|
+
"arrow-big-up",
|
|
2077
|
+
"arrow-big-up-dash",
|
|
2078
|
+
"arrow-down",
|
|
2079
|
+
"arrow-down-0-1",
|
|
2080
|
+
"arrow-down-1-0",
|
|
2081
|
+
"arrow-down-a-z",
|
|
2082
|
+
"arrow-down-from-line",
|
|
2083
|
+
"arrow-down-left",
|
|
2084
|
+
"arrow-down-narrow-wide",
|
|
2085
|
+
"arrow-down-right",
|
|
2086
|
+
"arrow-down-to-dot",
|
|
2087
|
+
"arrow-down-to-line",
|
|
2088
|
+
"arrow-down-up",
|
|
2089
|
+
"arrow-down-wide-narrow",
|
|
2090
|
+
"arrow-down-z-a",
|
|
2091
|
+
"arrow-left",
|
|
2092
|
+
"arrow-left-from-line",
|
|
2093
|
+
"arrow-left-right",
|
|
2094
|
+
"arrow-left-to-line",
|
|
2095
|
+
"arrow-right",
|
|
2096
|
+
"arrow-right-from-line",
|
|
2097
|
+
"arrow-right-left",
|
|
2098
|
+
"arrow-right-to-line",
|
|
2099
|
+
"arrow-up",
|
|
2100
|
+
"arrow-up-0-1",
|
|
2101
|
+
"arrow-up-1-0",
|
|
2102
|
+
"arrow-up-a-z",
|
|
2103
|
+
"arrow-up-down",
|
|
2104
|
+
"arrow-up-from-dot",
|
|
2105
|
+
"arrow-up-from-line",
|
|
2106
|
+
"arrow-up-left",
|
|
2107
|
+
"arrow-up-narrow-wide",
|
|
2108
|
+
"arrow-up-right",
|
|
2109
|
+
"arrow-up-to-line",
|
|
2110
|
+
"arrow-up-wide-narrow",
|
|
2111
|
+
"arrow-up-z-a",
|
|
2112
|
+
"arrows-up-from-line",
|
|
2113
|
+
"calendar-sync",
|
|
2114
|
+
"chevron-down",
|
|
2115
|
+
"chevron-first",
|
|
2116
|
+
"chevron-last",
|
|
2117
|
+
"chevron-left",
|
|
2118
|
+
"chevron-right",
|
|
2119
|
+
"chevron-up",
|
|
2120
|
+
"chevrons-down",
|
|
2121
|
+
"chevrons-down-up",
|
|
2122
|
+
"chevrons-left",
|
|
2123
|
+
"chevrons-left-right",
|
|
2124
|
+
"chevrons-right",
|
|
2125
|
+
"chevrons-right-left",
|
|
2126
|
+
"chevrons-up",
|
|
2127
|
+
"chevrons-up-down",
|
|
2128
|
+
"circle-arrow-down",
|
|
2129
|
+
"circle-arrow-left",
|
|
2130
|
+
"circle-arrow-out-down-left",
|
|
2131
|
+
"circle-arrow-out-down-right",
|
|
2132
|
+
"circle-arrow-out-up-left",
|
|
2133
|
+
"circle-arrow-out-up-right",
|
|
2134
|
+
"circle-arrow-right",
|
|
2135
|
+
"circle-arrow-up",
|
|
2136
|
+
"circle-chevron-down",
|
|
2137
|
+
"circle-chevron-left",
|
|
2138
|
+
"circle-chevron-right",
|
|
2139
|
+
"circle-chevron-up",
|
|
2140
|
+
"circle-fading-arrow-up",
|
|
2141
|
+
"clipboard-copy",
|
|
2142
|
+
"clipboard-paste",
|
|
2143
|
+
"cloud-backup",
|
|
2144
|
+
"cloud-download",
|
|
2145
|
+
"cloud-sync",
|
|
2146
|
+
"cloud-upload",
|
|
2147
|
+
"corner-down-left",
|
|
2148
|
+
"corner-down-right",
|
|
2149
|
+
"corner-left-down",
|
|
2150
|
+
"corner-left-up",
|
|
2151
|
+
"corner-right-down",
|
|
2152
|
+
"corner-right-up",
|
|
2153
|
+
"corner-up-left",
|
|
2154
|
+
"corner-up-right",
|
|
2155
|
+
"database-backup",
|
|
2156
|
+
"decimals-arrow-left",
|
|
2157
|
+
"decimals-arrow-right",
|
|
2158
|
+
"delete",
|
|
2159
|
+
"download",
|
|
2160
|
+
"expand",
|
|
2161
|
+
"external-link",
|
|
2162
|
+
"fast-forward",
|
|
2163
|
+
"file-down",
|
|
2164
|
+
"file-input",
|
|
2165
|
+
"file-output",
|
|
2166
|
+
"file-up",
|
|
2167
|
+
"fold-horizontal",
|
|
2168
|
+
"fold-vertical",
|
|
2169
|
+
"folder-down",
|
|
2170
|
+
"folder-input",
|
|
2171
|
+
"folder-output",
|
|
2172
|
+
"folder-sync",
|
|
2173
|
+
"folder-up",
|
|
2174
|
+
"git-compare-arrows",
|
|
2175
|
+
"git-pull-request-arrow",
|
|
2176
|
+
"git-pull-request-create-arrow",
|
|
2177
|
+
"hard-drive-download",
|
|
2178
|
+
"hard-drive-upload",
|
|
2179
|
+
"history",
|
|
2180
|
+
"import",
|
|
2181
|
+
"iteration-ccw",
|
|
2182
|
+
"iteration-cw",
|
|
2183
|
+
"lasso-select",
|
|
2184
|
+
"list-chevrons-down-up",
|
|
2185
|
+
"list-chevrons-up-down",
|
|
2186
|
+
"log-in",
|
|
2187
|
+
"log-out",
|
|
2188
|
+
"maximize-2",
|
|
2189
|
+
"merge",
|
|
2190
|
+
"milestone",
|
|
2191
|
+
"minimize-2",
|
|
2192
|
+
"mouse-pointer",
|
|
2193
|
+
"mouse-pointer-2",
|
|
2194
|
+
"mouse-pointer-2-off",
|
|
2195
|
+
"mouse-pointer-ban",
|
|
2196
|
+
"mouse-pointer-click",
|
|
2197
|
+
"move",
|
|
2198
|
+
"move-diagonal",
|
|
2199
|
+
"move-diagonal-2",
|
|
2200
|
+
"move-down",
|
|
2201
|
+
"move-down-left",
|
|
2202
|
+
"move-down-right",
|
|
2203
|
+
"move-horizontal",
|
|
2204
|
+
"move-left",
|
|
2205
|
+
"move-right",
|
|
2206
|
+
"move-up",
|
|
2207
|
+
"move-up-left",
|
|
2208
|
+
"move-up-right",
|
|
2209
|
+
"move-vertical",
|
|
2210
|
+
"panel-bottom-close",
|
|
2211
|
+
"panel-bottom-open",
|
|
2212
|
+
"panel-left-close",
|
|
2213
|
+
"panel-left-open",
|
|
2214
|
+
"panel-right-close",
|
|
2215
|
+
"panel-right-open",
|
|
2216
|
+
"panel-top-close",
|
|
2217
|
+
"panel-top-open",
|
|
2218
|
+
"phone-forwarded",
|
|
2219
|
+
"phone-incoming",
|
|
2220
|
+
"phone-outgoing",
|
|
2221
|
+
"play",
|
|
2222
|
+
"redo",
|
|
2223
|
+
"redo-2",
|
|
2224
|
+
"redo-dot",
|
|
2225
|
+
"refresh-ccw",
|
|
2226
|
+
"refresh-ccw-dot",
|
|
2227
|
+
"refresh-cw",
|
|
2228
|
+
"refresh-cw-off",
|
|
2229
|
+
"repeat",
|
|
2230
|
+
"repeat-2",
|
|
2231
|
+
"rewind",
|
|
2232
|
+
"rotate-ccw",
|
|
2233
|
+
"rotate-ccw-square",
|
|
2234
|
+
"rotate-cw",
|
|
2235
|
+
"rotate-cw-square",
|
|
2236
|
+
"separator-horizontal",
|
|
2237
|
+
"separator-vertical",
|
|
2238
|
+
"shrink",
|
|
2239
|
+
"shuffle",
|
|
2240
|
+
"signpost",
|
|
2241
|
+
"signpost-big",
|
|
2242
|
+
"skip-back",
|
|
2243
|
+
"skip-forward",
|
|
2244
|
+
"spline-pointer",
|
|
2245
|
+
"split",
|
|
2246
|
+
"square-arrow-down",
|
|
2247
|
+
"square-arrow-down-left",
|
|
2248
|
+
"square-arrow-down-right",
|
|
2249
|
+
"square-arrow-left",
|
|
2250
|
+
"square-arrow-out-down-left",
|
|
2251
|
+
"square-arrow-out-down-right",
|
|
2252
|
+
"square-arrow-out-up-left",
|
|
2253
|
+
"square-arrow-out-up-right",
|
|
2254
|
+
"square-arrow-right",
|
|
2255
|
+
"square-arrow-up",
|
|
2256
|
+
"square-arrow-up-left",
|
|
2257
|
+
"square-arrow-up-right",
|
|
2258
|
+
"square-chevron-down",
|
|
2259
|
+
"square-chevron-left",
|
|
2260
|
+
"square-chevron-right",
|
|
2261
|
+
"square-chevron-up",
|
|
2262
|
+
"square-dashed-mouse-pointer",
|
|
2263
|
+
"square-mouse-pointer",
|
|
2264
|
+
"square-play",
|
|
2265
|
+
"step-back",
|
|
2266
|
+
"step-forward",
|
|
2267
|
+
"sunrise",
|
|
2268
|
+
"sunset",
|
|
2269
|
+
"text-wrap",
|
|
2270
|
+
"trending-down",
|
|
2271
|
+
"trending-up",
|
|
2272
|
+
"trending-up-down",
|
|
2273
|
+
"undo",
|
|
2274
|
+
"undo-2",
|
|
2275
|
+
"undo-dot",
|
|
2276
|
+
"unfold-horizontal",
|
|
2277
|
+
"unfold-vertical",
|
|
2278
|
+
"upload",
|
|
2279
|
+
],
|
|
2280
|
+
brands: [
|
|
2281
|
+
"airplay",
|
|
2282
|
+
"bitcoin",
|
|
2283
|
+
"chromium",
|
|
2284
|
+
"codepen",
|
|
2285
|
+
"codesandbox",
|
|
2286
|
+
"dribbble",
|
|
2287
|
+
"facebook",
|
|
2288
|
+
"figma",
|
|
2289
|
+
"framer",
|
|
2290
|
+
"github",
|
|
2291
|
+
"gitlab",
|
|
2292
|
+
"hexagon",
|
|
2293
|
+
"instagram",
|
|
2294
|
+
"linkedin",
|
|
2295
|
+
"pocket",
|
|
2296
|
+
"slack",
|
|
2297
|
+
"target",
|
|
2298
|
+
"trello",
|
|
2299
|
+
"twitch",
|
|
2300
|
+
"twitter",
|
|
2301
|
+
"youtube",
|
|
2302
|
+
],
|
|
2303
|
+
buildings: [
|
|
2304
|
+
"anvil",
|
|
2305
|
+
"brick-wall",
|
|
2306
|
+
"building",
|
|
2307
|
+
"building-2",
|
|
2308
|
+
"castle",
|
|
2309
|
+
"church",
|
|
2310
|
+
"dam",
|
|
2311
|
+
"factory",
|
|
2312
|
+
"fence",
|
|
2313
|
+
"graduation-cap",
|
|
2314
|
+
"hospital",
|
|
2315
|
+
"hotel",
|
|
2316
|
+
"house",
|
|
2317
|
+
"house-heart",
|
|
2318
|
+
"house-plug",
|
|
2319
|
+
"house-plus",
|
|
2320
|
+
"house-wifi",
|
|
2321
|
+
"landmark",
|
|
2322
|
+
"school",
|
|
2323
|
+
"store",
|
|
2324
|
+
"theater",
|
|
2325
|
+
"university",
|
|
2326
|
+
"utility-pole",
|
|
2327
|
+
"warehouse",
|
|
2328
|
+
],
|
|
2329
|
+
charts: [
|
|
2330
|
+
"chart-area",
|
|
2331
|
+
"chart-bar",
|
|
2332
|
+
"chart-bar-big",
|
|
2333
|
+
"chart-bar-decreasing",
|
|
2334
|
+
"chart-bar-increasing",
|
|
2335
|
+
"chart-bar-stacked",
|
|
2336
|
+
"chart-candlestick",
|
|
2337
|
+
"chart-column",
|
|
2338
|
+
"chart-column-big",
|
|
2339
|
+
"chart-column-decreasing",
|
|
2340
|
+
"chart-column-increasing",
|
|
2341
|
+
"chart-column-stacked",
|
|
2342
|
+
"chart-gantt",
|
|
2343
|
+
"chart-line",
|
|
2344
|
+
"chart-network",
|
|
2345
|
+
"chart-no-axes-column",
|
|
2346
|
+
"chart-no-axes-column-decreasing",
|
|
2347
|
+
"chart-no-axes-column-increasing",
|
|
2348
|
+
"chart-no-axes-combined",
|
|
2349
|
+
"chart-no-axes-gantt",
|
|
2350
|
+
"chart-pie",
|
|
2351
|
+
"chart-scatter",
|
|
2352
|
+
"chart-spline",
|
|
2353
|
+
"folder-kanban",
|
|
2354
|
+
"kanban",
|
|
2355
|
+
"square-chart-gantt",
|
|
2356
|
+
"square-dashed-kanban",
|
|
2357
|
+
"square-kanban",
|
|
2358
|
+
"trending-down",
|
|
2359
|
+
"trending-up",
|
|
2360
|
+
"trending-up-down",
|
|
2361
|
+
],
|
|
2362
|
+
communication: [
|
|
2363
|
+
"antenna",
|
|
2364
|
+
"audio-lines",
|
|
2365
|
+
"audio-waveform",
|
|
2366
|
+
"book-user",
|
|
2367
|
+
"camera",
|
|
2368
|
+
"camera-off",
|
|
2369
|
+
"card-sim",
|
|
2370
|
+
"cassette-tape",
|
|
2371
|
+
"cctv",
|
|
2372
|
+
"chevrons-left-right-ellipsis",
|
|
2373
|
+
"circle-fading-plus",
|
|
2374
|
+
"contact",
|
|
2375
|
+
"contact-round",
|
|
2376
|
+
"ethernet-port",
|
|
2377
|
+
"hand-fist",
|
|
2378
|
+
"handshake",
|
|
2379
|
+
"headphone-off",
|
|
2380
|
+
"lectern",
|
|
2381
|
+
"mic",
|
|
2382
|
+
"mic-off",
|
|
2383
|
+
"newspaper",
|
|
2384
|
+
"nfc",
|
|
2385
|
+
"notebook",
|
|
2386
|
+
"notebook-tabs",
|
|
2387
|
+
"phone",
|
|
2388
|
+
"phone-call",
|
|
2389
|
+
"phone-forwarded",
|
|
2390
|
+
"phone-incoming",
|
|
2391
|
+
"phone-missed",
|
|
2392
|
+
"phone-off",
|
|
2393
|
+
"phone-outgoing",
|
|
2394
|
+
"presentation",
|
|
2395
|
+
"projector",
|
|
2396
|
+
"radar",
|
|
2397
|
+
"screen-share",
|
|
2398
|
+
"screen-share-off",
|
|
2399
|
+
"send",
|
|
2400
|
+
"send-horizontal",
|
|
2401
|
+
"smartphone-nfc",
|
|
2402
|
+
"smile-plus",
|
|
2403
|
+
"speech",
|
|
2404
|
+
"spool",
|
|
2405
|
+
"spotlight",
|
|
2406
|
+
"switch-camera",
|
|
2407
|
+
"tv",
|
|
2408
|
+
"video",
|
|
2409
|
+
"video-off",
|
|
2410
|
+
"videotape",
|
|
2411
|
+
"volume",
|
|
2412
|
+
"volume-1",
|
|
2413
|
+
"volume-2",
|
|
2414
|
+
"volume-off",
|
|
2415
|
+
"volume-x",
|
|
2416
|
+
"webcam",
|
|
2417
|
+
],
|
|
2418
|
+
connectivity: [
|
|
2419
|
+
"airplay",
|
|
2420
|
+
"battery",
|
|
2421
|
+
"battery-charging",
|
|
2422
|
+
"battery-full",
|
|
2423
|
+
"battery-low",
|
|
2424
|
+
"battery-medium",
|
|
2425
|
+
"battery-warning",
|
|
2426
|
+
"bluetooth",
|
|
2427
|
+
"bluetooth-connected",
|
|
2428
|
+
"bluetooth-off",
|
|
2429
|
+
"bluetooth-searching",
|
|
2430
|
+
"book-user",
|
|
2431
|
+
"brick-wall-fire",
|
|
2432
|
+
"brick-wall-shield",
|
|
2433
|
+
"cable",
|
|
2434
|
+
"card-sim",
|
|
2435
|
+
"cassette-tape",
|
|
2436
|
+
"cast",
|
|
2437
|
+
"cctv",
|
|
2438
|
+
"circle-power",
|
|
2439
|
+
"cloud-off",
|
|
2440
|
+
"contact",
|
|
2441
|
+
"contact-round",
|
|
2442
|
+
"globe-off",
|
|
2443
|
+
"globe-x",
|
|
2444
|
+
"headphone-off",
|
|
2445
|
+
"headphones",
|
|
2446
|
+
"headset",
|
|
2447
|
+
"house-wifi",
|
|
2448
|
+
"mic",
|
|
2449
|
+
"mic-off",
|
|
2450
|
+
"monitor",
|
|
2451
|
+
"monitor-check",
|
|
2452
|
+
"monitor-cloud",
|
|
2453
|
+
"monitor-cog",
|
|
2454
|
+
"monitor-dot",
|
|
2455
|
+
"monitor-down",
|
|
2456
|
+
"monitor-off",
|
|
2457
|
+
"monitor-pause",
|
|
2458
|
+
"monitor-play",
|
|
2459
|
+
"monitor-smartphone",
|
|
2460
|
+
"monitor-speaker",
|
|
2461
|
+
"monitor-stop",
|
|
2462
|
+
"monitor-up",
|
|
2463
|
+
"monitor-x",
|
|
2464
|
+
"phone",
|
|
2465
|
+
"phone-call",
|
|
2466
|
+
"phone-forwarded",
|
|
2467
|
+
"phone-incoming",
|
|
2468
|
+
"phone-missed",
|
|
2469
|
+
"phone-off",
|
|
2470
|
+
"phone-outgoing",
|
|
2471
|
+
"power",
|
|
2472
|
+
"power-off",
|
|
2473
|
+
"rectangle-goggles",
|
|
2474
|
+
"router",
|
|
2475
|
+
"satellite",
|
|
2476
|
+
"satellite-dish",
|
|
2477
|
+
"screen-share",
|
|
2478
|
+
"screen-share-off",
|
|
2479
|
+
"send",
|
|
2480
|
+
"send-horizontal",
|
|
2481
|
+
"signal",
|
|
2482
|
+
"signal-high",
|
|
2483
|
+
"signal-low",
|
|
2484
|
+
"signal-medium",
|
|
2485
|
+
"signal-zero",
|
|
2486
|
+
"smartphone",
|
|
2487
|
+
"smartphone-charging",
|
|
2488
|
+
"square-power",
|
|
2489
|
+
"vibrate",
|
|
2490
|
+
"vibrate-off",
|
|
2491
|
+
"video",
|
|
2492
|
+
"video-off",
|
|
2493
|
+
"videotape",
|
|
2494
|
+
"voicemail",
|
|
2495
|
+
"volume",
|
|
2496
|
+
"volume-1",
|
|
2497
|
+
"volume-2",
|
|
2498
|
+
"volume-off",
|
|
2499
|
+
"volume-x",
|
|
2500
|
+
"webcam",
|
|
2501
|
+
"wifi",
|
|
2502
|
+
"wifi-cog",
|
|
2503
|
+
"wifi-high",
|
|
2504
|
+
"wifi-low",
|
|
2505
|
+
"wifi-off",
|
|
2506
|
+
"wifi-pen",
|
|
2507
|
+
"wifi-sync",
|
|
2508
|
+
"wifi-zero",
|
|
2509
|
+
"zap",
|
|
2510
|
+
"zap-off",
|
|
2511
|
+
],
|
|
2512
|
+
cursors: [
|
|
2513
|
+
"circle-plus",
|
|
2514
|
+
"hand",
|
|
2515
|
+
"hand-grab",
|
|
2516
|
+
"lasso",
|
|
2517
|
+
"lasso-select",
|
|
2518
|
+
"loader",
|
|
2519
|
+
"loader-circle",
|
|
2520
|
+
"loader-pinwheel",
|
|
2521
|
+
"mouse-pointer",
|
|
2522
|
+
"mouse-pointer-2",
|
|
2523
|
+
"mouse-pointer-2-off",
|
|
2524
|
+
"mouse-pointer-ban",
|
|
2525
|
+
"mouse-pointer-click",
|
|
2526
|
+
"move",
|
|
2527
|
+
"move-diagonal",
|
|
2528
|
+
"move-diagonal-2",
|
|
2529
|
+
"move-horizontal",
|
|
2530
|
+
"move-vertical",
|
|
2531
|
+
"pen-tool",
|
|
2532
|
+
"pencil",
|
|
2533
|
+
"pencil-off",
|
|
2534
|
+
"plus",
|
|
2535
|
+
"pointer",
|
|
2536
|
+
"pointer-off",
|
|
2537
|
+
"sparkles",
|
|
2538
|
+
"spline-pointer",
|
|
2539
|
+
"square-dashed-mouse-pointer",
|
|
2540
|
+
"square-mouse-pointer",
|
|
2541
|
+
"stamp",
|
|
2542
|
+
"text-cursor",
|
|
2543
|
+
"text-select",
|
|
2544
|
+
"wand",
|
|
2545
|
+
"wand-sparkles",
|
|
2546
|
+
],
|
|
2547
|
+
design: [
|
|
2548
|
+
"a-arrow-down",
|
|
2549
|
+
"a-arrow-up",
|
|
2550
|
+
"a-large-small",
|
|
2551
|
+
"app-window",
|
|
2552
|
+
"app-window-mac",
|
|
2553
|
+
"axis-3d",
|
|
2554
|
+
"between-horizontal-end",
|
|
2555
|
+
"between-horizontal-start",
|
|
2556
|
+
"between-vertical-end",
|
|
2557
|
+
"between-vertical-start",
|
|
2558
|
+
"blend",
|
|
2559
|
+
"book-type",
|
|
2560
|
+
"bring-to-front",
|
|
2561
|
+
"brush",
|
|
2562
|
+
"brush-cleaning",
|
|
2563
|
+
"chart-no-axes-gantt",
|
|
2564
|
+
"columns-2",
|
|
2565
|
+
"columns-3",
|
|
2566
|
+
"columns-3-cog",
|
|
2567
|
+
"columns-4",
|
|
2568
|
+
"component",
|
|
2569
|
+
"contrast",
|
|
2570
|
+
"crop",
|
|
2571
|
+
"cylinder",
|
|
2572
|
+
"database-backup",
|
|
2573
|
+
"decimals-arrow-left",
|
|
2574
|
+
"decimals-arrow-right",
|
|
2575
|
+
"diameter",
|
|
2576
|
+
"dock",
|
|
2577
|
+
"drafting-compass",
|
|
2578
|
+
"dribbble",
|
|
2579
|
+
"eclipse",
|
|
2580
|
+
"eye",
|
|
2581
|
+
"eye-closed",
|
|
2582
|
+
"eye-off",
|
|
2583
|
+
"figma",
|
|
2584
|
+
"file-axis-3d",
|
|
2585
|
+
"flip-horizontal-2",
|
|
2586
|
+
"flip-vertical-2",
|
|
2587
|
+
"folder-kanban",
|
|
2588
|
+
"frame",
|
|
2589
|
+
"framer",
|
|
2590
|
+
"fullscreen",
|
|
2591
|
+
"gallery-horizontal",
|
|
2592
|
+
"gallery-horizontal-end",
|
|
2593
|
+
"gallery-thumbnails",
|
|
2594
|
+
"gallery-vertical",
|
|
2595
|
+
"gallery-vertical-end",
|
|
2596
|
+
"grid-2x2",
|
|
2597
|
+
"grid-3x2",
|
|
2598
|
+
"grid-3x3",
|
|
2599
|
+
"hand-grab",
|
|
2600
|
+
"highlighter",
|
|
2601
|
+
"iteration-ccw",
|
|
2602
|
+
"iteration-cw",
|
|
2603
|
+
"kanban",
|
|
2604
|
+
"land-plot",
|
|
2605
|
+
"lasso",
|
|
2606
|
+
"lasso-select",
|
|
2607
|
+
"layers",
|
|
2608
|
+
"layers-2",
|
|
2609
|
+
"layers-plus",
|
|
2610
|
+
"layout-dashboard",
|
|
2611
|
+
"layout-grid",
|
|
2612
|
+
"layout-list",
|
|
2613
|
+
"layout-panel-left",
|
|
2614
|
+
"line-squiggle",
|
|
2615
|
+
"loader",
|
|
2616
|
+
"loader-pinwheel",
|
|
2617
|
+
"magnet",
|
|
2618
|
+
"maximize",
|
|
2619
|
+
"maximize-2",
|
|
2620
|
+
"minimize",
|
|
2621
|
+
"minimize-2",
|
|
2622
|
+
"move-3d",
|
|
2623
|
+
"notebook",
|
|
2624
|
+
"origami",
|
|
2625
|
+
"paint-bucket",
|
|
2626
|
+
"paint-roller",
|
|
2627
|
+
"paintbrush",
|
|
2628
|
+
"paintbrush-vertical",
|
|
2629
|
+
"palette",
|
|
2630
|
+
"panel-top",
|
|
2631
|
+
"panels-top-left",
|
|
2632
|
+
"paperclip",
|
|
2633
|
+
"pen",
|
|
2634
|
+
"pen-line",
|
|
2635
|
+
"pen-off",
|
|
2636
|
+
"pen-tool",
|
|
2637
|
+
"pencil",
|
|
2638
|
+
"pencil-line",
|
|
2639
|
+
"pencil-off",
|
|
2640
|
+
"pencil-ruler",
|
|
2641
|
+
"pipette",
|
|
2642
|
+
"presentation",
|
|
2643
|
+
"proportions",
|
|
2644
|
+
"radius",
|
|
2645
|
+
"ratio",
|
|
2646
|
+
"rectangle-horizontal",
|
|
2647
|
+
"rectangle-vertical",
|
|
2648
|
+
"rotate-3d",
|
|
2649
|
+
"rotate-ccw",
|
|
2650
|
+
"rotate-ccw-square",
|
|
2651
|
+
"rotate-cw",
|
|
2652
|
+
"rotate-cw-square",
|
|
2653
|
+
"rows-2",
|
|
2654
|
+
"rows-3",
|
|
2655
|
+
"rows-4",
|
|
2656
|
+
"ruler",
|
|
2657
|
+
"ruler-dimension-line",
|
|
2658
|
+
"scale-3d",
|
|
2659
|
+
"scaling",
|
|
2660
|
+
"scissors",
|
|
2661
|
+
"scissors-line-dashed",
|
|
2662
|
+
"send-to-back",
|
|
2663
|
+
"slice",
|
|
2664
|
+
"spline",
|
|
2665
|
+
"spline-pointer",
|
|
2666
|
+
"spray-can",
|
|
2667
|
+
"square-bottom-dashed-scissors",
|
|
2668
|
+
"square-chart-gantt",
|
|
2669
|
+
"square-dashed",
|
|
2670
|
+
"square-dashed-kanban",
|
|
2671
|
+
"square-dashed-top-solid",
|
|
2672
|
+
"square-kanban",
|
|
2673
|
+
"square-round-corner",
|
|
2674
|
+
"square-scissors",
|
|
2675
|
+
"squares-exclude",
|
|
2676
|
+
"squares-intersect",
|
|
2677
|
+
"squares-subtract",
|
|
2678
|
+
"squares-unite",
|
|
2679
|
+
"squircle-dashed",
|
|
2680
|
+
"stamp",
|
|
2681
|
+
"swatch-book",
|
|
2682
|
+
"tablet-smartphone",
|
|
2683
|
+
"tangent",
|
|
2684
|
+
"torus",
|
|
2685
|
+
"vector-square",
|
|
2686
|
+
"view",
|
|
2687
|
+
"wand",
|
|
2688
|
+
"wand-sparkles",
|
|
2689
|
+
"zoom-in",
|
|
2690
|
+
"zoom-out",
|
|
2691
|
+
],
|
|
2692
|
+
development: [
|
|
2693
|
+
"ampersand",
|
|
2694
|
+
"ampersands",
|
|
2695
|
+
"app-window",
|
|
2696
|
+
"app-window-mac",
|
|
2697
|
+
"arrow-big-up",
|
|
2698
|
+
"arrow-big-up-dash",
|
|
2699
|
+
"arrow-down-to-line",
|
|
2700
|
+
"arrow-right-to-line",
|
|
2701
|
+
"arrow-up-from-line",
|
|
2702
|
+
"asterisk",
|
|
2703
|
+
"binary",
|
|
2704
|
+
"binoculars",
|
|
2705
|
+
"bitcoin",
|
|
2706
|
+
"blend",
|
|
2707
|
+
"blocks",
|
|
2708
|
+
"book",
|
|
2709
|
+
"book-alert",
|
|
2710
|
+
"book-check",
|
|
2711
|
+
"book-copy",
|
|
2712
|
+
"book-dashed",
|
|
2713
|
+
"book-down",
|
|
2714
|
+
"book-key",
|
|
2715
|
+
"book-lock",
|
|
2716
|
+
"book-marked",
|
|
2717
|
+
"book-minus",
|
|
2718
|
+
"book-open",
|
|
2719
|
+
"book-open-check",
|
|
2720
|
+
"book-open-text",
|
|
2721
|
+
"book-plus",
|
|
2722
|
+
"book-search",
|
|
2723
|
+
"book-up",
|
|
2724
|
+
"book-up-2",
|
|
2725
|
+
"bot",
|
|
2726
|
+
"bot-message-square",
|
|
2727
|
+
"bot-off",
|
|
2728
|
+
"box",
|
|
2729
|
+
"boxes",
|
|
2730
|
+
"braces",
|
|
2731
|
+
"brackets",
|
|
2732
|
+
"brain-circuit",
|
|
2733
|
+
"brain-cog",
|
|
2734
|
+
"bug",
|
|
2735
|
+
"bug-off",
|
|
2736
|
+
"bug-play",
|
|
2737
|
+
"case-lower",
|
|
2738
|
+
"case-upper",
|
|
2739
|
+
"chart-no-axes-gantt",
|
|
2740
|
+
"chevron-right",
|
|
2741
|
+
"circle-arrow-out-up-left",
|
|
2742
|
+
"circle-dashed",
|
|
2743
|
+
"circle-dot",
|
|
2744
|
+
"circle-dot-dashed",
|
|
2745
|
+
"circle-ellipsis",
|
|
2746
|
+
"circle-fading-arrow-up",
|
|
2747
|
+
"circle-plus",
|
|
2748
|
+
"circle-slash",
|
|
2749
|
+
"circle-slash-2",
|
|
2750
|
+
"circle-x",
|
|
2751
|
+
"circuit-board",
|
|
2752
|
+
"cloud-alert",
|
|
2753
|
+
"cloud-check",
|
|
2754
|
+
"cloud-cog",
|
|
2755
|
+
"code",
|
|
2756
|
+
"code-xml",
|
|
2757
|
+
"codepen",
|
|
2758
|
+
"codesandbox",
|
|
2759
|
+
"combine",
|
|
2760
|
+
"command",
|
|
2761
|
+
"component",
|
|
2762
|
+
"computer",
|
|
2763
|
+
"construction",
|
|
2764
|
+
"container",
|
|
2765
|
+
"copy-slash",
|
|
2766
|
+
"corner-down-right",
|
|
2767
|
+
"database",
|
|
2768
|
+
"database-backup",
|
|
2769
|
+
"database-search",
|
|
2770
|
+
"database-zap",
|
|
2771
|
+
"diff",
|
|
2772
|
+
"divide",
|
|
2773
|
+
"dock",
|
|
2774
|
+
"earth-lock",
|
|
2775
|
+
"eclipse",
|
|
2776
|
+
"ellipsis",
|
|
2777
|
+
"equal",
|
|
2778
|
+
"equal-not",
|
|
2779
|
+
"file-braces",
|
|
2780
|
+
"file-braces-corner",
|
|
2781
|
+
"file-code",
|
|
2782
|
+
"file-code-corner",
|
|
2783
|
+
"file-diff",
|
|
2784
|
+
"file-digit",
|
|
2785
|
+
"file-sliders",
|
|
2786
|
+
"file-stack",
|
|
2787
|
+
"file-terminal",
|
|
2788
|
+
"flag-triangle-left",
|
|
2789
|
+
"flag-triangle-right",
|
|
2790
|
+
"folder-code",
|
|
2791
|
+
"folder-dot",
|
|
2792
|
+
"folder-kanban",
|
|
2793
|
+
"folder-open-dot",
|
|
2794
|
+
"folder-root",
|
|
2795
|
+
"form",
|
|
2796
|
+
"gallery-horizontal",
|
|
2797
|
+
"gallery-horizontal-end",
|
|
2798
|
+
"gallery-thumbnails",
|
|
2799
|
+
"gallery-vertical",
|
|
2800
|
+
"gallery-vertical-end",
|
|
2801
|
+
"gem",
|
|
2802
|
+
"git-branch",
|
|
2803
|
+
"git-branch-minus",
|
|
2804
|
+
"git-branch-plus",
|
|
2805
|
+
"git-commit-horizontal",
|
|
2806
|
+
"git-commit-vertical",
|
|
2807
|
+
"git-compare",
|
|
2808
|
+
"git-compare-arrows",
|
|
2809
|
+
"git-fork",
|
|
2810
|
+
"git-graph",
|
|
2811
|
+
"git-merge",
|
|
2812
|
+
"git-merge-conflict",
|
|
2813
|
+
"git-pull-request",
|
|
2814
|
+
"git-pull-request-arrow",
|
|
2815
|
+
"git-pull-request-closed",
|
|
2816
|
+
"git-pull-request-create",
|
|
2817
|
+
"git-pull-request-create-arrow",
|
|
2818
|
+
"git-pull-request-draft",
|
|
2819
|
+
"github",
|
|
2820
|
+
"gitlab",
|
|
2821
|
+
"globe-lock",
|
|
2822
|
+
"hard-drive",
|
|
2823
|
+
"hard-drive-download",
|
|
2824
|
+
"hard-drive-upload",
|
|
2825
|
+
"hexagon",
|
|
2826
|
+
"kanban",
|
|
2827
|
+
"keyboard",
|
|
2828
|
+
"keyboard-off",
|
|
2829
|
+
"library",
|
|
2830
|
+
"library-big",
|
|
2831
|
+
"line-dot-right-horizontal",
|
|
2832
|
+
"list-indent-decrease",
|
|
2833
|
+
"list-indent-increase",
|
|
2834
|
+
"merge",
|
|
2835
|
+
"message-circle-code",
|
|
2836
|
+
"message-square-code",
|
|
2837
|
+
"message-square-diff",
|
|
2838
|
+
"milestone",
|
|
2839
|
+
"minus",
|
|
2840
|
+
"monitor-cloud",
|
|
2841
|
+
"network",
|
|
2842
|
+
"omega",
|
|
2843
|
+
"option",
|
|
2844
|
+
"package",
|
|
2845
|
+
"package-2",
|
|
2846
|
+
"package-check",
|
|
2847
|
+
"package-minus",
|
|
2848
|
+
"package-open",
|
|
2849
|
+
"package-plus",
|
|
2850
|
+
"package-search",
|
|
2851
|
+
"package-x",
|
|
2852
|
+
"panel-top",
|
|
2853
|
+
"panels-top-left",
|
|
2854
|
+
"parentheses",
|
|
2855
|
+
"percent",
|
|
2856
|
+
"pi",
|
|
2857
|
+
"plug",
|
|
2858
|
+
"plug-2",
|
|
2859
|
+
"plus",
|
|
2860
|
+
"puzzle",
|
|
2861
|
+
"qr-code",
|
|
2862
|
+
"radical",
|
|
2863
|
+
"rectangle-circle",
|
|
2864
|
+
"rectangle-ellipsis",
|
|
2865
|
+
"refresh-ccw-dot",
|
|
2866
|
+
"regex",
|
|
2867
|
+
"rocket",
|
|
2868
|
+
"router",
|
|
2869
|
+
"rss",
|
|
2870
|
+
"scroll",
|
|
2871
|
+
"scroll-text",
|
|
2872
|
+
"search-code",
|
|
2873
|
+
"server",
|
|
2874
|
+
"server-cog",
|
|
2875
|
+
"server-crash",
|
|
2876
|
+
"server-off",
|
|
2877
|
+
"shell",
|
|
2878
|
+
"shield",
|
|
2879
|
+
"shield-alert",
|
|
2880
|
+
"shield-ban",
|
|
2881
|
+
"shield-check",
|
|
2882
|
+
"shield-ellipsis",
|
|
2883
|
+
"shield-half",
|
|
2884
|
+
"shield-minus",
|
|
2885
|
+
"shield-off",
|
|
2886
|
+
"shield-plus",
|
|
2887
|
+
"shield-question-mark",
|
|
2888
|
+
"shield-user",
|
|
2889
|
+
"shield-x",
|
|
2890
|
+
"signpost",
|
|
2891
|
+
"signpost-big",
|
|
2892
|
+
"slack",
|
|
2893
|
+
"slash",
|
|
2894
|
+
"spell-check",
|
|
2895
|
+
"spell-check-2",
|
|
2896
|
+
"split",
|
|
2897
|
+
"square-asterisk",
|
|
2898
|
+
"square-bottom-dashed-scissors",
|
|
2899
|
+
"square-chart-gantt",
|
|
2900
|
+
"square-chevron-right",
|
|
2901
|
+
"square-code",
|
|
2902
|
+
"square-dashed-bottom",
|
|
2903
|
+
"square-dashed-bottom-code",
|
|
2904
|
+
"square-dashed-kanban",
|
|
2905
|
+
"square-dashed-mouse-pointer",
|
|
2906
|
+
"square-dashed-top-solid",
|
|
2907
|
+
"square-dot",
|
|
2908
|
+
"square-function",
|
|
2909
|
+
"square-kanban",
|
|
2910
|
+
"square-library",
|
|
2911
|
+
"square-minus",
|
|
2912
|
+
"square-mouse-pointer",
|
|
2913
|
+
"square-pi",
|
|
2914
|
+
"square-plus",
|
|
2915
|
+
"square-radical",
|
|
2916
|
+
"square-round-corner",
|
|
2917
|
+
"square-scissors",
|
|
2918
|
+
"square-slash",
|
|
2919
|
+
"square-stack",
|
|
2920
|
+
"square-terminal",
|
|
2921
|
+
"squircle-dashed",
|
|
2922
|
+
"table-properties",
|
|
2923
|
+
"tablet-smartphone",
|
|
2924
|
+
"telescope",
|
|
2925
|
+
"terminal",
|
|
2926
|
+
"toggle-left",
|
|
2927
|
+
"toggle-right",
|
|
2928
|
+
"tool-case",
|
|
2929
|
+
"toy-brick",
|
|
2930
|
+
"trello",
|
|
2931
|
+
"triangle-alert",
|
|
2932
|
+
"unplug",
|
|
2933
|
+
"variable",
|
|
2934
|
+
"waypoints",
|
|
2935
|
+
"webhook",
|
|
2936
|
+
"webhook-off",
|
|
2937
|
+
"workflow",
|
|
2938
|
+
"wrench",
|
|
2939
|
+
],
|
|
2940
|
+
devices: [
|
|
2941
|
+
"airplay",
|
|
2942
|
+
"alarm-clock",
|
|
2943
|
+
"alarm-clock-check",
|
|
2944
|
+
"alarm-clock-minus",
|
|
2945
|
+
"alarm-clock-off",
|
|
2946
|
+
"alarm-clock-plus",
|
|
2947
|
+
"alarm-smoke",
|
|
2948
|
+
"antenna",
|
|
2949
|
+
"battery",
|
|
2950
|
+
"battery-charging",
|
|
2951
|
+
"battery-full",
|
|
2952
|
+
"battery-low",
|
|
2953
|
+
"battery-medium",
|
|
2954
|
+
"battery-plus",
|
|
2955
|
+
"battery-warning",
|
|
2956
|
+
"bell-electric",
|
|
2957
|
+
"bluetooth",
|
|
2958
|
+
"bluetooth-connected",
|
|
2959
|
+
"bluetooth-off",
|
|
2960
|
+
"bluetooth-searching",
|
|
2961
|
+
"boom-box",
|
|
2962
|
+
"cable",
|
|
2963
|
+
"calculator",
|
|
2964
|
+
"camera",
|
|
2965
|
+
"camera-off",
|
|
2966
|
+
"card-sim",
|
|
2967
|
+
"cassette-tape",
|
|
2968
|
+
"cast",
|
|
2969
|
+
"cctv",
|
|
2970
|
+
"chevrons-left-right-ellipsis",
|
|
2971
|
+
"computer",
|
|
2972
|
+
"cpu",
|
|
2973
|
+
"database",
|
|
2974
|
+
"database-backup",
|
|
2975
|
+
"database-search",
|
|
2976
|
+
"database-zap",
|
|
2977
|
+
"diamond-minus",
|
|
2978
|
+
"diamond-plus",
|
|
2979
|
+
"disc",
|
|
2980
|
+
"disc-2",
|
|
2981
|
+
"disc-3",
|
|
2982
|
+
"disc-album",
|
|
2983
|
+
"drill",
|
|
2984
|
+
"drone",
|
|
2985
|
+
"drum",
|
|
2986
|
+
"earth-lock",
|
|
2987
|
+
"ethernet-port",
|
|
2988
|
+
"fingerprint-pattern",
|
|
2989
|
+
"flashlight",
|
|
2990
|
+
"flashlight-off",
|
|
2991
|
+
"gamepad",
|
|
2992
|
+
"gamepad-2",
|
|
2993
|
+
"gamepad-directional",
|
|
2994
|
+
"globe-lock",
|
|
2995
|
+
"globe-off",
|
|
2996
|
+
"globe-x",
|
|
2997
|
+
"gpu",
|
|
2998
|
+
"hard-drive",
|
|
2999
|
+
"hard-drive-download",
|
|
3000
|
+
"hard-drive-upload",
|
|
3001
|
+
"hd",
|
|
3002
|
+
"hdmi-port",
|
|
3003
|
+
"headphone-off",
|
|
3004
|
+
"headphones",
|
|
3005
|
+
"headset",
|
|
3006
|
+
"heater",
|
|
3007
|
+
"joystick",
|
|
3008
|
+
"keyboard",
|
|
3009
|
+
"keyboard-music",
|
|
3010
|
+
"keyboard-off",
|
|
3011
|
+
"laptop",
|
|
3012
|
+
"laptop-minimal",
|
|
3013
|
+
"laptop-minimal-check",
|
|
3014
|
+
"memory-stick",
|
|
3015
|
+
"mic",
|
|
3016
|
+
"mic-off",
|
|
3017
|
+
"mic-vocal",
|
|
3018
|
+
"microchip",
|
|
3019
|
+
"monitor",
|
|
3020
|
+
"monitor-check",
|
|
3021
|
+
"monitor-cloud",
|
|
3022
|
+
"monitor-cog",
|
|
3023
|
+
"monitor-dot",
|
|
3024
|
+
"monitor-down",
|
|
3025
|
+
"monitor-off",
|
|
3026
|
+
"monitor-pause",
|
|
3027
|
+
"monitor-play",
|
|
3028
|
+
"monitor-smartphone",
|
|
3029
|
+
"monitor-speaker",
|
|
3030
|
+
"monitor-stop",
|
|
3031
|
+
"monitor-up",
|
|
3032
|
+
"monitor-x",
|
|
3033
|
+
"mouse",
|
|
3034
|
+
"mouse-left",
|
|
3035
|
+
"mouse-off",
|
|
3036
|
+
"nfc",
|
|
3037
|
+
"pc-case",
|
|
3038
|
+
"phone",
|
|
3039
|
+
"phone-call",
|
|
3040
|
+
"phone-forwarded",
|
|
3041
|
+
"phone-incoming",
|
|
3042
|
+
"phone-missed",
|
|
3043
|
+
"phone-off",
|
|
3044
|
+
"phone-outgoing",
|
|
3045
|
+
"piano",
|
|
3046
|
+
"plug",
|
|
3047
|
+
"plug-2",
|
|
3048
|
+
"plug-zap",
|
|
3049
|
+
"presentation",
|
|
3050
|
+
"printer",
|
|
3051
|
+
"printer-check",
|
|
3052
|
+
"printer-x",
|
|
3053
|
+
"projector",
|
|
3054
|
+
"proportions",
|
|
3055
|
+
"radio",
|
|
3056
|
+
"radio-receiver",
|
|
3057
|
+
"radio-tower",
|
|
3058
|
+
"rectangle-goggles",
|
|
3059
|
+
"router",
|
|
3060
|
+
"satellite-dish",
|
|
3061
|
+
"scan",
|
|
3062
|
+
"scan-barcode",
|
|
3063
|
+
"scan-eye",
|
|
3064
|
+
"scan-face",
|
|
3065
|
+
"scan-line",
|
|
3066
|
+
"scan-qr-code",
|
|
3067
|
+
"scan-text",
|
|
3068
|
+
"screen-share",
|
|
3069
|
+
"screen-share-off",
|
|
3070
|
+
"server",
|
|
3071
|
+
"server-cog",
|
|
3072
|
+
"server-crash",
|
|
3073
|
+
"server-off",
|
|
3074
|
+
"smartphone",
|
|
3075
|
+
"smartphone-charging",
|
|
3076
|
+
"smartphone-nfc",
|
|
3077
|
+
"speaker",
|
|
3078
|
+
"spotlight",
|
|
3079
|
+
"square-minus",
|
|
3080
|
+
"switch-camera",
|
|
3081
|
+
"tablet",
|
|
3082
|
+
"tablet-smartphone",
|
|
3083
|
+
"toilet",
|
|
3084
|
+
"touchpad",
|
|
3085
|
+
"touchpad-off",
|
|
3086
|
+
"tv",
|
|
3087
|
+
"tv-minimal",
|
|
3088
|
+
"tv-minimal-play",
|
|
3089
|
+
"unplug",
|
|
3090
|
+
"usb",
|
|
3091
|
+
"vibrate",
|
|
3092
|
+
"vibrate-off",
|
|
3093
|
+
"video",
|
|
3094
|
+
"video-off",
|
|
3095
|
+
"videotape",
|
|
3096
|
+
"voicemail",
|
|
3097
|
+
"wallpaper",
|
|
3098
|
+
"washing-machine",
|
|
3099
|
+
"webcam",
|
|
3100
|
+
"wifi",
|
|
3101
|
+
"wifi-cog",
|
|
3102
|
+
"wifi-high",
|
|
3103
|
+
"wifi-low",
|
|
3104
|
+
"wifi-off",
|
|
3105
|
+
"wifi-pen",
|
|
3106
|
+
"wifi-sync",
|
|
3107
|
+
"wifi-zero",
|
|
3108
|
+
"zap",
|
|
3109
|
+
"zap-off",
|
|
3110
|
+
],
|
|
3111
|
+
emoji: [
|
|
3112
|
+
"angry",
|
|
3113
|
+
"annoyed",
|
|
3114
|
+
"balloon",
|
|
3115
|
+
"biceps-flexed",
|
|
3116
|
+
"chess-bishop",
|
|
3117
|
+
"chess-king",
|
|
3118
|
+
"chess-knight",
|
|
3119
|
+
"chess-pawn",
|
|
3120
|
+
"chess-queen",
|
|
3121
|
+
"chess-rook",
|
|
3122
|
+
"frown",
|
|
3123
|
+
"hand-fist",
|
|
3124
|
+
"hand-helping",
|
|
3125
|
+
"hand-metal",
|
|
3126
|
+
"heart",
|
|
3127
|
+
"heart-crack",
|
|
3128
|
+
"heart-handshake",
|
|
3129
|
+
"laugh",
|
|
3130
|
+
"leafy-green",
|
|
3131
|
+
"meh",
|
|
3132
|
+
"party-popper",
|
|
3133
|
+
"ribbon",
|
|
3134
|
+
"salad",
|
|
3135
|
+
"smile",
|
|
3136
|
+
"smile-plus",
|
|
3137
|
+
"star",
|
|
3138
|
+
"thumbs-down",
|
|
3139
|
+
"thumbs-up",
|
|
3140
|
+
],
|
|
3141
|
+
files: [
|
|
3142
|
+
"app-window",
|
|
3143
|
+
"app-window-mac",
|
|
3144
|
+
"archive",
|
|
3145
|
+
"archive-restore",
|
|
3146
|
+
"archive-x",
|
|
3147
|
+
"arrow-big-down-dash",
|
|
3148
|
+
"arrow-down-from-line",
|
|
3149
|
+
"arrow-down-to-line",
|
|
3150
|
+
"arrow-up-from-line",
|
|
3151
|
+
"arrow-up-to-line",
|
|
3152
|
+
"book-image",
|
|
3153
|
+
"braces",
|
|
3154
|
+
"brackets",
|
|
3155
|
+
"calendar-fold",
|
|
3156
|
+
"cassette-tape",
|
|
3157
|
+
"chart-pie",
|
|
3158
|
+
"cloud-backup",
|
|
3159
|
+
"cloud-download",
|
|
3160
|
+
"cloud-sync",
|
|
3161
|
+
"cloud-upload",
|
|
3162
|
+
"combine",
|
|
3163
|
+
"diff",
|
|
3164
|
+
"dock",
|
|
3165
|
+
"download",
|
|
3166
|
+
"file",
|
|
3167
|
+
"file-archive",
|
|
3168
|
+
"file-axis-3d",
|
|
3169
|
+
"file-badge",
|
|
3170
|
+
"file-box",
|
|
3171
|
+
"file-braces",
|
|
3172
|
+
"file-braces-corner",
|
|
3173
|
+
"file-chart-column",
|
|
3174
|
+
"file-chart-column-increasing",
|
|
3175
|
+
"file-chart-line",
|
|
3176
|
+
"file-chart-pie",
|
|
3177
|
+
"file-check",
|
|
3178
|
+
"file-check-corner",
|
|
3179
|
+
"file-clock",
|
|
3180
|
+
"file-code",
|
|
3181
|
+
"file-code-corner",
|
|
3182
|
+
"file-cog",
|
|
3183
|
+
"file-diff",
|
|
3184
|
+
"file-digit",
|
|
3185
|
+
"file-down",
|
|
3186
|
+
"file-exclamation-point",
|
|
3187
|
+
"file-headphone",
|
|
3188
|
+
"file-heart",
|
|
3189
|
+
"file-image",
|
|
3190
|
+
"file-input",
|
|
3191
|
+
"file-key",
|
|
3192
|
+
"file-lock",
|
|
3193
|
+
"file-minus",
|
|
3194
|
+
"file-minus-corner",
|
|
3195
|
+
"file-music",
|
|
3196
|
+
"file-output",
|
|
3197
|
+
"file-pen",
|
|
3198
|
+
"file-pen-line",
|
|
3199
|
+
"file-play",
|
|
3200
|
+
"file-plus",
|
|
3201
|
+
"file-plus-corner",
|
|
3202
|
+
"file-question-mark",
|
|
3203
|
+
"file-scan",
|
|
3204
|
+
"file-search",
|
|
3205
|
+
"file-search-corner",
|
|
3206
|
+
"file-signal",
|
|
3207
|
+
"file-sliders",
|
|
3208
|
+
"file-spreadsheet",
|
|
3209
|
+
"file-stack",
|
|
3210
|
+
"file-symlink",
|
|
3211
|
+
"file-terminal",
|
|
3212
|
+
"file-text",
|
|
3213
|
+
"file-type",
|
|
3214
|
+
"file-type-corner",
|
|
3215
|
+
"file-up",
|
|
3216
|
+
"file-user",
|
|
3217
|
+
"file-video-camera",
|
|
3218
|
+
"file-volume",
|
|
3219
|
+
"file-x",
|
|
3220
|
+
"file-x-corner",
|
|
3221
|
+
"files",
|
|
3222
|
+
"folder",
|
|
3223
|
+
"folder-archive",
|
|
3224
|
+
"folder-check",
|
|
3225
|
+
"folder-clock",
|
|
3226
|
+
"folder-closed",
|
|
3227
|
+
"folder-code",
|
|
3228
|
+
"folder-cog",
|
|
3229
|
+
"folder-dot",
|
|
3230
|
+
"folder-down",
|
|
3231
|
+
"folder-git",
|
|
3232
|
+
"folder-git-2",
|
|
3233
|
+
"folder-heart",
|
|
3234
|
+
"folder-input",
|
|
3235
|
+
"folder-kanban",
|
|
3236
|
+
"folder-key",
|
|
3237
|
+
"folder-lock",
|
|
3238
|
+
"folder-minus",
|
|
3239
|
+
"folder-open",
|
|
3240
|
+
"folder-open-dot",
|
|
3241
|
+
"folder-output",
|
|
3242
|
+
"folder-pen",
|
|
3243
|
+
"folder-plus",
|
|
3244
|
+
"folder-root",
|
|
3245
|
+
"folder-search",
|
|
3246
|
+
"folder-search-2",
|
|
3247
|
+
"folder-symlink",
|
|
3248
|
+
"folder-sync",
|
|
3249
|
+
"folder-tree",
|
|
3250
|
+
"folder-up",
|
|
3251
|
+
"folder-x",
|
|
3252
|
+
"folders",
|
|
3253
|
+
"gallery-horizontal-end",
|
|
3254
|
+
"gallery-vertical-end",
|
|
3255
|
+
"group",
|
|
3256
|
+
"hard-drive-download",
|
|
3257
|
+
"hard-drive-upload",
|
|
3258
|
+
"headphones",
|
|
3259
|
+
"headset",
|
|
3260
|
+
"image",
|
|
3261
|
+
"image-down",
|
|
3262
|
+
"image-minus",
|
|
3263
|
+
"image-off",
|
|
3264
|
+
"image-play",
|
|
3265
|
+
"image-plus",
|
|
3266
|
+
"image-up",
|
|
3267
|
+
"images",
|
|
3268
|
+
"import",
|
|
3269
|
+
"list-tree",
|
|
3270
|
+
"message-square-diff",
|
|
3271
|
+
"music",
|
|
3272
|
+
"music-2",
|
|
3273
|
+
"music-3",
|
|
3274
|
+
"music-4",
|
|
3275
|
+
"package",
|
|
3276
|
+
"package-2",
|
|
3277
|
+
"package-open",
|
|
3278
|
+
"package-search",
|
|
3279
|
+
"paperclip",
|
|
3280
|
+
"parentheses",
|
|
3281
|
+
"save",
|
|
3282
|
+
"save-all",
|
|
3283
|
+
"save-off",
|
|
3284
|
+
"sheet",
|
|
3285
|
+
"shredder",
|
|
3286
|
+
"square-bottom-dashed-scissors",
|
|
3287
|
+
"square-dashed-bottom",
|
|
3288
|
+
"square-dashed-bottom-code",
|
|
3289
|
+
"square-scissors",
|
|
3290
|
+
"square-stack",
|
|
3291
|
+
"table",
|
|
3292
|
+
"table-2",
|
|
3293
|
+
"table-cells-merge",
|
|
3294
|
+
"table-cells-split",
|
|
3295
|
+
"table-columns-split",
|
|
3296
|
+
"table-properties",
|
|
3297
|
+
"table-rows-split",
|
|
3298
|
+
"trash",
|
|
3299
|
+
"trash-2",
|
|
3300
|
+
"ungroup",
|
|
3301
|
+
"upload",
|
|
3302
|
+
"videotape",
|
|
3303
|
+
"wifi-cog",
|
|
3304
|
+
],
|
|
3305
|
+
finance: [
|
|
3306
|
+
"badge-cent",
|
|
3307
|
+
"badge-dollar-sign",
|
|
3308
|
+
"badge-euro",
|
|
3309
|
+
"badge-indian-rupee",
|
|
3310
|
+
"badge-japanese-yen",
|
|
3311
|
+
"badge-percent",
|
|
3312
|
+
"badge-pound-sterling",
|
|
3313
|
+
"badge-russian-ruble",
|
|
3314
|
+
"badge-swiss-franc",
|
|
3315
|
+
"badge-turkish-lira",
|
|
3316
|
+
"banknote",
|
|
3317
|
+
"banknote-arrow-down",
|
|
3318
|
+
"banknote-arrow-up",
|
|
3319
|
+
"banknote-x",
|
|
3320
|
+
"bitcoin",
|
|
3321
|
+
"chart-candlestick",
|
|
3322
|
+
"circle-dollar-sign",
|
|
3323
|
+
"circle-percent",
|
|
3324
|
+
"circle-pound-sterling",
|
|
3325
|
+
"credit-card",
|
|
3326
|
+
"currency",
|
|
3327
|
+
"diamond-percent",
|
|
3328
|
+
"dollar-sign",
|
|
3329
|
+
"euro",
|
|
3330
|
+
"gem",
|
|
3331
|
+
"georgian-lari",
|
|
3332
|
+
"hand-coins",
|
|
3333
|
+
"handshake",
|
|
3334
|
+
"indian-rupee",
|
|
3335
|
+
"japanese-yen",
|
|
3336
|
+
"landmark",
|
|
3337
|
+
"nfc",
|
|
3338
|
+
"percent",
|
|
3339
|
+
"philippine-peso",
|
|
3340
|
+
"piggy-bank",
|
|
3341
|
+
"pound-sterling",
|
|
3342
|
+
"receipt",
|
|
3343
|
+
"receipt-cent",
|
|
3344
|
+
"receipt-euro",
|
|
3345
|
+
"receipt-indian-rupee",
|
|
3346
|
+
"receipt-japanese-yen",
|
|
3347
|
+
"receipt-pound-sterling",
|
|
3348
|
+
"receipt-russian-ruble",
|
|
3349
|
+
"receipt-swiss-franc",
|
|
3350
|
+
"receipt-text",
|
|
3351
|
+
"receipt-turkish-lira",
|
|
3352
|
+
"russian-ruble",
|
|
3353
|
+
"saudi-riyal",
|
|
3354
|
+
"scale",
|
|
3355
|
+
"smartphone-nfc",
|
|
3356
|
+
"square-percent",
|
|
3357
|
+
"swiss-franc",
|
|
3358
|
+
"turkish-lira",
|
|
3359
|
+
"wallet",
|
|
3360
|
+
"wallet-cards",
|
|
3361
|
+
"wallet-minimal",
|
|
3362
|
+
],
|
|
3363
|
+
"food-beverage": [
|
|
3364
|
+
"amphora",
|
|
3365
|
+
"apple",
|
|
3366
|
+
"banana",
|
|
3367
|
+
"barrel",
|
|
3368
|
+
"bean",
|
|
3369
|
+
"bean-off",
|
|
3370
|
+
"beef",
|
|
3371
|
+
"beer",
|
|
3372
|
+
"beer-off",
|
|
3373
|
+
"bottle-wine",
|
|
3374
|
+
"cake",
|
|
3375
|
+
"cake-slice",
|
|
3376
|
+
"candy",
|
|
3377
|
+
"candy-cane",
|
|
3378
|
+
"candy-off",
|
|
3379
|
+
"carrot",
|
|
3380
|
+
"chef-hat",
|
|
3381
|
+
"cherry",
|
|
3382
|
+
"citrus",
|
|
3383
|
+
"coffee",
|
|
3384
|
+
"cookie",
|
|
3385
|
+
"cooking-pot",
|
|
3386
|
+
"croissant",
|
|
3387
|
+
"cuboid",
|
|
3388
|
+
"cup-soda",
|
|
3389
|
+
"dessert",
|
|
3390
|
+
"dna-off",
|
|
3391
|
+
"donut",
|
|
3392
|
+
"drumstick",
|
|
3393
|
+
"egg",
|
|
3394
|
+
"egg-fried",
|
|
3395
|
+
"egg-off",
|
|
3396
|
+
"fish",
|
|
3397
|
+
"fish-off",
|
|
3398
|
+
"fish-symbol",
|
|
3399
|
+
"glass-water",
|
|
3400
|
+
"grape",
|
|
3401
|
+
"ham",
|
|
3402
|
+
"hamburger",
|
|
3403
|
+
"hand-platter",
|
|
3404
|
+
"hop",
|
|
3405
|
+
"hop-off",
|
|
3406
|
+
"ice-cream-bowl",
|
|
3407
|
+
"ice-cream-cone",
|
|
3408
|
+
"leafy-green",
|
|
3409
|
+
"lollipop",
|
|
3410
|
+
"martini",
|
|
3411
|
+
"microwave",
|
|
3412
|
+
"milk",
|
|
3413
|
+
"milk-off",
|
|
3414
|
+
"nut",
|
|
3415
|
+
"nut-off",
|
|
3416
|
+
"pizza",
|
|
3417
|
+
"popcorn",
|
|
3418
|
+
"popsicle",
|
|
3419
|
+
"refrigerator",
|
|
3420
|
+
"salad",
|
|
3421
|
+
"sandwich",
|
|
3422
|
+
"shell",
|
|
3423
|
+
"snail",
|
|
3424
|
+
"soup",
|
|
3425
|
+
"torus",
|
|
3426
|
+
"tractor",
|
|
3427
|
+
"utensils",
|
|
3428
|
+
"utensils-crossed",
|
|
3429
|
+
"vegan",
|
|
3430
|
+
"wheat",
|
|
3431
|
+
"wheat-off",
|
|
3432
|
+
"wine",
|
|
3433
|
+
"wine-off",
|
|
3434
|
+
],
|
|
3435
|
+
gaming: [
|
|
3436
|
+
"amphora",
|
|
3437
|
+
"anvil",
|
|
3438
|
+
"arrow-big-down",
|
|
3439
|
+
"arrow-big-down-dash",
|
|
3440
|
+
"arrow-big-left",
|
|
3441
|
+
"arrow-big-left-dash",
|
|
3442
|
+
"arrow-big-right",
|
|
3443
|
+
"arrow-big-right-dash",
|
|
3444
|
+
"arrow-big-up",
|
|
3445
|
+
"arrow-big-up-dash",
|
|
3446
|
+
"award",
|
|
3447
|
+
"axe",
|
|
3448
|
+
"backpack",
|
|
3449
|
+
"beaker",
|
|
3450
|
+
"bone",
|
|
3451
|
+
"book",
|
|
3452
|
+
"book-a",
|
|
3453
|
+
"book-alert",
|
|
3454
|
+
"book-check",
|
|
3455
|
+
"book-copy",
|
|
3456
|
+
"book-heart",
|
|
3457
|
+
"book-key",
|
|
3458
|
+
"book-lock",
|
|
3459
|
+
"book-marked",
|
|
3460
|
+
"book-minus",
|
|
3461
|
+
"book-open",
|
|
3462
|
+
"book-open-check",
|
|
3463
|
+
"book-plus",
|
|
3464
|
+
"book-search",
|
|
3465
|
+
"book-text",
|
|
3466
|
+
"book-type",
|
|
3467
|
+
"book-x",
|
|
3468
|
+
"bow-arrow",
|
|
3469
|
+
"box",
|
|
3470
|
+
"boxes",
|
|
3471
|
+
"castle",
|
|
3472
|
+
"chess-bishop",
|
|
3473
|
+
"chess-king",
|
|
3474
|
+
"chess-knight",
|
|
3475
|
+
"chess-pawn",
|
|
3476
|
+
"chess-queen",
|
|
3477
|
+
"chess-rook",
|
|
3478
|
+
"chevron-down",
|
|
3479
|
+
"chevron-up",
|
|
3480
|
+
"chevrons-down",
|
|
3481
|
+
"chevrons-left",
|
|
3482
|
+
"chevrons-left-right-ellipsis",
|
|
3483
|
+
"chevrons-right",
|
|
3484
|
+
"chevrons-up",
|
|
3485
|
+
"circle-arrow-down",
|
|
3486
|
+
"circle-arrow-left",
|
|
3487
|
+
"circle-arrow-right",
|
|
3488
|
+
"circle-arrow-up",
|
|
3489
|
+
"circle-plus",
|
|
3490
|
+
"circle-star",
|
|
3491
|
+
"clover",
|
|
3492
|
+
"club",
|
|
3493
|
+
"coins",
|
|
3494
|
+
"computer",
|
|
3495
|
+
"crown",
|
|
3496
|
+
"diamond",
|
|
3497
|
+
"dice-1",
|
|
3498
|
+
"dice-2",
|
|
3499
|
+
"dice-3",
|
|
3500
|
+
"dice-4",
|
|
3501
|
+
"dice-5",
|
|
3502
|
+
"dice-6",
|
|
3503
|
+
"dices",
|
|
3504
|
+
"droplet",
|
|
3505
|
+
"droplet-off",
|
|
3506
|
+
"ethernet-port",
|
|
3507
|
+
"feather",
|
|
3508
|
+
"flame",
|
|
3509
|
+
"flame-kindling",
|
|
3510
|
+
"flask-conical",
|
|
3511
|
+
"flask-conical-off",
|
|
3512
|
+
"flask-round",
|
|
3513
|
+
"flower",
|
|
3514
|
+
"gamepad",
|
|
3515
|
+
"gamepad-2",
|
|
3516
|
+
"gamepad-directional",
|
|
3517
|
+
"gem",
|
|
3518
|
+
"ghost",
|
|
3519
|
+
"gift",
|
|
3520
|
+
"goal",
|
|
3521
|
+
"gpu",
|
|
3522
|
+
"hdmi-port",
|
|
3523
|
+
"headphone-off",
|
|
3524
|
+
"headphones",
|
|
3525
|
+
"headset",
|
|
3526
|
+
"heart",
|
|
3527
|
+
"heart-minus",
|
|
3528
|
+
"heart-plus",
|
|
3529
|
+
"hourglass",
|
|
3530
|
+
"joystick",
|
|
3531
|
+
"land-plot",
|
|
3532
|
+
"medal",
|
|
3533
|
+
"memory-stick",
|
|
3534
|
+
"milestone",
|
|
3535
|
+
"mountain",
|
|
3536
|
+
"pc-case",
|
|
3537
|
+
"pickaxe",
|
|
3538
|
+
"plus",
|
|
3539
|
+
"puzzle",
|
|
3540
|
+
"rectangle-goggles",
|
|
3541
|
+
"rocket",
|
|
3542
|
+
"scan",
|
|
3543
|
+
"scroll",
|
|
3544
|
+
"scroll-text",
|
|
3545
|
+
"shapes",
|
|
3546
|
+
"shield",
|
|
3547
|
+
"shield-alert",
|
|
3548
|
+
"shield-ban",
|
|
3549
|
+
"shield-check",
|
|
3550
|
+
"shield-ellipsis",
|
|
3551
|
+
"shield-half",
|
|
3552
|
+
"shield-minus",
|
|
3553
|
+
"shield-off",
|
|
3554
|
+
"shield-plus",
|
|
3555
|
+
"shield-question-mark",
|
|
3556
|
+
"shield-x",
|
|
3557
|
+
"shovel",
|
|
3558
|
+
"signpost",
|
|
3559
|
+
"signpost-big",
|
|
3560
|
+
"skull",
|
|
3561
|
+
"spade",
|
|
3562
|
+
"sparkles",
|
|
3563
|
+
"sprout",
|
|
3564
|
+
"square-arrow-down",
|
|
3565
|
+
"square-arrow-down-left",
|
|
3566
|
+
"square-arrow-down-right",
|
|
3567
|
+
"square-star",
|
|
3568
|
+
"star",
|
|
3569
|
+
"sword",
|
|
3570
|
+
"swords",
|
|
3571
|
+
"tally-1",
|
|
3572
|
+
"tally-2",
|
|
3573
|
+
"tally-3",
|
|
3574
|
+
"tally-4",
|
|
3575
|
+
"tally-5",
|
|
3576
|
+
"target",
|
|
3577
|
+
"toy-brick",
|
|
3578
|
+
"trophy",
|
|
3579
|
+
"twitch",
|
|
3580
|
+
"venetian-mask",
|
|
3581
|
+
"volleyball",
|
|
3582
|
+
"wand",
|
|
3583
|
+
"wand-sparkles",
|
|
3584
|
+
],
|
|
3585
|
+
home: [
|
|
3586
|
+
"air-vent",
|
|
3587
|
+
"alarm-smoke",
|
|
3588
|
+
"armchair",
|
|
3589
|
+
"bed",
|
|
3590
|
+
"bed-double",
|
|
3591
|
+
"bed-single",
|
|
3592
|
+
"bell-electric",
|
|
3593
|
+
"birdhouse",
|
|
3594
|
+
"blinds",
|
|
3595
|
+
"bolt",
|
|
3596
|
+
"brick-wall",
|
|
3597
|
+
"brick-wall-fire",
|
|
3598
|
+
"brick-wall-shield",
|
|
3599
|
+
"brush-cleaning",
|
|
3600
|
+
"cooking-pot",
|
|
3601
|
+
"door-closed",
|
|
3602
|
+
"door-closed-locked",
|
|
3603
|
+
"door-open",
|
|
3604
|
+
"drill",
|
|
3605
|
+
"fan",
|
|
3606
|
+
"fence",
|
|
3607
|
+
"fire-extinguisher",
|
|
3608
|
+
"hammer",
|
|
3609
|
+
"heater",
|
|
3610
|
+
"house",
|
|
3611
|
+
"house-heart",
|
|
3612
|
+
"house-plug",
|
|
3613
|
+
"house-wifi",
|
|
3614
|
+
"lamp",
|
|
3615
|
+
"lamp-ceiling",
|
|
3616
|
+
"lamp-desk",
|
|
3617
|
+
"lamp-floor",
|
|
3618
|
+
"lamp-wall-down",
|
|
3619
|
+
"lamp-wall-up",
|
|
3620
|
+
"microwave",
|
|
3621
|
+
"mirror-rectangular",
|
|
3622
|
+
"mirror-round",
|
|
3623
|
+
"paint-roller",
|
|
3624
|
+
"paintbrush",
|
|
3625
|
+
"paintbrush-vertical",
|
|
3626
|
+
"refrigerator",
|
|
3627
|
+
"rocking-chair",
|
|
3628
|
+
"rose",
|
|
3629
|
+
"router",
|
|
3630
|
+
"shell",
|
|
3631
|
+
"shelving-unit",
|
|
3632
|
+
"shower-head",
|
|
3633
|
+
"soap-dispenser-droplet",
|
|
3634
|
+
"sofa",
|
|
3635
|
+
"solar-panel",
|
|
3636
|
+
"swatch-book",
|
|
3637
|
+
"toilet",
|
|
3638
|
+
"tool-case",
|
|
3639
|
+
"toolbox",
|
|
3640
|
+
"towel-rack",
|
|
3641
|
+
"turntable",
|
|
3642
|
+
"usb",
|
|
3643
|
+
"utility-pole",
|
|
3644
|
+
"vault",
|
|
3645
|
+
"washing-machine",
|
|
3646
|
+
"waves-ladder",
|
|
3647
|
+
],
|
|
3648
|
+
layout: [
|
|
3649
|
+
"align-center-horizontal",
|
|
3650
|
+
"align-center-vertical",
|
|
3651
|
+
"align-end-horizontal",
|
|
3652
|
+
"align-end-vertical",
|
|
3653
|
+
"align-horizontal-distribute-center",
|
|
3654
|
+
"align-horizontal-distribute-end",
|
|
3655
|
+
"align-horizontal-distribute-start",
|
|
3656
|
+
"align-horizontal-justify-center",
|
|
3657
|
+
"align-horizontal-justify-end",
|
|
3658
|
+
"align-horizontal-justify-start",
|
|
3659
|
+
"align-horizontal-space-around",
|
|
3660
|
+
"align-horizontal-space-between",
|
|
3661
|
+
"align-start-horizontal",
|
|
3662
|
+
"align-start-vertical",
|
|
3663
|
+
"align-vertical-distribute-center",
|
|
3664
|
+
"align-vertical-distribute-end",
|
|
3665
|
+
"align-vertical-distribute-start",
|
|
3666
|
+
"align-vertical-justify-center",
|
|
3667
|
+
"align-vertical-justify-end",
|
|
3668
|
+
"align-vertical-justify-start",
|
|
3669
|
+
"align-vertical-space-around",
|
|
3670
|
+
"align-vertical-space-between",
|
|
3671
|
+
"app-window",
|
|
3672
|
+
"app-window-mac",
|
|
3673
|
+
"arrow-down-0-1",
|
|
3674
|
+
"arrow-down-1-0",
|
|
3675
|
+
"arrow-down-a-z",
|
|
3676
|
+
"arrow-down-narrow-wide",
|
|
3677
|
+
"arrow-down-wide-narrow",
|
|
3678
|
+
"arrow-down-z-a",
|
|
3679
|
+
"arrow-up-0-1",
|
|
3680
|
+
"arrow-up-1-0",
|
|
3681
|
+
"arrow-up-a-z",
|
|
3682
|
+
"arrow-up-narrow-wide",
|
|
3683
|
+
"arrow-up-wide-narrow",
|
|
3684
|
+
"arrow-up-z-a",
|
|
3685
|
+
"between-horizontal-end",
|
|
3686
|
+
"between-horizontal-start",
|
|
3687
|
+
"between-vertical-end",
|
|
3688
|
+
"between-vertical-start",
|
|
3689
|
+
"blocks",
|
|
3690
|
+
"bring-to-front",
|
|
3691
|
+
"circle-ellipsis",
|
|
3692
|
+
"columns-2",
|
|
3693
|
+
"columns-3",
|
|
3694
|
+
"columns-3-cog",
|
|
3695
|
+
"columns-4",
|
|
3696
|
+
"dock",
|
|
3697
|
+
"ellipsis",
|
|
3698
|
+
"ellipsis-vertical",
|
|
3699
|
+
"fold-horizontal",
|
|
3700
|
+
"fold-vertical",
|
|
3701
|
+
"fullscreen",
|
|
3702
|
+
"funnel",
|
|
3703
|
+
"funnel-plus",
|
|
3704
|
+
"funnel-x",
|
|
3705
|
+
"gallery-horizontal",
|
|
3706
|
+
"gallery-horizontal-end",
|
|
3707
|
+
"gallery-thumbnails",
|
|
3708
|
+
"gallery-vertical",
|
|
3709
|
+
"gallery-vertical-end",
|
|
3710
|
+
"grid-2x2",
|
|
3711
|
+
"grid-2x2-check",
|
|
3712
|
+
"grid-2x2-plus",
|
|
3713
|
+
"grid-2x2-x",
|
|
3714
|
+
"grid-3x2",
|
|
3715
|
+
"grid-3x3",
|
|
3716
|
+
"grip",
|
|
3717
|
+
"grip-horizontal",
|
|
3718
|
+
"grip-vertical",
|
|
3719
|
+
"hand-grab",
|
|
3720
|
+
"layers",
|
|
3721
|
+
"layers-2",
|
|
3722
|
+
"layers-plus",
|
|
3723
|
+
"layout-dashboard",
|
|
3724
|
+
"layout-grid",
|
|
3725
|
+
"layout-list",
|
|
3726
|
+
"layout-panel-left",
|
|
3727
|
+
"layout-panel-top",
|
|
3728
|
+
"layout-template",
|
|
3729
|
+
"list-filter-plus",
|
|
3730
|
+
"list-tree",
|
|
3731
|
+
"loader",
|
|
3732
|
+
"loader-circle",
|
|
3733
|
+
"maximize",
|
|
3734
|
+
"maximize-2",
|
|
3735
|
+
"menu",
|
|
3736
|
+
"minimize",
|
|
3737
|
+
"minimize-2",
|
|
3738
|
+
"panel-bottom",
|
|
3739
|
+
"panel-bottom-close",
|
|
3740
|
+
"panel-bottom-dashed",
|
|
3741
|
+
"panel-bottom-open",
|
|
3742
|
+
"panel-left",
|
|
3743
|
+
"panel-left-close",
|
|
3744
|
+
"panel-left-dashed",
|
|
3745
|
+
"panel-left-open",
|
|
3746
|
+
"panel-left-right-dashed",
|
|
3747
|
+
"panel-right",
|
|
3748
|
+
"panel-right-close",
|
|
3749
|
+
"panel-right-dashed",
|
|
3750
|
+
"panel-right-open",
|
|
3751
|
+
"panel-top",
|
|
3752
|
+
"panel-top-bottom-dashed",
|
|
3753
|
+
"panel-top-close",
|
|
3754
|
+
"panel-top-dashed",
|
|
3755
|
+
"panel-top-open",
|
|
3756
|
+
"panels-left-bottom",
|
|
3757
|
+
"panels-right-bottom",
|
|
3758
|
+
"panels-top-left",
|
|
3759
|
+
"pencil-ruler",
|
|
3760
|
+
"proportions",
|
|
3761
|
+
"ratio",
|
|
3762
|
+
"rotate-ccw-square",
|
|
3763
|
+
"rotate-cw-square",
|
|
3764
|
+
"rows-2",
|
|
3765
|
+
"rows-3",
|
|
3766
|
+
"rows-4",
|
|
3767
|
+
"ruler",
|
|
3768
|
+
"ruler-dimension-line",
|
|
3769
|
+
"send-to-back",
|
|
3770
|
+
"separator-horizontal",
|
|
3771
|
+
"separator-vertical",
|
|
3772
|
+
"shrink",
|
|
3773
|
+
"square-dashed-top-solid",
|
|
3774
|
+
"square-menu",
|
|
3775
|
+
"square-round-corner",
|
|
3776
|
+
"square-split-horizontal",
|
|
3777
|
+
"square-split-vertical",
|
|
3778
|
+
"square-square",
|
|
3779
|
+
"stretch-horizontal",
|
|
3780
|
+
"stretch-vertical",
|
|
3781
|
+
"text-cursor-input",
|
|
3782
|
+
"toggle-left",
|
|
3783
|
+
"toggle-right",
|
|
3784
|
+
"unfold-horizontal",
|
|
3785
|
+
"unfold-vertical",
|
|
3786
|
+
"zoom-in",
|
|
3787
|
+
"zoom-out",
|
|
3788
|
+
],
|
|
3789
|
+
mail: [
|
|
3790
|
+
"archive",
|
|
3791
|
+
"archive-restore",
|
|
3792
|
+
"archive-x",
|
|
3793
|
+
"arrows-up-from-line",
|
|
3794
|
+
"container",
|
|
3795
|
+
"forward",
|
|
3796
|
+
"inbox",
|
|
3797
|
+
"mail",
|
|
3798
|
+
"mail-check",
|
|
3799
|
+
"mail-minus",
|
|
3800
|
+
"mail-open",
|
|
3801
|
+
"mail-plus",
|
|
3802
|
+
"mail-question-mark",
|
|
3803
|
+
"mail-search",
|
|
3804
|
+
"mail-warning",
|
|
3805
|
+
"mail-x",
|
|
3806
|
+
"mailbox",
|
|
3807
|
+
"mails",
|
|
3808
|
+
"paperclip",
|
|
3809
|
+
"reply",
|
|
3810
|
+
"reply-all",
|
|
3811
|
+
"send",
|
|
3812
|
+
"send-horizontal",
|
|
3813
|
+
"shredder",
|
|
3814
|
+
"trash",
|
|
3815
|
+
"trash-2",
|
|
3816
|
+
],
|
|
3817
|
+
math: [
|
|
3818
|
+
"asterisk",
|
|
3819
|
+
"badge-percent",
|
|
3820
|
+
"box",
|
|
3821
|
+
"calculator",
|
|
3822
|
+
"chevron-right",
|
|
3823
|
+
"chevron-up",
|
|
3824
|
+
"circle-divide",
|
|
3825
|
+
"circle-equal",
|
|
3826
|
+
"circle-minus",
|
|
3827
|
+
"circle-percent",
|
|
3828
|
+
"circle-plus",
|
|
3829
|
+
"circle-slash",
|
|
3830
|
+
"circle-slash-2",
|
|
3831
|
+
"circle-x",
|
|
3832
|
+
"cone",
|
|
3833
|
+
"copy-minus",
|
|
3834
|
+
"copy-plus",
|
|
3835
|
+
"copy-slash",
|
|
3836
|
+
"copy-x",
|
|
3837
|
+
"cuboid",
|
|
3838
|
+
"cylinder",
|
|
3839
|
+
"decimals-arrow-left",
|
|
3840
|
+
"decimals-arrow-right",
|
|
3841
|
+
"diameter",
|
|
3842
|
+
"diamond-percent",
|
|
3843
|
+
"divide",
|
|
3844
|
+
"drafting-compass",
|
|
3845
|
+
"equal",
|
|
3846
|
+
"equal-approximately",
|
|
3847
|
+
"equal-not",
|
|
3848
|
+
"grid-2x2",
|
|
3849
|
+
"grid-2x2-check",
|
|
3850
|
+
"grid-2x2-plus",
|
|
3851
|
+
"grid-2x2-x",
|
|
3852
|
+
"grid-3x2",
|
|
3853
|
+
"land-plot",
|
|
3854
|
+
"line-squiggle",
|
|
3855
|
+
"minus",
|
|
3856
|
+
"octagon-x",
|
|
3857
|
+
"omega",
|
|
3858
|
+
"parentheses",
|
|
3859
|
+
"percent",
|
|
3860
|
+
"pi",
|
|
3861
|
+
"plus",
|
|
3862
|
+
"pyramid",
|
|
3863
|
+
"radical",
|
|
3864
|
+
"radius",
|
|
3865
|
+
"sigma",
|
|
3866
|
+
"slash",
|
|
3867
|
+
"square-asterisk",
|
|
3868
|
+
"square-chevron-up",
|
|
3869
|
+
"square-divide",
|
|
3870
|
+
"square-equal",
|
|
3871
|
+
"square-function",
|
|
3872
|
+
"square-minus",
|
|
3873
|
+
"square-percent",
|
|
3874
|
+
"square-pi",
|
|
3875
|
+
"square-plus",
|
|
3876
|
+
"square-radical",
|
|
3877
|
+
"square-sigma",
|
|
3878
|
+
"square-slash",
|
|
3879
|
+
"square-x",
|
|
3880
|
+
"tally-1",
|
|
3881
|
+
"tally-2",
|
|
3882
|
+
"tally-3",
|
|
3883
|
+
"tally-4",
|
|
3884
|
+
"tally-5",
|
|
3885
|
+
"tangent",
|
|
3886
|
+
"triangle-right",
|
|
3887
|
+
"variable",
|
|
3888
|
+
"vector-square",
|
|
3889
|
+
"weight",
|
|
3890
|
+
"weight-tilde",
|
|
3891
|
+
"x",
|
|
3892
|
+
"x-line-top",
|
|
3893
|
+
],
|
|
3894
|
+
medical: [
|
|
3895
|
+
"accessibility",
|
|
3896
|
+
"activity",
|
|
3897
|
+
"ambulance",
|
|
3898
|
+
"bandage",
|
|
3899
|
+
"bone",
|
|
3900
|
+
"brain",
|
|
3901
|
+
"briefcase-medical",
|
|
3902
|
+
"cigarette",
|
|
3903
|
+
"cigarette-off",
|
|
3904
|
+
"circle-small",
|
|
3905
|
+
"clipboard-minus",
|
|
3906
|
+
"clipboard-plus",
|
|
3907
|
+
"dna",
|
|
3908
|
+
"dna-off",
|
|
3909
|
+
"ear",
|
|
3910
|
+
"ear-off",
|
|
3911
|
+
"fingerprint-pattern",
|
|
3912
|
+
"heart",
|
|
3913
|
+
"heart-minus",
|
|
3914
|
+
"heart-plus",
|
|
3915
|
+
"heart-pulse",
|
|
3916
|
+
"hospital",
|
|
3917
|
+
"house-heart",
|
|
3918
|
+
"house-plus",
|
|
3919
|
+
"life-buoy",
|
|
3920
|
+
"mars",
|
|
3921
|
+
"mars-stroke",
|
|
3922
|
+
"microscope",
|
|
3923
|
+
"non-binary",
|
|
3924
|
+
"pill",
|
|
3925
|
+
"pill-bottle",
|
|
3926
|
+
"ribbon",
|
|
3927
|
+
"scan-heart",
|
|
3928
|
+
"shield-plus",
|
|
3929
|
+
"siren",
|
|
3930
|
+
"square-activity",
|
|
3931
|
+
"stethoscope",
|
|
3932
|
+
"syringe",
|
|
3933
|
+
"tablets",
|
|
3934
|
+
"transgender",
|
|
3935
|
+
"venus",
|
|
3936
|
+
"venus-and-mars",
|
|
3937
|
+
],
|
|
3938
|
+
multimedia: [
|
|
3939
|
+
"activity",
|
|
3940
|
+
"airplay",
|
|
3941
|
+
"album",
|
|
3942
|
+
"antenna",
|
|
3943
|
+
"audio-lines",
|
|
3944
|
+
"audio-waveform",
|
|
3945
|
+
"book-audio",
|
|
3946
|
+
"book-headphones",
|
|
3947
|
+
"book-image",
|
|
3948
|
+
"boom-box",
|
|
3949
|
+
"cable",
|
|
3950
|
+
"captions",
|
|
3951
|
+
"captions-off",
|
|
3952
|
+
"card-sim",
|
|
3953
|
+
"cassette-tape",
|
|
3954
|
+
"chevron-first",
|
|
3955
|
+
"chevron-last",
|
|
3956
|
+
"chevrons-left-right-ellipsis",
|
|
3957
|
+
"circle-pause",
|
|
3958
|
+
"circle-play",
|
|
3959
|
+
"circle-stop",
|
|
3960
|
+
"clapperboard",
|
|
3961
|
+
"closed-caption",
|
|
3962
|
+
"diamond-minus",
|
|
3963
|
+
"diamond-plus",
|
|
3964
|
+
"disc",
|
|
3965
|
+
"disc-2",
|
|
3966
|
+
"disc-3",
|
|
3967
|
+
"disc-album",
|
|
3968
|
+
"drama",
|
|
3969
|
+
"drum",
|
|
3970
|
+
"ethernet-port",
|
|
3971
|
+
"fast-forward",
|
|
3972
|
+
"file-music",
|
|
3973
|
+
"film",
|
|
3974
|
+
"fullscreen",
|
|
3975
|
+
"gallery-horizontal",
|
|
3976
|
+
"gallery-horizontal-end",
|
|
3977
|
+
"gallery-thumbnails",
|
|
3978
|
+
"gallery-vertical",
|
|
3979
|
+
"gallery-vertical-end",
|
|
3980
|
+
"guitar",
|
|
3981
|
+
"hand-metal",
|
|
3982
|
+
"hd",
|
|
3983
|
+
"hdmi-port",
|
|
3984
|
+
"headphone-off",
|
|
3985
|
+
"headphones",
|
|
3986
|
+
"headset",
|
|
3987
|
+
"heart",
|
|
3988
|
+
"heart-minus",
|
|
3989
|
+
"heart-off",
|
|
3990
|
+
"heart-plus",
|
|
3991
|
+
"image",
|
|
3992
|
+
"image-down",
|
|
3993
|
+
"image-minus",
|
|
3994
|
+
"image-off",
|
|
3995
|
+
"image-play",
|
|
3996
|
+
"image-plus",
|
|
3997
|
+
"image-up",
|
|
3998
|
+
"image-upscale",
|
|
3999
|
+
"images",
|
|
4000
|
+
"infinity",
|
|
4001
|
+
"keyboard-music",
|
|
4002
|
+
"lectern",
|
|
4003
|
+
"library",
|
|
4004
|
+
"library-big",
|
|
4005
|
+
"list-end",
|
|
4006
|
+
"list-minus",
|
|
4007
|
+
"list-music",
|
|
4008
|
+
"list-plus",
|
|
4009
|
+
"list-restart",
|
|
4010
|
+
"list-start",
|
|
4011
|
+
"list-video",
|
|
4012
|
+
"list-x",
|
|
4013
|
+
"loader",
|
|
4014
|
+
"loader-circle",
|
|
4015
|
+
"megaphone",
|
|
4016
|
+
"megaphone-off",
|
|
4017
|
+
"mic",
|
|
4018
|
+
"mic-off",
|
|
4019
|
+
"mic-vocal",
|
|
4020
|
+
"monitor-pause",
|
|
4021
|
+
"monitor-play",
|
|
4022
|
+
"monitor-stop",
|
|
4023
|
+
"music",
|
|
4024
|
+
"music-2",
|
|
4025
|
+
"music-3",
|
|
4026
|
+
"music-4",
|
|
4027
|
+
"newspaper",
|
|
4028
|
+
"octagon-pause",
|
|
4029
|
+
"pause",
|
|
4030
|
+
"piano",
|
|
4031
|
+
"picture-in-picture",
|
|
4032
|
+
"picture-in-picture-2",
|
|
4033
|
+
"play",
|
|
4034
|
+
"podcast",
|
|
4035
|
+
"popcorn",
|
|
4036
|
+
"presentation",
|
|
4037
|
+
"projector",
|
|
4038
|
+
"radio",
|
|
4039
|
+
"radio-tower",
|
|
4040
|
+
"rectangle-goggles",
|
|
4041
|
+
"repeat",
|
|
4042
|
+
"repeat-1",
|
|
4043
|
+
"repeat-2",
|
|
4044
|
+
"rewind",
|
|
4045
|
+
"satellite-dish",
|
|
4046
|
+
"scan-eye",
|
|
4047
|
+
"scan-search",
|
|
4048
|
+
"shuffle",
|
|
4049
|
+
"skip-back",
|
|
4050
|
+
"skip-forward",
|
|
4051
|
+
"sparkles",
|
|
4052
|
+
"speaker",
|
|
4053
|
+
"spotlight",
|
|
4054
|
+
"square",
|
|
4055
|
+
"square-activity",
|
|
4056
|
+
"square-library",
|
|
4057
|
+
"square-pause",
|
|
4058
|
+
"square-play",
|
|
4059
|
+
"square-stop",
|
|
4060
|
+
"star",
|
|
4061
|
+
"star-half",
|
|
4062
|
+
"star-off",
|
|
4063
|
+
"step-back",
|
|
4064
|
+
"step-forward",
|
|
4065
|
+
"turntable",
|
|
4066
|
+
"tv",
|
|
4067
|
+
"tv-minimal",
|
|
4068
|
+
"tv-minimal-play",
|
|
4069
|
+
"usb",
|
|
4070
|
+
"volume",
|
|
4071
|
+
"volume-1",
|
|
4072
|
+
"volume-2",
|
|
4073
|
+
"volume-off",
|
|
4074
|
+
"volume-x",
|
|
4075
|
+
"waves",
|
|
4076
|
+
"youtube",
|
|
4077
|
+
],
|
|
4078
|
+
nature: [
|
|
4079
|
+
"binoculars",
|
|
4080
|
+
"birdhouse",
|
|
4081
|
+
"cannabis",
|
|
4082
|
+
"cannabis-off",
|
|
4083
|
+
"caravan",
|
|
4084
|
+
"flame-kindling",
|
|
4085
|
+
"flower",
|
|
4086
|
+
"flower-2",
|
|
4087
|
+
"leaf",
|
|
4088
|
+
"mountain",
|
|
4089
|
+
"mountain-snow",
|
|
4090
|
+
"rose",
|
|
4091
|
+
"shell",
|
|
4092
|
+
"shovel",
|
|
4093
|
+
"shrub",
|
|
4094
|
+
"sprout",
|
|
4095
|
+
"stone",
|
|
4096
|
+
"tent",
|
|
4097
|
+
"tent-tree",
|
|
4098
|
+
"tree-deciduous",
|
|
4099
|
+
"tree-palm",
|
|
4100
|
+
"tree-pine",
|
|
4101
|
+
"trees",
|
|
4102
|
+
],
|
|
4103
|
+
navigation: [
|
|
4104
|
+
"barrel",
|
|
4105
|
+
"binoculars",
|
|
4106
|
+
"birdhouse",
|
|
4107
|
+
"castle",
|
|
4108
|
+
"church",
|
|
4109
|
+
"circle-parking",
|
|
4110
|
+
"circle-parking-off",
|
|
4111
|
+
"compass",
|
|
4112
|
+
"dam",
|
|
4113
|
+
"dumbbell",
|
|
4114
|
+
"earth",
|
|
4115
|
+
"ev-charger",
|
|
4116
|
+
"factory",
|
|
4117
|
+
"ferris-wheel",
|
|
4118
|
+
"flag-triangle-left",
|
|
4119
|
+
"flag-triangle-right",
|
|
4120
|
+
"footprints",
|
|
4121
|
+
"fuel",
|
|
4122
|
+
"gavel",
|
|
4123
|
+
"git-commit-horizontal",
|
|
4124
|
+
"git-commit-vertical",
|
|
4125
|
+
"globe",
|
|
4126
|
+
"globe-off",
|
|
4127
|
+
"globe-x",
|
|
4128
|
+
"hospital",
|
|
4129
|
+
"hotel",
|
|
4130
|
+
"house",
|
|
4131
|
+
"landmark",
|
|
4132
|
+
"library",
|
|
4133
|
+
"library-big",
|
|
4134
|
+
"line-dot-right-horizontal",
|
|
4135
|
+
"locate",
|
|
4136
|
+
"locate-fixed",
|
|
4137
|
+
"locate-off",
|
|
4138
|
+
"map",
|
|
4139
|
+
"map-minus",
|
|
4140
|
+
"map-pin",
|
|
4141
|
+
"map-pin-check",
|
|
4142
|
+
"map-pin-check-inside",
|
|
4143
|
+
"map-pin-house",
|
|
4144
|
+
"map-pin-minus",
|
|
4145
|
+
"map-pin-minus-inside",
|
|
4146
|
+
"map-pin-off",
|
|
4147
|
+
"map-pin-pen",
|
|
4148
|
+
"map-pin-plus",
|
|
4149
|
+
"map-pin-plus-inside",
|
|
4150
|
+
"map-pin-x",
|
|
4151
|
+
"map-pin-x-inside",
|
|
4152
|
+
"map-pinned",
|
|
4153
|
+
"map-plus",
|
|
4154
|
+
"milestone",
|
|
4155
|
+
"navigation",
|
|
4156
|
+
"navigation-2",
|
|
4157
|
+
"navigation-2-off",
|
|
4158
|
+
"navigation-off",
|
|
4159
|
+
"parking-meter",
|
|
4160
|
+
"pin",
|
|
4161
|
+
"pin-off",
|
|
4162
|
+
"plane",
|
|
4163
|
+
"radar",
|
|
4164
|
+
"rail-symbol",
|
|
4165
|
+
"roller-coaster",
|
|
4166
|
+
"route",
|
|
4167
|
+
"route-off",
|
|
4168
|
+
"scale",
|
|
4169
|
+
"school",
|
|
4170
|
+
"ship",
|
|
4171
|
+
"ship-wheel",
|
|
4172
|
+
"signpost",
|
|
4173
|
+
"signpost-big",
|
|
4174
|
+
"square-chevron-down",
|
|
4175
|
+
"square-chevron-left",
|
|
4176
|
+
"square-chevron-right",
|
|
4177
|
+
"square-chevron-up",
|
|
4178
|
+
"square-library",
|
|
4179
|
+
"square-m",
|
|
4180
|
+
"square-parking",
|
|
4181
|
+
"square-parking-off",
|
|
4182
|
+
"store",
|
|
4183
|
+
"train-front-tunnel",
|
|
4184
|
+
"train-track",
|
|
4185
|
+
"university",
|
|
4186
|
+
"utensils",
|
|
4187
|
+
"utensils-crossed",
|
|
4188
|
+
"warehouse",
|
|
4189
|
+
"waves",
|
|
4190
|
+
"waypoints",
|
|
4191
|
+
],
|
|
4192
|
+
notifications: [
|
|
4193
|
+
"alarm-clock",
|
|
4194
|
+
"alarm-clock-check",
|
|
4195
|
+
"alarm-clock-minus",
|
|
4196
|
+
"alarm-clock-off",
|
|
4197
|
+
"alarm-clock-plus",
|
|
4198
|
+
"bell",
|
|
4199
|
+
"bell-dot",
|
|
4200
|
+
"bell-electric",
|
|
4201
|
+
"bell-minus",
|
|
4202
|
+
"bell-off",
|
|
4203
|
+
"bell-plus",
|
|
4204
|
+
"bell-ring",
|
|
4205
|
+
"check",
|
|
4206
|
+
"check-check",
|
|
4207
|
+
"check-line",
|
|
4208
|
+
"circle-alert",
|
|
4209
|
+
"circle-check",
|
|
4210
|
+
"circle-check-big",
|
|
4211
|
+
"circle-question-mark",
|
|
4212
|
+
"copy-check",
|
|
4213
|
+
"copy-x",
|
|
4214
|
+
"file-exclamation-point",
|
|
4215
|
+
"info",
|
|
4216
|
+
"laptop-minimal-check",
|
|
4217
|
+
"megaphone",
|
|
4218
|
+
"megaphone-off",
|
|
4219
|
+
"message-circle-warning",
|
|
4220
|
+
"message-square-dot",
|
|
4221
|
+
"message-square-warning",
|
|
4222
|
+
"octagon-alert",
|
|
4223
|
+
"octagon-x",
|
|
4224
|
+
"shield-alert",
|
|
4225
|
+
"smile-plus",
|
|
4226
|
+
"square-check",
|
|
4227
|
+
"square-check-big",
|
|
4228
|
+
"square-x",
|
|
4229
|
+
"triangle-alert",
|
|
4230
|
+
"vibrate",
|
|
4231
|
+
"x",
|
|
4232
|
+
"x-line-top",
|
|
4233
|
+
],
|
|
4234
|
+
people: ["baby", "hand-platter", "person-standing"],
|
|
4235
|
+
photography: [
|
|
4236
|
+
"album",
|
|
4237
|
+
"aperture",
|
|
4238
|
+
"backpack",
|
|
4239
|
+
"binoculars",
|
|
4240
|
+
"blend",
|
|
4241
|
+
"book-image",
|
|
4242
|
+
"camera",
|
|
4243
|
+
"camera-off",
|
|
4244
|
+
"cctv",
|
|
4245
|
+
"contrast",
|
|
4246
|
+
"crop",
|
|
4247
|
+
"crosshair",
|
|
4248
|
+
"database-backup",
|
|
4249
|
+
"diamond-minus",
|
|
4250
|
+
"diamond-plus",
|
|
4251
|
+
"eclipse",
|
|
4252
|
+
"eye",
|
|
4253
|
+
"eye-closed",
|
|
4254
|
+
"eye-off",
|
|
4255
|
+
"film",
|
|
4256
|
+
"flashlight",
|
|
4257
|
+
"flashlight-off",
|
|
4258
|
+
"flip-horizontal-2",
|
|
4259
|
+
"flip-vertical-2",
|
|
4260
|
+
"focus",
|
|
4261
|
+
"frame",
|
|
4262
|
+
"fullscreen",
|
|
4263
|
+
"gallery-horizontal",
|
|
4264
|
+
"gallery-horizontal-end",
|
|
4265
|
+
"gallery-thumbnails",
|
|
4266
|
+
"gallery-vertical",
|
|
4267
|
+
"gallery-vertical-end",
|
|
4268
|
+
"image",
|
|
4269
|
+
"image-down",
|
|
4270
|
+
"image-minus",
|
|
4271
|
+
"image-off",
|
|
4272
|
+
"image-play",
|
|
4273
|
+
"image-plus",
|
|
4274
|
+
"image-up",
|
|
4275
|
+
"image-upscale",
|
|
4276
|
+
"images",
|
|
4277
|
+
"instagram",
|
|
4278
|
+
"layout-list",
|
|
4279
|
+
"library",
|
|
4280
|
+
"library-big",
|
|
4281
|
+
"lightbulb",
|
|
4282
|
+
"lightbulb-off",
|
|
4283
|
+
"paintbrush",
|
|
4284
|
+
"paintbrush-vertical",
|
|
4285
|
+
"palette",
|
|
4286
|
+
"presentation",
|
|
4287
|
+
"projector",
|
|
4288
|
+
"proportions",
|
|
4289
|
+
"ratio",
|
|
4290
|
+
"rotate-ccw",
|
|
4291
|
+
"rotate-ccw-square",
|
|
4292
|
+
"rotate-cw",
|
|
4293
|
+
"rotate-cw-square",
|
|
4294
|
+
"scan-eye",
|
|
4295
|
+
"scan-search",
|
|
4296
|
+
"spotlight",
|
|
4297
|
+
"square-library",
|
|
4298
|
+
"swatch-book",
|
|
4299
|
+
"video",
|
|
4300
|
+
"video-off",
|
|
4301
|
+
"videotape",
|
|
4302
|
+
"view",
|
|
4303
|
+
"wand",
|
|
4304
|
+
"wand-sparkles",
|
|
4305
|
+
"zap",
|
|
4306
|
+
"zap-off",
|
|
4307
|
+
"zoom-in",
|
|
4308
|
+
"zoom-out",
|
|
4309
|
+
],
|
|
4310
|
+
science: [
|
|
4311
|
+
"activity",
|
|
4312
|
+
"atom",
|
|
4313
|
+
"beaker",
|
|
4314
|
+
"binoculars",
|
|
4315
|
+
"biohazard",
|
|
4316
|
+
"brain",
|
|
4317
|
+
"brain-circuit",
|
|
4318
|
+
"brain-cog",
|
|
4319
|
+
"circle-gauge",
|
|
4320
|
+
"circuit-board",
|
|
4321
|
+
"eclipse",
|
|
4322
|
+
"flask-conical",
|
|
4323
|
+
"flask-conical-off",
|
|
4324
|
+
"flask-round",
|
|
4325
|
+
"gauge",
|
|
4326
|
+
"lens-concave",
|
|
4327
|
+
"lens-convex",
|
|
4328
|
+
"microscope",
|
|
4329
|
+
"mirror-rectangular",
|
|
4330
|
+
"mirror-round",
|
|
4331
|
+
"omega",
|
|
4332
|
+
"orbit",
|
|
4333
|
+
"pipette",
|
|
4334
|
+
"radiation",
|
|
4335
|
+
"satellite",
|
|
4336
|
+
"scale",
|
|
4337
|
+
"shell",
|
|
4338
|
+
"sigma",
|
|
4339
|
+
"solar-panel",
|
|
4340
|
+
"square-activity",
|
|
4341
|
+
"stethoscope",
|
|
4342
|
+
"syringe",
|
|
4343
|
+
"telescope",
|
|
4344
|
+
"test-tube",
|
|
4345
|
+
"test-tube-diagonal",
|
|
4346
|
+
"test-tubes",
|
|
4347
|
+
],
|
|
4348
|
+
seasons: ["flower-2", "leaf", "rose", "snowflake", "sun"],
|
|
4349
|
+
security: [
|
|
4350
|
+
"bomb",
|
|
4351
|
+
"book-key",
|
|
4352
|
+
"book-lock",
|
|
4353
|
+
"brick-wall-fire",
|
|
4354
|
+
"brick-wall-shield",
|
|
4355
|
+
"cctv",
|
|
4356
|
+
"columns-4",
|
|
4357
|
+
"door-closed",
|
|
4358
|
+
"door-closed-locked",
|
|
4359
|
+
"door-open",
|
|
4360
|
+
"earth-lock",
|
|
4361
|
+
"eye",
|
|
4362
|
+
"eye-closed",
|
|
4363
|
+
"eye-off",
|
|
4364
|
+
"file-key",
|
|
4365
|
+
"file-lock",
|
|
4366
|
+
"fingerprint-pattern",
|
|
4367
|
+
"folder-key",
|
|
4368
|
+
"folder-lock",
|
|
4369
|
+
"globe-lock",
|
|
4370
|
+
"handshake",
|
|
4371
|
+
"hat-glasses",
|
|
4372
|
+
"heart-handshake",
|
|
4373
|
+
"id-card",
|
|
4374
|
+
"id-card-lanyard",
|
|
4375
|
+
"key",
|
|
4376
|
+
"key-round",
|
|
4377
|
+
"key-square",
|
|
4378
|
+
"lock",
|
|
4379
|
+
"lock-keyhole",
|
|
4380
|
+
"lock-keyhole-open",
|
|
4381
|
+
"lock-open",
|
|
4382
|
+
"radar",
|
|
4383
|
+
"rotate-ccw-key",
|
|
4384
|
+
"scan",
|
|
4385
|
+
"scan-eye",
|
|
4386
|
+
"scan-face",
|
|
4387
|
+
"scan-qr-code",
|
|
4388
|
+
"shield",
|
|
4389
|
+
"shield-alert",
|
|
4390
|
+
"shield-ban",
|
|
4391
|
+
"shield-check",
|
|
4392
|
+
"shield-ellipsis",
|
|
4393
|
+
"shield-half",
|
|
4394
|
+
"shield-minus",
|
|
4395
|
+
"shield-off",
|
|
4396
|
+
"shield-plus",
|
|
4397
|
+
"shield-question-mark",
|
|
4398
|
+
"shield-user",
|
|
4399
|
+
"shield-x",
|
|
4400
|
+
"square-asterisk",
|
|
4401
|
+
"user-lock",
|
|
4402
|
+
"vault",
|
|
4403
|
+
"waypoints",
|
|
4404
|
+
"worm",
|
|
4405
|
+
],
|
|
4406
|
+
shapes: [
|
|
4407
|
+
"badge",
|
|
4408
|
+
"badge-question-mark",
|
|
4409
|
+
"blocks",
|
|
4410
|
+
"box",
|
|
4411
|
+
"boxes",
|
|
4412
|
+
"circle",
|
|
4413
|
+
"circle-dashed",
|
|
4414
|
+
"circle-dot",
|
|
4415
|
+
"circle-dot-dashed",
|
|
4416
|
+
"circle-off",
|
|
4417
|
+
"circle-pile",
|
|
4418
|
+
"circle-slash-2",
|
|
4419
|
+
"circle-small",
|
|
4420
|
+
"club",
|
|
4421
|
+
"cone",
|
|
4422
|
+
"cross",
|
|
4423
|
+
"cuboid",
|
|
4424
|
+
"cylinder",
|
|
4425
|
+
"diameter",
|
|
4426
|
+
"diamond",
|
|
4427
|
+
"dot",
|
|
4428
|
+
"heart",
|
|
4429
|
+
"hexagon",
|
|
4430
|
+
"lens-concave",
|
|
4431
|
+
"lens-convex",
|
|
4432
|
+
"line-squiggle",
|
|
4433
|
+
"octagon",
|
|
4434
|
+
"octagon-alert",
|
|
4435
|
+
"octagon-pause",
|
|
4436
|
+
"pentagon",
|
|
4437
|
+
"pyramid",
|
|
4438
|
+
"radius",
|
|
4439
|
+
"rectangle-horizontal",
|
|
4440
|
+
"rectangle-vertical",
|
|
4441
|
+
"shapes",
|
|
4442
|
+
"shield",
|
|
4443
|
+
"spade",
|
|
4444
|
+
"sparkle",
|
|
4445
|
+
"square",
|
|
4446
|
+
"squircle",
|
|
4447
|
+
"squircle-dashed",
|
|
4448
|
+
"star",
|
|
4449
|
+
"tangent",
|
|
4450
|
+
"torus",
|
|
4451
|
+
"triangle",
|
|
4452
|
+
"triangle-alert",
|
|
4453
|
+
"triangle-dashed",
|
|
4454
|
+
"triangle-right",
|
|
4455
|
+
"ungroup",
|
|
4456
|
+
"vector-square",
|
|
4457
|
+
],
|
|
4458
|
+
shopping: [
|
|
4459
|
+
"badge-cent",
|
|
4460
|
+
"badge-dollar-sign",
|
|
4461
|
+
"badge-euro",
|
|
4462
|
+
"badge-indian-rupee",
|
|
4463
|
+
"badge-japanese-yen",
|
|
4464
|
+
"badge-percent",
|
|
4465
|
+
"badge-pound-sterling",
|
|
4466
|
+
"badge-russian-ruble",
|
|
4467
|
+
"badge-swiss-franc",
|
|
4468
|
+
"badge-turkish-lira",
|
|
4469
|
+
"barcode",
|
|
4470
|
+
"book-image",
|
|
4471
|
+
"circle-percent",
|
|
4472
|
+
"diamond-percent",
|
|
4473
|
+
"handbag",
|
|
4474
|
+
"percent",
|
|
4475
|
+
"scan",
|
|
4476
|
+
"scan-barcode",
|
|
4477
|
+
"scan-line",
|
|
4478
|
+
"scan-qr-code",
|
|
4479
|
+
"shirt",
|
|
4480
|
+
"shopping-bag",
|
|
4481
|
+
"shopping-basket",
|
|
4482
|
+
"shopping-cart",
|
|
4483
|
+
"square-percent",
|
|
4484
|
+
"store",
|
|
4485
|
+
"ticket-percent",
|
|
4486
|
+
],
|
|
4487
|
+
social: [
|
|
4488
|
+
"activity",
|
|
4489
|
+
"badge",
|
|
4490
|
+
"badge-alert",
|
|
4491
|
+
"badge-check",
|
|
4492
|
+
"badge-info",
|
|
4493
|
+
"badge-minus",
|
|
4494
|
+
"badge-percent",
|
|
4495
|
+
"badge-plus",
|
|
4496
|
+
"badge-question-mark",
|
|
4497
|
+
"badge-x",
|
|
4498
|
+
"book-heart",
|
|
4499
|
+
"book-image",
|
|
4500
|
+
"book-user",
|
|
4501
|
+
"boom-box",
|
|
4502
|
+
"bot",
|
|
4503
|
+
"bot-message-square",
|
|
4504
|
+
"bot-off",
|
|
4505
|
+
"cake",
|
|
4506
|
+
"cake-slice",
|
|
4507
|
+
"circle-fading-plus",
|
|
4508
|
+
"circle-percent",
|
|
4509
|
+
"contact",
|
|
4510
|
+
"contact-round",
|
|
4511
|
+
"diamond-percent",
|
|
4512
|
+
"dribbble",
|
|
4513
|
+
"external-link",
|
|
4514
|
+
"facebook",
|
|
4515
|
+
"flag",
|
|
4516
|
+
"flag-off",
|
|
4517
|
+
"flame",
|
|
4518
|
+
"flame-kindling",
|
|
4519
|
+
"hand-fist",
|
|
4520
|
+
"hand-heart",
|
|
4521
|
+
"handshake",
|
|
4522
|
+
"hash",
|
|
4523
|
+
"hat-glasses",
|
|
4524
|
+
"heart",
|
|
4525
|
+
"heart-minus",
|
|
4526
|
+
"heart-off",
|
|
4527
|
+
"heart-plus",
|
|
4528
|
+
"instagram",
|
|
4529
|
+
"linkedin",
|
|
4530
|
+
"message-circle",
|
|
4531
|
+
"message-circle-check",
|
|
4532
|
+
"message-circle-code",
|
|
4533
|
+
"message-circle-dashed",
|
|
4534
|
+
"message-circle-heart",
|
|
4535
|
+
"message-circle-more",
|
|
4536
|
+
"message-circle-off",
|
|
4537
|
+
"message-circle-plus",
|
|
4538
|
+
"message-circle-question-mark",
|
|
4539
|
+
"message-circle-reply",
|
|
4540
|
+
"message-circle-warning",
|
|
4541
|
+
"message-circle-x",
|
|
4542
|
+
"message-square",
|
|
4543
|
+
"message-square-code",
|
|
4544
|
+
"message-square-dashed",
|
|
4545
|
+
"message-square-diff",
|
|
4546
|
+
"message-square-dot",
|
|
4547
|
+
"message-square-heart",
|
|
4548
|
+
"message-square-lock",
|
|
4549
|
+
"message-square-more",
|
|
4550
|
+
"message-square-off",
|
|
4551
|
+
"message-square-plus",
|
|
4552
|
+
"message-square-quote",
|
|
4553
|
+
"message-square-reply",
|
|
4554
|
+
"message-square-share",
|
|
4555
|
+
"message-square-text",
|
|
4556
|
+
"message-square-warning",
|
|
4557
|
+
"message-square-x",
|
|
4558
|
+
"messages-square",
|
|
4559
|
+
"notebook",
|
|
4560
|
+
"notebook-pen",
|
|
4561
|
+
"notebook-tabs",
|
|
4562
|
+
"notebook-text",
|
|
4563
|
+
"notepad-text",
|
|
4564
|
+
"notepad-text-dashed",
|
|
4565
|
+
"podcast",
|
|
4566
|
+
"qr-code",
|
|
4567
|
+
"radio",
|
|
4568
|
+
"radio-tower",
|
|
4569
|
+
"repeat-2",
|
|
4570
|
+
"ribbon",
|
|
4571
|
+
"rose",
|
|
4572
|
+
"rss",
|
|
4573
|
+
"scan",
|
|
4574
|
+
"scan-face",
|
|
4575
|
+
"search",
|
|
4576
|
+
"search-alert",
|
|
4577
|
+
"search-check",
|
|
4578
|
+
"search-code",
|
|
4579
|
+
"search-slash",
|
|
4580
|
+
"search-x",
|
|
4581
|
+
"share",
|
|
4582
|
+
"share-2",
|
|
4583
|
+
"slack",
|
|
4584
|
+
"smile-plus",
|
|
4585
|
+
"spool",
|
|
4586
|
+
"square-activity",
|
|
4587
|
+
"square-arrow-out-up-right",
|
|
4588
|
+
"square-arrow-up-right",
|
|
4589
|
+
"square-percent",
|
|
4590
|
+
"star",
|
|
4591
|
+
"star-half",
|
|
4592
|
+
"star-off",
|
|
4593
|
+
"sticker",
|
|
4594
|
+
"sticky-note",
|
|
4595
|
+
"theater",
|
|
4596
|
+
"thumbs-down",
|
|
4597
|
+
"thumbs-up",
|
|
4598
|
+
"twitch",
|
|
4599
|
+
"twitter",
|
|
4600
|
+
"user-round-search",
|
|
4601
|
+
"user-search",
|
|
4602
|
+
"voicemail",
|
|
4603
|
+
"vote",
|
|
4604
|
+
"waypoints",
|
|
4605
|
+
"webhook",
|
|
4606
|
+
"webhook-off",
|
|
4607
|
+
"youtube",
|
|
4608
|
+
],
|
|
4609
|
+
sports: [
|
|
4610
|
+
"award",
|
|
4611
|
+
"circle-gauge",
|
|
4612
|
+
"circle-star",
|
|
4613
|
+
"dumbbell",
|
|
4614
|
+
"fishing-hook",
|
|
4615
|
+
"gauge",
|
|
4616
|
+
"hand-fist",
|
|
4617
|
+
"land-plot",
|
|
4618
|
+
"medal",
|
|
4619
|
+
"square-star",
|
|
4620
|
+
"trophy",
|
|
4621
|
+
"volleyball",
|
|
4622
|
+
"waves-ladder",
|
|
4623
|
+
],
|
|
4624
|
+
sustainability: [
|
|
4625
|
+
"dam",
|
|
4626
|
+
"flower",
|
|
4627
|
+
"flower-2",
|
|
4628
|
+
"house-plug",
|
|
4629
|
+
"leaf",
|
|
4630
|
+
"leafy-green",
|
|
4631
|
+
"recycle",
|
|
4632
|
+
"rose",
|
|
4633
|
+
"solar-panel",
|
|
4634
|
+
"sprout",
|
|
4635
|
+
"sun",
|
|
4636
|
+
"tent",
|
|
4637
|
+
"tractor",
|
|
4638
|
+
"tree-deciduous",
|
|
4639
|
+
"tree-palm",
|
|
4640
|
+
"tree-pine",
|
|
4641
|
+
"trees",
|
|
4642
|
+
"utility-pole",
|
|
4643
|
+
"vegan",
|
|
4644
|
+
"waves",
|
|
4645
|
+
"waves-arrow-down",
|
|
4646
|
+
"waves-arrow-up",
|
|
4647
|
+
"wind",
|
|
4648
|
+
"wind-arrow-down",
|
|
4649
|
+
],
|
|
4650
|
+
text: [
|
|
4651
|
+
"a-arrow-down",
|
|
4652
|
+
"a-arrow-up",
|
|
4653
|
+
"a-large-small",
|
|
4654
|
+
"ampersand",
|
|
4655
|
+
"ampersands",
|
|
4656
|
+
"anchor",
|
|
4657
|
+
"arrow-big-up",
|
|
4658
|
+
"arrow-big-up-dash",
|
|
4659
|
+
"arrow-down-0-1",
|
|
4660
|
+
"arrow-down-1-0",
|
|
4661
|
+
"arrow-down-a-z",
|
|
4662
|
+
"arrow-down-narrow-wide",
|
|
4663
|
+
"arrow-down-wide-narrow",
|
|
4664
|
+
"arrow-down-z-a",
|
|
4665
|
+
"arrow-up-0-1",
|
|
4666
|
+
"arrow-up-1-0",
|
|
4667
|
+
"arrow-up-a-z",
|
|
4668
|
+
"arrow-up-narrow-wide",
|
|
4669
|
+
"arrow-up-wide-narrow",
|
|
4670
|
+
"arrow-up-z-a",
|
|
4671
|
+
"asterisk",
|
|
4672
|
+
"at-sign",
|
|
4673
|
+
"baseline",
|
|
4674
|
+
"binary",
|
|
4675
|
+
"bold",
|
|
4676
|
+
"book",
|
|
4677
|
+
"book-a",
|
|
4678
|
+
"book-alert",
|
|
4679
|
+
"book-audio",
|
|
4680
|
+
"book-check",
|
|
4681
|
+
"book-copy",
|
|
4682
|
+
"book-headphones",
|
|
4683
|
+
"book-heart",
|
|
4684
|
+
"book-image",
|
|
4685
|
+
"book-marked",
|
|
4686
|
+
"book-minus",
|
|
4687
|
+
"book-open",
|
|
4688
|
+
"book-open-check",
|
|
4689
|
+
"book-open-text",
|
|
4690
|
+
"book-plus",
|
|
4691
|
+
"book-search",
|
|
4692
|
+
"book-text",
|
|
4693
|
+
"book-type",
|
|
4694
|
+
"book-x",
|
|
4695
|
+
"brush",
|
|
4696
|
+
"case-lower",
|
|
4697
|
+
"case-sensitive",
|
|
4698
|
+
"case-upper",
|
|
4699
|
+
"circle-question-mark",
|
|
4700
|
+
"clipboard",
|
|
4701
|
+
"clipboard-check",
|
|
4702
|
+
"clipboard-clock",
|
|
4703
|
+
"clipboard-copy",
|
|
4704
|
+
"clipboard-list",
|
|
4705
|
+
"clipboard-minus",
|
|
4706
|
+
"clipboard-paste",
|
|
4707
|
+
"clipboard-pen",
|
|
4708
|
+
"clipboard-pen-line",
|
|
4709
|
+
"clipboard-plus",
|
|
4710
|
+
"clipboard-type",
|
|
4711
|
+
"clipboard-x",
|
|
4712
|
+
"code",
|
|
4713
|
+
"code-xml",
|
|
4714
|
+
"columns-2",
|
|
4715
|
+
"columns-3",
|
|
4716
|
+
"columns-4",
|
|
4717
|
+
"copy",
|
|
4718
|
+
"copy-check",
|
|
4719
|
+
"copy-minus",
|
|
4720
|
+
"copy-plus",
|
|
4721
|
+
"copy-slash",
|
|
4722
|
+
"copyleft",
|
|
4723
|
+
"copyright",
|
|
4724
|
+
"corner-down-right",
|
|
4725
|
+
"creative-commons",
|
|
4726
|
+
"decimals-arrow-left",
|
|
4727
|
+
"decimals-arrow-right",
|
|
4728
|
+
"delete",
|
|
4729
|
+
"dot",
|
|
4730
|
+
"eraser",
|
|
4731
|
+
"expand",
|
|
4732
|
+
"external-link",
|
|
4733
|
+
"file-text",
|
|
4734
|
+
"file-type",
|
|
4735
|
+
"file-type-corner",
|
|
4736
|
+
"grid-2x2",
|
|
4737
|
+
"grid-2x2-check",
|
|
4738
|
+
"grid-2x2-plus",
|
|
4739
|
+
"grid-2x2-x",
|
|
4740
|
+
"grid-3x2",
|
|
4741
|
+
"grid-3x3",
|
|
4742
|
+
"hash",
|
|
4743
|
+
"heading",
|
|
4744
|
+
"heading-1",
|
|
4745
|
+
"heading-2",
|
|
4746
|
+
"heading-3",
|
|
4747
|
+
"heading-4",
|
|
4748
|
+
"heading-5",
|
|
4749
|
+
"heading-6",
|
|
4750
|
+
"highlighter",
|
|
4751
|
+
"image",
|
|
4752
|
+
"image-down",
|
|
4753
|
+
"image-play",
|
|
4754
|
+
"image-up",
|
|
4755
|
+
"images",
|
|
4756
|
+
"italic",
|
|
4757
|
+
"keyboard",
|
|
4758
|
+
"keyboard-off",
|
|
4759
|
+
"languages",
|
|
4760
|
+
"layout-list",
|
|
4761
|
+
"library",
|
|
4762
|
+
"library-big",
|
|
4763
|
+
"ligature",
|
|
4764
|
+
"link",
|
|
4765
|
+
"link-2",
|
|
4766
|
+
"link-2-off",
|
|
4767
|
+
"list",
|
|
4768
|
+
"list-check",
|
|
4769
|
+
"list-checks",
|
|
4770
|
+
"list-chevrons-down-up",
|
|
4771
|
+
"list-chevrons-up-down",
|
|
4772
|
+
"list-collapse",
|
|
4773
|
+
"list-end",
|
|
4774
|
+
"list-filter",
|
|
4775
|
+
"list-filter-plus",
|
|
4776
|
+
"list-indent-decrease",
|
|
4777
|
+
"list-indent-increase",
|
|
4778
|
+
"list-minus",
|
|
4779
|
+
"list-ordered",
|
|
4780
|
+
"list-plus",
|
|
4781
|
+
"list-restart",
|
|
4782
|
+
"list-start",
|
|
4783
|
+
"list-todo",
|
|
4784
|
+
"list-tree",
|
|
4785
|
+
"list-x",
|
|
4786
|
+
"logs",
|
|
4787
|
+
"mail",
|
|
4788
|
+
"map",
|
|
4789
|
+
"message-square-quote",
|
|
4790
|
+
"minus",
|
|
4791
|
+
"notebook",
|
|
4792
|
+
"notebook-pen",
|
|
4793
|
+
"notebook-text",
|
|
4794
|
+
"notepad-text",
|
|
4795
|
+
"notepad-text-dashed",
|
|
4796
|
+
"omega",
|
|
4797
|
+
"paint-roller",
|
|
4798
|
+
"paintbrush",
|
|
4799
|
+
"paintbrush-vertical",
|
|
4800
|
+
"palette",
|
|
4801
|
+
"paperclip",
|
|
4802
|
+
"pen",
|
|
4803
|
+
"pen-line",
|
|
4804
|
+
"pen-off",
|
|
4805
|
+
"pen-tool",
|
|
4806
|
+
"pencil",
|
|
4807
|
+
"pencil-line",
|
|
4808
|
+
"pencil-off",
|
|
4809
|
+
"pencil-ruler",
|
|
4810
|
+
"phone",
|
|
4811
|
+
"pilcrow",
|
|
4812
|
+
"pilcrow-left",
|
|
4813
|
+
"pilcrow-right",
|
|
4814
|
+
"pipette",
|
|
4815
|
+
"plus",
|
|
4816
|
+
"quote",
|
|
4817
|
+
"rectangle-circle",
|
|
4818
|
+
"rectangle-ellipsis",
|
|
4819
|
+
"redo",
|
|
4820
|
+
"redo-2",
|
|
4821
|
+
"redo-dot",
|
|
4822
|
+
"regex",
|
|
4823
|
+
"remove-formatting",
|
|
4824
|
+
"replace",
|
|
4825
|
+
"replace-all",
|
|
4826
|
+
"rows-2",
|
|
4827
|
+
"rows-3",
|
|
4828
|
+
"rows-4",
|
|
4829
|
+
"save",
|
|
4830
|
+
"save-all",
|
|
4831
|
+
"save-off",
|
|
4832
|
+
"scan-text",
|
|
4833
|
+
"scissors",
|
|
4834
|
+
"scroll",
|
|
4835
|
+
"scroll-text",
|
|
4836
|
+
"search",
|
|
4837
|
+
"search-alert",
|
|
4838
|
+
"search-check",
|
|
4839
|
+
"search-code",
|
|
4840
|
+
"search-slash",
|
|
4841
|
+
"search-x",
|
|
4842
|
+
"section",
|
|
4843
|
+
"separator-horizontal",
|
|
4844
|
+
"separator-vertical",
|
|
4845
|
+
"sheet",
|
|
4846
|
+
"sigma",
|
|
4847
|
+
"signature",
|
|
4848
|
+
"space",
|
|
4849
|
+
"spell-check",
|
|
4850
|
+
"spell-check-2",
|
|
4851
|
+
"square-asterisk",
|
|
4852
|
+
"square-bottom-dashed-scissors",
|
|
4853
|
+
"square-code",
|
|
4854
|
+
"square-dashed",
|
|
4855
|
+
"square-library",
|
|
4856
|
+
"square-minus",
|
|
4857
|
+
"square-pen",
|
|
4858
|
+
"square-pilcrow",
|
|
4859
|
+
"square-plus",
|
|
4860
|
+
"square-scissors",
|
|
4861
|
+
"square-sigma",
|
|
4862
|
+
"square-stack",
|
|
4863
|
+
"sticky-note",
|
|
4864
|
+
"strikethrough",
|
|
4865
|
+
"subscript",
|
|
4866
|
+
"superscript",
|
|
4867
|
+
"table",
|
|
4868
|
+
"table-2",
|
|
4869
|
+
"table-cells-merge",
|
|
4870
|
+
"table-cells-split",
|
|
4871
|
+
"table-columns-split",
|
|
4872
|
+
"table-of-contents",
|
|
4873
|
+
"table-properties",
|
|
4874
|
+
"table-rows-split",
|
|
4875
|
+
"text-align-center",
|
|
4876
|
+
"text-align-end",
|
|
4877
|
+
"text-align-justify",
|
|
4878
|
+
"text-align-start",
|
|
4879
|
+
"text-cursor",
|
|
4880
|
+
"text-cursor-input",
|
|
4881
|
+
"text-initial",
|
|
4882
|
+
"text-quote",
|
|
4883
|
+
"text-search",
|
|
4884
|
+
"text-select",
|
|
4885
|
+
"text-wrap",
|
|
4886
|
+
"type",
|
|
4887
|
+
"type-outline",
|
|
4888
|
+
"underline",
|
|
4889
|
+
"undo",
|
|
4890
|
+
"undo-2",
|
|
4891
|
+
"undo-dot",
|
|
4892
|
+
"unlink",
|
|
4893
|
+
"unlink-2",
|
|
4894
|
+
"whole-word",
|
|
4895
|
+
"zoom-in",
|
|
4896
|
+
"zoom-out",
|
|
4897
|
+
],
|
|
4898
|
+
time: [
|
|
4899
|
+
"alarm-clock",
|
|
4900
|
+
"alarm-clock-check",
|
|
4901
|
+
"alarm-clock-minus",
|
|
4902
|
+
"alarm-clock-off",
|
|
4903
|
+
"alarm-clock-plus",
|
|
4904
|
+
"calendar",
|
|
4905
|
+
"calendar-1",
|
|
4906
|
+
"calendar-arrow-down",
|
|
4907
|
+
"calendar-arrow-up",
|
|
4908
|
+
"calendar-check",
|
|
4909
|
+
"calendar-check-2",
|
|
4910
|
+
"calendar-clock",
|
|
4911
|
+
"calendar-cog",
|
|
4912
|
+
"calendar-days",
|
|
4913
|
+
"calendar-fold",
|
|
4914
|
+
"calendar-heart",
|
|
4915
|
+
"calendar-minus",
|
|
4916
|
+
"calendar-minus-2",
|
|
4917
|
+
"calendar-off",
|
|
4918
|
+
"calendar-plus",
|
|
4919
|
+
"calendar-plus-2",
|
|
4920
|
+
"calendar-range",
|
|
4921
|
+
"calendar-search",
|
|
4922
|
+
"calendar-sync",
|
|
4923
|
+
"calendar-x",
|
|
4924
|
+
"calendar-x-2",
|
|
4925
|
+
"calendars",
|
|
4926
|
+
"chart-no-axes-gantt",
|
|
4927
|
+
"clipboard-clock",
|
|
4928
|
+
"clock",
|
|
4929
|
+
"clock-1",
|
|
4930
|
+
"clock-10",
|
|
4931
|
+
"clock-11",
|
|
4932
|
+
"clock-12",
|
|
4933
|
+
"clock-2",
|
|
4934
|
+
"clock-3",
|
|
4935
|
+
"clock-4",
|
|
4936
|
+
"clock-5",
|
|
4937
|
+
"clock-6",
|
|
4938
|
+
"clock-7",
|
|
4939
|
+
"clock-8",
|
|
4940
|
+
"clock-9",
|
|
4941
|
+
"clock-alert",
|
|
4942
|
+
"clock-arrow-down",
|
|
4943
|
+
"clock-arrow-up",
|
|
4944
|
+
"clock-check",
|
|
4945
|
+
"clock-fading",
|
|
4946
|
+
"clock-plus",
|
|
4947
|
+
"file-clock",
|
|
4948
|
+
"folder-clock",
|
|
4949
|
+
"history",
|
|
4950
|
+
"hourglass",
|
|
4951
|
+
"square-chart-gantt",
|
|
4952
|
+
"sunrise",
|
|
4953
|
+
"timer",
|
|
4954
|
+
"timer-off",
|
|
4955
|
+
"timer-reset",
|
|
4956
|
+
"watch",
|
|
4957
|
+
],
|
|
4958
|
+
tools: [
|
|
4959
|
+
"anvil",
|
|
4960
|
+
"axe",
|
|
4961
|
+
"between-horizontal-end",
|
|
4962
|
+
"between-horizontal-start",
|
|
4963
|
+
"between-vertical-end",
|
|
4964
|
+
"between-vertical-start",
|
|
4965
|
+
"blend",
|
|
4966
|
+
"bolt",
|
|
4967
|
+
"bomb",
|
|
4968
|
+
"bow-arrow",
|
|
4969
|
+
"brush",
|
|
4970
|
+
"brush-cleaning",
|
|
4971
|
+
"diameter",
|
|
4972
|
+
"diamond-minus",
|
|
4973
|
+
"diamond-plus",
|
|
4974
|
+
"drafting-compass",
|
|
4975
|
+
"drill",
|
|
4976
|
+
"fire-extinguisher",
|
|
4977
|
+
"gavel",
|
|
4978
|
+
"hammer",
|
|
4979
|
+
"hard-hat",
|
|
4980
|
+
"inspection-panel",
|
|
4981
|
+
"land-plot",
|
|
4982
|
+
"lens-concave",
|
|
4983
|
+
"lens-convex",
|
|
4984
|
+
"minus",
|
|
4985
|
+
"mirror-rectangular",
|
|
4986
|
+
"mirror-round",
|
|
4987
|
+
"paint-bucket",
|
|
4988
|
+
"paint-roller",
|
|
4989
|
+
"paintbrush",
|
|
4990
|
+
"paintbrush-vertical",
|
|
4991
|
+
"pen",
|
|
4992
|
+
"pen-line",
|
|
4993
|
+
"pen-off",
|
|
4994
|
+
"pencil",
|
|
4995
|
+
"pencil-line",
|
|
4996
|
+
"pencil-off",
|
|
4997
|
+
"pencil-ruler",
|
|
4998
|
+
"pickaxe",
|
|
4999
|
+
"plus",
|
|
5000
|
+
"pocket-knife",
|
|
5001
|
+
"radius",
|
|
5002
|
+
"rotate-ccw-square",
|
|
5003
|
+
"rotate-cw-square",
|
|
5004
|
+
"ruler",
|
|
5005
|
+
"ruler-dimension-line",
|
|
5006
|
+
"scissors",
|
|
5007
|
+
"scissors-line-dashed",
|
|
5008
|
+
"shovel",
|
|
5009
|
+
"spline-pointer",
|
|
5010
|
+
"spool",
|
|
5011
|
+
"spray-can",
|
|
5012
|
+
"square-bottom-dashed-scissors",
|
|
5013
|
+
"square-dashed-mouse-pointer",
|
|
5014
|
+
"square-minus",
|
|
5015
|
+
"square-mouse-pointer",
|
|
5016
|
+
"square-plus",
|
|
5017
|
+
"square-scissors",
|
|
5018
|
+
"stamp",
|
|
5019
|
+
"sword",
|
|
5020
|
+
"swords",
|
|
5021
|
+
"tablet-smartphone",
|
|
5022
|
+
"tangent",
|
|
5023
|
+
"telescope",
|
|
5024
|
+
"tool-case",
|
|
5025
|
+
"toolbox",
|
|
5026
|
+
"torus",
|
|
5027
|
+
"vector-square",
|
|
5028
|
+
"wrench",
|
|
5029
|
+
],
|
|
5030
|
+
transportation: [
|
|
5031
|
+
"ambulance",
|
|
5032
|
+
"anchor",
|
|
5033
|
+
"arrows-up-from-line",
|
|
5034
|
+
"baggage-claim",
|
|
5035
|
+
"bike",
|
|
5036
|
+
"briefcase",
|
|
5037
|
+
"briefcase-business",
|
|
5038
|
+
"briefcase-conveyor-belt",
|
|
5039
|
+
"briefcase-medical",
|
|
5040
|
+
"bus",
|
|
5041
|
+
"bus-front",
|
|
5042
|
+
"cable-car",
|
|
5043
|
+
"car",
|
|
5044
|
+
"car-front",
|
|
5045
|
+
"car-taxi-front",
|
|
5046
|
+
"caravan",
|
|
5047
|
+
"cigarette",
|
|
5048
|
+
"cigarette-off",
|
|
5049
|
+
"circle-gauge",
|
|
5050
|
+
"circle-parking",
|
|
5051
|
+
"circle-parking-off",
|
|
5052
|
+
"container",
|
|
5053
|
+
"drone",
|
|
5054
|
+
"ev-charger",
|
|
5055
|
+
"forklift",
|
|
5056
|
+
"fuel",
|
|
5057
|
+
"gauge",
|
|
5058
|
+
"handbag",
|
|
5059
|
+
"helicopter",
|
|
5060
|
+
"kayak",
|
|
5061
|
+
"luggage",
|
|
5062
|
+
"motorbike",
|
|
5063
|
+
"octagon-minus",
|
|
5064
|
+
"parking-meter",
|
|
5065
|
+
"plane",
|
|
5066
|
+
"plane-landing",
|
|
5067
|
+
"plane-takeoff",
|
|
5068
|
+
"rail-symbol",
|
|
5069
|
+
"sailboat",
|
|
5070
|
+
"scooter",
|
|
5071
|
+
"ship",
|
|
5072
|
+
"ship-wheel",
|
|
5073
|
+
"square-m",
|
|
5074
|
+
"square-parking",
|
|
5075
|
+
"square-parking-off",
|
|
5076
|
+
"ticket",
|
|
5077
|
+
"ticket-check",
|
|
5078
|
+
"ticket-minus",
|
|
5079
|
+
"ticket-percent",
|
|
5080
|
+
"ticket-plus",
|
|
5081
|
+
"ticket-slash",
|
|
5082
|
+
"ticket-x",
|
|
5083
|
+
"tickets",
|
|
5084
|
+
"tickets-plane",
|
|
5085
|
+
"tower-control",
|
|
5086
|
+
"tractor",
|
|
5087
|
+
"traffic-cone",
|
|
5088
|
+
"train-front",
|
|
5089
|
+
"train-front-tunnel",
|
|
5090
|
+
"train-track",
|
|
5091
|
+
"tram-front",
|
|
5092
|
+
"truck",
|
|
5093
|
+
"truck-electric",
|
|
5094
|
+
"van",
|
|
5095
|
+
],
|
|
5096
|
+
travel: [
|
|
5097
|
+
"alarm-smoke",
|
|
5098
|
+
"backpack",
|
|
5099
|
+
"baggage-claim",
|
|
5100
|
+
"bath",
|
|
5101
|
+
"binoculars",
|
|
5102
|
+
"book-image",
|
|
5103
|
+
"briefcase-conveyor-belt",
|
|
5104
|
+
"cable-car",
|
|
5105
|
+
"caravan",
|
|
5106
|
+
"cigarette",
|
|
5107
|
+
"cigarette-off",
|
|
5108
|
+
"compass",
|
|
5109
|
+
"concierge-bell",
|
|
5110
|
+
"door-closed",
|
|
5111
|
+
"door-closed-locked",
|
|
5112
|
+
"door-open",
|
|
5113
|
+
"fire-extinguisher",
|
|
5114
|
+
"fishing-hook",
|
|
5115
|
+
"heater",
|
|
5116
|
+
"helicopter",
|
|
5117
|
+
"hospital",
|
|
5118
|
+
"hotel",
|
|
5119
|
+
"luggage",
|
|
5120
|
+
"map-minus",
|
|
5121
|
+
"map-pin",
|
|
5122
|
+
"map-pin-check",
|
|
5123
|
+
"map-pin-check-inside",
|
|
5124
|
+
"map-pin-house",
|
|
5125
|
+
"map-pin-minus",
|
|
5126
|
+
"map-pin-minus-inside",
|
|
5127
|
+
"map-pin-off",
|
|
5128
|
+
"map-pin-pen",
|
|
5129
|
+
"map-pin-plus",
|
|
5130
|
+
"map-pin-plus-inside",
|
|
5131
|
+
"map-pin-x",
|
|
5132
|
+
"map-pin-x-inside",
|
|
5133
|
+
"map-pinned",
|
|
5134
|
+
"plane",
|
|
5135
|
+
"plane-landing",
|
|
5136
|
+
"plane-takeoff",
|
|
5137
|
+
"pyramid",
|
|
5138
|
+
"receipt",
|
|
5139
|
+
"receipt-cent",
|
|
5140
|
+
"receipt-euro",
|
|
5141
|
+
"receipt-indian-rupee",
|
|
5142
|
+
"receipt-japanese-yen",
|
|
5143
|
+
"receipt-pound-sterling",
|
|
5144
|
+
"receipt-russian-ruble",
|
|
5145
|
+
"receipt-swiss-franc",
|
|
5146
|
+
"receipt-text",
|
|
5147
|
+
"receipt-turkish-lira",
|
|
5148
|
+
"sailboat",
|
|
5149
|
+
"shell",
|
|
5150
|
+
"ship",
|
|
5151
|
+
"ship-wheel",
|
|
5152
|
+
"shower-head",
|
|
5153
|
+
"soap-dispenser-droplet",
|
|
5154
|
+
"tent",
|
|
5155
|
+
"tent-tree",
|
|
5156
|
+
"tickets",
|
|
5157
|
+
"tickets-plane",
|
|
5158
|
+
"towel-rack",
|
|
5159
|
+
"tower-control",
|
|
5160
|
+
"utensils",
|
|
5161
|
+
"utensils-crossed",
|
|
5162
|
+
"vault",
|
|
5163
|
+
"volleyball",
|
|
5164
|
+
"washing-machine",
|
|
5165
|
+
],
|
|
5166
|
+
weather: [
|
|
5167
|
+
"bubbles",
|
|
5168
|
+
"cloud",
|
|
5169
|
+
"cloud-drizzle",
|
|
5170
|
+
"cloud-fog",
|
|
5171
|
+
"cloud-hail",
|
|
5172
|
+
"cloud-lightning",
|
|
5173
|
+
"cloud-moon",
|
|
5174
|
+
"cloud-moon-rain",
|
|
5175
|
+
"cloud-off",
|
|
5176
|
+
"cloud-rain",
|
|
5177
|
+
"cloud-rain-wind",
|
|
5178
|
+
"cloud-snow",
|
|
5179
|
+
"cloud-sun",
|
|
5180
|
+
"cloud-sun-rain",
|
|
5181
|
+
"cloudy",
|
|
5182
|
+
"droplet",
|
|
5183
|
+
"droplet-off",
|
|
5184
|
+
"droplets",
|
|
5185
|
+
"flame",
|
|
5186
|
+
"haze",
|
|
5187
|
+
"moon-star",
|
|
5188
|
+
"rainbow",
|
|
5189
|
+
"snowflake",
|
|
5190
|
+
"solar-panel",
|
|
5191
|
+
"sparkles",
|
|
5192
|
+
"star",
|
|
5193
|
+
"sun",
|
|
5194
|
+
"sun-dim",
|
|
5195
|
+
"sun-medium",
|
|
5196
|
+
"sun-snow",
|
|
5197
|
+
"sunrise",
|
|
5198
|
+
"sunset",
|
|
5199
|
+
"thermometer",
|
|
5200
|
+
"thermometer-snowflake",
|
|
5201
|
+
"thermometer-sun",
|
|
5202
|
+
"tornado",
|
|
5203
|
+
"umbrella",
|
|
5204
|
+
"umbrella-off",
|
|
5205
|
+
"waves",
|
|
5206
|
+
"waves-arrow-down",
|
|
5207
|
+
"waves-arrow-up",
|
|
5208
|
+
"wind",
|
|
5209
|
+
"wind-arrow-down",
|
|
5210
|
+
"zap",
|
|
5211
|
+
"zap-off",
|
|
5212
|
+
],
|
|
5213
|
+
};
|