datocms-plugin-sdk 1.0.0-alpha.0 → 1.0.0-alpha.1

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/src/types.ts CHANGED
@@ -1,21 +1,57 @@
1
1
  import { BlockNodeTypeWithCustomStyle } from 'datocms-structured-text-utils';
2
+ import { SchemaTypes } from '@datocms/cma-client';
2
3
 
3
- import {
4
- Account,
5
- Organization,
6
- Field,
7
- Fieldset,
8
- Item,
9
- ItemType,
10
- Plugin,
11
- Role,
12
- Site,
13
- SsoUser,
14
- Upload,
15
- User,
16
- } from './SiteApiSchema';
17
-
18
- export type Icon = string | { type: 'svg'; viewBox: string; content: string };
4
+ type Account = SchemaTypes.Account;
5
+ type Organization = SchemaTypes.Organization;
6
+ type Field = SchemaTypes.Field;
7
+ type Fieldset = SchemaTypes.Fieldset;
8
+ type Item = SchemaTypes.Item;
9
+ type ItemType = SchemaTypes.ItemType;
10
+ type Plugin = SchemaTypes.Plugin;
11
+ type Role = SchemaTypes.Role;
12
+ type Site = SchemaTypes.Site;
13
+ type SsoUser = SchemaTypes.SsoUser;
14
+ type Upload = SchemaTypes.Upload;
15
+ type User = SchemaTypes.User;
16
+
17
+ export type Icon =
18
+ | AwesomeFontIconIdentifier
19
+ | { type: 'svg'; viewBox: string; content: string };
20
+
21
+ export type ItemListLocationQuery = {
22
+ locale?: string;
23
+ filter?: {
24
+ query?: string;
25
+ fields?: Record<string, unknown>;
26
+ };
27
+ };
28
+
29
+ export type ItemPresentationInfo = {
30
+ /** The title to present the record */
31
+ title: string;
32
+ /** An image representative of the record */
33
+ imageUrl?: string;
34
+ /**
35
+ * If different plugins implement the `buildItemPresentationInfo` hook, the
36
+ * one with the lowest `rank` will be used. If you want to specify an explicit
37
+ * value for `rank`, make sure to offer a way for final users to customize it
38
+ * inside the plugin's settings form, otherwise the hardcoded value you choose
39
+ * might clash with the one of another plugin!
40
+ */
41
+ rank?: number;
42
+ };
43
+
44
+ export type InitialLocationQueryForItemSelector = {
45
+ locationQuery: ItemListLocationQuery;
46
+ /**
47
+ * If different plugins implement the `initialLocationQueryForItemSelector`
48
+ * hook, the one with the lowest `rank` will be used. If you want to specify
49
+ * an explicit value for `rank`, make sure to offer a way for final users to
50
+ * customize it inside the plugin's settings form, otherwise the hardcoded
51
+ * value you choose might clash with the one of another plugin!
52
+ */
53
+ rank?: number;
54
+ };
19
55
 
20
56
  /** A tab to be displayed in the top-bar of the UI */
21
57
  export type MainNavigationTab = {
@@ -197,7 +233,7 @@ export type ManualFieldExtension = {
197
233
 
198
234
  export type ItemFormSidebarPanelPlacement = [
199
235
  'before' | 'after',
200
- 'info' | 'actions' | 'links' | 'history',
236
+ 'info' | 'publishedVersion' | 'schedule' | 'links' | 'history',
201
237
  ];
202
238
 
203
239
  /** A sidebar panel to be shown inside the record's editing page */
@@ -235,6 +271,32 @@ export type ItemFormSidebarPanel = {
235
271
  initialHeight?: number;
236
272
  };
237
273
 
274
+ /** A sidebar to be shown inside the record's editing page */
275
+ export type ItemFormSidebar = {
276
+ /**
277
+ * ID of the sidebar. Will be the first argument for the
278
+ * `renderItemFormSidebar` function
279
+ */
280
+ id: string;
281
+ /** Label to be shown on the collapsible sidebar handle */
282
+ label: string;
283
+ /**
284
+ * An arbitrary configuration object that will be passed as the `parameters`
285
+ * property of the second argument of the `renderItemFormSidebar` function
286
+ */
287
+ parameters?: Record<string, unknown>;
288
+ /**
289
+ * If multiple sidebars specify the same `placement`, they will be sorted by
290
+ * ascending `rank`. If you want to specify an explicit value for `rank`, make
291
+ * sure to offer a way for final users to customize it inside the plugin's
292
+ * settings form, otherwise the hardcoded value you choose might clash with
293
+ * the one of another plugin!
294
+ */
295
+ rank?: number;
296
+ /** The preferred width for the sidebar */
297
+ preferredWidth?: number;
298
+ };
299
+
238
300
  /** An outlet to be shown at the top of a record's editing page */
239
301
  export type ItemFormOutlet = {
240
302
  /**
@@ -273,7 +335,7 @@ export type EditorOverride = {
273
335
  */
274
336
  parameters?: Record<string, unknown>;
275
337
  /**
276
- * If multiple plugins override a field, the one with the highest `rank` will
338
+ * If multiple plugins override a field, the one with the lowest `rank` will
277
339
  * win. If you want to specify an explicit value for `rank`, make sure to
278
340
  * offer a way for final users to customize it inside the plugin's settings
279
341
  * form, otherwise the hardcoded value you choose might clash with the one of
@@ -854,8 +916,17 @@ export type ItemDialogMethods = {
854
916
  * ```
855
917
  */
856
918
  selectItem: {
857
- (itemTypeId: string, options: { multiple: true }): Promise<Item[] | null>;
858
- (itemTypeId: string, options?: { multiple: false }): Promise<Item | null>;
919
+ (
920
+ itemTypeId: string,
921
+ options: { multiple: true; initialLocationQuery?: ItemListLocationQuery },
922
+ ): Promise<Item[] | null>;
923
+ (
924
+ itemTypeId: string,
925
+ options?: {
926
+ multiple: false;
927
+ initialLocationQuery?: ItemListLocationQuery;
928
+ },
929
+ ): Promise<Item | null>;
859
930
  };
860
931
  /**
861
932
  * Opens a dialog for editing an existing record. It returns a promise
@@ -1226,6 +1297,38 @@ export type ItemFormAdditionalMethods = {
1226
1297
  * ```
1227
1298
  */
1228
1299
  setFieldValue: (path: string, value: unknown) => Promise<void>;
1300
+ /**
1301
+ * Takes the internal form state, and transforms it into an Item entity
1302
+ * compatible with DatoCMS API.
1303
+ *
1304
+ * When `skipUnchangedFields`, only the fields that changed value will be
1305
+ * serialized.
1306
+ *
1307
+ * If the required nested blocks are still not loaded, this method will return
1308
+ * `undefined`.
1309
+ *
1310
+ * @example
1311
+ *
1312
+ * ```js
1313
+ * await ctx.formValuesToItem(ctx.formValues, false);
1314
+ * ```
1315
+ */
1316
+ formValuesToItem: (
1317
+ formValues: Record<string, unknown>,
1318
+ skipUnchangedFields?: boolean,
1319
+ ) => Promise<Omit<Item, 'id' | 'meta'> | undefined>;
1320
+ /**
1321
+ * Takes an Item entity, and converts it into the internal form state
1322
+ *
1323
+ * @example
1324
+ *
1325
+ * ```js
1326
+ * await ctx.itemToFormValues(ctx.item);
1327
+ * ```
1328
+ */
1329
+ itemToFormValues: (
1330
+ item: Omit<Item, 'id' | 'meta'>,
1331
+ ) => Promise<Record<string, unknown>>;
1229
1332
  /**
1230
1333
  * Triggers a submit form for current record
1231
1334
  *
@@ -1267,6 +1370,31 @@ export type RenderSidebarPanelMethods = ItemFormMethods &
1267
1370
  export type RenderSidebarPanelPropertiesAndMethods = RenderSidebarPanelMethods &
1268
1371
  RenderSidebarPanelProperties;
1269
1372
 
1373
+ /** Information regarding the specific sidebar panel that you need to render */
1374
+ export type RenderSidebarAdditionalProperties = {
1375
+ mode: 'renderItemFormSidebar';
1376
+ /** The ID of the sidebar that needs to be rendered */
1377
+ sidebarId: string;
1378
+ /**
1379
+ * The arbitrary `parameters` of the declared in the `itemFormSidebars`
1380
+ * function
1381
+ */
1382
+ parameters: Record<string, unknown>;
1383
+ };
1384
+
1385
+ export type RenderSidebarProperties = ItemFormProperties &
1386
+ RenderSidebarAdditionalProperties;
1387
+
1388
+ export type RenderSidebarAdditionalMethods = {
1389
+ getSettings: () => Promise<RenderSidebarProperties>;
1390
+ };
1391
+
1392
+ export type RenderSidebarMethods = ItemFormMethods &
1393
+ RenderSidebarAdditionalMethods;
1394
+
1395
+ export type RenderSidebarPropertiesAndMethods = RenderSidebarMethods &
1396
+ RenderSidebarProperties;
1397
+
1270
1398
  /** Information regarding the specific outlet that you need to render */
1271
1399
  export type RenderItemFormOutletAdditionalProperties = {
1272
1400
  mode: 'renderItemFormOutlet';
@@ -1397,6 +1525,8 @@ export type NewUploadResourceAsUrl = {
1397
1525
  * all hosts — allowing the image to be read by DatoCMS
1398
1526
  */
1399
1527
  url: string;
1528
+ /** Any additional headers to pass when making the request to the URL */
1529
+ headers?: Record<string, string>;
1400
1530
  /**
1401
1531
  * Optional filename to be used to generate the final DatoCMS URL. If not
1402
1532
  * passed, the URL will be used
@@ -1609,3 +1739,4193 @@ export type OnBootAdditionalMethods = {
1609
1739
  export type OnBootMethods = RenderMethods & OnBootAdditionalMethods;
1610
1740
 
1611
1741
  export type OnBootPropertiesAndMethods = OnBootMethods & OnBootProperties;
1742
+
1743
+ export type AwesomeFontIconIdentifier =
1744
+ | '0'
1745
+ | '00'
1746
+ | '1'
1747
+ | '100'
1748
+ | '2'
1749
+ | '3'
1750
+ | '360-degrees'
1751
+ | '4'
1752
+ | '5'
1753
+ | '6'
1754
+ | '7'
1755
+ | '8'
1756
+ | '9'
1757
+ | 'a'
1758
+ | 'abacus'
1759
+ | 'accent-grave'
1760
+ | 'acorn'
1761
+ | 'ad'
1762
+ | 'add'
1763
+ | 'address-book'
1764
+ | 'address-card'
1765
+ | 'adjust'
1766
+ | 'air-conditioner'
1767
+ | 'air-freshener'
1768
+ | 'airplay'
1769
+ | 'alarm-clock'
1770
+ | 'alarm-exclamation'
1771
+ | 'alarm-plus'
1772
+ | 'alarm-snooze'
1773
+ | 'album-circle-plus'
1774
+ | 'album-circle-user'
1775
+ | 'album-collection-circle-plus'
1776
+ | 'album-collection-circle-user'
1777
+ | 'album-collection'
1778
+ | 'album'
1779
+ | 'alicorn'
1780
+ | 'alien-8bit'
1781
+ | 'alien-monster'
1782
+ | 'alien'
1783
+ | 'align-center'
1784
+ | 'align-justify'
1785
+ | 'align-left'
1786
+ | 'align-right'
1787
+ | 'align-slash'
1788
+ | 'allergies'
1789
+ | 'alt'
1790
+ | 'ambulance'
1791
+ | 'american-sign-language-interpreting'
1792
+ | 'amp-guitar'
1793
+ | 'ampersand'
1794
+ | 'analytics'
1795
+ | 'anchor-circle-check'
1796
+ | 'anchor-circle-exclamation'
1797
+ | 'anchor-circle-xmark'
1798
+ | 'anchor-lock'
1799
+ | 'anchor'
1800
+ | 'angel'
1801
+ | 'angle-90'
1802
+ | 'angle-double-down'
1803
+ | 'angle-double-left'
1804
+ | 'angle-double-right'
1805
+ | 'angle-double-up'
1806
+ | 'angle-down'
1807
+ | 'angle-left'
1808
+ | 'angle-right'
1809
+ | 'angle-up'
1810
+ | 'angle'
1811
+ | 'angles-down'
1812
+ | 'angles-left'
1813
+ | 'angles-right'
1814
+ | 'angles-up'
1815
+ | 'angry'
1816
+ | 'ankh'
1817
+ | 'apartment'
1818
+ | 'aperture'
1819
+ | 'apostrophe'
1820
+ | 'apple-alt'
1821
+ | 'apple-core'
1822
+ | 'apple-crate'
1823
+ | 'apple-whole'
1824
+ | 'archive'
1825
+ | 'archway'
1826
+ | 'area-chart'
1827
+ | 'arrow-alt-circle-down'
1828
+ | 'arrow-alt-circle-left'
1829
+ | 'arrow-alt-circle-right'
1830
+ | 'arrow-alt-circle-up'
1831
+ | 'arrow-alt-down'
1832
+ | 'arrow-alt-from-bottom'
1833
+ | 'arrow-alt-from-left'
1834
+ | 'arrow-alt-from-right'
1835
+ | 'arrow-alt-from-top'
1836
+ | 'arrow-alt-left'
1837
+ | 'arrow-alt-right'
1838
+ | 'arrow-alt-square-down'
1839
+ | 'arrow-alt-square-left'
1840
+ | 'arrow-alt-square-right'
1841
+ | 'arrow-alt-square-up'
1842
+ | 'arrow-alt-to-bottom'
1843
+ | 'arrow-alt-to-left'
1844
+ | 'arrow-alt-to-right'
1845
+ | 'arrow-alt-to-top'
1846
+ | 'arrow-alt-up'
1847
+ | 'arrow-circle-down'
1848
+ | 'arrow-circle-left'
1849
+ | 'arrow-circle-right'
1850
+ | 'arrow-circle-up'
1851
+ | 'arrow-down-1-9'
1852
+ | 'arrow-down-9-1'
1853
+ | 'arrow-down-a-z'
1854
+ | 'arrow-down-arrow-up'
1855
+ | 'arrow-down-big-small'
1856
+ | 'arrow-down-from-dotted-line'
1857
+ | 'arrow-down-from-line'
1858
+ | 'arrow-down-left-and-arrow-up-right-to-center'
1859
+ | 'arrow-down-left'
1860
+ | 'arrow-down-long'
1861
+ | 'arrow-down-right'
1862
+ | 'arrow-down-short-wide'
1863
+ | 'arrow-down-small-big'
1864
+ | 'arrow-down-square-triangle'
1865
+ | 'arrow-down-to-arc'
1866
+ | 'arrow-down-to-bracket'
1867
+ | 'arrow-down-to-dotted-line'
1868
+ | 'arrow-down-to-line'
1869
+ | 'arrow-down-to-square'
1870
+ | 'arrow-down-triangle-square'
1871
+ | 'arrow-down-up-across-line'
1872
+ | 'arrow-down-up-lock'
1873
+ | 'arrow-down-wide-short'
1874
+ | 'arrow-down-z-a'
1875
+ | 'arrow-down'
1876
+ | 'arrow-from-bottom'
1877
+ | 'arrow-from-left'
1878
+ | 'arrow-from-right'
1879
+ | 'arrow-from-top'
1880
+ | 'arrow-left-from-line'
1881
+ | 'arrow-left-long-to-line'
1882
+ | 'arrow-left-long'
1883
+ | 'arrow-left-rotate'
1884
+ | 'arrow-left-to-line'
1885
+ | 'arrow-left'
1886
+ | 'arrow-pointer'
1887
+ | 'arrow-progress'
1888
+ | 'arrow-right-arrow-left'
1889
+ | 'arrow-right-from-arc'
1890
+ | 'arrow-right-from-bracket'
1891
+ | 'arrow-right-from-file'
1892
+ | 'arrow-right-from-line'
1893
+ | 'arrow-right-long-to-line'
1894
+ | 'arrow-right-long'
1895
+ | 'arrow-right-rotate'
1896
+ | 'arrow-right-to-arc'
1897
+ | 'arrow-right-to-bracket'
1898
+ | 'arrow-right-to-city'
1899
+ | 'arrow-right-to-file'
1900
+ | 'arrow-right-to-line'
1901
+ | 'arrow-right'
1902
+ | 'arrow-rotate-back'
1903
+ | 'arrow-rotate-backward'
1904
+ | 'arrow-rotate-forward'
1905
+ | 'arrow-rotate-left'
1906
+ | 'arrow-rotate-right'
1907
+ | 'arrow-square-down'
1908
+ | 'arrow-square-left'
1909
+ | 'arrow-square-right'
1910
+ | 'arrow-square-up'
1911
+ | 'arrow-to-bottom'
1912
+ | 'arrow-to-left'
1913
+ | 'arrow-to-right'
1914
+ | 'arrow-to-top'
1915
+ | 'arrow-trend-down'
1916
+ | 'arrow-trend-up'
1917
+ | 'arrow-turn-down-left'
1918
+ | 'arrow-turn-down-right'
1919
+ | 'arrow-turn-down'
1920
+ | 'arrow-turn-right'
1921
+ | 'arrow-turn-up'
1922
+ | 'arrow-up-1-9'
1923
+ | 'arrow-up-9-1'
1924
+ | 'arrow-up-a-z'
1925
+ | 'arrow-up-arrow-down'
1926
+ | 'arrow-up-big-small'
1927
+ | 'arrow-up-from-arc'
1928
+ | 'arrow-up-from-bracket'
1929
+ | 'arrow-up-from-dotted-line'
1930
+ | 'arrow-up-from-ground-water'
1931
+ | 'arrow-up-from-line'
1932
+ | 'arrow-up-from-square'
1933
+ | 'arrow-up-from-water-pump'
1934
+ | 'arrow-up-left-from-circle'
1935
+ | 'arrow-up-left'
1936
+ | 'arrow-up-long'
1937
+ | 'arrow-up-right-and-arrow-down-left-from-center'
1938
+ | 'arrow-up-right-dots'
1939
+ | 'arrow-up-right-from-square'
1940
+ | 'arrow-up-right'
1941
+ | 'arrow-up-short-wide'
1942
+ | 'arrow-up-small-big'
1943
+ | 'arrow-up-square-triangle'
1944
+ | 'arrow-up-to-dotted-line'
1945
+ | 'arrow-up-to-line'
1946
+ | 'arrow-up-triangle-square'
1947
+ | 'arrow-up-wide-short'
1948
+ | 'arrow-up-z-a'
1949
+ | 'arrow-up'
1950
+ | 'arrows-alt-h'
1951
+ | 'arrows-alt-v'
1952
+ | 'arrows-alt'
1953
+ | 'arrows-cross'
1954
+ | 'arrows-down-to-line'
1955
+ | 'arrows-down-to-people'
1956
+ | 'arrows-from-dotted-line'
1957
+ | 'arrows-from-line'
1958
+ | 'arrows-h'
1959
+ | 'arrows-left-right-to-line'
1960
+ | 'arrows-left-right'
1961
+ | 'arrows-maximize'
1962
+ | 'arrows-minimize'
1963
+ | 'arrows-repeat-1'
1964
+ | 'arrows-repeat'
1965
+ | 'arrows-retweet'
1966
+ | 'arrows-rotate'
1967
+ | 'arrows-spin'
1968
+ | 'arrows-split-up-and-left'
1969
+ | 'arrows-to-circle'
1970
+ | 'arrows-to-dot'
1971
+ | 'arrows-to-dotted-line'
1972
+ | 'arrows-to-eye'
1973
+ | 'arrows-to-line'
1974
+ | 'arrows-turn-right'
1975
+ | 'arrows-turn-to-dots'
1976
+ | 'arrows-up-down-left-right'
1977
+ | 'arrows-up-down'
1978
+ | 'arrows-up-to-line'
1979
+ | 'arrows-v'
1980
+ | 'arrows'
1981
+ | 'asl-interpreting'
1982
+ | 'assistive-listening-systems'
1983
+ | 'asterisk'
1984
+ | 'at'
1985
+ | 'atlas'
1986
+ | 'atom-alt'
1987
+ | 'atom-simple'
1988
+ | 'atom'
1989
+ | 'audio-description-slash'
1990
+ | 'audio-description'
1991
+ | 'austral-sign'
1992
+ | 'automobile'
1993
+ | 'avocado'
1994
+ | 'award-simple'
1995
+ | 'award'
1996
+ | 'axe-battle'
1997
+ | 'axe'
1998
+ | 'b'
1999
+ | 'baby-carriage'
2000
+ | 'baby'
2001
+ | 'backpack'
2002
+ | 'backspace'
2003
+ | 'backward-fast'
2004
+ | 'backward-step'
2005
+ | 'backward'
2006
+ | 'bacon'
2007
+ | 'bacteria'
2008
+ | 'bacterium'
2009
+ | 'badge-check'
2010
+ | 'badge-dollar'
2011
+ | 'badge-percent'
2012
+ | 'badge-sheriff'
2013
+ | 'badge'
2014
+ | 'badger-honey'
2015
+ | 'badminton'
2016
+ | 'bag-seedling'
2017
+ | 'bag-shopping'
2018
+ | 'bagel'
2019
+ | 'bags-shopping'
2020
+ | 'baguette'
2021
+ | 'bahai'
2022
+ | 'baht-sign'
2023
+ | 'balance-scale-left'
2024
+ | 'balance-scale-right'
2025
+ | 'balance-scale'
2026
+ | 'ball-pile'
2027
+ | 'balloon'
2028
+ | 'balloons'
2029
+ | 'ballot-check'
2030
+ | 'ballot'
2031
+ | 'ban-bug'
2032
+ | 'ban-parking'
2033
+ | 'ban-smoking'
2034
+ | 'ban'
2035
+ | 'banana'
2036
+ | 'band-aid'
2037
+ | 'bandage'
2038
+ | 'bangladeshi-taka-sign'
2039
+ | 'banjo'
2040
+ | 'bank'
2041
+ | 'bar-chart'
2042
+ | 'barcode-alt'
2043
+ | 'barcode-read'
2044
+ | 'barcode-scan'
2045
+ | 'barcode'
2046
+ | 'barn-silo'
2047
+ | 'bars-filter'
2048
+ | 'bars-progress'
2049
+ | 'bars-sort'
2050
+ | 'bars-staggered'
2051
+ | 'bars'
2052
+ | 'baseball-ball'
2053
+ | 'baseball-bat-ball'
2054
+ | 'baseball'
2055
+ | 'basket-shopping-simple'
2056
+ | 'basket-shopping'
2057
+ | 'basketball-ball'
2058
+ | 'basketball-hoop'
2059
+ | 'basketball'
2060
+ | 'bat'
2061
+ | 'bath'
2062
+ | 'bathtub'
2063
+ | 'battery-0'
2064
+ | 'battery-1'
2065
+ | 'battery-2'
2066
+ | 'battery-3'
2067
+ | 'battery-4'
2068
+ | 'battery-5'
2069
+ | 'battery-bolt'
2070
+ | 'battery-car'
2071
+ | 'battery-empty'
2072
+ | 'battery-exclamation'
2073
+ | 'battery-full'
2074
+ | 'battery-half'
2075
+ | 'battery-low'
2076
+ | 'battery-quarter'
2077
+ | 'battery-slash'
2078
+ | 'battery-three-quarters'
2079
+ | 'battery'
2080
+ | 'bed-alt'
2081
+ | 'bed-bunk'
2082
+ | 'bed-empty'
2083
+ | 'bed-front'
2084
+ | 'bed-pulse'
2085
+ | 'bed'
2086
+ | 'bee'
2087
+ | 'beer-foam'
2088
+ | 'beer-mug-empty'
2089
+ | 'beer-mug'
2090
+ | 'beer'
2091
+ | 'bell-concierge'
2092
+ | 'bell-exclamation'
2093
+ | 'bell-on'
2094
+ | 'bell-plus'
2095
+ | 'bell-school-slash'
2096
+ | 'bell-school'
2097
+ | 'bell-slash'
2098
+ | 'bell'
2099
+ | 'bells'
2100
+ | 'bench-tree'
2101
+ | 'betamax'
2102
+ | 'bezier-curve'
2103
+ | 'bible'
2104
+ | 'bicycle'
2105
+ | 'biking-mountain'
2106
+ | 'biking'
2107
+ | 'billboard'
2108
+ | 'bin-bottles-recycle'
2109
+ | 'bin-bottles'
2110
+ | 'bin-recycle'
2111
+ | 'binary-circle-check'
2112
+ | 'binary-lock'
2113
+ | 'binary-slash'
2114
+ | 'binary'
2115
+ | 'binoculars'
2116
+ | 'biohazard'
2117
+ | 'bird'
2118
+ | 'birthday-cake'
2119
+ | 'bitcoin-sign'
2120
+ | 'blackboard'
2121
+ | 'blanket-fire'
2122
+ | 'blanket'
2123
+ | 'blender-phone'
2124
+ | 'blender'
2125
+ | 'blind'
2126
+ | 'blinds-open'
2127
+ | 'blinds-raised'
2128
+ | 'blinds'
2129
+ | 'block-brick-fire'
2130
+ | 'block-brick'
2131
+ | 'block-question'
2132
+ | 'block-quote'
2133
+ | 'block'
2134
+ | 'blog'
2135
+ | 'blueberries'
2136
+ | 'bluetooth'
2137
+ | 'bold'
2138
+ | 'bolt-auto'
2139
+ | 'bolt-lightning'
2140
+ | 'bolt-slash'
2141
+ | 'bolt'
2142
+ | 'bomb'
2143
+ | 'bone-break'
2144
+ | 'bone'
2145
+ | 'bong'
2146
+ | 'book-alt'
2147
+ | 'book-arrow-right'
2148
+ | 'book-arrow-up'
2149
+ | 'book-atlas'
2150
+ | 'book-bible'
2151
+ | 'book-blank'
2152
+ | 'book-bookmark'
2153
+ | 'book-circle-arrow-right'
2154
+ | 'book-circle-arrow-up'
2155
+ | 'book-circle'
2156
+ | 'book-copy'
2157
+ | 'book-dead'
2158
+ | 'book-font'
2159
+ | 'book-heart'
2160
+ | 'book-journal-whills'
2161
+ | 'book-law'
2162
+ | 'book-medical'
2163
+ | 'book-open-alt'
2164
+ | 'book-open-cover'
2165
+ | 'book-open-reader'
2166
+ | 'book-open'
2167
+ | 'book-quran'
2168
+ | 'book-reader'
2169
+ | 'book-section'
2170
+ | 'book-skull'
2171
+ | 'book-sparkles'
2172
+ | 'book-spells'
2173
+ | 'book-tanakh'
2174
+ | 'book-user'
2175
+ | 'book'
2176
+ | 'bookmark-circle'
2177
+ | 'bookmark-slash'
2178
+ | 'bookmark'
2179
+ | 'books-medical'
2180
+ | 'books'
2181
+ | 'boombox'
2182
+ | 'boot-heeled'
2183
+ | 'boot'
2184
+ | 'booth-curtain'
2185
+ | 'border-all'
2186
+ | 'border-bottom-right'
2187
+ | 'border-bottom'
2188
+ | 'border-center-h'
2189
+ | 'border-center-v'
2190
+ | 'border-inner'
2191
+ | 'border-left'
2192
+ | 'border-none'
2193
+ | 'border-outer'
2194
+ | 'border-right'
2195
+ | 'border-style-alt'
2196
+ | 'border-style'
2197
+ | 'border-top-left'
2198
+ | 'border-top'
2199
+ | 'bore-hole'
2200
+ | 'bottle-droplet'
2201
+ | 'bottle-water'
2202
+ | 'bow-arrow'
2203
+ | 'bowl-chopsticks-noodles'
2204
+ | 'bowl-chopsticks'
2205
+ | 'bowl-food'
2206
+ | 'bowl-hot'
2207
+ | 'bowl-rice'
2208
+ | 'bowl-salad'
2209
+ | 'bowl-scoop'
2210
+ | 'bowl-scoops'
2211
+ | 'bowl-shaved-ice'
2212
+ | 'bowl-soft-serve'
2213
+ | 'bowl-spoon'
2214
+ | 'bowling-ball-pin'
2215
+ | 'bowling-ball'
2216
+ | 'bowling-pins'
2217
+ | 'box-alt'
2218
+ | 'box-archive'
2219
+ | 'box-ballot'
2220
+ | 'box-check'
2221
+ | 'box-circle-check'
2222
+ | 'box-dollar'
2223
+ | 'box-fragile'
2224
+ | 'box-full'
2225
+ | 'box-heart'
2226
+ | 'box-open-full'
2227
+ | 'box-open'
2228
+ | 'box-taped'
2229
+ | 'box-tissue'
2230
+ | 'box-up'
2231
+ | 'box-usd'
2232
+ | 'box'
2233
+ | 'boxes-alt'
2234
+ | 'boxes-packing'
2235
+ | 'boxes-stacked'
2236
+ | 'boxes'
2237
+ | 'boxing-glove'
2238
+ | 'bracket-curly-left'
2239
+ | 'bracket-curly-right'
2240
+ | 'bracket-curly'
2241
+ | 'bracket-left'
2242
+ | 'bracket-round-right'
2243
+ | 'bracket-round'
2244
+ | 'bracket-square-right'
2245
+ | 'bracket-square'
2246
+ | 'bracket'
2247
+ | 'brackets-curly'
2248
+ | 'brackets-round'
2249
+ | 'brackets-square'
2250
+ | 'brackets'
2251
+ | 'braille'
2252
+ | 'brain-arrow-curved-right'
2253
+ | 'brain-circuit'
2254
+ | 'brain'
2255
+ | 'brake-warning'
2256
+ | 'brazilian-real-sign'
2257
+ | 'bread-loaf'
2258
+ | 'bread-slice-butter'
2259
+ | 'bread-slice'
2260
+ | 'bridge-circle-check'
2261
+ | 'bridge-circle-exclamation'
2262
+ | 'bridge-circle-xmark'
2263
+ | 'bridge-lock'
2264
+ | 'bridge-suspension'
2265
+ | 'bridge-water'
2266
+ | 'bridge'
2267
+ | 'briefcase-arrow-right'
2268
+ | 'briefcase-blank'
2269
+ | 'briefcase-clock'
2270
+ | 'briefcase-medical'
2271
+ | 'briefcase'
2272
+ | 'brightness-low'
2273
+ | 'brightness'
2274
+ | 'bring-forward'
2275
+ | 'bring-front'
2276
+ | 'broadcast-tower'
2277
+ | 'broccoli'
2278
+ | 'broom-ball'
2279
+ | 'broom-wide'
2280
+ | 'broom'
2281
+ | 'browser'
2282
+ | 'browsers'
2283
+ | 'brush'
2284
+ | 'bucket'
2285
+ | 'bug-slash'
2286
+ | 'bug'
2287
+ | 'bugs'
2288
+ | 'building-circle-arrow-right'
2289
+ | 'building-circle-check'
2290
+ | 'building-circle-exclamation'
2291
+ | 'building-circle-xmark'
2292
+ | 'building-columns'
2293
+ | 'building-flag'
2294
+ | 'building-lock'
2295
+ | 'building-ngo'
2296
+ | 'building-shield'
2297
+ | 'building-un'
2298
+ | 'building-user'
2299
+ | 'building-wheat'
2300
+ | 'building'
2301
+ | 'buildings'
2302
+ | 'bullhorn'
2303
+ | 'bullseye-arrow'
2304
+ | 'bullseye-pointer'
2305
+ | 'bullseye'
2306
+ | 'buoy-mooring'
2307
+ | 'buoy'
2308
+ | 'burger-cheese'
2309
+ | 'burger-fries'
2310
+ | 'burger-glass'
2311
+ | 'burger-lettuce'
2312
+ | 'burger-soda'
2313
+ | 'burger'
2314
+ | 'burn'
2315
+ | 'burrito'
2316
+ | 'burst'
2317
+ | 'bus-alt'
2318
+ | 'bus-school'
2319
+ | 'bus-simple'
2320
+ | 'bus'
2321
+ | 'business-front'
2322
+ | 'business-time'
2323
+ | 'butter'
2324
+ | 'c'
2325
+ | 'cab'
2326
+ | 'cabin'
2327
+ | 'cabinet-filing'
2328
+ | 'cable-car'
2329
+ | 'cactus'
2330
+ | 'cake-candles'
2331
+ | 'cake-slice'
2332
+ | 'cake'
2333
+ | 'calculator-alt'
2334
+ | 'calculator-simple'
2335
+ | 'calculator'
2336
+ | 'calendar-alt'
2337
+ | 'calendar-arrow-down'
2338
+ | 'calendar-arrow-up'
2339
+ | 'calendar-check'
2340
+ | 'calendar-circle-exclamation'
2341
+ | 'calendar-circle-minus'
2342
+ | 'calendar-circle-plus'
2343
+ | 'calendar-circle-user'
2344
+ | 'calendar-circle'
2345
+ | 'calendar-clock'
2346
+ | 'calendar-day'
2347
+ | 'calendar-days'
2348
+ | 'calendar-download'
2349
+ | 'calendar-edit'
2350
+ | 'calendar-exclamation'
2351
+ | 'calendar-heart'
2352
+ | 'calendar-image'
2353
+ | 'calendar-lines-pen'
2354
+ | 'calendar-lines'
2355
+ | 'calendar-minus'
2356
+ | 'calendar-note'
2357
+ | 'calendar-pen'
2358
+ | 'calendar-plus'
2359
+ | 'calendar-range'
2360
+ | 'calendar-star'
2361
+ | 'calendar-time'
2362
+ | 'calendar-times'
2363
+ | 'calendar-upload'
2364
+ | 'calendar-users'
2365
+ | 'calendar-week'
2366
+ | 'calendar-xmark'
2367
+ | 'calendar'
2368
+ | 'calendars'
2369
+ | 'camcorder'
2370
+ | 'camera-alt'
2371
+ | 'camera-cctv'
2372
+ | 'camera-circle'
2373
+ | 'camera-home'
2374
+ | 'camera-movie'
2375
+ | 'camera-polaroid'
2376
+ | 'camera-retro'
2377
+ | 'camera-rotate'
2378
+ | 'camera-security'
2379
+ | 'camera-slash'
2380
+ | 'camera-viewfinder'
2381
+ | 'camera-web-slash'
2382
+ | 'camera-web'
2383
+ | 'camera'
2384
+ | 'campfire'
2385
+ | 'campground'
2386
+ | 'can-food'
2387
+ | 'cancel'
2388
+ | 'candle-holder'
2389
+ | 'candy-bar'
2390
+ | 'candy-cane'
2391
+ | 'candy-corn'
2392
+ | 'candy'
2393
+ | 'cannabis'
2394
+ | 'capsules'
2395
+ | 'car-alt'
2396
+ | 'car-battery'
2397
+ | 'car-bolt'
2398
+ | 'car-building'
2399
+ | 'car-bump'
2400
+ | 'car-burst'
2401
+ | 'car-bus'
2402
+ | 'car-circle-bolt'
2403
+ | 'car-crash'
2404
+ | 'car-garage'
2405
+ | 'car-mechanic'
2406
+ | 'car-mirrors'
2407
+ | 'car-on'
2408
+ | 'car-rear'
2409
+ | 'car-side-bolt'
2410
+ | 'car-side'
2411
+ | 'car-tilt'
2412
+ | 'car-tunnel'
2413
+ | 'car-wash'
2414
+ | 'car-wrench'
2415
+ | 'car'
2416
+ | 'caravan-alt'
2417
+ | 'caravan-simple'
2418
+ | 'caravan'
2419
+ | 'card-club'
2420
+ | 'card-diamond'
2421
+ | 'card-heart'
2422
+ | 'card-spade'
2423
+ | 'cards-blank'
2424
+ | 'cards'
2425
+ | 'caret-circle-down'
2426
+ | 'caret-circle-left'
2427
+ | 'caret-circle-right'
2428
+ | 'caret-circle-up'
2429
+ | 'caret-down'
2430
+ | 'caret-left'
2431
+ | 'caret-right'
2432
+ | 'caret-square-down'
2433
+ | 'caret-square-left'
2434
+ | 'caret-square-right'
2435
+ | 'caret-square-up'
2436
+ | 'caret-up'
2437
+ | 'carriage-baby'
2438
+ | 'carrot'
2439
+ | 'cars'
2440
+ | 'cart-arrow-down'
2441
+ | 'cart-arrow-up'
2442
+ | 'cart-circle-arrow-down'
2443
+ | 'cart-circle-arrow-up'
2444
+ | 'cart-circle-check'
2445
+ | 'cart-circle-exclamation'
2446
+ | 'cart-circle-plus'
2447
+ | 'cart-circle-xmark'
2448
+ | 'cart-flatbed-boxes'
2449
+ | 'cart-flatbed-empty'
2450
+ | 'cart-flatbed-suitcase'
2451
+ | 'cart-flatbed'
2452
+ | 'cart-minus'
2453
+ | 'cart-plus'
2454
+ | 'cart-shopping-fast'
2455
+ | 'cart-shopping'
2456
+ | 'cart-xmark'
2457
+ | 'cash-register'
2458
+ | 'cassette-betamax'
2459
+ | 'cassette-tape'
2460
+ | 'cassette-vhs'
2461
+ | 'castle'
2462
+ | 'cat-space'
2463
+ | 'cat'
2464
+ | 'cauldron'
2465
+ | 'cctv'
2466
+ | 'cedi-sign'
2467
+ | 'cent-sign'
2468
+ | 'certificate'
2469
+ | 'chain-broken'
2470
+ | 'chain-horizontal-slash'
2471
+ | 'chain-horizontal'
2472
+ | 'chain-slash'
2473
+ | 'chain'
2474
+ | 'chair-office'
2475
+ | 'chair'
2476
+ | 'chalkboard-teacher'
2477
+ | 'chalkboard-user'
2478
+ | 'chalkboard'
2479
+ | 'champagne-glass'
2480
+ | 'champagne-glasses'
2481
+ | 'charging-station'
2482
+ | 'chart-area'
2483
+ | 'chart-bar'
2484
+ | 'chart-bullet'
2485
+ | 'chart-candlestick'
2486
+ | 'chart-column'
2487
+ | 'chart-gantt'
2488
+ | 'chart-line-down'
2489
+ | 'chart-line-up-down'
2490
+ | 'chart-line-up'
2491
+ | 'chart-line'
2492
+ | 'chart-mixed-up-circle-currency'
2493
+ | 'chart-mixed-up-circle-dollar'
2494
+ | 'chart-mixed'
2495
+ | 'chart-network'
2496
+ | 'chart-pie-alt'
2497
+ | 'chart-pie-simple-circle-currency'
2498
+ | 'chart-pie-simple-circle-dollar'
2499
+ | 'chart-pie-simple'
2500
+ | 'chart-pie'
2501
+ | 'chart-pyramid'
2502
+ | 'chart-radar'
2503
+ | 'chart-scatter-3d'
2504
+ | 'chart-scatter-bubble'
2505
+ | 'chart-scatter'
2506
+ | 'chart-simple-horizontal'
2507
+ | 'chart-simple'
2508
+ | 'chart-tree-map'
2509
+ | 'chart-user'
2510
+ | 'chart-waterfall'
2511
+ | 'check-circle'
2512
+ | 'check-double'
2513
+ | 'check-square'
2514
+ | 'check-to-slot'
2515
+ | 'check'
2516
+ | 'cheese-swiss'
2517
+ | 'cheese'
2518
+ | 'cheeseburger'
2519
+ | 'cherries'
2520
+ | 'chess-bishop-alt'
2521
+ | 'chess-bishop-piece'
2522
+ | 'chess-bishop'
2523
+ | 'chess-board'
2524
+ | 'chess-clock-alt'
2525
+ | 'chess-clock-flip'
2526
+ | 'chess-clock'
2527
+ | 'chess-king-alt'
2528
+ | 'chess-king-piece'
2529
+ | 'chess-king'
2530
+ | 'chess-knight-alt'
2531
+ | 'chess-knight-piece'
2532
+ | 'chess-knight'
2533
+ | 'chess-pawn-alt'
2534
+ | 'chess-pawn-piece'
2535
+ | 'chess-pawn'
2536
+ | 'chess-queen-alt'
2537
+ | 'chess-queen-piece'
2538
+ | 'chess-queen'
2539
+ | 'chess-rook-alt'
2540
+ | 'chess-rook-piece'
2541
+ | 'chess-rook'
2542
+ | 'chess'
2543
+ | 'chestnut'
2544
+ | 'chevron-circle-down'
2545
+ | 'chevron-circle-left'
2546
+ | 'chevron-circle-right'
2547
+ | 'chevron-circle-up'
2548
+ | 'chevron-double-down'
2549
+ | 'chevron-double-left'
2550
+ | 'chevron-double-right'
2551
+ | 'chevron-double-up'
2552
+ | 'chevron-down'
2553
+ | 'chevron-left'
2554
+ | 'chevron-right'
2555
+ | 'chevron-square-down'
2556
+ | 'chevron-square-left'
2557
+ | 'chevron-square-right'
2558
+ | 'chevron-square-up'
2559
+ | 'chevron-up'
2560
+ | 'chevrons-down'
2561
+ | 'chevrons-left'
2562
+ | 'chevrons-right'
2563
+ | 'chevrons-up'
2564
+ | 'chf-sign'
2565
+ | 'child-combatant'
2566
+ | 'child-dress'
2567
+ | 'child-reaching'
2568
+ | 'child-rifle'
2569
+ | 'child'
2570
+ | 'children'
2571
+ | 'chimney'
2572
+ | 'chocolate-bar'
2573
+ | 'chopsticks'
2574
+ | 'church'
2575
+ | 'circle-0'
2576
+ | 'circle-1'
2577
+ | 'circle-2'
2578
+ | 'circle-3'
2579
+ | 'circle-4'
2580
+ | 'circle-5'
2581
+ | 'circle-6'
2582
+ | 'circle-7'
2583
+ | 'circle-8'
2584
+ | 'circle-9'
2585
+ | 'circle-a'
2586
+ | 'circle-ampersand'
2587
+ | 'circle-arrow-down-left'
2588
+ | 'circle-arrow-down-right'
2589
+ | 'circle-arrow-down'
2590
+ | 'circle-arrow-left'
2591
+ | 'circle-arrow-right'
2592
+ | 'circle-arrow-up-left'
2593
+ | 'circle-arrow-up-right'
2594
+ | 'circle-arrow-up'
2595
+ | 'circle-b'
2596
+ | 'circle-bolt'
2597
+ | 'circle-book-open'
2598
+ | 'circle-bookmark'
2599
+ | 'circle-c'
2600
+ | 'circle-calendar'
2601
+ | 'circle-camera'
2602
+ | 'circle-caret-down'
2603
+ | 'circle-caret-left'
2604
+ | 'circle-caret-right'
2605
+ | 'circle-caret-up'
2606
+ | 'circle-check'
2607
+ | 'circle-chevron-down'
2608
+ | 'circle-chevron-left'
2609
+ | 'circle-chevron-right'
2610
+ | 'circle-chevron-up'
2611
+ | 'circle-d'
2612
+ | 'circle-dashed'
2613
+ | 'circle-divide'
2614
+ | 'circle-dollar-to-slot'
2615
+ | 'circle-dollar'
2616
+ | 'circle-dot'
2617
+ | 'circle-down-left'
2618
+ | 'circle-down-right'
2619
+ | 'circle-down'
2620
+ | 'circle-e'
2621
+ | 'circle-ellipsis-vertical'
2622
+ | 'circle-ellipsis'
2623
+ | 'circle-envelope'
2624
+ | 'circle-euro'
2625
+ | 'circle-exclamation-check'
2626
+ | 'circle-exclamation'
2627
+ | 'circle-f'
2628
+ | 'circle-g'
2629
+ | 'circle-h'
2630
+ | 'circle-half-stroke'
2631
+ | 'circle-half'
2632
+ | 'circle-heart'
2633
+ | 'circle-i'
2634
+ | 'circle-info'
2635
+ | 'circle-j'
2636
+ | 'circle-k'
2637
+ | 'circle-l'
2638
+ | 'circle-left'
2639
+ | 'circle-location-arrow'
2640
+ | 'circle-m'
2641
+ | 'circle-microphone-lines'
2642
+ | 'circle-microphone'
2643
+ | 'circle-minus'
2644
+ | 'circle-n'
2645
+ | 'circle-nodes'
2646
+ | 'circle-notch'
2647
+ | 'circle-o'
2648
+ | 'circle-p'
2649
+ | 'circle-parking'
2650
+ | 'circle-pause'
2651
+ | 'circle-phone-flip'
2652
+ | 'circle-phone-hangup'
2653
+ | 'circle-phone'
2654
+ | 'circle-play'
2655
+ | 'circle-plus'
2656
+ | 'circle-q'
2657
+ | 'circle-quarter-stroke'
2658
+ | 'circle-quarter'
2659
+ | 'circle-quarters'
2660
+ | 'circle-question'
2661
+ | 'circle-r'
2662
+ | 'circle-radiation'
2663
+ | 'circle-right'
2664
+ | 'circle-s'
2665
+ | 'circle-small'
2666
+ | 'circle-sort-down'
2667
+ | 'circle-sort-up'
2668
+ | 'circle-sort'
2669
+ | 'circle-star'
2670
+ | 'circle-sterling'
2671
+ | 'circle-stop'
2672
+ | 'circle-t'
2673
+ | 'circle-three-quarters-stroke'
2674
+ | 'circle-three-quarters'
2675
+ | 'circle-trash'
2676
+ | 'circle-u'
2677
+ | 'circle-up-left'
2678
+ | 'circle-up-right'
2679
+ | 'circle-up'
2680
+ | 'circle-user'
2681
+ | 'circle-v'
2682
+ | 'circle-video'
2683
+ | 'circle-w'
2684
+ | 'circle-waveform-lines'
2685
+ | 'circle-x'
2686
+ | 'circle-xmark'
2687
+ | 'circle-y'
2688
+ | 'circle-yen'
2689
+ | 'circle-z'
2690
+ | 'circle'
2691
+ | 'circles-overlap'
2692
+ | 'citrus-slice'
2693
+ | 'citrus'
2694
+ | 'city'
2695
+ | 'clapperboard-play'
2696
+ | 'clapperboard'
2697
+ | 'clarinet'
2698
+ | 'claw-marks'
2699
+ | 'clinic-medical'
2700
+ | 'clipboard-check'
2701
+ | 'clipboard-list-check'
2702
+ | 'clipboard-list'
2703
+ | 'clipboard-medical'
2704
+ | 'clipboard-prescription'
2705
+ | 'clipboard-question'
2706
+ | 'clipboard-user'
2707
+ | 'clipboard'
2708
+ | 'clock-desk'
2709
+ | 'clock-eight-thirty'
2710
+ | 'clock-eight'
2711
+ | 'clock-eleven-thirty'
2712
+ | 'clock-eleven'
2713
+ | 'clock-five-thirty'
2714
+ | 'clock-five'
2715
+ | 'clock-four-thirty'
2716
+ | 'clock-four'
2717
+ | 'clock-nine-thirty'
2718
+ | 'clock-nine'
2719
+ | 'clock-one-thirty'
2720
+ | 'clock-one'
2721
+ | 'clock-rotate-left'
2722
+ | 'clock-seven-thirty'
2723
+ | 'clock-seven'
2724
+ | 'clock-six-thirty'
2725
+ | 'clock-six'
2726
+ | 'clock-ten-thirty'
2727
+ | 'clock-ten'
2728
+ | 'clock-three-thirty'
2729
+ | 'clock-three'
2730
+ | 'clock-twelve-thirty'
2731
+ | 'clock-twelve'
2732
+ | 'clock-two-thirty'
2733
+ | 'clock-two'
2734
+ | 'clock'
2735
+ | 'clone'
2736
+ | 'close'
2737
+ | 'closed-captioning-slash'
2738
+ | 'closed-captioning'
2739
+ | 'clothes-hanger'
2740
+ | 'cloud-arrow-down'
2741
+ | 'cloud-arrow-up'
2742
+ | 'cloud-binary'
2743
+ | 'cloud-bolt-moon'
2744
+ | 'cloud-bolt-sun'
2745
+ | 'cloud-bolt'
2746
+ | 'cloud-check'
2747
+ | 'cloud-download-alt'
2748
+ | 'cloud-download'
2749
+ | 'cloud-drizzle'
2750
+ | 'cloud-exclamation'
2751
+ | 'cloud-fog'
2752
+ | 'cloud-hail-mixed'
2753
+ | 'cloud-hail'
2754
+ | 'cloud-meatball'
2755
+ | 'cloud-minus'
2756
+ | 'cloud-moon-rain'
2757
+ | 'cloud-moon'
2758
+ | 'cloud-music'
2759
+ | 'cloud-plus'
2760
+ | 'cloud-question'
2761
+ | 'cloud-rain'
2762
+ | 'cloud-rainbow'
2763
+ | 'cloud-showers-heavy'
2764
+ | 'cloud-showers-water'
2765
+ | 'cloud-showers'
2766
+ | 'cloud-slash'
2767
+ | 'cloud-sleet'
2768
+ | 'cloud-snow'
2769
+ | 'cloud-sun-rain'
2770
+ | 'cloud-sun'
2771
+ | 'cloud-upload-alt'
2772
+ | 'cloud-upload'
2773
+ | 'cloud-word'
2774
+ | 'cloud-xmark'
2775
+ | 'cloud'
2776
+ | 'clouds-moon'
2777
+ | 'clouds-sun'
2778
+ | 'clouds'
2779
+ | 'clover'
2780
+ | 'club'
2781
+ | 'cny'
2782
+ | 'cocktail'
2783
+ | 'coconut'
2784
+ | 'code-branch'
2785
+ | 'code-commit'
2786
+ | 'code-compare'
2787
+ | 'code-fork'
2788
+ | 'code-merge'
2789
+ | 'code-pull-request-closed'
2790
+ | 'code-pull-request-draft'
2791
+ | 'code-pull-request'
2792
+ | 'code-simple'
2793
+ | 'code'
2794
+ | 'coffee-bean'
2795
+ | 'coffee-beans'
2796
+ | 'coffee-pot'
2797
+ | 'coffee-togo'
2798
+ | 'coffee'
2799
+ | 'coffin-cross'
2800
+ | 'coffin'
2801
+ | 'cog'
2802
+ | 'cogs'
2803
+ | 'coin-blank'
2804
+ | 'coin-front'
2805
+ | 'coin-vertical'
2806
+ | 'coin'
2807
+ | 'coins'
2808
+ | 'colon-sign'
2809
+ | 'colon'
2810
+ | 'columns-3'
2811
+ | 'columns'
2812
+ | 'comet'
2813
+ | 'comma'
2814
+ | 'command'
2815
+ | 'comment-alt-arrow-down'
2816
+ | 'comment-alt-arrow-up'
2817
+ | 'comment-alt-captions'
2818
+ | 'comment-alt-check'
2819
+ | 'comment-alt-dollar'
2820
+ | 'comment-alt-dots'
2821
+ | 'comment-alt-edit'
2822
+ | 'comment-alt-exclamation'
2823
+ | 'comment-alt-image'
2824
+ | 'comment-alt-lines'
2825
+ | 'comment-alt-medical'
2826
+ | 'comment-alt-minus'
2827
+ | 'comment-alt-music'
2828
+ | 'comment-alt-plus'
2829
+ | 'comment-alt-quote'
2830
+ | 'comment-alt-slash'
2831
+ | 'comment-alt-smile'
2832
+ | 'comment-alt-text'
2833
+ | 'comment-alt-times'
2834
+ | 'comment-alt'
2835
+ | 'comment-arrow-down'
2836
+ | 'comment-arrow-up-right'
2837
+ | 'comment-arrow-up'
2838
+ | 'comment-captions'
2839
+ | 'comment-check'
2840
+ | 'comment-code'
2841
+ | 'comment-dollar'
2842
+ | 'comment-dots'
2843
+ | 'comment-edit'
2844
+ | 'comment-exclamation'
2845
+ | 'comment-heart'
2846
+ | 'comment-image'
2847
+ | 'comment-lines'
2848
+ | 'comment-medical'
2849
+ | 'comment-middle-alt'
2850
+ | 'comment-middle-top-alt'
2851
+ | 'comment-middle-top'
2852
+ | 'comment-middle'
2853
+ | 'comment-minus'
2854
+ | 'comment-music'
2855
+ | 'comment-pen'
2856
+ | 'comment-plus'
2857
+ | 'comment-question'
2858
+ | 'comment-quote'
2859
+ | 'comment-slash'
2860
+ | 'comment-smile'
2861
+ | 'comment-sms'
2862
+ | 'comment-text'
2863
+ | 'comment-times'
2864
+ | 'comment-xmark'
2865
+ | 'comment'
2866
+ | 'commenting'
2867
+ | 'comments-alt-dollar'
2868
+ | 'comments-alt'
2869
+ | 'comments-dollar'
2870
+ | 'comments-question-check'
2871
+ | 'comments-question'
2872
+ | 'comments'
2873
+ | 'compact-disc'
2874
+ | 'compass-drafting'
2875
+ | 'compass-slash'
2876
+ | 'compass'
2877
+ | 'compress-alt'
2878
+ | 'compress-arrows-alt'
2879
+ | 'compress-arrows'
2880
+ | 'compress-wide'
2881
+ | 'compress'
2882
+ | 'computer-classic'
2883
+ | 'computer-mouse-scrollwheel'
2884
+ | 'computer-mouse'
2885
+ | 'computer-speaker'
2886
+ | 'computer'
2887
+ | 'concierge-bell'
2888
+ | 'construction'
2889
+ | 'contact-book'
2890
+ | 'contact-card'
2891
+ | 'container-storage'
2892
+ | 'conveyor-belt-alt'
2893
+ | 'conveyor-belt-arm'
2894
+ | 'conveyor-belt-boxes'
2895
+ | 'conveyor-belt-empty'
2896
+ | 'conveyor-belt'
2897
+ | 'cookie-bite'
2898
+ | 'cookie'
2899
+ | 'copy'
2900
+ | 'copyright'
2901
+ | 'corn'
2902
+ | 'corner'
2903
+ | 'couch-small'
2904
+ | 'couch'
2905
+ | 'cow'
2906
+ | 'cowbell-circle-plus'
2907
+ | 'cowbell-more'
2908
+ | 'cowbell'
2909
+ | 'crab'
2910
+ | 'crate-apple'
2911
+ | 'crate-empty'
2912
+ | 'credit-card-alt'
2913
+ | 'credit-card-blank'
2914
+ | 'credit-card-front'
2915
+ | 'credit-card'
2916
+ | 'creemee'
2917
+ | 'cricket-bat-ball'
2918
+ | 'cricket'
2919
+ | 'croissant'
2920
+ | 'crop-alt'
2921
+ | 'crop-simple'
2922
+ | 'crop'
2923
+ | 'cross'
2924
+ | 'crosshairs-simple'
2925
+ | 'crosshairs'
2926
+ | 'crow'
2927
+ | 'crown'
2928
+ | 'crutch'
2929
+ | 'crutches'
2930
+ | 'cruzeiro-sign'
2931
+ | 'crystal-ball'
2932
+ | 'cube'
2933
+ | 'cubes-stacked'
2934
+ | 'cubes'
2935
+ | 'cucumber'
2936
+ | 'cup-straw-swoosh'
2937
+ | 'cup-straw'
2938
+ | 'cup-togo'
2939
+ | 'cupcake'
2940
+ | 'curling-stone'
2941
+ | 'curling'
2942
+ | 'custard'
2943
+ | 'cut'
2944
+ | 'cutlery'
2945
+ | 'd'
2946
+ | 'dagger'
2947
+ | 'dash'
2948
+ | 'dashboard'
2949
+ | 'database'
2950
+ | 'deaf'
2951
+ | 'deafness'
2952
+ | 'debug'
2953
+ | 'dedent'
2954
+ | 'deer-rudolph'
2955
+ | 'deer'
2956
+ | 'delete-left'
2957
+ | 'delete-right'
2958
+ | 'democrat'
2959
+ | 'desktop-alt'
2960
+ | 'desktop-arrow-down'
2961
+ | 'desktop-code'
2962
+ | 'desktop-medical'
2963
+ | 'desktop-slash'
2964
+ | 'desktop'
2965
+ | 'dewpoint'
2966
+ | 'dharmachakra'
2967
+ | 'diagnoses'
2968
+ | 'diagram-cells'
2969
+ | 'diagram-lean-canvas'
2970
+ | 'diagram-nested'
2971
+ | 'diagram-next'
2972
+ | 'diagram-predecessor'
2973
+ | 'diagram-previous'
2974
+ | 'diagram-project'
2975
+ | 'diagram-sankey'
2976
+ | 'diagram-subtask'
2977
+ | 'diagram-successor'
2978
+ | 'diagram-venn'
2979
+ | 'dial-high'
2980
+ | 'dial-low'
2981
+ | 'dial-max'
2982
+ | 'dial-med-high'
2983
+ | 'dial-med-low'
2984
+ | 'dial-med'
2985
+ | 'dial-min'
2986
+ | 'dial-off'
2987
+ | 'dial'
2988
+ | 'diamond-exclamation'
2989
+ | 'diamond-half-stroke'
2990
+ | 'diamond-half'
2991
+ | 'diamond-turn-right'
2992
+ | 'diamond'
2993
+ | 'dice-d10'
2994
+ | 'dice-d12'
2995
+ | 'dice-d20'
2996
+ | 'dice-d4'
2997
+ | 'dice-d6'
2998
+ | 'dice-d8'
2999
+ | 'dice-five'
3000
+ | 'dice-four'
3001
+ | 'dice-one'
3002
+ | 'dice-six'
3003
+ | 'dice-three'
3004
+ | 'dice-two'
3005
+ | 'dice'
3006
+ | 'digging'
3007
+ | 'digital-tachograph'
3008
+ | 'dinosaur'
3009
+ | 'diploma'
3010
+ | 'directions'
3011
+ | 'disc-drive'
3012
+ | 'disease'
3013
+ | 'display-arrow-down'
3014
+ | 'display-chart-up-circle-currency'
3015
+ | 'display-chart-up-circle-dollar'
3016
+ | 'display-chart-up'
3017
+ | 'display-code'
3018
+ | 'display-medical'
3019
+ | 'display-slash'
3020
+ | 'display'
3021
+ | 'distribute-spacing-horizontal'
3022
+ | 'distribute-spacing-vertical'
3023
+ | 'ditto'
3024
+ | 'divide'
3025
+ | 'dizzy'
3026
+ | 'dna'
3027
+ | 'do-not-enter'
3028
+ | 'dog-leashed'
3029
+ | 'dog'
3030
+ | 'dollar-circle'
3031
+ | 'dollar-sign'
3032
+ | 'dollar-square'
3033
+ | 'dollar'
3034
+ | 'dolly-box'
3035
+ | 'dolly-empty'
3036
+ | 'dolly-flatbed-alt'
3037
+ | 'dolly-flatbed-empty'
3038
+ | 'dolly-flatbed'
3039
+ | 'dolly'
3040
+ | 'dolphin'
3041
+ | 'donate'
3042
+ | 'dong-sign'
3043
+ | 'donut'
3044
+ | 'door-closed'
3045
+ | 'door-open'
3046
+ | 'dot-circle'
3047
+ | 'doughnut'
3048
+ | 'dove'
3049
+ | 'down-from-dotted-line'
3050
+ | 'down-from-line'
3051
+ | 'down-left-and-up-right-to-center'
3052
+ | 'down-left'
3053
+ | 'down-long'
3054
+ | 'down-right'
3055
+ | 'down-to-bracket'
3056
+ | 'down-to-dotted-line'
3057
+ | 'down-to-line'
3058
+ | 'down'
3059
+ | 'download'
3060
+ | 'drafting-compass'
3061
+ | 'dragon'
3062
+ | 'draw-circle'
3063
+ | 'draw-polygon'
3064
+ | 'draw-square'
3065
+ | 'dreidel'
3066
+ | 'drivers-license'
3067
+ | 'drone-alt'
3068
+ | 'drone-front'
3069
+ | 'drone'
3070
+ | 'droplet-degree'
3071
+ | 'droplet-percent'
3072
+ | 'droplet-slash'
3073
+ | 'droplet'
3074
+ | 'drum-steelpan'
3075
+ | 'drum'
3076
+ | 'drumstick-bite'
3077
+ | 'drumstick'
3078
+ | 'dryer-alt'
3079
+ | 'dryer-heat'
3080
+ | 'dryer'
3081
+ | 'duck'
3082
+ | 'dumbbell'
3083
+ | 'dumpster-fire'
3084
+ | 'dumpster'
3085
+ | 'dungeon'
3086
+ | 'e'
3087
+ | 'ear-deaf'
3088
+ | 'ear-listen'
3089
+ | 'ear-muffs'
3090
+ | 'ear'
3091
+ | 'earth-africa'
3092
+ | 'earth-america'
3093
+ | 'earth-americas'
3094
+ | 'earth-asia'
3095
+ | 'earth-europe'
3096
+ | 'earth-oceania'
3097
+ | 'earth'
3098
+ | 'eclipse-alt'
3099
+ | 'eclipse'
3100
+ | 'edit'
3101
+ | 'egg-fried'
3102
+ | 'egg'
3103
+ | 'eggplant'
3104
+ | 'eject'
3105
+ | 'elephant'
3106
+ | 'elevator'
3107
+ | 'ellipsis-h-alt'
3108
+ | 'ellipsis-h'
3109
+ | 'ellipsis-stroke-vertical'
3110
+ | 'ellipsis-stroke'
3111
+ | 'ellipsis-v-alt'
3112
+ | 'ellipsis-v'
3113
+ | 'ellipsis-vertical'
3114
+ | 'ellipsis'
3115
+ | 'empty-set'
3116
+ | 'engine-exclamation'
3117
+ | 'engine-warning'
3118
+ | 'engine'
3119
+ | 'envelope-badge'
3120
+ | 'envelope-circle-check'
3121
+ | 'envelope-circle'
3122
+ | 'envelope-dot'
3123
+ | 'envelope-open-dollar'
3124
+ | 'envelope-open-text'
3125
+ | 'envelope-open'
3126
+ | 'envelope-square'
3127
+ | 'envelope'
3128
+ | 'envelopes-bulk'
3129
+ | 'envelopes'
3130
+ | 'equals'
3131
+ | 'eraser'
3132
+ | 'escalator'
3133
+ | 'ethernet'
3134
+ | 'eur'
3135
+ | 'euro-sign'
3136
+ | 'euro'
3137
+ | 'exchange-alt'
3138
+ | 'exchange'
3139
+ | 'exclamation-circle'
3140
+ | 'exclamation-square'
3141
+ | 'exclamation-triangle'
3142
+ | 'exclamation'
3143
+ | 'expand-alt'
3144
+ | 'expand-arrows-alt'
3145
+ | 'expand-arrows'
3146
+ | 'expand-wide'
3147
+ | 'expand'
3148
+ | 'exploding-head'
3149
+ | 'explosion'
3150
+ | 'external-link-alt'
3151
+ | 'external-link-square-alt'
3152
+ | 'external-link-square'
3153
+ | 'external-link'
3154
+ | 'eye-dropper-empty'
3155
+ | 'eye-dropper-full'
3156
+ | 'eye-dropper-half'
3157
+ | 'eye-dropper'
3158
+ | 'eye-evil'
3159
+ | 'eye-low-vision'
3160
+ | 'eye-slash'
3161
+ | 'eye'
3162
+ | 'eyedropper'
3163
+ | 'eyes'
3164
+ | 'f'
3165
+ | 'face-angry-horns'
3166
+ | 'face-angry'
3167
+ | 'face-anguished'
3168
+ | 'face-anxious-sweat'
3169
+ | 'face-astonished'
3170
+ | 'face-awesome'
3171
+ | 'face-beam-hand-over-mouth'
3172
+ | 'face-clouds'
3173
+ | 'face-confounded'
3174
+ | 'face-confused'
3175
+ | 'face-cowboy-hat'
3176
+ | 'face-diagonal-mouth'
3177
+ | 'face-disappointed'
3178
+ | 'face-disguise'
3179
+ | 'face-dizzy'
3180
+ | 'face-dotted'
3181
+ | 'face-downcast-sweat'
3182
+ | 'face-drooling'
3183
+ | 'face-exhaling'
3184
+ | 'face-explode'
3185
+ | 'face-expressionless'
3186
+ | 'face-eyes-xmarks'
3187
+ | 'face-fearful'
3188
+ | 'face-flushed'
3189
+ | 'face-frown-open'
3190
+ | 'face-frown-slight'
3191
+ | 'face-frown'
3192
+ | 'face-glasses'
3193
+ | 'face-grimace'
3194
+ | 'face-grin-beam-sweat'
3195
+ | 'face-grin-beam'
3196
+ | 'face-grin-hearts'
3197
+ | 'face-grin-squint-tears'
3198
+ | 'face-grin-squint'
3199
+ | 'face-grin-stars'
3200
+ | 'face-grin-tears'
3201
+ | 'face-grin-tongue-squint'
3202
+ | 'face-grin-tongue-wink'
3203
+ | 'face-grin-tongue'
3204
+ | 'face-grin-wide'
3205
+ | 'face-grin-wink'
3206
+ | 'face-grin'
3207
+ | 'face-hand-over-mouth'
3208
+ | 'face-hand-peeking'
3209
+ | 'face-hand-yawn'
3210
+ | 'face-head-bandage'
3211
+ | 'face-holding-back-tears'
3212
+ | 'face-hushed'
3213
+ | 'face-icicles'
3214
+ | 'face-kiss-beam'
3215
+ | 'face-kiss-closed-eyes'
3216
+ | 'face-kiss-wink-heart'
3217
+ | 'face-kiss'
3218
+ | 'face-laugh-beam'
3219
+ | 'face-laugh-squint'
3220
+ | 'face-laugh-wink'
3221
+ | 'face-laugh'
3222
+ | 'face-lying'
3223
+ | 'face-mask'
3224
+ | 'face-meh-blank'
3225
+ | 'face-meh'
3226
+ | 'face-melting'
3227
+ | 'face-monocle'
3228
+ | 'face-nauseated'
3229
+ | 'face-nose-steam'
3230
+ | 'face-party'
3231
+ | 'face-pensive'
3232
+ | 'face-persevering'
3233
+ | 'face-pleading'
3234
+ | 'face-pouting'
3235
+ | 'face-raised-eyebrow'
3236
+ | 'face-relieved'
3237
+ | 'face-rolling-eyes'
3238
+ | 'face-sad-cry'
3239
+ | 'face-sad-sweat'
3240
+ | 'face-sad-tear'
3241
+ | 'face-saluting'
3242
+ | 'face-scream'
3243
+ | 'face-shush'
3244
+ | 'face-sleeping'
3245
+ | 'face-sleepy'
3246
+ | 'face-smile-beam'
3247
+ | 'face-smile-halo'
3248
+ | 'face-smile-hearts'
3249
+ | 'face-smile-horns'
3250
+ | 'face-smile-plus'
3251
+ | 'face-smile-relaxed'
3252
+ | 'face-smile-tear'
3253
+ | 'face-smile-tongue'
3254
+ | 'face-smile-upside-down'
3255
+ | 'face-smile-wink'
3256
+ | 'face-smile'
3257
+ | 'face-smiling-hands'
3258
+ | 'face-smirking'
3259
+ | 'face-spiral-eyes'
3260
+ | 'face-sunglasses'
3261
+ | 'face-surprise'
3262
+ | 'face-swear'
3263
+ | 'face-thermometer'
3264
+ | 'face-thinking'
3265
+ | 'face-tired'
3266
+ | 'face-tissue'
3267
+ | 'face-tongue-money'
3268
+ | 'face-tongue-sweat'
3269
+ | 'face-unamused'
3270
+ | 'face-viewfinder'
3271
+ | 'face-vomit'
3272
+ | 'face-weary'
3273
+ | 'face-woozy'
3274
+ | 'face-worried'
3275
+ | 'face-zany'
3276
+ | 'face-zipper'
3277
+ | 'falafel'
3278
+ | 'family-dress'
3279
+ | 'family-pants'
3280
+ | 'family'
3281
+ | 'fan-table'
3282
+ | 'fan'
3283
+ | 'farm'
3284
+ | 'fast-backward'
3285
+ | 'fast-forward'
3286
+ | 'faucet-drip'
3287
+ | 'faucet'
3288
+ | 'fax'
3289
+ | 'feather-alt'
3290
+ | 'feather-pointed'
3291
+ | 'feather'
3292
+ | 'feed'
3293
+ | 'female'
3294
+ | 'fence'
3295
+ | 'ferris-wheel'
3296
+ | 'ferry'
3297
+ | 'field-hockey-stick-ball'
3298
+ | 'field-hockey'
3299
+ | 'fighter-jet'
3300
+ | 'file-alt'
3301
+ | 'file-archive'
3302
+ | 'file-arrow-down'
3303
+ | 'file-arrow-up'
3304
+ | 'file-audio'
3305
+ | 'file-award'
3306
+ | 'file-binary'
3307
+ | 'file-caret-down'
3308
+ | 'file-caret-up'
3309
+ | 'file-certificate'
3310
+ | 'file-chart-column'
3311
+ | 'file-chart-line'
3312
+ | 'file-chart-pie'
3313
+ | 'file-check'
3314
+ | 'file-circle-check'
3315
+ | 'file-circle-exclamation'
3316
+ | 'file-circle-info'
3317
+ | 'file-circle-minus'
3318
+ | 'file-circle-plus'
3319
+ | 'file-circle-question'
3320
+ | 'file-circle-xmark'
3321
+ | 'file-clipboard'
3322
+ | 'file-code'
3323
+ | 'file-contract'
3324
+ | 'file-csv'
3325
+ | 'file-dashed-line'
3326
+ | 'file-doc'
3327
+ | 'file-download'
3328
+ | 'file-edit'
3329
+ | 'file-excel'
3330
+ | 'file-exclamation'
3331
+ | 'file-export'
3332
+ | 'file-heart'
3333
+ | 'file-image'
3334
+ | 'file-import'
3335
+ | 'file-invoice-dollar'
3336
+ | 'file-invoice'
3337
+ | 'file-lines'
3338
+ | 'file-lock'
3339
+ | 'file-magnifying-glass'
3340
+ | 'file-medical-alt'
3341
+ | 'file-medical'
3342
+ | 'file-minus'
3343
+ | 'file-music'
3344
+ | 'file-pdf'
3345
+ | 'file-pen'
3346
+ | 'file-plus-minus'
3347
+ | 'file-plus'
3348
+ | 'file-powerpoint'
3349
+ | 'file-prescription'
3350
+ | 'file-search'
3351
+ | 'file-shield'
3352
+ | 'file-signature'
3353
+ | 'file-slash'
3354
+ | 'file-spreadsheet'
3355
+ | 'file-text'
3356
+ | 'file-times'
3357
+ | 'file-upload'
3358
+ | 'file-user'
3359
+ | 'file-video'
3360
+ | 'file-waveform'
3361
+ | 'file-word'
3362
+ | 'file-xmark'
3363
+ | 'file-zip'
3364
+ | 'file-zipper'
3365
+ | 'file'
3366
+ | 'files-medical'
3367
+ | 'files'
3368
+ | 'fill-drip'
3369
+ | 'fill'
3370
+ | 'film-alt'
3371
+ | 'film-canister'
3372
+ | 'film-cannister'
3373
+ | 'film-simple'
3374
+ | 'film-slash'
3375
+ | 'film'
3376
+ | 'films'
3377
+ | 'filter-circle-dollar'
3378
+ | 'filter-circle-xmark'
3379
+ | 'filter-list'
3380
+ | 'filter-slash'
3381
+ | 'filter'
3382
+ | 'filters'
3383
+ | 'fingerprint'
3384
+ | 'fire-alt'
3385
+ | 'fire-burner'
3386
+ | 'fire-extinguisher'
3387
+ | 'fire-flame-curved'
3388
+ | 'fire-flame-simple'
3389
+ | 'fire-flame'
3390
+ | 'fire-hydrant'
3391
+ | 'fire-smoke'
3392
+ | 'fire'
3393
+ | 'fireplace'
3394
+ | 'firewall'
3395
+ | 'first-aid'
3396
+ | 'fish-bones'
3397
+ | 'fish-cooked'
3398
+ | 'fish-fins'
3399
+ | 'fish'
3400
+ | 'fishing-rod'
3401
+ | 'fist-raised'
3402
+ | 'flag-alt'
3403
+ | 'flag-checkered'
3404
+ | 'flag-pennant'
3405
+ | 'flag-swallowtail'
3406
+ | 'flag-usa'
3407
+ | 'flag'
3408
+ | 'flame'
3409
+ | 'flashlight'
3410
+ | 'flask-gear'
3411
+ | 'flask-poison'
3412
+ | 'flask-potion'
3413
+ | 'flask-round-poison'
3414
+ | 'flask-round-potion'
3415
+ | 'flask-vial'
3416
+ | 'flask'
3417
+ | 'flatbread-stuffed'
3418
+ | 'flatbread'
3419
+ | 'floppy-disk-circle-arrow-right'
3420
+ | 'floppy-disk-circle-xmark'
3421
+ | 'floppy-disk-pen'
3422
+ | 'floppy-disk-times'
3423
+ | 'floppy-disk'
3424
+ | 'floppy-disks'
3425
+ | 'florin-sign'
3426
+ | 'flower-daffodil'
3427
+ | 'flower-tulip'
3428
+ | 'flower'
3429
+ | 'flushed'
3430
+ | 'flute'
3431
+ | 'flux-capacitor'
3432
+ | 'flying-disc'
3433
+ | 'fog'
3434
+ | 'folder-arrow-down'
3435
+ | 'folder-arrow-up'
3436
+ | 'folder-blank'
3437
+ | 'folder-bookmark'
3438
+ | 'folder-closed'
3439
+ | 'folder-cog'
3440
+ | 'folder-download'
3441
+ | 'folder-gear'
3442
+ | 'folder-grid'
3443
+ | 'folder-heart'
3444
+ | 'folder-image'
3445
+ | 'folder-magnifying-glass'
3446
+ | 'folder-medical'
3447
+ | 'folder-minus'
3448
+ | 'folder-music'
3449
+ | 'folder-open'
3450
+ | 'folder-plus'
3451
+ | 'folder-search'
3452
+ | 'folder-times'
3453
+ | 'folder-tree'
3454
+ | 'folder-upload'
3455
+ | 'folder-user'
3456
+ | 'folder-xmark'
3457
+ | 'folder'
3458
+ | 'folders'
3459
+ | 'fondue-pot'
3460
+ | 'font-awesome-flag'
3461
+ | 'font-awesome-logo-full'
3462
+ | 'font-awesome'
3463
+ | 'font-case'
3464
+ | 'font'
3465
+ | 'football-ball'
3466
+ | 'football-helmet'
3467
+ | 'football'
3468
+ | 'fork-knife'
3469
+ | 'fork'
3470
+ | 'forklift'
3471
+ | 'fort'
3472
+ | 'forward-fast'
3473
+ | 'forward-step'
3474
+ | 'forward'
3475
+ | 'fragile'
3476
+ | 'frame'
3477
+ | 'franc-sign'
3478
+ | 'french-fries'
3479
+ | 'frog'
3480
+ | 'frosty-head'
3481
+ | 'frown-open'
3482
+ | 'frown'
3483
+ | 'function'
3484
+ | 'funnel-dollar'
3485
+ | 'futbol-ball'
3486
+ | 'futbol'
3487
+ | 'g'
3488
+ | 'galaxy'
3489
+ | 'gallery-thumbnails'
3490
+ | 'game-board-alt'
3491
+ | 'game-board-simple'
3492
+ | 'game-board'
3493
+ | 'game-console-handheld-crank'
3494
+ | 'game-console-handheld'
3495
+ | 'gamepad-alt'
3496
+ | 'gamepad-modern'
3497
+ | 'gamepad'
3498
+ | 'garage-car'
3499
+ | 'garage-open'
3500
+ | 'garage'
3501
+ | 'garlic'
3502
+ | 'gas-pump-slash'
3503
+ | 'gas-pump'
3504
+ | 'gauge-circle-bolt'
3505
+ | 'gauge-circle-minus'
3506
+ | 'gauge-circle-plus'
3507
+ | 'gauge-high'
3508
+ | 'gauge-low'
3509
+ | 'gauge-max'
3510
+ | 'gauge-med'
3511
+ | 'gauge-min'
3512
+ | 'gauge-simple-high'
3513
+ | 'gauge-simple-low'
3514
+ | 'gauge-simple-max'
3515
+ | 'gauge-simple-med'
3516
+ | 'gauge-simple-min'
3517
+ | 'gauge-simple'
3518
+ | 'gauge'
3519
+ | 'gave-dandy'
3520
+ | 'gavel'
3521
+ | 'gbp'
3522
+ | 'gear-code'
3523
+ | 'gear-complex-code'
3524
+ | 'gear-complex'
3525
+ | 'gear'
3526
+ | 'gears'
3527
+ | 'gem'
3528
+ | 'genderless'
3529
+ | 'ghost'
3530
+ | 'gif'
3531
+ | 'gift-card'
3532
+ | 'gift'
3533
+ | 'gifts'
3534
+ | 'gingerbread-man'
3535
+ | 'glass-champagne'
3536
+ | 'glass-cheers'
3537
+ | 'glass-citrus'
3538
+ | 'glass-empty'
3539
+ | 'glass-half-empty'
3540
+ | 'glass-half-full'
3541
+ | 'glass-half'
3542
+ | 'glass-martini-alt'
3543
+ | 'glass-martini'
3544
+ | 'glass-water-droplet'
3545
+ | 'glass-water'
3546
+ | 'glass-whiskey-rocks'
3547
+ | 'glass-whiskey'
3548
+ | 'glass'
3549
+ | 'glasses-alt'
3550
+ | 'glasses-round'
3551
+ | 'glasses'
3552
+ | 'globe-africa'
3553
+ | 'globe-americas'
3554
+ | 'globe-asia'
3555
+ | 'globe-europe'
3556
+ | 'globe-oceania'
3557
+ | 'globe-snow'
3558
+ | 'globe-stand'
3559
+ | 'globe'
3560
+ | 'glove-boxing'
3561
+ | 'goal-net'
3562
+ | 'golf-ball-tee'
3563
+ | 'golf-ball'
3564
+ | 'golf-club'
3565
+ | 'golf-flag-hole'
3566
+ | 'gopuram'
3567
+ | 'graduation-cap'
3568
+ | 'gramophone'
3569
+ | 'grapes'
3570
+ | 'grate-droplet'
3571
+ | 'grate'
3572
+ | 'greater-than-equal'
3573
+ | 'greater-than'
3574
+ | 'grid-2-plus'
3575
+ | 'grid-2'
3576
+ | 'grid-3'
3577
+ | 'grid-4'
3578
+ | 'grid-5'
3579
+ | 'grid-dividers'
3580
+ | 'grid-horizontal'
3581
+ | 'grid-round-2-plus'
3582
+ | 'grid-round-2'
3583
+ | 'grid-round-4'
3584
+ | 'grid-round-5'
3585
+ | 'grid-round'
3586
+ | 'grid'
3587
+ | 'grill-fire'
3588
+ | 'grill-hot'
3589
+ | 'grill'
3590
+ | 'grimace'
3591
+ | 'grin-alt'
3592
+ | 'grin-beam-sweat'
3593
+ | 'grin-beam'
3594
+ | 'grin-hearts'
3595
+ | 'grin-squint-tears'
3596
+ | 'grin-squint'
3597
+ | 'grin-stars'
3598
+ | 'grin-tears'
3599
+ | 'grin-tongue-squint'
3600
+ | 'grin-tongue-wink'
3601
+ | 'grin-tongue'
3602
+ | 'grin-wink'
3603
+ | 'grin'
3604
+ | 'grip-dots-vertical'
3605
+ | 'grip-dots'
3606
+ | 'grip-horizontal'
3607
+ | 'grip-lines-vertical'
3608
+ | 'grip-lines'
3609
+ | 'grip-vertical'
3610
+ | 'grip'
3611
+ | 'group-arrows-rotate'
3612
+ | 'guarani-sign'
3613
+ | 'guitar-electric'
3614
+ | 'guitar'
3615
+ | 'guitars'
3616
+ | 'gun-slash'
3617
+ | 'gun-squirt'
3618
+ | 'gun'
3619
+ | 'h-square'
3620
+ | 'h'
3621
+ | 'h1'
3622
+ | 'h2'
3623
+ | 'h3'
3624
+ | 'h4'
3625
+ | 'h5'
3626
+ | 'h6'
3627
+ | 'hamburger'
3628
+ | 'hammer-crash'
3629
+ | 'hammer-war'
3630
+ | 'hammer'
3631
+ | 'hamsa'
3632
+ | 'hand-back-fist'
3633
+ | 'hand-back-point-down'
3634
+ | 'hand-back-point-left'
3635
+ | 'hand-back-point-ribbon'
3636
+ | 'hand-back-point-right'
3637
+ | 'hand-back-point-up'
3638
+ | 'hand-dots'
3639
+ | 'hand-fingers-crossed'
3640
+ | 'hand-fist'
3641
+ | 'hand-heart'
3642
+ | 'hand-holding-box'
3643
+ | 'hand-holding-dollar'
3644
+ | 'hand-holding-droplet'
3645
+ | 'hand-holding-hand'
3646
+ | 'hand-holding-heart'
3647
+ | 'hand-holding-magic'
3648
+ | 'hand-holding-medical'
3649
+ | 'hand-holding-seedling'
3650
+ | 'hand-holding-skull'
3651
+ | 'hand-holding-usd'
3652
+ | 'hand-holding-water'
3653
+ | 'hand-holding'
3654
+ | 'hand-horns'
3655
+ | 'hand-lizard'
3656
+ | 'hand-love'
3657
+ | 'hand-middle-finger'
3658
+ | 'hand-paper'
3659
+ | 'hand-peace'
3660
+ | 'hand-point-down'
3661
+ | 'hand-point-left'
3662
+ | 'hand-point-ribbon'
3663
+ | 'hand-point-right'
3664
+ | 'hand-point-up'
3665
+ | 'hand-pointer'
3666
+ | 'hand-receiving'
3667
+ | 'hand-rock'
3668
+ | 'hand-scissors'
3669
+ | 'hand-sparkles'
3670
+ | 'hand-spock'
3671
+ | 'hand-wave'
3672
+ | 'hand'
3673
+ | 'handcuffs'
3674
+ | 'hands-american-sign-language-interpreting'
3675
+ | 'hands-asl-interpreting'
3676
+ | 'hands-bound'
3677
+ | 'hands-bubbles'
3678
+ | 'hands-clapping'
3679
+ | 'hands-heart'
3680
+ | 'hands-helping'
3681
+ | 'hands-holding-child'
3682
+ | 'hands-holding-circle'
3683
+ | 'hands-holding-diamond'
3684
+ | 'hands-holding-dollar'
3685
+ | 'hands-holding-heart'
3686
+ | 'hands-holding'
3687
+ | 'hands-praying'
3688
+ | 'hands-usd'
3689
+ | 'hands-wash'
3690
+ | 'hands'
3691
+ | 'handshake-alt-slash'
3692
+ | 'handshake-alt'
3693
+ | 'handshake-angle'
3694
+ | 'handshake-simple-slash'
3695
+ | 'handshake-simple'
3696
+ | 'handshake-slash'
3697
+ | 'handshake'
3698
+ | 'hanukiah'
3699
+ | 'hard-drive'
3700
+ | 'hard-hat'
3701
+ | 'hard-of-hearing'
3702
+ | 'hashtag-lock'
3703
+ | 'hashtag'
3704
+ | 'hat-beach'
3705
+ | 'hat-chef'
3706
+ | 'hat-cowboy-side'
3707
+ | 'hat-cowboy'
3708
+ | 'hat-hard'
3709
+ | 'hat-santa'
3710
+ | 'hat-winter'
3711
+ | 'hat-witch'
3712
+ | 'hat-wizard'
3713
+ | 'haykal'
3714
+ | 'hdd'
3715
+ | 'head-side-brain'
3716
+ | 'head-side-cough-slash'
3717
+ | 'head-side-cough'
3718
+ | 'head-side-goggles'
3719
+ | 'head-side-headphones'
3720
+ | 'head-side-heart'
3721
+ | 'head-side-mask'
3722
+ | 'head-side-medical'
3723
+ | 'head-side-virus'
3724
+ | 'head-side'
3725
+ | 'head-vr'
3726
+ | 'header'
3727
+ | 'heading'
3728
+ | 'headphones-alt'
3729
+ | 'headphones-simple'
3730
+ | 'headphones'
3731
+ | 'headset'
3732
+ | 'heart-broken'
3733
+ | 'heart-circle-bolt'
3734
+ | 'heart-circle-check'
3735
+ | 'heart-circle-exclamation'
3736
+ | 'heart-circle-minus'
3737
+ | 'heart-circle-plus'
3738
+ | 'heart-circle-xmark'
3739
+ | 'heart-circle'
3740
+ | 'heart-crack'
3741
+ | 'heart-half-alt'
3742
+ | 'heart-half-stroke'
3743
+ | 'heart-half'
3744
+ | 'heart-music-camera-bolt'
3745
+ | 'heart-pulse'
3746
+ | 'heart-rate'
3747
+ | 'heart-square'
3748
+ | 'heart'
3749
+ | 'heartbeat'
3750
+ | 'heat'
3751
+ | 'helicopter-symbol'
3752
+ | 'helicopter'
3753
+ | 'helmet-battle'
3754
+ | 'helmet-safety'
3755
+ | 'helmet-un'
3756
+ | 'hexagon-check'
3757
+ | 'hexagon-divide'
3758
+ | 'hexagon-exclamation'
3759
+ | 'hexagon-image'
3760
+ | 'hexagon-minus'
3761
+ | 'hexagon-plus'
3762
+ | 'hexagon-vertical-nft-slanted'
3763
+ | 'hexagon-vertical-nft'
3764
+ | 'hexagon-xmark'
3765
+ | 'hexagon'
3766
+ | 'high-definition'
3767
+ | 'highlighter-line'
3768
+ | 'highlighter'
3769
+ | 'hiking'
3770
+ | 'hill-avalanche'
3771
+ | 'hill-rockslide'
3772
+ | 'hippo'
3773
+ | 'history'
3774
+ | 'hockey-mask'
3775
+ | 'hockey-puck'
3776
+ | 'hockey-stick-puck'
3777
+ | 'hockey-sticks'
3778
+ | 'holly-berry'
3779
+ | 'home-alt'
3780
+ | 'home-blank'
3781
+ | 'home-heart'
3782
+ | 'home-lg-alt'
3783
+ | 'home-lg'
3784
+ | 'home-user'
3785
+ | 'home'
3786
+ | 'honey-pot'
3787
+ | 'hood-cloak'
3788
+ | 'horizontal-rule'
3789
+ | 'horse-head'
3790
+ | 'horse-saddle'
3791
+ | 'horse'
3792
+ | 'hose-reel'
3793
+ | 'hose'
3794
+ | 'hospital-alt'
3795
+ | 'hospital-symbol'
3796
+ | 'hospital-user'
3797
+ | 'hospital-wide'
3798
+ | 'hospital'
3799
+ | 'hospitals'
3800
+ | 'hot-tub-person'
3801
+ | 'hot-tub'
3802
+ | 'hotdog'
3803
+ | 'hotel'
3804
+ | 'hourglass-1'
3805
+ | 'hourglass-2'
3806
+ | 'hourglass-3'
3807
+ | 'hourglass-clock'
3808
+ | 'hourglass-empty'
3809
+ | 'hourglass-end'
3810
+ | 'hourglass-half'
3811
+ | 'hourglass-start'
3812
+ | 'hourglass'
3813
+ | 'house-blank'
3814
+ | 'house-building'
3815
+ | 'house-chimney-blank'
3816
+ | 'house-chimney-crack'
3817
+ | 'house-chimney-heart'
3818
+ | 'house-chimney-medical'
3819
+ | 'house-chimney-user'
3820
+ | 'house-chimney-window'
3821
+ | 'house-chimney'
3822
+ | 'house-circle-check'
3823
+ | 'house-circle-exclamation'
3824
+ | 'house-circle-xmark'
3825
+ | 'house-crack'
3826
+ | 'house-damage'
3827
+ | 'house-day'
3828
+ | 'house-fire'
3829
+ | 'house-flag'
3830
+ | 'house-flood-water-circle-arrow-right'
3831
+ | 'house-flood-water'
3832
+ | 'house-flood'
3833
+ | 'house-heart'
3834
+ | 'house-laptop'
3835
+ | 'house-leave'
3836
+ | 'house-lock'
3837
+ | 'house-medical-circle-check'
3838
+ | 'house-medical-circle-exclamation'
3839
+ | 'house-medical-circle-xmark'
3840
+ | 'house-medical-flag'
3841
+ | 'house-medical'
3842
+ | 'house-night'
3843
+ | 'house-person-arrive'
3844
+ | 'house-person-depart'
3845
+ | 'house-person-leave'
3846
+ | 'house-person-return'
3847
+ | 'house-return'
3848
+ | 'house-signal'
3849
+ | 'house-tree'
3850
+ | 'house-tsunami'
3851
+ | 'house-turret'
3852
+ | 'house-user'
3853
+ | 'house-water'
3854
+ | 'house-window'
3855
+ | 'house'
3856
+ | 'hryvnia-sign'
3857
+ | 'hryvnia'
3858
+ | 'humidity'
3859
+ | 'hundred-points'
3860
+ | 'hurricane'
3861
+ | 'hyphen'
3862
+ | 'i-cursor'
3863
+ | 'i'
3864
+ | 'ice-cream'
3865
+ | 'ice-skate'
3866
+ | 'icicles'
3867
+ | 'icons-alt'
3868
+ | 'icons'
3869
+ | 'id-badge'
3870
+ | 'id-card-alt'
3871
+ | 'id-card-clip'
3872
+ | 'id-card'
3873
+ | 'igloo'
3874
+ | 'ils'
3875
+ | 'image-landscape'
3876
+ | 'image-polaroid-user'
3877
+ | 'image-polaroid'
3878
+ | 'image-portrait'
3879
+ | 'image-slash'
3880
+ | 'image-user'
3881
+ | 'image'
3882
+ | 'images-user'
3883
+ | 'images'
3884
+ | 'inbox-arrow-down'
3885
+ | 'inbox-arrow-up'
3886
+ | 'inbox-full'
3887
+ | 'inbox-in'
3888
+ | 'inbox-out'
3889
+ | 'inbox'
3890
+ | 'inboxes'
3891
+ | 'indent'
3892
+ | 'indian-rupee-sign'
3893
+ | 'indian-rupee'
3894
+ | 'industry-alt'
3895
+ | 'industry-windows'
3896
+ | 'industry'
3897
+ | 'infinity'
3898
+ | 'info-circle'
3899
+ | 'info-square'
3900
+ | 'info'
3901
+ | 'inhaler'
3902
+ | 'input-numeric'
3903
+ | 'input-pipe'
3904
+ | 'input-text'
3905
+ | 'inr'
3906
+ | 'institution'
3907
+ | 'integral'
3908
+ | 'interrobang'
3909
+ | 'intersection'
3910
+ | 'inventory'
3911
+ | 'island-tree-palm'
3912
+ | 'island-tropical'
3913
+ | 'italic'
3914
+ | 'j'
3915
+ | 'jack-o-lantern'
3916
+ | 'jar-wheat'
3917
+ | 'jar'
3918
+ | 'jedi'
3919
+ | 'jet-fighter-up'
3920
+ | 'jet-fighter'
3921
+ | 'joint'
3922
+ | 'journal-whills'
3923
+ | 'joystick'
3924
+ | 'jpy'
3925
+ | 'jug-bottle'
3926
+ | 'jug-detergent'
3927
+ | 'jug'
3928
+ | 'k'
3929
+ | 'kaaba'
3930
+ | 'kazoo'
3931
+ | 'kerning'
3932
+ | 'key-skeleton-left-right'
3933
+ | 'key-skeleton'
3934
+ | 'key'
3935
+ | 'keyboard-brightness-low'
3936
+ | 'keyboard-brightness'
3937
+ | 'keyboard-down'
3938
+ | 'keyboard-left'
3939
+ | 'keyboard'
3940
+ | 'keynote'
3941
+ | 'khanda'
3942
+ | 'kidneys'
3943
+ | 'kip-sign'
3944
+ | 'kiss-beam'
3945
+ | 'kiss-wink-heart'
3946
+ | 'kiss'
3947
+ | 'kit-medical'
3948
+ | 'kitchen-set'
3949
+ | 'kite'
3950
+ | 'kiwi-bird'
3951
+ | 'kiwi-fruit'
3952
+ | 'knife-kitchen'
3953
+ | 'knife'
3954
+ | 'krw'
3955
+ | 'l'
3956
+ | 'lacrosse-stick-ball'
3957
+ | 'lacrosse-stick'
3958
+ | 'ladder-water'
3959
+ | 'lambda'
3960
+ | 'lamp-desk'
3961
+ | 'lamp-floor'
3962
+ | 'lamp-street'
3963
+ | 'lamp'
3964
+ | 'land-mine-on'
3965
+ | 'landmark-alt'
3966
+ | 'landmark-dome'
3967
+ | 'landmark-flag'
3968
+ | 'landmark'
3969
+ | 'landscape'
3970
+ | 'language'
3971
+ | 'laptop-arrow-down'
3972
+ | 'laptop-binary'
3973
+ | 'laptop-code'
3974
+ | 'laptop-file'
3975
+ | 'laptop-house'
3976
+ | 'laptop-medical'
3977
+ | 'laptop-mobile'
3978
+ | 'laptop-slash'
3979
+ | 'laptop'
3980
+ | 'lari-sign'
3981
+ | 'lasso-sparkles'
3982
+ | 'lasso'
3983
+ | 'laugh-beam'
3984
+ | 'laugh-squint'
3985
+ | 'laugh-wink'
3986
+ | 'laugh'
3987
+ | 'layer-group-minus'
3988
+ | 'layer-group-plus'
3989
+ | 'layer-group'
3990
+ | 'layer-minus'
3991
+ | 'layer-plus'
3992
+ | 'leaf-heart'
3993
+ | 'leaf-maple'
3994
+ | 'leaf-oak'
3995
+ | 'leaf'
3996
+ | 'leafy-green'
3997
+ | 'left-from-line'
3998
+ | 'left-long-to-line'
3999
+ | 'left-long'
4000
+ | 'left-right'
4001
+ | 'left-to-line'
4002
+ | 'left'
4003
+ | 'legal'
4004
+ | 'lemon'
4005
+ | 'less-than-equal'
4006
+ | 'less-than'
4007
+ | 'level-down-alt'
4008
+ | 'level-down'
4009
+ | 'level-up-alt'
4010
+ | 'level-up'
4011
+ | 'life-ring'
4012
+ | 'light-ceiling'
4013
+ | 'light-emergency-on'
4014
+ | 'light-emergency'
4015
+ | 'light-switch-off'
4016
+ | 'light-switch-on'
4017
+ | 'light-switch'
4018
+ | 'lightbulb-cfl-on'
4019
+ | 'lightbulb-cfl'
4020
+ | 'lightbulb-dollar'
4021
+ | 'lightbulb-exclamation-on'
4022
+ | 'lightbulb-exclamation'
4023
+ | 'lightbulb-gear'
4024
+ | 'lightbulb-on'
4025
+ | 'lightbulb-slash'
4026
+ | 'lightbulb'
4027
+ | 'lights-holiday'
4028
+ | 'line-chart'
4029
+ | 'line-columns'
4030
+ | 'line-height'
4031
+ | 'lines-leaning'
4032
+ | 'link-horizontal-slash'
4033
+ | 'link-horizontal'
4034
+ | 'link-simple-slash'
4035
+ | 'link-simple'
4036
+ | 'link-slash'
4037
+ | 'link'
4038
+ | 'lips'
4039
+ | 'lira-sign'
4040
+ | 'list-1-2'
4041
+ | 'list-alt'
4042
+ | 'list-check'
4043
+ | 'list-dots'
4044
+ | 'list-dropdown'
4045
+ | 'list-music'
4046
+ | 'list-numeric'
4047
+ | 'list-ol'
4048
+ | 'list-radio'
4049
+ | 'list-squares'
4050
+ | 'list-timeline'
4051
+ | 'list-tree'
4052
+ | 'list-ul'
4053
+ | 'list'
4054
+ | 'litecoin-sign'
4055
+ | 'loader'
4056
+ | 'lobster'
4057
+ | 'location-arrow'
4058
+ | 'location-check'
4059
+ | 'location-circle'
4060
+ | 'location-crosshairs-slash'
4061
+ | 'location-crosshairs'
4062
+ | 'location-dot-slash'
4063
+ | 'location-dot'
4064
+ | 'location-exclamation'
4065
+ | 'location-minus'
4066
+ | 'location-pen'
4067
+ | 'location-pin-lock'
4068
+ | 'location-pin-slash'
4069
+ | 'location-pin'
4070
+ | 'location-plus'
4071
+ | 'location-question'
4072
+ | 'location-slash'
4073
+ | 'location-smile'
4074
+ | 'location-xmark'
4075
+ | 'location'
4076
+ | 'lock-a'
4077
+ | 'lock-alt'
4078
+ | 'lock-hashtag'
4079
+ | 'lock-keyhole-open'
4080
+ | 'lock-keyhole'
4081
+ | 'lock-open-alt'
4082
+ | 'lock-open'
4083
+ | 'lock'
4084
+ | 'locust'
4085
+ | 'lollipop'
4086
+ | 'lollypop'
4087
+ | 'long-arrow-alt-down'
4088
+ | 'long-arrow-alt-left'
4089
+ | 'long-arrow-alt-right'
4090
+ | 'long-arrow-alt-up'
4091
+ | 'long-arrow-down'
4092
+ | 'long-arrow-left'
4093
+ | 'long-arrow-right'
4094
+ | 'long-arrow-up'
4095
+ | 'loveseat'
4096
+ | 'low-vision'
4097
+ | 'luchador-mask'
4098
+ | 'luchador'
4099
+ | 'luggage-cart'
4100
+ | 'lungs-virus'
4101
+ | 'lungs'
4102
+ | 'm'
4103
+ | 'mace'
4104
+ | 'magic-wand-sparkles'
4105
+ | 'magic'
4106
+ | 'magnet'
4107
+ | 'magnifying-glass-arrow-right'
4108
+ | 'magnifying-glass-chart'
4109
+ | 'magnifying-glass-dollar'
4110
+ | 'magnifying-glass-location'
4111
+ | 'magnifying-glass-minus'
4112
+ | 'magnifying-glass-plus'
4113
+ | 'magnifying-glass'
4114
+ | 'mail-bulk'
4115
+ | 'mail-forward'
4116
+ | 'mail-reply-all'
4117
+ | 'mail-reply'
4118
+ | 'mailbox-flag-up'
4119
+ | 'mailbox'
4120
+ | 'maki-roll'
4121
+ | 'makizushi'
4122
+ | 'male'
4123
+ | 'manat-sign'
4124
+ | 'mandolin'
4125
+ | 'mango'
4126
+ | 'manhole'
4127
+ | 'map-location-dot'
4128
+ | 'map-location'
4129
+ | 'map-marked-alt'
4130
+ | 'map-marked'
4131
+ | 'map-marker-alt-slash'
4132
+ | 'map-marker-alt'
4133
+ | 'map-marker-check'
4134
+ | 'map-marker-edit'
4135
+ | 'map-marker-exclamation'
4136
+ | 'map-marker-minus'
4137
+ | 'map-marker-plus'
4138
+ | 'map-marker-question'
4139
+ | 'map-marker-slash'
4140
+ | 'map-marker-smile'
4141
+ | 'map-marker-times'
4142
+ | 'map-marker-xmark'
4143
+ | 'map-marker'
4144
+ | 'map-pin'
4145
+ | 'map-signs'
4146
+ | 'map'
4147
+ | 'marker'
4148
+ | 'mars-and-venus-burst'
4149
+ | 'mars-and-venus'
4150
+ | 'mars-double'
4151
+ | 'mars-stroke-h'
4152
+ | 'mars-stroke-right'
4153
+ | 'mars-stroke-up'
4154
+ | 'mars-stroke-v'
4155
+ | 'mars-stroke'
4156
+ | 'mars'
4157
+ | 'martini-glass-citrus'
4158
+ | 'martini-glass-empty'
4159
+ | 'martini-glass'
4160
+ | 'mask-face'
4161
+ | 'mask-luchador'
4162
+ | 'mask-snorkel'
4163
+ | 'mask-ventilator'
4164
+ | 'mask'
4165
+ | 'masks-theater'
4166
+ | 'mattress-pillow'
4167
+ | 'maximize'
4168
+ | 'meat'
4169
+ | 'medal'
4170
+ | 'medkit'
4171
+ | 'megaphone'
4172
+ | 'meh-blank'
4173
+ | 'meh-rolling-eyes'
4174
+ | 'meh'
4175
+ | 'melon-slice'
4176
+ | 'melon'
4177
+ | 'memo-circle-check'
4178
+ | 'memo-circle-info'
4179
+ | 'memo-pad'
4180
+ | 'memo'
4181
+ | 'memory'
4182
+ | 'menorah'
4183
+ | 'mercury'
4184
+ | 'merge'
4185
+ | 'message-arrow-down'
4186
+ | 'message-arrow-up-right'
4187
+ | 'message-arrow-up'
4188
+ | 'message-bot'
4189
+ | 'message-captions'
4190
+ | 'message-check'
4191
+ | 'message-code'
4192
+ | 'message-dollar'
4193
+ | 'message-dots'
4194
+ | 'message-edit'
4195
+ | 'message-exclamation'
4196
+ | 'message-heart'
4197
+ | 'message-image'
4198
+ | 'message-lines'
4199
+ | 'message-medical'
4200
+ | 'message-middle-top'
4201
+ | 'message-middle'
4202
+ | 'message-minus'
4203
+ | 'message-music'
4204
+ | 'message-pen'
4205
+ | 'message-plus'
4206
+ | 'message-question'
4207
+ | 'message-quote'
4208
+ | 'message-slash'
4209
+ | 'message-smile'
4210
+ | 'message-sms'
4211
+ | 'message-text'
4212
+ | 'message-times'
4213
+ | 'message-xmark'
4214
+ | 'message'
4215
+ | 'messages-dollar'
4216
+ | 'messages-question'
4217
+ | 'messages'
4218
+ | 'messaging'
4219
+ | 'meteor'
4220
+ | 'meter-bolt'
4221
+ | 'meter-droplet'
4222
+ | 'meter-fire'
4223
+ | 'meter'
4224
+ | 'microchip-ai'
4225
+ | 'microchip'
4226
+ | 'microphone-alt-slash'
4227
+ | 'microphone-alt'
4228
+ | 'microphone-circle-alt'
4229
+ | 'microphone-circle'
4230
+ | 'microphone-lines-slash'
4231
+ | 'microphone-lines'
4232
+ | 'microphone-slash'
4233
+ | 'microphone-stand'
4234
+ | 'microphone'
4235
+ | 'microscope'
4236
+ | 'microwave'
4237
+ | 'mill-sign'
4238
+ | 'mind-share'
4239
+ | 'minimize'
4240
+ | 'minus-circle'
4241
+ | 'minus-hexagon'
4242
+ | 'minus-large'
4243
+ | 'minus-octagon'
4244
+ | 'minus-square'
4245
+ | 'minus'
4246
+ | 'mistletoe'
4247
+ | 'mitten'
4248
+ | 'mobile-alt'
4249
+ | 'mobile-android-alt'
4250
+ | 'mobile-android'
4251
+ | 'mobile-button'
4252
+ | 'mobile-iphone'
4253
+ | 'mobile-notch'
4254
+ | 'mobile-phone'
4255
+ | 'mobile-retro'
4256
+ | 'mobile-screen-button'
4257
+ | 'mobile-screen'
4258
+ | 'mobile-signal-out'
4259
+ | 'mobile-signal'
4260
+ | 'mobile'
4261
+ | 'money-bill-1-wave'
4262
+ | 'money-bill-1'
4263
+ | 'money-bill-alt'
4264
+ | 'money-bill-simple-wave'
4265
+ | 'money-bill-simple'
4266
+ | 'money-bill-transfer'
4267
+ | 'money-bill-trend-up'
4268
+ | 'money-bill-wave-alt'
4269
+ | 'money-bill-wave'
4270
+ | 'money-bill-wheat'
4271
+ | 'money-bill'
4272
+ | 'money-bills-alt'
4273
+ | 'money-bills-simple'
4274
+ | 'money-bills'
4275
+ | 'money-check-alt'
4276
+ | 'money-check-dollar-pen'
4277
+ | 'money-check-dollar'
4278
+ | 'money-check-edit-alt'
4279
+ | 'money-check-edit'
4280
+ | 'money-check-pen'
4281
+ | 'money-check'
4282
+ | 'money-from-bracket'
4283
+ | 'money-simple-from-bracket'
4284
+ | 'monitor-heart-rate'
4285
+ | 'monitor-waveform'
4286
+ | 'monkey'
4287
+ | 'monument'
4288
+ | 'moon-cloud'
4289
+ | 'moon-over-sun'
4290
+ | 'moon-stars'
4291
+ | 'moon'
4292
+ | 'moped'
4293
+ | 'mortar-board'
4294
+ | 'mortar-pestle'
4295
+ | 'mosque'
4296
+ | 'mosquito-net'
4297
+ | 'mosquito'
4298
+ | 'motorcycle'
4299
+ | 'mound'
4300
+ | 'mountain-city'
4301
+ | 'mountain-sun'
4302
+ | 'mountain'
4303
+ | 'mountains'
4304
+ | 'mouse-alt'
4305
+ | 'mouse-field'
4306
+ | 'mouse-pointer'
4307
+ | 'mouse'
4308
+ | 'mp3-player'
4309
+ | 'mug-hot'
4310
+ | 'mug-marshmallows'
4311
+ | 'mug-saucer'
4312
+ | 'mug-tea-saucer'
4313
+ | 'mug-tea'
4314
+ | 'mug'
4315
+ | 'multiply'
4316
+ | 'museum'
4317
+ | 'mushroom'
4318
+ | 'music-alt-slash'
4319
+ | 'music-alt'
4320
+ | 'music-note-slash'
4321
+ | 'music-note'
4322
+ | 'music-slash'
4323
+ | 'music'
4324
+ | 'mustache'
4325
+ | 'n'
4326
+ | 'naira-sign'
4327
+ | 'narwhal'
4328
+ | 'navicon'
4329
+ | 'nesting-dolls'
4330
+ | 'network-wired'
4331
+ | 'neuter'
4332
+ | 'newspaper'
4333
+ | 'nfc-lock'
4334
+ | 'nfc-magnifying-glass'
4335
+ | 'nfc-pen'
4336
+ | 'nfc-signal'
4337
+ | 'nfc-slash'
4338
+ | 'nfc-symbol'
4339
+ | 'nfc-trash'
4340
+ | 'nfc'
4341
+ | 'nigiri'
4342
+ | 'nose'
4343
+ | 'not-equal'
4344
+ | 'notdef'
4345
+ | 'note-medical'
4346
+ | 'note-sticky'
4347
+ | 'note'
4348
+ | 'notebook'
4349
+ | 'notes-medical'
4350
+ | 'notes'
4351
+ | 'o'
4352
+ | 'object-exclude'
4353
+ | 'object-group'
4354
+ | 'object-intersect'
4355
+ | 'object-subtract'
4356
+ | 'object-ungroup'
4357
+ | 'object-union'
4358
+ | 'objects-align-bottom'
4359
+ | 'objects-align-center-horizontal'
4360
+ | 'objects-align-center-vertical'
4361
+ | 'objects-align-left'
4362
+ | 'objects-align-right'
4363
+ | 'objects-align-top'
4364
+ | 'objects-column'
4365
+ | 'octagon-check'
4366
+ | 'octagon-divide'
4367
+ | 'octagon-exclamation'
4368
+ | 'octagon-minus'
4369
+ | 'octagon-plus'
4370
+ | 'octagon-xmark'
4371
+ | 'octagon'
4372
+ | 'oil-can-drip'
4373
+ | 'oil-can'
4374
+ | 'oil-temp'
4375
+ | 'oil-temperature'
4376
+ | 'oil-well'
4377
+ | 'olive-branch'
4378
+ | 'olive'
4379
+ | 'om'
4380
+ | 'omega'
4381
+ | 'onion'
4382
+ | 'option'
4383
+ | 'ornament'
4384
+ | 'otter'
4385
+ | 'outdent'
4386
+ | 'outlet'
4387
+ | 'oven'
4388
+ | 'overline'
4389
+ | 'p'
4390
+ | 'page-break'
4391
+ | 'page-caret-down'
4392
+ | 'page-caret-up'
4393
+ | 'page'
4394
+ | 'pager'
4395
+ | 'paint-brush-alt'
4396
+ | 'paint-brush-fine'
4397
+ | 'paint-brush'
4398
+ | 'paint-roller'
4399
+ | 'paintbrush-alt'
4400
+ | 'paintbrush-fine'
4401
+ | 'paintbrush-pencil'
4402
+ | 'paintbrush'
4403
+ | 'palette-boxes'
4404
+ | 'palette'
4405
+ | 'pallet-alt'
4406
+ | 'pallet-box'
4407
+ | 'pallet-boxes'
4408
+ | 'pallet'
4409
+ | 'pan-food'
4410
+ | 'pan-frying'
4411
+ | 'pancakes'
4412
+ | 'panel-ews'
4413
+ | 'panel-fire'
4414
+ | 'panorama'
4415
+ | 'paper-plane-alt'
4416
+ | 'paper-plane-top'
4417
+ | 'paper-plane'
4418
+ | 'paperclip-vertical'
4419
+ | 'paperclip'
4420
+ | 'parachute-box'
4421
+ | 'paragraph-left'
4422
+ | 'paragraph-rtl'
4423
+ | 'paragraph'
4424
+ | 'parentheses'
4425
+ | 'parenthesis'
4426
+ | 'parking-circle-slash'
4427
+ | 'parking-circle'
4428
+ | 'parking-slash'
4429
+ | 'parking'
4430
+ | 'party-back'
4431
+ | 'party-bell'
4432
+ | 'party-horn'
4433
+ | 'passport'
4434
+ | 'pastafarianism'
4435
+ | 'paste'
4436
+ | 'pause-circle'
4437
+ | 'pause'
4438
+ | 'paw-alt'
4439
+ | 'paw-claws'
4440
+ | 'paw-simple'
4441
+ | 'paw'
4442
+ | 'peace'
4443
+ | 'peach'
4444
+ | 'peanut'
4445
+ | 'peanuts'
4446
+ | 'peapod'
4447
+ | 'pear'
4448
+ | 'pedestal'
4449
+ | 'pegasus'
4450
+ | 'pen-alt-slash'
4451
+ | 'pen-alt'
4452
+ | 'pen-circle'
4453
+ | 'pen-clip-slash'
4454
+ | 'pen-clip'
4455
+ | 'pen-fancy-slash'
4456
+ | 'pen-fancy'
4457
+ | 'pen-field'
4458
+ | 'pen-line'
4459
+ | 'pen-nib-slash'
4460
+ | 'pen-nib'
4461
+ | 'pen-paintbrush'
4462
+ | 'pen-ruler'
4463
+ | 'pen-slash'
4464
+ | 'pen-square'
4465
+ | 'pen-swirl'
4466
+ | 'pen-to-square'
4467
+ | 'pen'
4468
+ | 'pencil-alt'
4469
+ | 'pencil-mechanical'
4470
+ | 'pencil-paintbrush'
4471
+ | 'pencil-ruler'
4472
+ | 'pencil-slash'
4473
+ | 'pencil-square'
4474
+ | 'pencil'
4475
+ | 'pennant'
4476
+ | 'people-arrows-left-right'
4477
+ | 'people-arrows'
4478
+ | 'people-carry-box'
4479
+ | 'people-carry'
4480
+ | 'people-dress-simple'
4481
+ | 'people-dress'
4482
+ | 'people-group'
4483
+ | 'people-line'
4484
+ | 'people-pants-simple'
4485
+ | 'people-pants'
4486
+ | 'people-pulling'
4487
+ | 'people-robbery'
4488
+ | 'people-roof'
4489
+ | 'people-simple'
4490
+ | 'people'
4491
+ | 'pepper-hot'
4492
+ | 'pepper'
4493
+ | 'percent'
4494
+ | 'percentage'
4495
+ | 'period'
4496
+ | 'person-arrow-down-to-line'
4497
+ | 'person-arrow-up-from-line'
4498
+ | 'person-biking-mountain'
4499
+ | 'person-biking'
4500
+ | 'person-booth'
4501
+ | 'person-breastfeeding'
4502
+ | 'person-burst'
4503
+ | 'person-cane'
4504
+ | 'person-carry-box'
4505
+ | 'person-carry'
4506
+ | 'person-chalkboard'
4507
+ | 'person-circle-check'
4508
+ | 'person-circle-exclamation'
4509
+ | 'person-circle-minus'
4510
+ | 'person-circle-plus'
4511
+ | 'person-circle-question'
4512
+ | 'person-circle-xmark'
4513
+ | 'person-digging'
4514
+ | 'person-dolly-empty'
4515
+ | 'person-dolly'
4516
+ | 'person-dots-from-line'
4517
+ | 'person-dress-burst'
4518
+ | 'person-dress-simple'
4519
+ | 'person-dress'
4520
+ | 'person-drowning'
4521
+ | 'person-falling-burst'
4522
+ | 'person-falling'
4523
+ | 'person-from-portal'
4524
+ | 'person-half-dress'
4525
+ | 'person-harassing'
4526
+ | 'person-hiking'
4527
+ | 'person-military-pointing'
4528
+ | 'person-military-rifle'
4529
+ | 'person-military-to-person'
4530
+ | 'person-pinball'
4531
+ | 'person-praying'
4532
+ | 'person-pregnant'
4533
+ | 'person-rays'
4534
+ | 'person-rifle'
4535
+ | 'person-running-fast'
4536
+ | 'person-running'
4537
+ | 'person-seat-reclined'
4538
+ | 'person-seat'
4539
+ | 'person-shelter'
4540
+ | 'person-sign'
4541
+ | 'person-simple'
4542
+ | 'person-skating'
4543
+ | 'person-ski-jumping'
4544
+ | 'person-ski-lift'
4545
+ | 'person-skiing-nordic'
4546
+ | 'person-skiing'
4547
+ | 'person-sledding'
4548
+ | 'person-snowboarding'
4549
+ | 'person-snowmobiling'
4550
+ | 'person-swimming'
4551
+ | 'person-through-window'
4552
+ | 'person-to-door'
4553
+ | 'person-to-portal'
4554
+ | 'person-walking-arrow-loop-left'
4555
+ | 'person-walking-arrow-right'
4556
+ | 'person-walking-dashed-line-arrow-right'
4557
+ | 'person-walking-luggage'
4558
+ | 'person-walking-with-cane'
4559
+ | 'person-walking'
4560
+ | 'person'
4561
+ | 'peseta-sign'
4562
+ | 'peso-sign'
4563
+ | 'phone-alt'
4564
+ | 'phone-arrow-down-left'
4565
+ | 'phone-arrow-down'
4566
+ | 'phone-arrow-right'
4567
+ | 'phone-arrow-up-right'
4568
+ | 'phone-arrow-up'
4569
+ | 'phone-circle-alt'
4570
+ | 'phone-circle-down'
4571
+ | 'phone-circle'
4572
+ | 'phone-flip'
4573
+ | 'phone-hangup'
4574
+ | 'phone-incoming'
4575
+ | 'phone-intercom'
4576
+ | 'phone-laptop'
4577
+ | 'phone-missed'
4578
+ | 'phone-office'
4579
+ | 'phone-outgoing'
4580
+ | 'phone-plus'
4581
+ | 'phone-rotary'
4582
+ | 'phone-slash'
4583
+ | 'phone-square-alt'
4584
+ | 'phone-square-down'
4585
+ | 'phone-square'
4586
+ | 'phone-volume'
4587
+ | 'phone-xmark'
4588
+ | 'phone'
4589
+ | 'photo-film-music'
4590
+ | 'photo-film'
4591
+ | 'photo-video'
4592
+ | 'pi'
4593
+ | 'piano-keyboard'
4594
+ | 'piano'
4595
+ | 'pickaxe'
4596
+ | 'pickleball'
4597
+ | 'pie-chart'
4598
+ | 'pie'
4599
+ | 'pig'
4600
+ | 'piggy-bank'
4601
+ | 'pills'
4602
+ | 'pinata'
4603
+ | 'pinball'
4604
+ | 'pineapple'
4605
+ | 'ping-pong-paddle-ball'
4606
+ | 'pipe-circle-check'
4607
+ | 'pipe-collar'
4608
+ | 'pipe-section'
4609
+ | 'pipe-smoking'
4610
+ | 'pipe-valve'
4611
+ | 'pipe'
4612
+ | 'pizza-slice'
4613
+ | 'pizza'
4614
+ | 'place-of-worship'
4615
+ | 'plane-alt'
4616
+ | 'plane-arrival'
4617
+ | 'plane-circle-check'
4618
+ | 'plane-circle-exclamation'
4619
+ | 'plane-circle-xmark'
4620
+ | 'plane-departure'
4621
+ | 'plane-engines'
4622
+ | 'plane-lock'
4623
+ | 'plane-prop'
4624
+ | 'plane-slash'
4625
+ | 'plane-tail'
4626
+ | 'plane-up-slash'
4627
+ | 'plane-up'
4628
+ | 'plane'
4629
+ | 'planet-moon'
4630
+ | 'planet-ringed'
4631
+ | 'plant-wilt'
4632
+ | 'plate-utensils'
4633
+ | 'plate-wheat'
4634
+ | 'play-circle'
4635
+ | 'play-pause'
4636
+ | 'play'
4637
+ | 'plug-circle-bolt'
4638
+ | 'plug-circle-check'
4639
+ | 'plug-circle-exclamation'
4640
+ | 'plug-circle-minus'
4641
+ | 'plug-circle-plus'
4642
+ | 'plug-circle-xmark'
4643
+ | 'plug'
4644
+ | 'plus-circle'
4645
+ | 'plus-hexagon'
4646
+ | 'plus-large'
4647
+ | 'plus-minus'
4648
+ | 'plus-octagon'
4649
+ | 'plus-square'
4650
+ | 'plus'
4651
+ | 'podcast'
4652
+ | 'podium-star'
4653
+ | 'podium'
4654
+ | 'police-box'
4655
+ | 'poll-h'
4656
+ | 'poll-people'
4657
+ | 'poll'
4658
+ | 'pompebled'
4659
+ | 'poo-bolt'
4660
+ | 'poo-storm'
4661
+ | 'poo'
4662
+ | 'pool-8-ball'
4663
+ | 'poop'
4664
+ | 'popcorn'
4665
+ | 'popsicle'
4666
+ | 'portal-enter'
4667
+ | 'portal-exit'
4668
+ | 'portrait'
4669
+ | 'pot-food'
4670
+ | 'potato'
4671
+ | 'pound-sign'
4672
+ | 'power-off'
4673
+ | 'pray'
4674
+ | 'praying-hands'
4675
+ | 'prescription-bottle-alt'
4676
+ | 'prescription-bottle-medical'
4677
+ | 'prescription-bottle-pill'
4678
+ | 'prescription-bottle'
4679
+ | 'prescription'
4680
+ | 'presentation-screen'
4681
+ | 'presentation'
4682
+ | 'pretzel'
4683
+ | 'print-magnifying-glass'
4684
+ | 'print-search'
4685
+ | 'print-slash'
4686
+ | 'print'
4687
+ | 'pro'
4688
+ | 'procedures'
4689
+ | 'project-diagram'
4690
+ | 'projector'
4691
+ | 'pump-medical'
4692
+ | 'pump-soap'
4693
+ | 'pump'
4694
+ | 'pumpkin'
4695
+ | 'puzzle-piece-alt'
4696
+ | 'puzzle-piece-simple'
4697
+ | 'puzzle-piece'
4698
+ | 'puzzle'
4699
+ | 'q'
4700
+ | 'qrcode'
4701
+ | 'question-circle'
4702
+ | 'question-square'
4703
+ | 'question'
4704
+ | 'quidditch-broom-ball'
4705
+ | 'quidditch'
4706
+ | 'quote-left-alt'
4707
+ | 'quote-left'
4708
+ | 'quote-right-alt'
4709
+ | 'quote-right'
4710
+ | 'quotes'
4711
+ | 'quran'
4712
+ | 'r'
4713
+ | 'rabbit-fast'
4714
+ | 'rabbit-running'
4715
+ | 'rabbit'
4716
+ | 'racquet'
4717
+ | 'radar'
4718
+ | 'radiation-alt'
4719
+ | 'radiation'
4720
+ | 'radio-alt'
4721
+ | 'radio-tuner'
4722
+ | 'radio'
4723
+ | 'rainbow'
4724
+ | 'raindrops'
4725
+ | 'ram'
4726
+ | 'ramp-loading'
4727
+ | 'random'
4728
+ | 'ranking-star'
4729
+ | 'raygun'
4730
+ | 'receipt'
4731
+ | 'record-vinyl'
4732
+ | 'rectangle-ad'
4733
+ | 'rectangle-barcode'
4734
+ | 'rectangle-code'
4735
+ | 'rectangle-hd'
4736
+ | 'rectangle-history-circle-plus'
4737
+ | 'rectangle-history-circle-user'
4738
+ | 'rectangle-history'
4739
+ | 'rectangle-landscape'
4740
+ | 'rectangle-list'
4741
+ | 'rectangle-portrait'
4742
+ | 'rectangle-pro'
4743
+ | 'rectangle-sd'
4744
+ | 'rectangle-terminal'
4745
+ | 'rectangle-times'
4746
+ | 'rectangle-vertical-history'
4747
+ | 'rectangle-vertical'
4748
+ | 'rectangle-wide'
4749
+ | 'rectangle-xmark'
4750
+ | 'rectangle'
4751
+ | 'rectangles-mixed'
4752
+ | 'recycle'
4753
+ | 'redo-alt'
4754
+ | 'redo'
4755
+ | 'reel'
4756
+ | 'refresh'
4757
+ | 'refrigerator'
4758
+ | 'registered'
4759
+ | 'remove-format'
4760
+ | 'remove'
4761
+ | 'reorder'
4762
+ | 'repeat-1-alt'
4763
+ | 'repeat-1'
4764
+ | 'repeat-alt'
4765
+ | 'repeat'
4766
+ | 'reply-all'
4767
+ | 'reply-clock'
4768
+ | 'reply-time'
4769
+ | 'reply'
4770
+ | 'republican'
4771
+ | 'restroom-simple'
4772
+ | 'restroom'
4773
+ | 'retweet-alt'
4774
+ | 'retweet'
4775
+ | 'rhombus'
4776
+ | 'ribbon'
4777
+ | 'right-from-bracket'
4778
+ | 'right-from-line'
4779
+ | 'right-left-large'
4780
+ | 'right-left'
4781
+ | 'right-long-to-line'
4782
+ | 'right-long'
4783
+ | 'right-to-bracket'
4784
+ | 'right-to-line'
4785
+ | 'right'
4786
+ | 'ring-diamond'
4787
+ | 'ring'
4788
+ | 'rings-wedding'
4789
+ | 'rmb'
4790
+ | 'road-barrier'
4791
+ | 'road-bridge'
4792
+ | 'road-circle-check'
4793
+ | 'road-circle-exclamation'
4794
+ | 'road-circle-xmark'
4795
+ | 'road-lock'
4796
+ | 'road-spikes'
4797
+ | 'road'
4798
+ | 'robot-astromech'
4799
+ | 'robot'
4800
+ | 'rocket-launch'
4801
+ | 'rocket'
4802
+ | 'rod-asclepius'
4803
+ | 'rod-snake'
4804
+ | 'roller-coaster'
4805
+ | 'rotate-back'
4806
+ | 'rotate-backward'
4807
+ | 'rotate-exclamation'
4808
+ | 'rotate-forward'
4809
+ | 'rotate-left'
4810
+ | 'rotate-right'
4811
+ | 'rotate'
4812
+ | 'rouble'
4813
+ | 'route-highway'
4814
+ | 'route-interstate'
4815
+ | 'route'
4816
+ | 'router'
4817
+ | 'rows'
4818
+ | 'rss-square'
4819
+ | 'rss'
4820
+ | 'rub'
4821
+ | 'ruble-sign'
4822
+ | 'ruble'
4823
+ | 'rug'
4824
+ | 'rugby-ball'
4825
+ | 'ruler-combined'
4826
+ | 'ruler-horizontal'
4827
+ | 'ruler-triangle'
4828
+ | 'ruler-vertical'
4829
+ | 'ruler'
4830
+ | 'running'
4831
+ | 'rupee-sign'
4832
+ | 'rupee'
4833
+ | 'rupiah-sign'
4834
+ | 'rv'
4835
+ | 's'
4836
+ | 'sack-dollar'
4837
+ | 'sack-xmark'
4838
+ | 'sack'
4839
+ | 'sad-cry'
4840
+ | 'sad-tear'
4841
+ | 'sailboat'
4842
+ | 'salad'
4843
+ | 'salt-shaker'
4844
+ | 'sandwich'
4845
+ | 'satellite-dish'
4846
+ | 'satellite'
4847
+ | 'sausage'
4848
+ | 'save-circle-arrow-right'
4849
+ | 'save-circle-xmark'
4850
+ | 'save-times'
4851
+ | 'save'
4852
+ | 'sax-hot'
4853
+ | 'saxophone-fire'
4854
+ | 'saxophone'
4855
+ | 'scale-balanced'
4856
+ | 'scale-unbalanced-flip'
4857
+ | 'scale-unbalanced'
4858
+ | 'scalpel-line-dashed'
4859
+ | 'scalpel-path'
4860
+ | 'scalpel'
4861
+ | 'scanner-gun'
4862
+ | 'scanner-image'
4863
+ | 'scanner-keyboard'
4864
+ | 'scanner-touchscreen'
4865
+ | 'scanner'
4866
+ | 'scarecrow'
4867
+ | 'scarf'
4868
+ | 'school-circle-check'
4869
+ | 'school-circle-exclamation'
4870
+ | 'school-circle-xmark'
4871
+ | 'school-flag'
4872
+ | 'school-lock'
4873
+ | 'school'
4874
+ | 'scissors'
4875
+ | 'screen-users'
4876
+ | 'screencast'
4877
+ | 'screenshot'
4878
+ | 'screwdriver-wrench'
4879
+ | 'screwdriver'
4880
+ | 'scribble'
4881
+ | 'scroll-old'
4882
+ | 'scroll-ribbon'
4883
+ | 'scroll-torah'
4884
+ | 'scroll'
4885
+ | 'scrubber'
4886
+ | 'scythe'
4887
+ | 'sd-card'
4888
+ | 'sd-cards'
4889
+ | 'seal-exclamation'
4890
+ | 'seal-question'
4891
+ | 'seal'
4892
+ | 'search-dollar'
4893
+ | 'search-location'
4894
+ | 'search-minus'
4895
+ | 'search-plus'
4896
+ | 'search'
4897
+ | 'seat-airline'
4898
+ | 'section'
4899
+ | 'seedling'
4900
+ | 'semicolon'
4901
+ | 'send-back'
4902
+ | 'send-backward'
4903
+ | 'send'
4904
+ | 'sensor-alert'
4905
+ | 'sensor-cloud'
4906
+ | 'sensor-fire'
4907
+ | 'sensor-on'
4908
+ | 'sensor-smoke'
4909
+ | 'sensor-triangle-exclamation'
4910
+ | 'sensor'
4911
+ | 'server'
4912
+ | 'shapes'
4913
+ | 'share-all'
4914
+ | 'share-alt-square'
4915
+ | 'share-alt'
4916
+ | 'share-from-square'
4917
+ | 'share-nodes'
4918
+ | 'share-square'
4919
+ | 'share'
4920
+ | 'sheep'
4921
+ | 'sheet-plastic'
4922
+ | 'shekel-sign'
4923
+ | 'shekel'
4924
+ | 'shelves-empty'
4925
+ | 'shelves'
4926
+ | 'sheqel-sign'
4927
+ | 'sheqel'
4928
+ | 'shield-alt'
4929
+ | 'shield-blank'
4930
+ | 'shield-cat'
4931
+ | 'shield-check'
4932
+ | 'shield-cross'
4933
+ | 'shield-dog'
4934
+ | 'shield-exclamation'
4935
+ | 'shield-halved'
4936
+ | 'shield-heart'
4937
+ | 'shield-keyhole'
4938
+ | 'shield-minus'
4939
+ | 'shield-plus'
4940
+ | 'shield-quartered'
4941
+ | 'shield-slash'
4942
+ | 'shield-times'
4943
+ | 'shield-virus'
4944
+ | 'shield-xmark'
4945
+ | 'shield'
4946
+ | 'ship'
4947
+ | 'shipping-fast'
4948
+ | 'shipping-timed'
4949
+ | 'shirt-long-sleeve'
4950
+ | 'shirt-running'
4951
+ | 'shirt-tank-top'
4952
+ | 'shirt'
4953
+ | 'shish-kebab'
4954
+ | 'shoe-prints'
4955
+ | 'shop-lock'
4956
+ | 'shop-slash'
4957
+ | 'shop'
4958
+ | 'shopping-bag'
4959
+ | 'shopping-basket-alt'
4960
+ | 'shopping-basket'
4961
+ | 'shopping-cart'
4962
+ | 'shortcake'
4963
+ | 'shovel-snow'
4964
+ | 'shovel'
4965
+ | 'shower-alt'
4966
+ | 'shower-down'
4967
+ | 'shower'
4968
+ | 'shredder'
4969
+ | 'shrimp'
4970
+ | 'shuffle'
4971
+ | 'shutters'
4972
+ | 'shuttle-space'
4973
+ | 'shuttle-van'
4974
+ | 'shuttlecock'
4975
+ | 'sickle'
4976
+ | 'sidebar-flip'
4977
+ | 'sidebar'
4978
+ | 'sigma'
4979
+ | 'sign-hanging'
4980
+ | 'sign-in-alt'
4981
+ | 'sign-in'
4982
+ | 'sign-language'
4983
+ | 'sign-out-alt'
4984
+ | 'sign-out'
4985
+ | 'sign'
4986
+ | 'signal-1'
4987
+ | 'signal-2'
4988
+ | 'signal-3'
4989
+ | 'signal-4'
4990
+ | 'signal-5'
4991
+ | 'signal-alt-1'
4992
+ | 'signal-alt-2'
4993
+ | 'signal-alt-3'
4994
+ | 'signal-alt-4'
4995
+ | 'signal-alt-slash'
4996
+ | 'signal-alt'
4997
+ | 'signal-bars-fair'
4998
+ | 'signal-bars-good'
4999
+ | 'signal-bars-slash'
5000
+ | 'signal-bars-strong'
5001
+ | 'signal-bars-weak'
5002
+ | 'signal-bars'
5003
+ | 'signal-fair'
5004
+ | 'signal-good'
5005
+ | 'signal-perfect'
5006
+ | 'signal-slash'
5007
+ | 'signal-stream-slash'
5008
+ | 'signal-stream'
5009
+ | 'signal-strong'
5010
+ | 'signal-weak'
5011
+ | 'signal'
5012
+ | 'signature-lock'
5013
+ | 'signature-slash'
5014
+ | 'signature'
5015
+ | 'signing'
5016
+ | 'signs-post'
5017
+ | 'sim-card'
5018
+ | 'sim-cards'
5019
+ | 'sink'
5020
+ | 'siren-on'
5021
+ | 'siren'
5022
+ | 'sitemap'
5023
+ | 'skating'
5024
+ | 'skeleton-ribs'
5025
+ | 'skeleton'
5026
+ | 'ski-boot-ski'
5027
+ | 'ski-boot'
5028
+ | 'ski-jump'
5029
+ | 'ski-lift'
5030
+ | 'skiing-nordic'
5031
+ | 'skiing'
5032
+ | 'skull-cow'
5033
+ | 'skull-crossbones'
5034
+ | 'skull'
5035
+ | 'slash-back'
5036
+ | 'slash-forward'
5037
+ | 'slash'
5038
+ | 'sledding'
5039
+ | 'sleigh'
5040
+ | 'slider'
5041
+ | 'sliders-h-square'
5042
+ | 'sliders-h'
5043
+ | 'sliders-simple'
5044
+ | 'sliders-up'
5045
+ | 'sliders-v-square'
5046
+ | 'sliders-v'
5047
+ | 'sliders'
5048
+ | 'slot-machine'
5049
+ | 'smile-beam'
5050
+ | 'smile-plus'
5051
+ | 'smile-wink'
5052
+ | 'smile'
5053
+ | 'smog'
5054
+ | 'smoke'
5055
+ | 'smoking-ban'
5056
+ | 'smoking'
5057
+ | 'sms'
5058
+ | 'snake'
5059
+ | 'snooze'
5060
+ | 'snow-blowing'
5061
+ | 'snowboarding'
5062
+ | 'snowflake-droplets'
5063
+ | 'snowflake'
5064
+ | 'snowflakes'
5065
+ | 'snowman-head'
5066
+ | 'snowman'
5067
+ | 'snowmobile'
5068
+ | 'snowplow'
5069
+ | 'soap'
5070
+ | 'soccer-ball'
5071
+ | 'socks'
5072
+ | 'soft-serve'
5073
+ | 'solar-panel'
5074
+ | 'solar-system'
5075
+ | 'sort-alpha-asc'
5076
+ | 'sort-alpha-desc'
5077
+ | 'sort-alpha-down-alt'
5078
+ | 'sort-alpha-down'
5079
+ | 'sort-alpha-up-alt'
5080
+ | 'sort-alpha-up'
5081
+ | 'sort-alt'
5082
+ | 'sort-amount-asc'
5083
+ | 'sort-amount-desc'
5084
+ | 'sort-amount-down-alt'
5085
+ | 'sort-amount-down'
5086
+ | 'sort-amount-up-alt'
5087
+ | 'sort-amount-up'
5088
+ | 'sort-asc'
5089
+ | 'sort-circle-down'
5090
+ | 'sort-circle-up'
5091
+ | 'sort-circle'
5092
+ | 'sort-desc'
5093
+ | 'sort-down'
5094
+ | 'sort-numeric-asc'
5095
+ | 'sort-numeric-desc'
5096
+ | 'sort-numeric-down-alt'
5097
+ | 'sort-numeric-down'
5098
+ | 'sort-numeric-up-alt'
5099
+ | 'sort-numeric-up'
5100
+ | 'sort-shapes-down-alt'
5101
+ | 'sort-shapes-down'
5102
+ | 'sort-shapes-up-alt'
5103
+ | 'sort-shapes-up'
5104
+ | 'sort-size-down-alt'
5105
+ | 'sort-size-down'
5106
+ | 'sort-size-up-alt'
5107
+ | 'sort-size-up'
5108
+ | 'sort-up-down'
5109
+ | 'sort-up'
5110
+ | 'sort'
5111
+ | 'soup'
5112
+ | 'spa'
5113
+ | 'space-shuttle'
5114
+ | 'space-station-moon-alt'
5115
+ | 'space-station-moon-construction'
5116
+ | 'space-station-moon'
5117
+ | 'spade'
5118
+ | 'spaghetti-monster-flying'
5119
+ | 'sparkle'
5120
+ | 'sparkles'
5121
+ | 'speaker'
5122
+ | 'speakers'
5123
+ | 'spell-check'
5124
+ | 'spider-black-widow'
5125
+ | 'spider-web'
5126
+ | 'spider'
5127
+ | 'spinner-third'
5128
+ | 'spinner'
5129
+ | 'split'
5130
+ | 'splotch'
5131
+ | 'spoon'
5132
+ | 'sportsball'
5133
+ | 'spray-can-sparkles'
5134
+ | 'spray-can'
5135
+ | 'sprinkler-ceiling'
5136
+ | 'sprinkler'
5137
+ | 'sprout'
5138
+ | 'square-0'
5139
+ | 'square-1'
5140
+ | 'square-2'
5141
+ | 'square-3'
5142
+ | 'square-4'
5143
+ | 'square-5'
5144
+ | 'square-6'
5145
+ | 'square-7'
5146
+ | 'square-8'
5147
+ | 'square-9'
5148
+ | 'square-a-lock'
5149
+ | 'square-a'
5150
+ | 'square-ampersand'
5151
+ | 'square-arrow-down-left'
5152
+ | 'square-arrow-down-right'
5153
+ | 'square-arrow-down'
5154
+ | 'square-arrow-left'
5155
+ | 'square-arrow-right'
5156
+ | 'square-arrow-up-left'
5157
+ | 'square-arrow-up-right'
5158
+ | 'square-arrow-up'
5159
+ | 'square-b'
5160
+ | 'square-bolt'
5161
+ | 'square-c'
5162
+ | 'square-caret-down'
5163
+ | 'square-caret-left'
5164
+ | 'square-caret-right'
5165
+ | 'square-caret-up'
5166
+ | 'square-check'
5167
+ | 'square-chevron-down'
5168
+ | 'square-chevron-left'
5169
+ | 'square-chevron-right'
5170
+ | 'square-chevron-up'
5171
+ | 'square-code'
5172
+ | 'square-d'
5173
+ | 'square-dashed-circle-plus'
5174
+ | 'square-dashed'
5175
+ | 'square-divide'
5176
+ | 'square-dollar'
5177
+ | 'square-down-left'
5178
+ | 'square-down-right'
5179
+ | 'square-down'
5180
+ | 'square-e'
5181
+ | 'square-ellipsis-vertical'
5182
+ | 'square-ellipsis'
5183
+ | 'square-envelope'
5184
+ | 'square-exclamation'
5185
+ | 'square-f'
5186
+ | 'square-fragile'
5187
+ | 'square-full'
5188
+ | 'square-g'
5189
+ | 'square-h'
5190
+ | 'square-heart'
5191
+ | 'square-i'
5192
+ | 'square-info'
5193
+ | 'square-j'
5194
+ | 'square-k'
5195
+ | 'square-kanban'
5196
+ | 'square-l'
5197
+ | 'square-left'
5198
+ | 'square-list'
5199
+ | 'square-m'
5200
+ | 'square-minus'
5201
+ | 'square-n'
5202
+ | 'square-nfi'
5203
+ | 'square-o'
5204
+ | 'square-p'
5205
+ | 'square-parking-slash'
5206
+ | 'square-parking'
5207
+ | 'square-pen'
5208
+ | 'square-person-confined'
5209
+ | 'square-phone-flip'
5210
+ | 'square-phone-hangup'
5211
+ | 'square-phone'
5212
+ | 'square-plus'
5213
+ | 'square-poll-horizontal'
5214
+ | 'square-poll-vertical'
5215
+ | 'square-q'
5216
+ | 'square-quarters'
5217
+ | 'square-question'
5218
+ | 'square-quote'
5219
+ | 'square-r'
5220
+ | 'square-right'
5221
+ | 'square-ring'
5222
+ | 'square-root-alt'
5223
+ | 'square-root-variable'
5224
+ | 'square-root'
5225
+ | 'square-rss'
5226
+ | 'square-s'
5227
+ | 'square-share-nodes'
5228
+ | 'square-sliders-vertical'
5229
+ | 'square-sliders'
5230
+ | 'square-small'
5231
+ | 'square-star'
5232
+ | 'square-t'
5233
+ | 'square-terminal'
5234
+ | 'square-this-way-up'
5235
+ | 'square-u'
5236
+ | 'square-up-left'
5237
+ | 'square-up-right'
5238
+ | 'square-up'
5239
+ | 'square-user'
5240
+ | 'square-v'
5241
+ | 'square-virus'
5242
+ | 'square-w'
5243
+ | 'square-wine-glass-crack'
5244
+ | 'square-x'
5245
+ | 'square-xmark'
5246
+ | 'square-y'
5247
+ | 'square-z'
5248
+ | 'square'
5249
+ | 'squid'
5250
+ | 'squirrel'
5251
+ | 'staff-aesculapius'
5252
+ | 'staff-snake'
5253
+ | 'staff'
5254
+ | 'stairs'
5255
+ | 'stamp'
5256
+ | 'standard-definition'
5257
+ | 'stapler'
5258
+ | 'star-and-crescent'
5259
+ | 'star-christmas'
5260
+ | 'star-circle'
5261
+ | 'star-exclamation'
5262
+ | 'star-half-alt'
5263
+ | 'star-half-stroke'
5264
+ | 'star-half'
5265
+ | 'star-of-david'
5266
+ | 'star-of-life'
5267
+ | 'star-sharp-half-alt'
5268
+ | 'star-sharp-half-stroke'
5269
+ | 'star-sharp-half'
5270
+ | 'star-sharp'
5271
+ | 'star-shooting'
5272
+ | 'star'
5273
+ | 'starfighter-alt-advanced'
5274
+ | 'starfighter-alt'
5275
+ | 'starfighter-twin-ion-engine-advanced'
5276
+ | 'starfighter-twin-ion-engine'
5277
+ | 'starfighter'
5278
+ | 'stars'
5279
+ | 'starship-freighter'
5280
+ | 'starship'
5281
+ | 'steak'
5282
+ | 'steering-wheel'
5283
+ | 'step-backward'
5284
+ | 'step-forward'
5285
+ | 'sterling-sign'
5286
+ | 'stethoscope'
5287
+ | 'sticky-note'
5288
+ | 'stocking'
5289
+ | 'stomach'
5290
+ | 'stop-circle'
5291
+ | 'stop'
5292
+ | 'stopwatch-20'
5293
+ | 'stopwatch'
5294
+ | 'store-alt-slash'
5295
+ | 'store-alt'
5296
+ | 'store-lock'
5297
+ | 'store-slash'
5298
+ | 'store'
5299
+ | 'strawberry'
5300
+ | 'stream'
5301
+ | 'street-view'
5302
+ | 'stretcher'
5303
+ | 'strikethrough'
5304
+ | 'stroopwafel'
5305
+ | 'subscript'
5306
+ | 'subtract'
5307
+ | 'subway-tunnel'
5308
+ | 'subway'
5309
+ | 'suitcase-medical'
5310
+ | 'suitcase-rolling'
5311
+ | 'suitcase'
5312
+ | 'sun-alt'
5313
+ | 'sun-bright'
5314
+ | 'sun-cloud'
5315
+ | 'sun-dust'
5316
+ | 'sun-haze'
5317
+ | 'sun-plant-wilt'
5318
+ | 'sun'
5319
+ | 'sunglasses'
5320
+ | 'sunrise'
5321
+ | 'sunset'
5322
+ | 'superscript'
5323
+ | 'surprise'
5324
+ | 'sushi-roll'
5325
+ | 'sushi'
5326
+ | 'swatchbook'
5327
+ | 'swimmer'
5328
+ | 'swimming-pool'
5329
+ | 'sword-laser-alt'
5330
+ | 'sword-laser'
5331
+ | 'sword'
5332
+ | 'swords-laser'
5333
+ | 'swords'
5334
+ | 'symbols'
5335
+ | 'synagogue'
5336
+ | 'sync-alt'
5337
+ | 'sync'
5338
+ | 'syringe'
5339
+ | 't-shirt'
5340
+ | 't'
5341
+ | 'table-cells-large'
5342
+ | 'table-cells'
5343
+ | 'table-columns'
5344
+ | 'table-layout'
5345
+ | 'table-list'
5346
+ | 'table-picnic'
5347
+ | 'table-pivot'
5348
+ | 'table-rows'
5349
+ | 'table-tennis-paddle-ball'
5350
+ | 'table-tennis'
5351
+ | 'table-tree'
5352
+ | 'table'
5353
+ | 'tablet-alt'
5354
+ | 'tablet-android-alt'
5355
+ | 'tablet-android'
5356
+ | 'tablet-button'
5357
+ | 'tablet-rugged'
5358
+ | 'tablet-screen-button'
5359
+ | 'tablet-screen'
5360
+ | 'tablet'
5361
+ | 'tablets'
5362
+ | 'tachograph-digital'
5363
+ | 'tachometer-alt-average'
5364
+ | 'tachometer-alt-fast'
5365
+ | 'tachometer-alt-fastest'
5366
+ | 'tachometer-alt-slow'
5367
+ | 'tachometer-alt-slowest'
5368
+ | 'tachometer-alt'
5369
+ | 'tachometer-average'
5370
+ | 'tachometer-fast'
5371
+ | 'tachometer-fastest'
5372
+ | 'tachometer-slow'
5373
+ | 'tachometer-slowest'
5374
+ | 'tachometer'
5375
+ | 'taco'
5376
+ | 'tag'
5377
+ | 'tags'
5378
+ | 'tally-1'
5379
+ | 'tally-2'
5380
+ | 'tally-3'
5381
+ | 'tally-4'
5382
+ | 'tally-5'
5383
+ | 'tally'
5384
+ | 'tamale'
5385
+ | 'tanakh'
5386
+ | 'tank-water'
5387
+ | 'tape'
5388
+ | 'tarp-droplet'
5389
+ | 'tarp'
5390
+ | 'tasks-alt'
5391
+ | 'tasks'
5392
+ | 'taxi-bus'
5393
+ | 'taxi'
5394
+ | 'teddy-bear'
5395
+ | 'teeth-open'
5396
+ | 'teeth'
5397
+ | 'telescope'
5398
+ | 'teletype-answer'
5399
+ | 'teletype'
5400
+ | 'television'
5401
+ | 'temperature-0'
5402
+ | 'temperature-1'
5403
+ | 'temperature-2'
5404
+ | 'temperature-3'
5405
+ | 'temperature-4'
5406
+ | 'temperature-arrow-down'
5407
+ | 'temperature-arrow-up'
5408
+ | 'temperature-down'
5409
+ | 'temperature-empty'
5410
+ | 'temperature-frigid'
5411
+ | 'temperature-full'
5412
+ | 'temperature-half'
5413
+ | 'temperature-high'
5414
+ | 'temperature-hot'
5415
+ | 'temperature-list'
5416
+ | 'temperature-low'
5417
+ | 'temperature-quarter'
5418
+ | 'temperature-snow'
5419
+ | 'temperature-sun'
5420
+ | 'temperature-three-quarters'
5421
+ | 'temperature-up'
5422
+ | 'tenge-sign'
5423
+ | 'tenge'
5424
+ | 'tennis-ball'
5425
+ | 'tent-arrow-down-to-line'
5426
+ | 'tent-arrow-left-right'
5427
+ | 'tent-arrow-turn-left'
5428
+ | 'tent-arrows-down'
5429
+ | 'tent'
5430
+ | 'tents'
5431
+ | 'terminal'
5432
+ | 'text-height'
5433
+ | 'text-size'
5434
+ | 'text-slash'
5435
+ | 'text-width'
5436
+ | 'text'
5437
+ | 'th-large'
5438
+ | 'th-list'
5439
+ | 'th'
5440
+ | 'theater-masks'
5441
+ | 'thermometer-0'
5442
+ | 'thermometer-1'
5443
+ | 'thermometer-2'
5444
+ | 'thermometer-3'
5445
+ | 'thermometer-4'
5446
+ | 'thermometer-empty'
5447
+ | 'thermometer-full'
5448
+ | 'thermometer-half'
5449
+ | 'thermometer-quarter'
5450
+ | 'thermometer-three-quarters'
5451
+ | 'thermometer'
5452
+ | 'theta'
5453
+ | 'thought-bubble'
5454
+ | 'thumb-tack'
5455
+ | 'thumbs-down'
5456
+ | 'thumbs-up'
5457
+ | 'thumbtack'
5458
+ | 'thunderstorm-moon'
5459
+ | 'thunderstorm-sun'
5460
+ | 'thunderstorm'
5461
+ | 'tick'
5462
+ | 'ticket-airline'
5463
+ | 'ticket-alt'
5464
+ | 'ticket-simple'
5465
+ | 'ticket'
5466
+ | 'tickets-airline'
5467
+ | 'tilde'
5468
+ | 'timeline-arrow'
5469
+ | 'timeline'
5470
+ | 'timer'
5471
+ | 'times-circle'
5472
+ | 'times-hexagon'
5473
+ | 'times-octagon'
5474
+ | 'times-rectangle'
5475
+ | 'times-square'
5476
+ | 'times-to-slot'
5477
+ | 'times'
5478
+ | 'tint-slash'
5479
+ | 'tint'
5480
+ | 'tire-flat'
5481
+ | 'tire-pressure-warning'
5482
+ | 'tire-rugged'
5483
+ | 'tire'
5484
+ | 'tired'
5485
+ | 'toggle-large-off'
5486
+ | 'toggle-large-on'
5487
+ | 'toggle-off'
5488
+ | 'toggle-on'
5489
+ | 'toilet-paper-alt'
5490
+ | 'toilet-paper-blank-under'
5491
+ | 'toilet-paper-blank'
5492
+ | 'toilet-paper-check'
5493
+ | 'toilet-paper-reverse-alt'
5494
+ | 'toilet-paper-reverse-slash'
5495
+ | 'toilet-paper-reverse'
5496
+ | 'toilet-paper-slash'
5497
+ | 'toilet-paper-under-slash'
5498
+ | 'toilet-paper-under'
5499
+ | 'toilet-paper-xmark'
5500
+ | 'toilet-paper'
5501
+ | 'toilet-portable'
5502
+ | 'toilet'
5503
+ | 'toilets-portable'
5504
+ | 'tomato'
5505
+ | 'tombstone-alt'
5506
+ | 'tombstone-blank'
5507
+ | 'tombstone'
5508
+ | 'toolbox'
5509
+ | 'tools'
5510
+ | 'tooth'
5511
+ | 'toothbrush'
5512
+ | 'torah'
5513
+ | 'torii-gate'
5514
+ | 'tornado'
5515
+ | 'tower-broadcast'
5516
+ | 'tower-cell'
5517
+ | 'tower-control'
5518
+ | 'tower-observation'
5519
+ | 'tractor'
5520
+ | 'trademark'
5521
+ | 'traffic-cone'
5522
+ | 'traffic-light-go'
5523
+ | 'traffic-light-slow'
5524
+ | 'traffic-light-stop'
5525
+ | 'traffic-light'
5526
+ | 'trailer'
5527
+ | 'train-subway-tunnel'
5528
+ | 'train-subway'
5529
+ | 'train-track'
5530
+ | 'train-tram'
5531
+ | 'train-tunnel'
5532
+ | 'train'
5533
+ | 'tram'
5534
+ | 'transformer-bolt'
5535
+ | 'transgender-alt'
5536
+ | 'transgender'
5537
+ | 'transporter-1'
5538
+ | 'transporter-2'
5539
+ | 'transporter-3'
5540
+ | 'transporter-4'
5541
+ | 'transporter-5'
5542
+ | 'transporter-6'
5543
+ | 'transporter-7'
5544
+ | 'transporter-empty'
5545
+ | 'transporter'
5546
+ | 'trash-alt-slash'
5547
+ | 'trash-alt'
5548
+ | 'trash-arrow-turn-left'
5549
+ | 'trash-arrow-up'
5550
+ | 'trash-can-arrow-turn-left'
5551
+ | 'trash-can-arrow-up'
5552
+ | 'trash-can-check'
5553
+ | 'trash-can-clock'
5554
+ | 'trash-can-list'
5555
+ | 'trash-can-plus'
5556
+ | 'trash-can-slash'
5557
+ | 'trash-can-undo'
5558
+ | 'trash-can-xmark'
5559
+ | 'trash-can'
5560
+ | 'trash-check'
5561
+ | 'trash-circle'
5562
+ | 'trash-clock'
5563
+ | 'trash-list'
5564
+ | 'trash-plus'
5565
+ | 'trash-restore-alt'
5566
+ | 'trash-restore'
5567
+ | 'trash-slash'
5568
+ | 'trash-undo-alt'
5569
+ | 'trash-undo'
5570
+ | 'trash-xmark'
5571
+ | 'trash'
5572
+ | 'treasure-chest'
5573
+ | 'tree-alt'
5574
+ | 'tree-christmas'
5575
+ | 'tree-city'
5576
+ | 'tree-deciduous'
5577
+ | 'tree-decorated'
5578
+ | 'tree-large'
5579
+ | 'tree-palm'
5580
+ | 'tree'
5581
+ | 'trees'
5582
+ | 'trian-balbot'
5583
+ | 'triangle-circle-square'
5584
+ | 'triangle-exclamation'
5585
+ | 'triangle-instrument'
5586
+ | 'triangle-music'
5587
+ | 'triangle-person-digging'
5588
+ | 'triangle'
5589
+ | 'tricycle-adult'
5590
+ | 'tricycle'
5591
+ | 'trillium'
5592
+ | 'trophy-alt'
5593
+ | 'trophy-star'
5594
+ | 'trophy'
5595
+ | 'trowel-bricks'
5596
+ | 'trowel'
5597
+ | 'truck-arrow-right'
5598
+ | 'truck-bolt'
5599
+ | 'truck-clock'
5600
+ | 'truck-container-empty'
5601
+ | 'truck-container'
5602
+ | 'truck-couch'
5603
+ | 'truck-droplet'
5604
+ | 'truck-fast'
5605
+ | 'truck-field-un'
5606
+ | 'truck-field'
5607
+ | 'truck-flatbed'
5608
+ | 'truck-front'
5609
+ | 'truck-loading'
5610
+ | 'truck-medical'
5611
+ | 'truck-monster'
5612
+ | 'truck-moving'
5613
+ | 'truck-pickup'
5614
+ | 'truck-plane'
5615
+ | 'truck-plow'
5616
+ | 'truck-ramp-box'
5617
+ | 'truck-ramp-couch'
5618
+ | 'truck-ramp'
5619
+ | 'truck-tow'
5620
+ | 'truck'
5621
+ | 'trumpet'
5622
+ | 'try'
5623
+ | 'tshirt'
5624
+ | 'tty-answer'
5625
+ | 'tty'
5626
+ | 'tugrik-sign'
5627
+ | 'turkey'
5628
+ | 'turkish-lira-sign'
5629
+ | 'turkish-lira'
5630
+ | 'turn-down-left'
5631
+ | 'turn-down-right'
5632
+ | 'turn-down'
5633
+ | 'turn-up'
5634
+ | 'turntable'
5635
+ | 'turtle'
5636
+ | 'tv-alt'
5637
+ | 'tv-music'
5638
+ | 'tv-retro'
5639
+ | 'tv'
5640
+ | 'typewriter'
5641
+ | 'u'
5642
+ | 'ufo-beam'
5643
+ | 'ufo'
5644
+ | 'umbrella-alt'
5645
+ | 'umbrella-beach'
5646
+ | 'umbrella-simple'
5647
+ | 'umbrella'
5648
+ | 'underline'
5649
+ | 'undo-alt'
5650
+ | 'undo'
5651
+ | 'unicorn'
5652
+ | 'uniform-martial-arts'
5653
+ | 'union'
5654
+ | 'universal-access'
5655
+ | 'university'
5656
+ | 'unlink'
5657
+ | 'unlock-alt'
5658
+ | 'unlock-keyhole'
5659
+ | 'unlock'
5660
+ | 'unsorted'
5661
+ | 'up-down-left-right'
5662
+ | 'up-down'
5663
+ | 'up-from-bracket'
5664
+ | 'up-from-dotted-line'
5665
+ | 'up-from-line'
5666
+ | 'up-left'
5667
+ | 'up-long'
5668
+ | 'up-right-and-down-left-from-center'
5669
+ | 'up-right-from-square'
5670
+ | 'up-right'
5671
+ | 'up-to-dotted-line'
5672
+ | 'up-to-line'
5673
+ | 'up'
5674
+ | 'upload'
5675
+ | 'usb-drive'
5676
+ | 'usd-circle'
5677
+ | 'usd-square'
5678
+ | 'usd'
5679
+ | 'user-alien'
5680
+ | 'user-alt-slash'
5681
+ | 'user-alt'
5682
+ | 'user-astronaut'
5683
+ | 'user-bounty-hunter'
5684
+ | 'user-chart'
5685
+ | 'user-check'
5686
+ | 'user-chef'
5687
+ | 'user-circle'
5688
+ | 'user-clock'
5689
+ | 'user-cog'
5690
+ | 'user-construction'
5691
+ | 'user-cowboy'
5692
+ | 'user-crown'
5693
+ | 'user-doctor-hair-long'
5694
+ | 'user-doctor-hair'
5695
+ | 'user-doctor-message'
5696
+ | 'user-doctor'
5697
+ | 'user-edit'
5698
+ | 'user-friends'
5699
+ | 'user-gear'
5700
+ | 'user-graduate'
5701
+ | 'user-group-crown'
5702
+ | 'user-group-simple'
5703
+ | 'user-group'
5704
+ | 'user-hair-buns'
5705
+ | 'user-hair-long'
5706
+ | 'user-hair-mullet'
5707
+ | 'user-hair'
5708
+ | 'user-hard-hat'
5709
+ | 'user-headset'
5710
+ | 'user-helmet-safety'
5711
+ | 'user-injured'
5712
+ | 'user-large-slash'
5713
+ | 'user-large'
5714
+ | 'user-lock'
5715
+ | 'user-magnifying-glass'
5716
+ | 'user-md-chat'
5717
+ | 'user-md'
5718
+ | 'user-minus'
5719
+ | 'user-music'
5720
+ | 'user-ninja'
5721
+ | 'user-nurse-hair-long'
5722
+ | 'user-nurse-hair'
5723
+ | 'user-nurse'
5724
+ | 'user-pen'
5725
+ | 'user-pilot-tie'
5726
+ | 'user-pilot'
5727
+ | 'user-plus'
5728
+ | 'user-police-tie'
5729
+ | 'user-police'
5730
+ | 'user-robot-xmarks'
5731
+ | 'user-robot'
5732
+ | 'user-secret'
5733
+ | 'user-shakespeare'
5734
+ | 'user-shield'
5735
+ | 'user-slash'
5736
+ | 'user-tag'
5737
+ | 'user-tie-hair-long'
5738
+ | 'user-tie-hair'
5739
+ | 'user-tie'
5740
+ | 'user-times'
5741
+ | 'user-unlock'
5742
+ | 'user-visor'
5743
+ | 'user-vneck-hair-long'
5744
+ | 'user-vneck-hair'
5745
+ | 'user-vneck'
5746
+ | 'user-xmark'
5747
+ | 'user'
5748
+ | 'users-between-lines'
5749
+ | 'users-class'
5750
+ | 'users-cog'
5751
+ | 'users-crown'
5752
+ | 'users-gear'
5753
+ | 'users-line'
5754
+ | 'users-medical'
5755
+ | 'users-rays'
5756
+ | 'users-rectangle'
5757
+ | 'users-slash'
5758
+ | 'users-viewfinder'
5759
+ | 'users'
5760
+ | 'utensil-fork'
5761
+ | 'utensil-knife'
5762
+ | 'utensil-spoon'
5763
+ | 'utensils-alt'
5764
+ | 'utensils-slash'
5765
+ | 'utensils'
5766
+ | 'utility-pole-double'
5767
+ | 'utility-pole'
5768
+ | 'v'
5769
+ | 'vacuum-robot'
5770
+ | 'vacuum'
5771
+ | 'value-absolute'
5772
+ | 'van-shuttle'
5773
+ | 'vault'
5774
+ | 'vcard'
5775
+ | 'vector-circle'
5776
+ | 'vector-polygon'
5777
+ | 'vector-square'
5778
+ | 'vent-damper'
5779
+ | 'venus-double'
5780
+ | 'venus-mars'
5781
+ | 'venus'
5782
+ | 'vest-patches'
5783
+ | 'vest'
5784
+ | 'vhs'
5785
+ | 'vial-circle-check'
5786
+ | 'vial-virus'
5787
+ | 'vial'
5788
+ | 'vials'
5789
+ | 'video-arrow-down-left'
5790
+ | 'video-arrow-up-right'
5791
+ | 'video-camera'
5792
+ | 'video-circle'
5793
+ | 'video-handheld'
5794
+ | 'video-plus'
5795
+ | 'video-slash'
5796
+ | 'video'
5797
+ | 'vihara'
5798
+ | 'violin'
5799
+ | 'virus-covid-slash'
5800
+ | 'virus-covid'
5801
+ | 'virus-slash'
5802
+ | 'virus'
5803
+ | 'viruses'
5804
+ | 'voicemail'
5805
+ | 'volcano'
5806
+ | 'volleyball-ball'
5807
+ | 'volleyball'
5808
+ | 'volume-control-phone'
5809
+ | 'volume-down'
5810
+ | 'volume-high'
5811
+ | 'volume-low'
5812
+ | 'volume-medium'
5813
+ | 'volume-mute'
5814
+ | 'volume-off'
5815
+ | 'volume-slash'
5816
+ | 'volume-times'
5817
+ | 'volume-up'
5818
+ | 'volume-xmark'
5819
+ | 'volume'
5820
+ | 'vote-nay'
5821
+ | 'vote-yea'
5822
+ | 'vr-cardboard'
5823
+ | 'w'
5824
+ | 'waffle'
5825
+ | 'wagon-covered'
5826
+ | 'walker'
5827
+ | 'walkie-talkie'
5828
+ | 'walking'
5829
+ | 'wall-brick'
5830
+ | 'wallet'
5831
+ | 'wand-magic-sparkles'
5832
+ | 'wand-magic'
5833
+ | 'wand-sparkles'
5834
+ | 'wand'
5835
+ | 'warehouse-alt'
5836
+ | 'warehouse-full'
5837
+ | 'warehouse'
5838
+ | 'warning'
5839
+ | 'washer'
5840
+ | 'washing-machine'
5841
+ | 'watch-apple'
5842
+ | 'watch-calculator'
5843
+ | 'watch-fitness'
5844
+ | 'watch-smart'
5845
+ | 'watch'
5846
+ | 'water-arrow-down'
5847
+ | 'water-arrow-up'
5848
+ | 'water-ladder'
5849
+ | 'water-lower'
5850
+ | 'water-rise'
5851
+ | 'water'
5852
+ | 'watermelon-slice'
5853
+ | 'wave-pulse'
5854
+ | 'wave-sine'
5855
+ | 'wave-square'
5856
+ | 'wave-triangle'
5857
+ | 'waveform-circle'
5858
+ | 'waveform-lines'
5859
+ | 'waveform-path'
5860
+ | 'waveform'
5861
+ | 'webcam-slash'
5862
+ | 'webcam'
5863
+ | 'webhook'
5864
+ | 'weight-hanging'
5865
+ | 'weight-scale'
5866
+ | 'weight'
5867
+ | 'whale'
5868
+ | 'wheat-alt'
5869
+ | 'wheat-awn-circle-exclamation'
5870
+ | 'wheat-awn-slash'
5871
+ | 'wheat-awn'
5872
+ | 'wheat-slash'
5873
+ | 'wheat'
5874
+ | 'wheelchair-alt'
5875
+ | 'wheelchair-move'
5876
+ | 'wheelchair'
5877
+ | 'whiskey-glass-ice'
5878
+ | 'whiskey-glass'
5879
+ | 'whistle'
5880
+ | 'wifi-1'
5881
+ | 'wifi-2'
5882
+ | 'wifi-3'
5883
+ | 'wifi-exclamation'
5884
+ | 'wifi-fair'
5885
+ | 'wifi-slash'
5886
+ | 'wifi-strong'
5887
+ | 'wifi-weak'
5888
+ | 'wifi'
5889
+ | 'wind-circle-exclamation'
5890
+ | 'wind-turbine'
5891
+ | 'wind-warning'
5892
+ | 'wind'
5893
+ | 'window-alt'
5894
+ | 'window-close'
5895
+ | 'window-flip'
5896
+ | 'window-frame-open'
5897
+ | 'window-frame'
5898
+ | 'window-maximize'
5899
+ | 'window-minimize'
5900
+ | 'window-restore'
5901
+ | 'window'
5902
+ | 'windsock'
5903
+ | 'wine-bottle'
5904
+ | 'wine-glass-alt'
5905
+ | 'wine-glass-crack'
5906
+ | 'wine-glass-empty'
5907
+ | 'wine-glass'
5908
+ | 'won-sign'
5909
+ | 'won'
5910
+ | 'worm'
5911
+ | 'wreath-laurel'
5912
+ | 'wreath'
5913
+ | 'wrench-simple'
5914
+ | 'wrench'
5915
+ | 'x-ray'
5916
+ | 'x'
5917
+ | 'xmark-circle'
5918
+ | 'xmark-hexagon'
5919
+ | 'xmark-large'
5920
+ | 'xmark-octagon'
5921
+ | 'xmark-square'
5922
+ | 'xmark-to-slot'
5923
+ | 'xmark'
5924
+ | 'xmarks-lines'
5925
+ | 'y'
5926
+ | 'yen-sign'
5927
+ | 'yen'
5928
+ | 'yin-yang'
5929
+ | 'z'
5930
+ | 'zap'
5931
+ | 'zzz';