cpk-ui 0.0.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.
Files changed (69) hide show
  1. package/README.md +27 -0
  2. package/components/modals/AlertDialog/AlertDialog.js +80 -0
  3. package/components/modals/AlertDialog/AlertDialog.stories.tsx +80 -0
  4. package/components/modals/AlertDialog/AlertDialog.tsx +194 -0
  5. package/components/modals/Snackbar/Snackbar.js +94 -0
  6. package/components/modals/Snackbar/Snackbar.stories.tsx +98 -0
  7. package/components/modals/Snackbar/Snackbar.tsx +174 -0
  8. package/components/modals/Snackbar/const.js +5 -0
  9. package/components/modals/Snackbar/const.ts +4 -0
  10. package/components/uis/Accordion/Accordion.js +11 -0
  11. package/components/uis/Accordion/Accordion.stories.tsx +38 -0
  12. package/components/uis/Accordion/Accordion.test.tsx +128 -0
  13. package/components/uis/Accordion/Accordion.tsx +58 -0
  14. package/components/uis/Accordion/AccordionItem.js +102 -0
  15. package/components/uis/Accordion/AccordionItem.tsx +213 -0
  16. package/components/uis/Button/Button.js +161 -0
  17. package/components/uis/Button/Button.stories.tsx +81 -0
  18. package/components/uis/Button/Button.test.tsx +560 -0
  19. package/components/uis/Button/Button.tsx +335 -0
  20. package/components/uis/Checkbox/Checkbox.js +70 -0
  21. package/components/uis/Checkbox/Checkbox.stories.tsx +46 -0
  22. package/components/uis/Checkbox/Checkbox.test.tsx +139 -0
  23. package/components/uis/Checkbox/Checkbox.tsx +150 -0
  24. package/components/uis/Icon/Icon.js +3780 -0
  25. package/components/uis/Icon/Icon.stories.tsx +45 -0
  26. package/components/uis/Icon/Icon.test.tsx +19 -0
  27. package/components/uis/Icon/Icon.tsx +3800 -0
  28. package/components/uis/Icon/Pretendard-Bold.otf +0 -0
  29. package/components/uis/Icon/Pretendard-Regular.otf +0 -0
  30. package/components/uis/Icon/Pretendard-Thin.otf +0 -0
  31. package/components/uis/Icon/cpk.ttf +0 -0
  32. package/components/uis/Icon/selection.json +1 -0
  33. package/components/uis/IconButton/IconButton.js +120 -0
  34. package/components/uis/IconButton/IconButton.test.tsx +165 -0
  35. package/components/uis/IconButton/IconButton.tsx +252 -0
  36. package/components/uis/LoadingIndicator/LoadingIndicator.js +24 -0
  37. package/components/uis/LoadingIndicator/LoadingIndicator.tsx +79 -0
  38. package/components/uis/Rating/Rating.js +53 -0
  39. package/components/uis/Rating/Rating.test.tsx +72 -0
  40. package/components/uis/Rating/Rating.tsx +155 -0
  41. package/components/uis/StatusbarBrightness/StatusBarBrightness.js +13 -0
  42. package/components/uis/StatusbarBrightness/StatusBarBrightness.test.tsx +41 -0
  43. package/components/uis/StatusbarBrightness/StatusBarBrightness.tsx +17 -0
  44. package/components/uis/Styled/StyledComponents.js +130 -0
  45. package/components/uis/Styled/StyledComponents.tsx +200 -0
  46. package/components/uis/SwitchToggle/SwitchToggle.js +126 -0
  47. package/components/uis/SwitchToggle/SwitchToggle.test.tsx +70 -0
  48. package/components/uis/SwitchToggle/SwitchToggle.tsx +224 -0
  49. package/components/uis/Typography/Typography.js +90 -0
  50. package/components/uis/Typography/Typography.test.tsx +58 -0
  51. package/components/uis/Typography/Typography.tsx +132 -0
  52. package/hooks/useDebouncedColorScheme.js +21 -0
  53. package/hooks/useDebouncedColorScheme.tsx +30 -0
  54. package/index.js +16 -0
  55. package/index.tsx +18 -0
  56. package/package.json +35 -0
  57. package/providers/ThemeProvider.js +106 -0
  58. package/providers/ThemeProvider.tsx +180 -0
  59. package/providers/index.js +62 -0
  60. package/providers/index.tsx +125 -0
  61. package/react-native.config.cjs +5 -0
  62. package/utils/colors.js +124 -0
  63. package/utils/colors.ts +127 -0
  64. package/utils/createCtx.js +15 -0
  65. package/utils/createCtx.tsx +26 -0
  66. package/utils/guards.js +44 -0
  67. package/utils/guards.ts +93 -0
  68. package/utils/theme.js +5 -0
  69. package/utils/theme.ts +33 -0
@@ -0,0 +1,3780 @@
1
+ import styled from '@emotion/native';
2
+ import { createIconSetFromIcoMoon } from '@expo/vector-icons';
3
+ import collectingFontIconSelection from './selection.json';
4
+ export const iconList = [
5
+ 'AddressBook',
6
+ 'Airplane',
7
+ 'AirplaneInFlight',
8
+ 'AirplaneLanding',
9
+ 'AirplaneTakeoff',
10
+ 'AirplaneTilt',
11
+ 'Airplay',
12
+ 'AirTrafficControl',
13
+ 'Alarm',
14
+ 'Alien',
15
+ 'AlignBottom',
16
+ 'AlignBottomSimple',
17
+ 'AlignCenterHorizontal',
18
+ 'AlignCenterHorizontalSimple',
19
+ 'AlignCenterVertical',
20
+ 'AlignCenterVerticalSimple',
21
+ 'AlignLeft',
22
+ 'AlignLeftSimple',
23
+ 'AlignRight',
24
+ 'AlignRightSimple',
25
+ 'AlignTop',
26
+ 'AlignTopSimple',
27
+ 'AmazonLogo',
28
+ 'Anchor',
29
+ 'AnchorSimple',
30
+ 'AndroidLogo',
31
+ 'AngularLogo',
32
+ 'Aperture',
33
+ 'AppleLogo',
34
+ 'ApplePodcastsLogo',
35
+ 'AppStoreLogo',
36
+ 'AppWindow',
37
+ 'Archive',
38
+ 'ArchiveBox',
39
+ 'ArchiveTray',
40
+ 'Armchair',
41
+ 'ArrowArcLeft',
42
+ 'ArrowArcRight',
43
+ 'ArrowBendDoubleUpLeft',
44
+ 'ArrowBendDoubleUpRight',
45
+ 'ArrowBendDownLeft',
46
+ 'ArrowBendDownRight',
47
+ 'ArrowBendLeftDown',
48
+ 'ArrowBendLeftUp',
49
+ 'ArrowBendRightDown',
50
+ 'ArrowBendRightUp',
51
+ 'ArrowBendUpLeft',
52
+ 'ArrowBendUpRight',
53
+ 'ArrowCircleDown',
54
+ 'ArrowCircleDownLeft',
55
+ 'ArrowCircleDownRight',
56
+ 'ArrowCircleLeft',
57
+ 'ArrowCircleRight',
58
+ 'ArrowCircleUp',
59
+ 'ArrowCircleUpLeft',
60
+ 'ArrowCircleUpRight',
61
+ 'ArrowClockwise',
62
+ 'ArrowCounterClockwise',
63
+ 'ArrowDown',
64
+ 'ArrowDownLeft',
65
+ 'ArrowDownRight',
66
+ 'ArrowElbowDownLeft',
67
+ 'ArrowElbowDownRight',
68
+ 'ArrowElbowLeft',
69
+ 'ArrowElbowLeftDown',
70
+ 'ArrowElbowLeftUp',
71
+ 'ArrowElbowRight',
72
+ 'ArrowElbowRightDown',
73
+ 'ArrowElbowRightUp',
74
+ 'ArrowElbowUpLeft',
75
+ 'ArrowElbowUpRight',
76
+ 'ArrowFatDown',
77
+ 'ArrowFatLeft',
78
+ 'ArrowFatLineDown',
79
+ 'ArrowFatLineLeft',
80
+ 'ArrowFatLineRight',
81
+ 'ArrowFatLinesDown',
82
+ 'ArrowFatLinesLeft',
83
+ 'ArrowFatLinesRight',
84
+ 'ArrowFatLinesUp',
85
+ 'ArrowFatLineUp',
86
+ 'ArrowFatRight',
87
+ 'ArrowFatUp',
88
+ 'ArrowLeft',
89
+ 'ArrowLineDown',
90
+ 'ArrowLineDownLeft',
91
+ 'ArrowLineDownRight',
92
+ 'ArrowLineLeft',
93
+ 'ArrowLineRight',
94
+ 'ArrowLineUp',
95
+ 'ArrowLineUpLeft',
96
+ 'ArrowLineUpRight',
97
+ 'ArrowRight',
98
+ 'ArrowsClockwise',
99
+ 'ArrowsCounterClockwise',
100
+ 'ArrowsDownUp',
101
+ 'ArrowsHorizontal',
102
+ 'ArrowsIn',
103
+ 'ArrowsInCardinal',
104
+ 'ArrowsInLineHorizontal',
105
+ 'ArrowsInLineVertical',
106
+ 'ArrowsInSimple',
107
+ 'ArrowsLeftRight',
108
+ 'ArrowsMerge',
109
+ 'ArrowsOut',
110
+ 'ArrowsOutCardinal',
111
+ 'ArrowsOutLineHorizontal',
112
+ 'ArrowsOutLineVertical',
113
+ 'ArrowsOutSimple',
114
+ 'ArrowSquareDown',
115
+ 'ArrowSquareDownLeft',
116
+ 'ArrowSquareDownRight',
117
+ 'ArrowSquareIn',
118
+ 'ArrowSquareLeft',
119
+ 'ArrowSquareOut',
120
+ 'ArrowSquareRight',
121
+ 'ArrowSquareUp',
122
+ 'ArrowSquareUpLeft',
123
+ 'ArrowSquareUpRight',
124
+ 'ArrowsSplit',
125
+ 'ArrowsVertical',
126
+ 'ArrowUDownLeft',
127
+ 'ArrowUDownRight',
128
+ 'ArrowULeftDown',
129
+ 'ArrowULeftUp',
130
+ 'ArrowUp',
131
+ 'ArrowUpLeft',
132
+ 'ArrowUpRight',
133
+ 'ArrowURightDown',
134
+ 'ArrowURightUp',
135
+ 'ArrowUUpLeft',
136
+ 'ArrowUUpRight',
137
+ 'Article',
138
+ 'ArticleMedium',
139
+ 'ArticleNyTimes',
140
+ 'Asterisk',
141
+ 'AsteriskSimple',
142
+ 'At',
143
+ 'Atom',
144
+ 'AutoAwesome',
145
+ 'Baby',
146
+ 'Backpack',
147
+ 'Backspace',
148
+ 'Bag',
149
+ 'BagSimple',
150
+ 'Balloon',
151
+ 'Bandaids',
152
+ 'Bank',
153
+ 'Barbell',
154
+ 'Barcode',
155
+ 'Barricade',
156
+ 'Baseball',
157
+ 'BaseballCap',
158
+ 'Basket',
159
+ 'Basketball',
160
+ 'Bathtub',
161
+ 'BatteryCharging',
162
+ 'BatteryChargingVertical',
163
+ 'BatteryEmpty',
164
+ 'BatteryFull',
165
+ 'BatteryHigh',
166
+ 'BatteryLow',
167
+ 'BatteryMedium',
168
+ 'BatteryPlus',
169
+ 'BatteryPlusVertical',
170
+ 'BatteryVerticalEmpty',
171
+ 'BatteryVerticalFull',
172
+ 'BatteryVerticalHigh',
173
+ 'BatteryVerticalLow',
174
+ 'BatteryVerticalMedium',
175
+ 'BatteryWarning',
176
+ 'BatteryWarningVertical',
177
+ 'Bed',
178
+ 'BeerBottle',
179
+ 'BeerStein',
180
+ 'BehanceLogo',
181
+ 'Bell',
182
+ 'BellRinging',
183
+ 'BellSimple',
184
+ 'BellSimpleRinging',
185
+ 'BellSimpleSlash',
186
+ 'BellSimpleZ',
187
+ 'BellSlash',
188
+ 'BellZ',
189
+ 'BezierCurve',
190
+ 'Bicycle',
191
+ 'Binoculars',
192
+ 'Bird',
193
+ 'Bluetooth',
194
+ 'BluetoothConnected',
195
+ 'BluetoothSlash',
196
+ 'BluetoothX',
197
+ 'Boat',
198
+ 'Bone',
199
+ 'Book',
200
+ 'BookBookmark',
201
+ 'Bookmark',
202
+ 'Bookmarks',
203
+ 'BookmarkSimple',
204
+ 'BookmarksSimple',
205
+ 'BookOpen',
206
+ 'BookOpenText',
207
+ 'Books',
208
+ 'Boot',
209
+ 'BoundingBox',
210
+ 'BowlFood',
211
+ 'BracketsAngle',
212
+ 'BracketsCurly',
213
+ 'BracketsRound',
214
+ 'BracketsSquare',
215
+ 'Brain',
216
+ 'Brandy',
217
+ 'Bridge',
218
+ 'Briefcase',
219
+ 'BriefcaseMetal',
220
+ 'Broadcast',
221
+ 'Broom',
222
+ 'Browser',
223
+ 'Browsers',
224
+ 'Buck',
225
+ 'Bug',
226
+ 'BugBeetle',
227
+ 'BugDroid',
228
+ 'Buildings',
229
+ 'Bus',
230
+ 'Butterfly',
231
+ 'Cactus',
232
+ 'Cake',
233
+ 'Calculator',
234
+ 'Calendar',
235
+ 'CalendarBlank',
236
+ 'CalendarCheck',
237
+ 'CalendarPlus',
238
+ 'CalendarRange',
239
+ 'CalendarX',
240
+ 'CallBell',
241
+ 'Camera',
242
+ 'CameraPlus',
243
+ 'CameraRotate',
244
+ 'CameraSlash',
245
+ 'Campfire',
246
+ 'Car',
247
+ 'Cardholder',
248
+ 'Cards',
249
+ 'CaretCircleDoubleDown',
250
+ 'CaretCircleDoubleLeft',
251
+ 'CaretCircleDoubleRight',
252
+ 'CaretCircleDoubleUp',
253
+ 'CaretCircleDown',
254
+ 'CaretCircleLeft',
255
+ 'CaretCircleRight',
256
+ 'CaretCircleUp',
257
+ 'CaretCircleUpDown',
258
+ 'CaretDoubleDown',
259
+ 'CaretDoubleLeft',
260
+ 'CaretDoubleRight',
261
+ 'CaretDoubleUp',
262
+ 'CaretDown',
263
+ 'CaretLeft',
264
+ 'CaretRight',
265
+ 'CaretUp',
266
+ 'CaretUpDown',
267
+ 'CarProfile',
268
+ 'Carrot',
269
+ 'CarSimple',
270
+ 'CassetteTape',
271
+ 'CastleTurret',
272
+ 'Cat',
273
+ 'CellSignalFull',
274
+ 'CellSignalHigh',
275
+ 'CellSignalLow',
276
+ 'CellSignalMedium',
277
+ 'CellSignalNone',
278
+ 'CellSignalSlash',
279
+ 'CellSignalX',
280
+ 'Certificate',
281
+ 'Chair',
282
+ 'Chalkboard',
283
+ 'ChalkboardSimple',
284
+ 'ChalkboardTeacher',
285
+ 'Champagne',
286
+ 'ChargingStation',
287
+ 'ChartBar',
288
+ 'ChartBarHorizontal',
289
+ 'ChartDonut',
290
+ 'ChartLine',
291
+ 'ChartLineDown',
292
+ 'ChartLineUp',
293
+ 'ChartPie',
294
+ 'ChartPieSlice',
295
+ 'ChartPolar',
296
+ 'ChartScatter',
297
+ 'Chat',
298
+ 'ChatCentered',
299
+ 'ChatCenteredDots',
300
+ 'ChatCenteredText',
301
+ 'ChatCircle',
302
+ 'ChatCircleDots',
303
+ 'ChatCircleText',
304
+ 'ChatDots',
305
+ 'Chats',
306
+ 'ChatsCircle',
307
+ 'ChatsTeardrop',
308
+ 'ChatTeardrop',
309
+ 'ChatTeardropDots',
310
+ 'ChatTeardropText',
311
+ 'ChatText',
312
+ 'Check',
313
+ 'CheckCircle',
314
+ 'CheckFat',
315
+ 'Checks',
316
+ 'CheckSquare',
317
+ 'CheckSquareOffset',
318
+ 'Church',
319
+ 'Circle',
320
+ 'CircleDashed',
321
+ 'CircleHalf',
322
+ 'CircleHalfTilt',
323
+ 'CircleNotch',
324
+ 'CirclesFour',
325
+ 'CirclesThree',
326
+ 'CirclesThreePlus',
327
+ 'Circuitry',
328
+ 'Clipboard',
329
+ 'ClipboardText',
330
+ 'Clock',
331
+ 'ClockAfternoon',
332
+ 'ClockClockwise',
333
+ 'ClockCountdown',
334
+ 'ClockCounterClockwise',
335
+ 'ClosedCaptioning',
336
+ 'Cloud',
337
+ 'CloudArrowDown',
338
+ 'CloudArrowUp',
339
+ 'CloudCheck',
340
+ 'CloudFog',
341
+ 'CloudLightning',
342
+ 'CloudMoon',
343
+ 'CloudRain',
344
+ 'CloudSlash',
345
+ 'CloudSnow',
346
+ 'CloudSun',
347
+ 'CloudWarning',
348
+ 'CloudX',
349
+ 'Club',
350
+ 'CoatHanger',
351
+ 'CodaLogo',
352
+ 'Code',
353
+ 'CodeBlock',
354
+ 'CodepenLogo',
355
+ 'CodesandboxLogo',
356
+ 'CodeSimple',
357
+ 'Coffee',
358
+ 'Coin',
359
+ 'Coins',
360
+ 'CoinVertical',
361
+ 'Columns',
362
+ 'Command',
363
+ 'Compass',
364
+ 'CompassTool',
365
+ 'ComputerTower',
366
+ 'Confetti',
367
+ 'ContactlessPayment',
368
+ 'Control',
369
+ 'Cookie',
370
+ 'CookingPot',
371
+ 'Copy',
372
+ 'Copyleft',
373
+ 'Copyright',
374
+ 'CopySimple',
375
+ 'CornersIn',
376
+ 'CornersOut',
377
+ 'Couch',
378
+ 'Cpu',
379
+ 'CreditCard',
380
+ 'Crop',
381
+ 'Cross',
382
+ 'Crosshair',
383
+ 'CrosshairSimple',
384
+ 'Crown',
385
+ 'CrownSimple',
386
+ 'Cube',
387
+ 'CubeFocus',
388
+ 'CubeTransparent',
389
+ 'CurrencyBtc',
390
+ 'CurrencyCircleDollar',
391
+ 'CurrencyCny',
392
+ 'CurrencyDollar',
393
+ 'CurrencyDollarSimple',
394
+ 'CurrencyEth',
395
+ 'CurrencyEur',
396
+ 'CurrencyGbp',
397
+ 'CurrencyInr',
398
+ 'CurrencyJpy',
399
+ 'CurrencyKrw',
400
+ 'CurrencyKzt',
401
+ 'CurrencyNgn',
402
+ 'CurrencyRub',
403
+ 'Cursor',
404
+ 'CursorClick',
405
+ 'CursorText',
406
+ 'Cylinder',
407
+ 'Database',
408
+ 'Desktop',
409
+ 'DesktopTower',
410
+ 'Detective',
411
+ 'DeviceMobile',
412
+ 'DeviceMobileCamera',
413
+ 'DeviceMobileSpeaker',
414
+ 'Devices',
415
+ 'DeviceTablet',
416
+ 'DeviceTabletCamera',
417
+ 'DeviceTabletSpeaker',
418
+ 'DevToLogo',
419
+ 'Diamond',
420
+ 'DiamondsFour',
421
+ 'DiceFive',
422
+ 'DiceFour',
423
+ 'DiceOne',
424
+ 'DiceSix',
425
+ 'DiceThree',
426
+ 'DiceTwo',
427
+ 'Disc',
428
+ 'DiscordLogo',
429
+ 'Divide',
430
+ 'Dna',
431
+ 'Dog',
432
+ 'Door',
433
+ 'DoorOpen',
434
+ 'Dot',
435
+ 'DotOutline',
436
+ 'DotsNine',
437
+ 'DotsSix',
438
+ 'DotsSixVertical',
439
+ 'DotsThree',
440
+ 'DotsThreeCircle',
441
+ 'DotsThreeCircleVertical',
442
+ 'DotsThreeOutline',
443
+ 'DotsThreeOutlineVertical',
444
+ 'DotsThreeVertical',
445
+ 'Download',
446
+ 'DownloadSimple',
447
+ 'Dress',
448
+ 'DribbbleLogo',
449
+ 'Drop',
450
+ 'DropboxLogo',
451
+ 'DropHalf',
452
+ 'DropHalfBottom',
453
+ 'Ear',
454
+ 'EarSlash',
455
+ 'Egg',
456
+ 'EggCrack',
457
+ 'Eject',
458
+ 'EjectSimple',
459
+ 'Elevator',
460
+ 'Engine',
461
+ 'Envelope',
462
+ 'EnvelopeOpen',
463
+ 'EnvelopeSimple',
464
+ 'EnvelopeSimpleOpen',
465
+ 'Equalizer',
466
+ 'Equals',
467
+ 'Eraser',
468
+ 'EscalatorDown',
469
+ 'EscalatorUp',
470
+ 'Exam',
471
+ 'Exclude',
472
+ 'ExcludeSquare',
473
+ 'Export',
474
+ 'Eye',
475
+ 'EyeClosed',
476
+ 'Eyedropper',
477
+ 'EyedropperSample',
478
+ 'Eyeglasses',
479
+ 'EyeSlash',
480
+ 'FacebookLogo',
481
+ 'FaceMask',
482
+ 'Factory',
483
+ 'Faders',
484
+ 'FadersHorizontal',
485
+ 'Fan',
486
+ 'FastForward',
487
+ 'FastForwardCircle',
488
+ 'Feather',
489
+ 'FigmaLogo',
490
+ 'File',
491
+ 'FileArchive',
492
+ 'FileArrowDown',
493
+ 'FileArrowUp',
494
+ 'FileAudio',
495
+ 'FileCloud',
496
+ 'FileCode',
497
+ 'FileCss',
498
+ 'FileCsv',
499
+ 'FileDashed',
500
+ 'FileDoc',
501
+ 'FileHtml',
502
+ 'FileImage',
503
+ 'FileJpg',
504
+ 'FileJs',
505
+ 'FileJsx',
506
+ 'FileLock',
507
+ 'FileMinus',
508
+ 'FilePdf',
509
+ 'FilePlus',
510
+ 'FilePng',
511
+ 'FilePpt',
512
+ 'FileRs',
513
+ 'Files',
514
+ 'FileSearch',
515
+ 'FileSql',
516
+ 'FileSvg',
517
+ 'FileText',
518
+ 'FileTs',
519
+ 'FileTsx',
520
+ 'FileVideo',
521
+ 'FileVue',
522
+ 'FileX',
523
+ 'FileXls',
524
+ 'FileZip',
525
+ 'FilmReel',
526
+ 'FilmScript',
527
+ 'FilmSlate',
528
+ 'FilmStrip',
529
+ 'Fingerprint',
530
+ 'FingerprintSimple',
531
+ 'FinnTheHuman',
532
+ 'Fire',
533
+ 'FireExtinguisher',
534
+ 'FireSimple',
535
+ 'FirstAid',
536
+ 'FirstAidKit',
537
+ 'Fish',
538
+ 'FishSimple',
539
+ 'Flag',
540
+ 'FlagBanner',
541
+ 'FlagCheckered',
542
+ 'FlagPennant',
543
+ 'Flame',
544
+ 'Flashlight',
545
+ 'Flask',
546
+ 'FloppyDisk',
547
+ 'FloppyDiskBack',
548
+ 'FlowArrow',
549
+ 'Flower',
550
+ 'FlowerLotus',
551
+ 'FlowerTulip',
552
+ 'FlyingSaucer',
553
+ 'Folder',
554
+ 'FolderDashed',
555
+ 'FolderLock',
556
+ 'FolderMinus',
557
+ 'FolderNotch',
558
+ 'FolderNotchMinus',
559
+ 'FolderNotchOpen',
560
+ 'FolderNotchPlus',
561
+ 'FolderOpen',
562
+ 'FolderPlus',
563
+ 'Folders',
564
+ 'FolderSimple',
565
+ 'FolderSimpleDashed',
566
+ 'FolderSimpleLock',
567
+ 'FolderSimpleMinus',
568
+ 'FolderSimplePlus',
569
+ 'FolderSimpleStar',
570
+ 'FolderSimpleUser',
571
+ 'FolderStar',
572
+ 'FolderUser',
573
+ 'Football',
574
+ 'Footprints',
575
+ 'ForkKnife',
576
+ 'FrameCorners',
577
+ 'FramerLogo',
578
+ 'Function',
579
+ 'Funnel',
580
+ 'FunnelSimple',
581
+ 'GameController',
582
+ 'Garage',
583
+ 'GasCan',
584
+ 'GasPump',
585
+ 'Gauge',
586
+ 'Gavel',
587
+ 'Gear',
588
+ 'GearFine',
589
+ 'GearSix',
590
+ 'GenderFemale',
591
+ 'GenderIntersex',
592
+ 'GenderMale',
593
+ 'GenderNeuter',
594
+ 'GenderNonbinary',
595
+ 'GenderTransgender',
596
+ 'Ghost',
597
+ 'Gif',
598
+ 'Gift',
599
+ 'GitBranch',
600
+ 'GitCommit',
601
+ 'GitDiff',
602
+ 'GitFork',
603
+ 'GithubLogo',
604
+ 'GitlabLogo',
605
+ 'GitlabLogoSimple',
606
+ 'GitMerge',
607
+ 'GitPullRequest',
608
+ 'Globe',
609
+ 'GlobeHemisphereEast',
610
+ 'GlobeHemisphereWest',
611
+ 'GlobeSimple',
612
+ 'GlobeStand',
613
+ 'Goggles',
614
+ 'GoodreadsLogo',
615
+ 'GoogleCardboardLogo',
616
+ 'GoogleChromeLogo',
617
+ 'GoogleDriveLogo',
618
+ 'GoogleLogo',
619
+ 'GooglePhotosLogo',
620
+ 'GooglePlayLogo',
621
+ 'GooglePodcastsLogo',
622
+ 'Gradient',
623
+ 'GraduationCap',
624
+ 'Grains',
625
+ 'GrainsSlash',
626
+ 'Graph',
627
+ 'GridFour',
628
+ 'GridNine',
629
+ 'Guitar',
630
+ 'Hamburger',
631
+ 'Hammer',
632
+ 'Hand',
633
+ 'Handbag',
634
+ 'HandbagSimple',
635
+ 'HandCoins',
636
+ 'HandEye',
637
+ 'HandFist',
638
+ 'HandGrabbing',
639
+ 'HandHeart',
640
+ 'HandPalm',
641
+ 'HandPointing',
642
+ 'HandsClapping',
643
+ 'Handshake',
644
+ 'HandSoap',
645
+ 'HandsPraying',
646
+ 'HandSwipeLeft',
647
+ 'HandSwipeRight',
648
+ 'HandTap',
649
+ 'HandWaving',
650
+ 'HardDrive',
651
+ 'HardDrives',
652
+ 'Hash',
653
+ 'HashStraight',
654
+ 'Headlights',
655
+ 'Headphones',
656
+ 'Headset',
657
+ 'Heart',
658
+ 'Heartbeat',
659
+ 'HeartBreak',
660
+ 'HeartHalf',
661
+ 'HeartStraight',
662
+ 'HeartStraightBreak',
663
+ 'Hexagon',
664
+ 'HighHeel',
665
+ 'HighlighterCircle',
666
+ 'Hoodie',
667
+ 'Horse',
668
+ 'Hourglass',
669
+ 'HourglassHigh',
670
+ 'HourglassLow',
671
+ 'HourglassMedium',
672
+ 'HourglassSimple',
673
+ 'HourglassSimpleHigh',
674
+ 'HourglassSimpleLow',
675
+ 'HourglassSimpleMedium',
676
+ 'House',
677
+ 'HouseLine',
678
+ 'HouseSimple',
679
+ 'IceCream',
680
+ 'IdentificationBadge',
681
+ 'IdentificationCard',
682
+ 'Image',
683
+ 'Images',
684
+ 'ImageSquare',
685
+ 'ImagesSquare',
686
+ 'Infinity',
687
+ 'Info',
688
+ 'InstagramLogo',
689
+ 'Intersect',
690
+ 'IntersectSquare',
691
+ 'IntersectThree',
692
+ 'Jeep',
693
+ 'Kanban',
694
+ 'Key',
695
+ 'Keyboard',
696
+ 'Keyhole',
697
+ 'KeyReturn',
698
+ 'Knife',
699
+ 'Ladder',
700
+ 'LadderSimple',
701
+ 'Lamp',
702
+ 'Laptop',
703
+ 'Layout',
704
+ 'Leaf',
705
+ 'Lifebuoy',
706
+ 'Lightbulb',
707
+ 'LightbulbFilament',
708
+ 'Lighthouse',
709
+ 'Lightning',
710
+ 'LightningA',
711
+ 'LightningSlash',
712
+ 'LineSegment',
713
+ 'LineSegments',
714
+ 'Link',
715
+ 'LinkBreak',
716
+ 'LinkedinLogo',
717
+ 'LinkSimple',
718
+ 'LinkSimpleBreak',
719
+ 'LinkSimpleHorizontal',
720
+ 'LinkSimpleHorizontalBreak',
721
+ 'LinuxLogo',
722
+ 'List',
723
+ 'ListBullets',
724
+ 'ListChecks',
725
+ 'ListDashes',
726
+ 'ListMagnifyingGlass',
727
+ 'ListNumbers',
728
+ 'ListPlus',
729
+ 'Lock',
730
+ 'Lockers',
731
+ 'LockKey',
732
+ 'LockKeyOpen',
733
+ 'LockLaminated',
734
+ 'LockLaminatedOpen',
735
+ 'LockOpen',
736
+ 'LockSimple',
737
+ 'LockSimpleOpen',
738
+ 'MagicWand',
739
+ 'Magnet',
740
+ 'MagnetStraight',
741
+ 'MagnifyingGlass',
742
+ 'MagnifyingGlassMinus',
743
+ 'MagnifyingGlassPlus',
744
+ 'MapPin',
745
+ 'MapPinLine',
746
+ 'MapTrifold',
747
+ 'MarkerCircle',
748
+ 'Martini',
749
+ 'MaskHappy',
750
+ 'MaskSad',
751
+ 'MathOperations',
752
+ 'Medal',
753
+ 'MedalMilitary',
754
+ 'MediumLogo',
755
+ 'Megaphone',
756
+ 'MegaphoneSimple',
757
+ 'MessengerLogo',
758
+ 'MetaLogo',
759
+ 'Metronome',
760
+ 'Microphone',
761
+ 'MicrophoneSlash',
762
+ 'MicrophoneStage',
763
+ 'MicrosoftExcelLogo',
764
+ 'MicrosoftLogo',
765
+ 'MicrosoftOutlookLogo',
766
+ 'MicrosoftPowerpointLogo',
767
+ 'MicrosoftTeamsLogo',
768
+ 'MicrosoftWordLogo',
769
+ 'Minus',
770
+ 'MinusCircle',
771
+ 'MinusSquare',
772
+ 'Money',
773
+ 'Monitor',
774
+ 'MonitorPlay',
775
+ 'Moon',
776
+ 'MoonStars',
777
+ 'Moped',
778
+ 'MopedFront',
779
+ 'Mosque',
780
+ 'Motorcycle',
781
+ 'Mountains',
782
+ 'Mouse',
783
+ 'MouseSimple',
784
+ 'MusicNote',
785
+ 'MusicNotes',
786
+ 'MusicNoteSimple',
787
+ 'MusicNotesPlus',
788
+ 'MusicNotesSimple',
789
+ 'NavigationArrow',
790
+ 'Needle',
791
+ 'Newspaper',
792
+ 'NewspaperClipping',
793
+ 'Notches',
794
+ 'Note',
795
+ 'NoteBlank',
796
+ 'Notebook',
797
+ 'Notepad',
798
+ 'NotePencil',
799
+ 'Notification',
800
+ 'NotionLogo',
801
+ 'NumberCircleEight',
802
+ 'NumberCircleFive',
803
+ 'NumberCircleFour',
804
+ 'NumberCircleNine',
805
+ 'NumberCircleOne',
806
+ 'NumberCircleSeven',
807
+ 'NumberCircleSix',
808
+ 'NumberCircleThree',
809
+ 'NumberCircleTwo',
810
+ 'NumberCircleZero',
811
+ 'NumberEight',
812
+ 'NumberFive',
813
+ 'NumberFour',
814
+ 'NumberNine',
815
+ 'NumberOne',
816
+ 'NumberSeven',
817
+ 'NumberSix',
818
+ 'NumberSquareEight',
819
+ 'NumberSquareFive',
820
+ 'NumberSquareFour',
821
+ 'NumberSquareNine',
822
+ 'NumberSquareOne',
823
+ 'NumberSquareSeven',
824
+ 'NumberSquareSix',
825
+ 'NumberSquareThree',
826
+ 'NumberSquareTwo',
827
+ 'NumberSquareZero',
828
+ 'NumberThree',
829
+ 'NumberTwo',
830
+ 'NumberZero',
831
+ 'Nut',
832
+ 'NyTimesLogo',
833
+ 'Octagon',
834
+ 'OfficeChair',
835
+ 'OpenaiLogo',
836
+ 'OpenInNew',
837
+ 'Option',
838
+ 'OrangeSlice',
839
+ 'Package',
840
+ 'PaintBrush',
841
+ 'PaintBrushBroad',
842
+ 'PaintBrushHousehold',
843
+ 'PaintBucket',
844
+ 'PaintRoller',
845
+ 'Palette',
846
+ 'Pants',
847
+ 'Paperclip',
848
+ 'PaperclipHorizontal',
849
+ 'PaperPlane',
850
+ 'PaperPlaneRight',
851
+ 'PaperPlaneTilt',
852
+ 'Parachute',
853
+ 'Paragraph',
854
+ 'Parallelogram',
855
+ 'Park',
856
+ 'Password',
857
+ 'Path',
858
+ 'PatreonLogo',
859
+ 'Pause',
860
+ 'PauseCircle',
861
+ 'PawPrint',
862
+ 'PaypalLogo',
863
+ 'Peace',
864
+ 'Pen',
865
+ 'Pencil',
866
+ 'PencilCircle',
867
+ 'PencilLine',
868
+ 'PencilSimple',
869
+ 'PencilSimpleLine',
870
+ 'PencilSimpleSlash',
871
+ 'PencilSlash',
872
+ 'PenNib',
873
+ 'PenNibStraight',
874
+ 'Pentagram',
875
+ 'Pepper',
876
+ 'Percent',
877
+ 'Person',
878
+ 'PersonArmsSpread',
879
+ 'PersonSimple',
880
+ 'PersonSimpleBike',
881
+ 'PersonSimpleRun',
882
+ 'PersonSimpleThrow',
883
+ 'PersonSimpleWalk',
884
+ 'Perspective',
885
+ 'Phone',
886
+ 'PhoneCall',
887
+ 'PhoneDisconnect',
888
+ 'PhoneIncoming',
889
+ 'PhoneOutgoing',
890
+ 'PhonePlus',
891
+ 'PhoneSlash',
892
+ 'PhoneX',
893
+ 'PhosphorLogo',
894
+ 'Pi',
895
+ 'PianoKeys',
896
+ 'PictureInPicture',
897
+ 'PiggyBank',
898
+ 'Pill',
899
+ 'PinterestLogo',
900
+ 'Pinwheel',
901
+ 'Pizza',
902
+ 'Placeholder',
903
+ 'Planet',
904
+ 'Plant',
905
+ 'Play',
906
+ 'PlayCircle',
907
+ 'Playlist',
908
+ 'PlayPause',
909
+ 'Plug',
910
+ 'PlugCharging',
911
+ 'Plugs',
912
+ 'PlugsConnected',
913
+ 'Plus',
914
+ 'PlusCircle',
915
+ 'PlusMinus',
916
+ 'PlusSquare',
917
+ 'PokerChip',
918
+ 'PoliceCar',
919
+ 'Polygon',
920
+ 'Popcorn',
921
+ 'PottedPlant',
922
+ 'Power',
923
+ 'Prescription',
924
+ 'Presentation',
925
+ 'PresentationChart',
926
+ 'Printer',
927
+ 'Prohibit',
928
+ 'ProhibitInset',
929
+ 'ProjectorScreen',
930
+ 'ProjectorScreenChart',
931
+ 'Pulse',
932
+ 'PushPin',
933
+ 'PushPinSimple',
934
+ 'PushPinSimpleSlash',
935
+ 'PushPinSlash',
936
+ 'PuzzlePiece',
937
+ 'QrCode',
938
+ 'QuestBox',
939
+ 'QuestBoxHalf',
940
+ 'Question',
941
+ 'Queue',
942
+ 'Quotes',
943
+ 'Radical',
944
+ 'Radio',
945
+ 'Radioactive',
946
+ 'RadioButton',
947
+ 'Rainbow',
948
+ 'RainbowCloud',
949
+ 'ReadCvLogo',
950
+ 'Receipt',
951
+ 'ReceiptX',
952
+ 'Record',
953
+ 'Rectangle',
954
+ 'Recycle',
955
+ 'RedditLogo',
956
+ 'Repeat',
957
+ 'RepeatOnce',
958
+ 'Rewind',
959
+ 'RewindCircle',
960
+ 'RoadHorizon',
961
+ 'Robot',
962
+ 'Rocket',
963
+ 'RocketLaunch',
964
+ 'Rows',
965
+ 'Rss',
966
+ 'RssSimple',
967
+ 'Rug',
968
+ 'Ruler',
969
+ 'Scales',
970
+ 'Scan',
971
+ 'Scissors',
972
+ 'Scooter',
973
+ 'Screencast',
974
+ 'ScribbleLoop',
975
+ 'Scroll',
976
+ 'Seal',
977
+ 'SealCheck',
978
+ 'SealQuestion',
979
+ 'SealWarning',
980
+ 'Selection',
981
+ 'SelectionAll',
982
+ 'SelectionBackground',
983
+ 'SelectionForeground',
984
+ 'SelectionInverse',
985
+ 'SelectionPlus',
986
+ 'SelectionSlash',
987
+ 'Shapes',
988
+ 'Share',
989
+ 'ShareFat',
990
+ 'ShareNetwork',
991
+ 'Shield',
992
+ 'ShieldCheck',
993
+ 'ShieldCheckered',
994
+ 'ShieldChevron',
995
+ 'ShieldPlus',
996
+ 'ShieldSlash',
997
+ 'ShieldStar',
998
+ 'ShieldWarning',
999
+ 'ShirtFolded',
1000
+ 'ShootingStar',
1001
+ 'ShoppingBag',
1002
+ 'ShoppingBagOpen',
1003
+ 'ShoppingCart',
1004
+ 'ShoppingCartSimple',
1005
+ 'Shower',
1006
+ 'Shrimp',
1007
+ 'Shuffle',
1008
+ 'ShuffleAngular',
1009
+ 'ShuffleSimple',
1010
+ 'Sidebar',
1011
+ 'SidebarSimple',
1012
+ 'Sigma',
1013
+ 'Signature',
1014
+ 'SignIn',
1015
+ 'SignOut',
1016
+ 'Signpost',
1017
+ 'SimCard',
1018
+ 'Siren',
1019
+ 'SketchLogo',
1020
+ 'SkipBack',
1021
+ 'SkipBackCircle',
1022
+ 'SkipForward',
1023
+ 'SkipForwardCircle',
1024
+ 'Skull',
1025
+ 'SlackLogo',
1026
+ 'Sliders',
1027
+ 'SlidersHorizontal',
1028
+ 'Slideshow',
1029
+ 'Smiley',
1030
+ 'SmileyAngry',
1031
+ 'SmileyBlank',
1032
+ 'SmileyMeh',
1033
+ 'SmileyNervous',
1034
+ 'SmileySad',
1035
+ 'SmileySticker',
1036
+ 'SmileyWink',
1037
+ 'SmileyXEyes',
1038
+ 'SnapchatLogo',
1039
+ 'Sneaker',
1040
+ 'SneakerMove',
1041
+ 'Snowflake',
1042
+ 'SoccerBall',
1043
+ 'SortAscending',
1044
+ 'SortDescending',
1045
+ 'SoundcloudLogo',
1046
+ 'Spade',
1047
+ 'Sparkle',
1048
+ 'SpeakerHifi',
1049
+ 'SpeakerHigh',
1050
+ 'SpeakerLow',
1051
+ 'SpeakerNone',
1052
+ 'SpeakerSimpleHigh',
1053
+ 'SpeakerSimpleLow',
1054
+ 'SpeakerSimpleNone',
1055
+ 'SpeakerSimpleSlash',
1056
+ 'SpeakerSimpleX',
1057
+ 'SpeakerSlash',
1058
+ 'SpeakerX',
1059
+ 'Spinner',
1060
+ 'SpinnerGap',
1061
+ 'Spiral',
1062
+ 'SplitHorizontal',
1063
+ 'SplitVertical',
1064
+ 'SpotifyLogo',
1065
+ 'Square',
1066
+ 'SquareHalf',
1067
+ 'SquareHalfBottom',
1068
+ 'SquareLogo',
1069
+ 'SquaresFour',
1070
+ 'SquareSplitHorizontal',
1071
+ 'SquareSplitVertical',
1072
+ 'Stack',
1073
+ 'StackOverflowLogo',
1074
+ 'StackSimple',
1075
+ 'Stairs',
1076
+ 'Stamp',
1077
+ 'Star',
1078
+ 'StarAndCrescent',
1079
+ 'StarFour',
1080
+ 'StarHalf',
1081
+ 'StarOfDavid',
1082
+ 'Stats',
1083
+ 'SteeringWheel',
1084
+ 'Steps',
1085
+ 'Stethoscope',
1086
+ 'Sticker',
1087
+ 'Stool',
1088
+ 'Stop',
1089
+ 'StopCircle',
1090
+ 'Storefront',
1091
+ 'Strategy',
1092
+ 'StripeLogo',
1093
+ 'Student',
1094
+ 'Subtitles',
1095
+ 'Subtract',
1096
+ 'SubtractSquare',
1097
+ 'Suitcase',
1098
+ 'SuitcaseRolling',
1099
+ 'SuitcaseSimple',
1100
+ 'Sun',
1101
+ 'SunDim',
1102
+ 'Sunglasses',
1103
+ 'SunHorizon',
1104
+ 'Swap',
1105
+ 'Swatches',
1106
+ 'SwimmingPool',
1107
+ 'Sword',
1108
+ 'Synagogue',
1109
+ 'Syringe',
1110
+ 'Table',
1111
+ 'Tabs',
1112
+ 'Tag',
1113
+ 'TagChevron',
1114
+ 'TagSimple',
1115
+ 'Target',
1116
+ 'Taxi',
1117
+ 'TelegramLogo',
1118
+ 'Television',
1119
+ 'TelevisionSimple',
1120
+ 'TennisBall',
1121
+ 'Tent',
1122
+ 'Terminal',
1123
+ 'TerminalWindow',
1124
+ 'TestTube',
1125
+ 'TextAa',
1126
+ 'TextAlignCenter',
1127
+ 'TextAlignJustify',
1128
+ 'TextAlignLeft',
1129
+ 'TextAlignRight',
1130
+ 'TextAUnderline',
1131
+ 'TextB',
1132
+ 'Textbox',
1133
+ 'TextColumns',
1134
+ 'TextH',
1135
+ 'TextHFive',
1136
+ 'TextHFour',
1137
+ 'TextHOne',
1138
+ 'TextHSix',
1139
+ 'TextHThree',
1140
+ 'TextHTwo',
1141
+ 'TextIndent',
1142
+ 'TextItalic',
1143
+ 'TextOutdent',
1144
+ 'TextStrikethrough',
1145
+ 'TextT',
1146
+ 'TextUnderline',
1147
+ 'Thermometer',
1148
+ 'ThermometerCold',
1149
+ 'ThermometerHot',
1150
+ 'ThermometerSimple',
1151
+ 'ThumbsDown',
1152
+ 'ThumbsUp',
1153
+ 'Ticket',
1154
+ 'TidalLogo',
1155
+ 'TiktokLogo',
1156
+ 'Timer',
1157
+ 'Tipi',
1158
+ 'ToggleLeft',
1159
+ 'ToggleRight',
1160
+ 'Toilet',
1161
+ 'ToiletPaper',
1162
+ 'Toolbox',
1163
+ 'Tooth',
1164
+ 'Tote',
1165
+ 'ToteSimple',
1166
+ 'Trademark',
1167
+ 'TrademarkRegistered',
1168
+ 'TrafficCone',
1169
+ 'TrafficSign',
1170
+ 'TrafficSignal',
1171
+ 'Train',
1172
+ 'TrainRegional',
1173
+ 'TrainSimple',
1174
+ 'Tram',
1175
+ 'Translate',
1176
+ 'Trash',
1177
+ 'TrashSimple',
1178
+ 'Tray',
1179
+ 'Tree',
1180
+ 'TreeEvergreen',
1181
+ 'TreePalm',
1182
+ 'TreeStructure',
1183
+ 'TrendDown',
1184
+ 'TrendUp',
1185
+ 'Triangle',
1186
+ 'Trophy',
1187
+ 'Truck',
1188
+ 'TShirt',
1189
+ 'TwitchLogo',
1190
+ 'TwitterLogo',
1191
+ 'Umbrella',
1192
+ 'UmbrellaSimple',
1193
+ 'Unite',
1194
+ 'UniteSquare',
1195
+ 'Upload',
1196
+ 'UploadSimple',
1197
+ 'Usb',
1198
+ 'User',
1199
+ 'UserCircle',
1200
+ 'UserCircleGear',
1201
+ 'UserCircleMinus',
1202
+ 'UserCirclePlus',
1203
+ 'UserFocus',
1204
+ 'UserGear',
1205
+ 'UserList',
1206
+ 'UserMinus',
1207
+ 'UserPlus',
1208
+ 'UserRectangle',
1209
+ 'Users',
1210
+ 'UsersFour',
1211
+ 'UserSquare',
1212
+ 'UsersThree',
1213
+ 'UserSwitch',
1214
+ 'Van',
1215
+ 'Vault',
1216
+ 'Vibrate',
1217
+ 'Video',
1218
+ 'VideoCamera',
1219
+ 'VideoCameraSlash',
1220
+ 'Vignette',
1221
+ 'VinylRecord',
1222
+ 'VirtualReality',
1223
+ 'Virus',
1224
+ 'Voicemail',
1225
+ 'Volleyball',
1226
+ 'Wall',
1227
+ 'Wallet',
1228
+ 'Warehouse',
1229
+ 'Warning',
1230
+ 'WarningCircle',
1231
+ 'WarningDiamond',
1232
+ 'WarningOctagon',
1233
+ 'Watch',
1234
+ 'Waveform',
1235
+ 'Waves',
1236
+ 'WaveSawtooth',
1237
+ 'WaveSine',
1238
+ 'WaveSquare',
1239
+ 'WaveTriangle',
1240
+ 'Webcam',
1241
+ 'WebcamSlash',
1242
+ 'WebhooksLogo',
1243
+ 'WechatLogo',
1244
+ 'WhatsappLogo',
1245
+ 'Wheelchair',
1246
+ 'WheelchairMotion',
1247
+ 'WifiHigh',
1248
+ 'WifiLow',
1249
+ 'WifiMedium',
1250
+ 'WifiNone',
1251
+ 'WifiSlash',
1252
+ 'WifiX',
1253
+ 'Wind',
1254
+ 'WindowsLogo',
1255
+ 'Wine',
1256
+ 'Wrench',
1257
+ 'X',
1258
+ 'XCircle',
1259
+ 'XSquare',
1260
+ 'YinYang',
1261
+ 'YoutubeLogo',
1262
+ 'AddressBookBold',
1263
+ 'AirplaneBold',
1264
+ 'AirplaneInFlightBold',
1265
+ 'AirplaneLandingBold',
1266
+ 'AirplaneTakeoffBold',
1267
+ 'AirplaneTiltBold',
1268
+ 'AirplayBold',
1269
+ 'AirTrafficControlBold',
1270
+ 'AlarmBold',
1271
+ 'AlienBold',
1272
+ 'AlignBottomBold',
1273
+ 'AlignBottomSimpleBold',
1274
+ 'AlignCenterHorizontalBold',
1275
+ 'AlignCenterHorizontalSimpleBold',
1276
+ 'AlignCenterVerticalBold',
1277
+ 'AlignCenterVerticalSimpleBold',
1278
+ 'AlignLeftBold',
1279
+ 'AlignLeftSimpleBold',
1280
+ 'AlignRightBold',
1281
+ 'AlignRightSimpleBold',
1282
+ 'AlignTopBold',
1283
+ 'AlignTopSimpleBold',
1284
+ 'AmazonLogoBold',
1285
+ 'AnchorBold',
1286
+ 'AnchorSimpleBold',
1287
+ 'AndroidLogoBold',
1288
+ 'AngularLogoBold',
1289
+ 'ApertureBold',
1290
+ 'AppleLogoBold',
1291
+ 'ApplePodcastsLogoBold',
1292
+ 'AppStoreLogoBold',
1293
+ 'AppWindowBold',
1294
+ 'ArchiveBold',
1295
+ 'ArchiveBoxBold',
1296
+ 'ArchiveTrayBold',
1297
+ 'ArmchairBold',
1298
+ 'ArrowArcLeftBold',
1299
+ 'ArrowArcRightBold',
1300
+ 'ArrowBendDoubleUpLeftBold',
1301
+ 'ArrowBendDoubleUpRightBold',
1302
+ 'ArrowBendDownLeftBold',
1303
+ 'ArrowBendDownRightBold',
1304
+ 'ArrowBendLeftDownBold',
1305
+ 'ArrowBendLeftUpBold',
1306
+ 'ArrowBendRightDownBold',
1307
+ 'ArrowBendRightUpBold',
1308
+ 'ArrowBendUpLeftBold',
1309
+ 'ArrowBendUpRightBold',
1310
+ 'ArrowCircleDownBold',
1311
+ 'ArrowCircleDownLeftBold',
1312
+ 'ArrowCircleDownRightBold',
1313
+ 'ArrowCircleLeftBold',
1314
+ 'ArrowCircleRightBold',
1315
+ 'ArrowCircleUpBold',
1316
+ 'ArrowCircleUpLeftBold',
1317
+ 'ArrowCircleUpRightBold',
1318
+ 'ArrowClockwiseBold',
1319
+ 'ArrowCounterClockwiseBold',
1320
+ 'ArrowDownBold',
1321
+ 'ArrowDownLeftBold',
1322
+ 'ArrowDownRightBold',
1323
+ 'ArrowElbowDownLeftBold',
1324
+ 'ArrowElbowDownRightBold',
1325
+ 'ArrowElbowLeftBold',
1326
+ 'ArrowElbowLeftDownBold',
1327
+ 'ArrowElbowLeftUpBold',
1328
+ 'ArrowElbowRightBold',
1329
+ 'ArrowElbowRightDownBold',
1330
+ 'ArrowElbowRightUpBold',
1331
+ 'ArrowElbowUpLeftBold',
1332
+ 'ArrowElbowUpRightBold',
1333
+ 'ArrowFatDownBold',
1334
+ 'ArrowFatLeftBold',
1335
+ 'ArrowFatLineDownBold',
1336
+ 'ArrowFatLineLeftBold',
1337
+ 'ArrowFatLineRightBold',
1338
+ 'ArrowFatLinesDownBold',
1339
+ 'ArrowFatLinesLeftBold',
1340
+ 'ArrowFatLinesRightBold',
1341
+ 'ArrowFatLinesUpBold',
1342
+ 'ArrowFatLineUpBold',
1343
+ 'ArrowFatRightBold',
1344
+ 'ArrowFatUpBold',
1345
+ 'ArrowLeftBold',
1346
+ 'ArrowLineDownBold',
1347
+ 'ArrowLineDownLeftBold',
1348
+ 'ArrowLineDownRightBold',
1349
+ 'ArrowLineLeftBold',
1350
+ 'ArrowLineRightBold',
1351
+ 'ArrowLineUpBold',
1352
+ 'ArrowLineUpLeftBold',
1353
+ 'ArrowLineUpRightBold',
1354
+ 'ArrowRightBold',
1355
+ 'ArrowsClockwiseBold',
1356
+ 'ArrowsCounterClockwiseBold',
1357
+ 'ArrowsDownUpBold',
1358
+ 'ArrowsHorizontalBold',
1359
+ 'ArrowsInBold',
1360
+ 'ArrowsInCardinalBold',
1361
+ 'ArrowsInLineHorizontalBold',
1362
+ 'ArrowsInLineVerticalBold',
1363
+ 'ArrowsInSimpleBold',
1364
+ 'ArrowsLeftRightBold',
1365
+ 'ArrowsMergeBold',
1366
+ 'ArrowsOutBold',
1367
+ 'ArrowsOutCardinalBold',
1368
+ 'ArrowsOutLineHorizontalBold',
1369
+ 'ArrowsOutLineVerticalBold',
1370
+ 'ArrowsOutSimpleBold',
1371
+ 'ArrowSquareDownBold',
1372
+ 'ArrowSquareDownLeftBold',
1373
+ 'ArrowSquareDownRightBold',
1374
+ 'ArrowSquareInBold',
1375
+ 'ArrowSquareLeftBold',
1376
+ 'ArrowSquareOutBold',
1377
+ 'ArrowSquareRightBold',
1378
+ 'ArrowSquareUpBold',
1379
+ 'ArrowSquareUpLeftBold',
1380
+ 'ArrowSquareUpRightBold',
1381
+ 'ArrowsSplitBold',
1382
+ 'ArrowsVerticalBold',
1383
+ 'ArrowUDownLeftBold',
1384
+ 'ArrowUDownRightBold',
1385
+ 'ArrowULeftDownBold',
1386
+ 'ArrowULeftUpBold',
1387
+ 'ArrowUpBold',
1388
+ 'ArrowUpLeftBold',
1389
+ 'ArrowUpRightBold',
1390
+ 'ArrowURightDownBold',
1391
+ 'ArrowURightUpBold',
1392
+ 'ArrowUUpLeftBold',
1393
+ 'ArrowUUpRightBold',
1394
+ 'ArticleBold',
1395
+ 'ArticleMediumBold',
1396
+ 'ArticleNyTimesBold',
1397
+ 'AsteriskBold',
1398
+ 'AsteriskSimpleBold',
1399
+ 'AtBold',
1400
+ 'AtomBold',
1401
+ 'AutoAwesomeBold',
1402
+ 'BabyBold',
1403
+ 'BackpackBold',
1404
+ 'BackspaceBold',
1405
+ 'BagBold',
1406
+ 'BagSimpleBold',
1407
+ 'BalloonBold',
1408
+ 'BandaidsBold',
1409
+ 'BankBold',
1410
+ 'BarbellBold',
1411
+ 'BarcodeBold',
1412
+ 'BarricadeBold',
1413
+ 'BaseballBold',
1414
+ 'BaseballCapBold',
1415
+ 'BasketBold',
1416
+ 'BasketballBold',
1417
+ 'BathtubBold',
1418
+ 'BatteryChargingBold',
1419
+ 'BatteryChargingVerticalBold',
1420
+ 'BatteryEmptyBold',
1421
+ 'BatteryFullBold',
1422
+ 'BatteryHighBold',
1423
+ 'BatteryLowBold',
1424
+ 'BatteryMediumBold',
1425
+ 'BatteryPlusBold',
1426
+ 'BatteryPlusVerticalBold',
1427
+ 'BatteryVerticalEmptyBold',
1428
+ 'BatteryVerticalFullBold',
1429
+ 'BatteryVerticalHighBold',
1430
+ 'BatteryVerticalLowBold',
1431
+ 'BatteryVerticalMediumBold',
1432
+ 'BatteryWarningBold',
1433
+ 'BatteryWarningVerticalBold',
1434
+ 'BedBold',
1435
+ 'BeerBottleBold',
1436
+ 'BeerSteinBold',
1437
+ 'BehanceLogoBold',
1438
+ 'BellBold',
1439
+ 'BellRingingBold',
1440
+ 'BellSimpleBold',
1441
+ 'BellSimpleRingingBold',
1442
+ 'BellSimpleSlashBold',
1443
+ 'BellSimpleZBold',
1444
+ 'BellSlashBold',
1445
+ 'BellZBold',
1446
+ 'BezierCurveBold',
1447
+ 'BicycleBold',
1448
+ 'BinocularsBold',
1449
+ 'BirdBold',
1450
+ 'BluetoothBold',
1451
+ 'BluetoothConnectedBold',
1452
+ 'BluetoothSlashBold',
1453
+ 'BluetoothXBold',
1454
+ 'BoatBold',
1455
+ 'BoneBold',
1456
+ 'BookBold',
1457
+ 'BookBookmarkBold',
1458
+ 'BookmarkBold',
1459
+ 'BookmarksBold',
1460
+ 'BookmarkSimpleBold',
1461
+ 'BookmarksSimpleBold',
1462
+ 'BookOpenBold',
1463
+ 'BookOpenTextBold',
1464
+ 'BooksBold',
1465
+ 'BootBold',
1466
+ 'BoundingBoxBold',
1467
+ 'BowlFoodBold',
1468
+ 'BracketsAngleBold',
1469
+ 'BracketsCurlyBold',
1470
+ 'BracketsRoundBold',
1471
+ 'BracketsSquareBold',
1472
+ 'BrainBold',
1473
+ 'BrandyBold',
1474
+ 'BridgeBold',
1475
+ 'BriefcaseBold',
1476
+ 'BriefcaseMetalBold',
1477
+ 'BroadcastBold',
1478
+ 'BroomBold',
1479
+ 'BrowserBold',
1480
+ 'BrowsersBold',
1481
+ 'BuckBold',
1482
+ 'BugBold',
1483
+ 'BugBeetleBold',
1484
+ 'BugDroidBold',
1485
+ 'BuildingsBold',
1486
+ 'BusBold',
1487
+ 'ButterflyBold',
1488
+ 'CactusBold',
1489
+ 'CakeBold',
1490
+ 'CalculatorBold',
1491
+ 'CalendarBold',
1492
+ 'CalendarBlankBold',
1493
+ 'CalendarCheckBold',
1494
+ 'CalendarPlusBold',
1495
+ 'CalendarRangeBold',
1496
+ 'CalendarXBold',
1497
+ 'CallBellBold',
1498
+ 'CameraBold',
1499
+ 'CameraPlusBold',
1500
+ 'CameraRotateBold',
1501
+ 'CameraSlashBold',
1502
+ 'CampfireBold',
1503
+ 'CarBold',
1504
+ 'CardholderBold',
1505
+ 'CardsBold',
1506
+ 'CaretCircleDoubleDownBold',
1507
+ 'CaretCircleDoubleLeftBold',
1508
+ 'CaretCircleDoubleRightBold',
1509
+ 'CaretCircleDoubleUpBold',
1510
+ 'CaretCircleDownBold',
1511
+ 'CaretCircleLeftBold',
1512
+ 'CaretCircleRightBold',
1513
+ 'CaretCircleUpBold',
1514
+ 'CaretCircleUpDownBold',
1515
+ 'CaretDoubleDownBold',
1516
+ 'CaretDoubleLeftBold',
1517
+ 'CaretDoubleRightBold',
1518
+ 'CaretDoubleUpBold',
1519
+ 'CaretDownBold',
1520
+ 'CaretLeftBold',
1521
+ 'CaretRightBold',
1522
+ 'CaretUpBold',
1523
+ 'CaretUpDownBold',
1524
+ 'CarProfileBold',
1525
+ 'CarrotBold',
1526
+ 'CarSimpleBold',
1527
+ 'CassetteTapeBold',
1528
+ 'CastleTurretBold',
1529
+ 'CatBold',
1530
+ 'CellSignalFullBold',
1531
+ 'CellSignalHighBold',
1532
+ 'CellSignalLowBold',
1533
+ 'CellSignalMediumBold',
1534
+ 'CellSignalNoneBold',
1535
+ 'CellSignalSlashBold',
1536
+ 'CellSignalXBold',
1537
+ 'CertificateBold',
1538
+ 'ChairBold',
1539
+ 'ChalkboardBold',
1540
+ 'ChalkboardSimpleBold',
1541
+ 'ChalkboardTeacherBold',
1542
+ 'ChampagneBold',
1543
+ 'ChargingStationBold',
1544
+ 'ChartBarBold',
1545
+ 'ChartBarHorizontalBold',
1546
+ 'ChartDonutBold',
1547
+ 'ChartLineBold',
1548
+ 'ChartLineDownBold',
1549
+ 'ChartLineUpBold',
1550
+ 'ChartPieBold',
1551
+ 'ChartPieSliceBold',
1552
+ 'ChartPolarBold',
1553
+ 'ChartScatterBold',
1554
+ 'ChatBold',
1555
+ 'ChatCenteredBold',
1556
+ 'ChatCenteredDotsBold',
1557
+ 'ChatCenteredTextBold',
1558
+ 'ChatCircleBold',
1559
+ 'ChatCircleDotsBold',
1560
+ 'ChatCircleTextBold',
1561
+ 'ChatDotsBold',
1562
+ 'ChatsBold',
1563
+ 'ChatsCircleBold',
1564
+ 'ChatsTeardropBold',
1565
+ 'ChatTeardropBold',
1566
+ 'ChatTeardropDotsBold',
1567
+ 'ChatTeardropTextBold',
1568
+ 'ChatTextBold',
1569
+ 'CheckBold',
1570
+ 'CheckCircleBold',
1571
+ 'CheckFatBold',
1572
+ 'ChecksBold',
1573
+ 'CheckSquareBold',
1574
+ 'CheckSquareOffsetBold',
1575
+ 'ChurchBold',
1576
+ 'CircleBold',
1577
+ 'CircleDashedBold',
1578
+ 'CircleHalfBold',
1579
+ 'CircleHalfTiltBold',
1580
+ 'CircleNotchBold',
1581
+ 'CirclesFourBold',
1582
+ 'CirclesThreeBold',
1583
+ 'CirclesThreePlusBold',
1584
+ 'CircuitryBold',
1585
+ 'ClipboardBold',
1586
+ 'ClipboardTextBold',
1587
+ 'ClockBold',
1588
+ 'ClockAfternoonBold',
1589
+ 'ClockClockwiseBold',
1590
+ 'ClockCountdownBold',
1591
+ 'ClockCounterClockwiseBold',
1592
+ 'ClosedCaptioningBold',
1593
+ 'CloudBold',
1594
+ 'CloudArrowDownBold',
1595
+ 'CloudArrowUpBold',
1596
+ 'CloudCheckBold',
1597
+ 'CloudFogBold',
1598
+ 'CloudLightningBold',
1599
+ 'CloudMoonBold',
1600
+ 'CloudRainBold',
1601
+ 'CloudSlashBold',
1602
+ 'CloudSnowBold',
1603
+ 'CloudSunBold',
1604
+ 'CloudWarningBold',
1605
+ 'CloudXBold',
1606
+ 'ClubBold',
1607
+ 'CoatHangerBold',
1608
+ 'CodaLogoBold',
1609
+ 'CodeBold',
1610
+ 'CodeBlockBold',
1611
+ 'CodepenLogoBold',
1612
+ 'CodesandboxLogoBold',
1613
+ 'CodeSimpleBold',
1614
+ 'CoffeeBold',
1615
+ 'CoinBold',
1616
+ 'CoinsBold',
1617
+ 'CoinVerticalBold',
1618
+ 'ColumnsBold',
1619
+ 'CommandBold',
1620
+ 'CompassBold',
1621
+ 'CompassToolBold',
1622
+ 'ComputerTowerBold',
1623
+ 'ConfettiBold',
1624
+ 'ContactlessPaymentBold',
1625
+ 'ControlBold',
1626
+ 'CookieBold',
1627
+ 'CookingPotBold',
1628
+ 'CopyBold',
1629
+ 'CopyleftBold',
1630
+ 'CopyrightBold',
1631
+ 'CopySimpleBold',
1632
+ 'CornersInBold',
1633
+ 'CornersOutBold',
1634
+ 'CouchBold',
1635
+ 'CpuBold',
1636
+ 'CreditCardBold',
1637
+ 'CropBold',
1638
+ 'CrossBold',
1639
+ 'CrosshairBold',
1640
+ 'CrosshairSimpleBold',
1641
+ 'CrownBold',
1642
+ 'CrownSimpleBold',
1643
+ 'CubeBold',
1644
+ 'CubeFocusBold',
1645
+ 'CubeTransparentBold',
1646
+ 'CurrencyBtcBold',
1647
+ 'CurrencyCircleDollarBold',
1648
+ 'CurrencyCnyBold',
1649
+ 'CurrencyDollarBold',
1650
+ 'CurrencyDollarSimpleBold',
1651
+ 'CurrencyEthBold',
1652
+ 'CurrencyEurBold',
1653
+ 'CurrencyGbpBold',
1654
+ 'CurrencyInrBold',
1655
+ 'CurrencyJpyBold',
1656
+ 'CurrencyKrwBold',
1657
+ 'CurrencyKztBold',
1658
+ 'CurrencyNgnBold',
1659
+ 'CurrencyRubBold',
1660
+ 'CursorBold',
1661
+ 'CursorClickBold',
1662
+ 'CursorTextBold',
1663
+ 'CylinderBold',
1664
+ 'DatabaseBold',
1665
+ 'DesktopBold',
1666
+ 'DesktopTowerBold',
1667
+ 'DetectiveBold',
1668
+ 'DeviceMobileBold',
1669
+ 'DeviceMobileCameraBold',
1670
+ 'DeviceMobileSpeakerBold',
1671
+ 'DevicesBold',
1672
+ 'DeviceTabletBold',
1673
+ 'DeviceTabletCameraBold',
1674
+ 'DeviceTabletSpeakerBold',
1675
+ 'DevToLogoBold',
1676
+ 'DiamondBold',
1677
+ 'DiamondsFourBold',
1678
+ 'DiceFiveBold',
1679
+ 'DiceFourBold',
1680
+ 'DiceOneBold',
1681
+ 'DiceSixBold',
1682
+ 'DiceThreeBold',
1683
+ 'DiceTwoBold',
1684
+ 'DiscBold',
1685
+ 'DiscordLogoBold',
1686
+ 'DivideBold',
1687
+ 'DnaBold',
1688
+ 'DogBold',
1689
+ 'DoorBold',
1690
+ 'DoorOpenBold',
1691
+ 'DotBold',
1692
+ 'DotOutlineBold',
1693
+ 'DotsNineBold',
1694
+ 'DotsSixBold',
1695
+ 'DotsSixVerticalBold',
1696
+ 'DotsThreeBold',
1697
+ 'DotsThreeCircleBold',
1698
+ 'DotsThreeCircleVerticalBold',
1699
+ 'DotsThreeOutlineBold',
1700
+ 'DotsThreeOutlineVerticalBold',
1701
+ 'DotsThreeVerticalBold',
1702
+ 'DownloadBold',
1703
+ 'DownloadSimpleBold',
1704
+ 'DressBold',
1705
+ 'DribbbleLogoBold',
1706
+ 'DropBold',
1707
+ 'DropboxLogoBold',
1708
+ 'DropHalfBold',
1709
+ 'DropHalfBottomBold',
1710
+ 'EarBold',
1711
+ 'EarSlashBold',
1712
+ 'EggBold',
1713
+ 'EggCrackBold',
1714
+ 'EjectBold',
1715
+ 'EjectSimpleBold',
1716
+ 'ElevatorBold',
1717
+ 'EngineBold',
1718
+ 'EnvelopeBold',
1719
+ 'EnvelopeOpenBold',
1720
+ 'EnvelopeSimpleBold',
1721
+ 'EnvelopeSimpleOpenBold',
1722
+ 'EqualizerBold',
1723
+ 'EqualsBold',
1724
+ 'EraserBold',
1725
+ 'EscalatorDownBold',
1726
+ 'EscalatorUpBold',
1727
+ 'ExamBold',
1728
+ 'ExcludeBold',
1729
+ 'ExcludeSquareBold',
1730
+ 'ExportBold',
1731
+ 'EyeBold',
1732
+ 'EyeClosedBold',
1733
+ 'EyedropperBold',
1734
+ 'EyedropperSampleBold',
1735
+ 'EyeglassesBold',
1736
+ 'EyeSlashBold',
1737
+ 'FacebookLogoBold',
1738
+ 'FaceMaskBold',
1739
+ 'FactoryBold',
1740
+ 'FadersBold',
1741
+ 'FadersHorizontalBold',
1742
+ 'FanBold',
1743
+ 'FastForwardBold',
1744
+ 'FastForwardCircleBold',
1745
+ 'FeatherBold',
1746
+ 'FigmaLogoBold',
1747
+ 'FileBold',
1748
+ 'FileArchiveBold',
1749
+ 'FileArrowDownBold',
1750
+ 'FileArrowUpBold',
1751
+ 'FileAudioBold',
1752
+ 'FileCloudBold',
1753
+ 'FileCodeBold',
1754
+ 'FileCssBold',
1755
+ 'FileCsvBold',
1756
+ 'FileDashedBold',
1757
+ 'FileDocBold',
1758
+ 'FileHtmlBold',
1759
+ 'FileImageBold',
1760
+ 'FileJpgBold',
1761
+ 'FileJsBold',
1762
+ 'FileJsxBold',
1763
+ 'FileLockBold',
1764
+ 'FileMinusBold',
1765
+ 'FilePdfBold',
1766
+ 'FilePlusBold',
1767
+ 'FilePngBold',
1768
+ 'FilePptBold',
1769
+ 'FileRsBold',
1770
+ 'FilesBold',
1771
+ 'FileSearchBold',
1772
+ 'FileSqlBold',
1773
+ 'FileSvgBold',
1774
+ 'FileTextBold',
1775
+ 'FileTsBold',
1776
+ 'FileTsxBold',
1777
+ 'FileVideoBold',
1778
+ 'FileVueBold',
1779
+ 'FileXBold',
1780
+ 'FileXlsBold',
1781
+ 'FileZipBold',
1782
+ 'FilmReelBold',
1783
+ 'FilmScriptBold',
1784
+ 'FilmSlateBold',
1785
+ 'FilmStripBold',
1786
+ 'FingerprintBold',
1787
+ 'FingerprintSimpleBold',
1788
+ 'FinnTheHumanBold',
1789
+ 'FireBold',
1790
+ 'FireExtinguisherBold',
1791
+ 'FireSimpleBold',
1792
+ 'FirstAidBold',
1793
+ 'FirstAidKitBold',
1794
+ 'FishBold',
1795
+ 'FishSimpleBold',
1796
+ 'FlagBold',
1797
+ 'FlagBannerBold',
1798
+ 'FlagCheckeredBold',
1799
+ 'FlagPennantBold',
1800
+ 'FlameBold',
1801
+ 'FlashlightBold',
1802
+ 'FlaskBold',
1803
+ 'FloppyDiskBold',
1804
+ 'FloppyDiskBackBold',
1805
+ 'FlowArrowBold',
1806
+ 'FlowerBold',
1807
+ 'FlowerLotusBold',
1808
+ 'FlowerTulipBold',
1809
+ 'FlyingSaucerBold',
1810
+ 'FolderBold',
1811
+ 'FolderDashedBold',
1812
+ 'FolderLockBold',
1813
+ 'FolderMinusBold',
1814
+ 'FolderNotchBold',
1815
+ 'FolderNotchMinusBold',
1816
+ 'FolderNotchOpenBold',
1817
+ 'FolderNotchPlusBold',
1818
+ 'FolderOpenBold',
1819
+ 'FolderPlusBold',
1820
+ 'FoldersBold',
1821
+ 'FolderSimpleBold',
1822
+ 'FolderSimpleDashedBold',
1823
+ 'FolderSimpleLockBold',
1824
+ 'FolderSimpleMinusBold',
1825
+ 'FolderSimplePlusBold',
1826
+ 'FolderSimpleStarBold',
1827
+ 'FolderSimpleUserBold',
1828
+ 'FolderStarBold',
1829
+ 'FolderUserBold',
1830
+ 'FootballBold',
1831
+ 'FootprintsBold',
1832
+ 'ForkKnifeBold',
1833
+ 'FrameCornersBold',
1834
+ 'FramerLogoBold',
1835
+ 'FunctionBold',
1836
+ 'FunnelBold',
1837
+ 'FunnelSimpleBold',
1838
+ 'GameControllerBold',
1839
+ 'GarageBold',
1840
+ 'GasCanBold',
1841
+ 'GasPumpBold',
1842
+ 'GaugeBold',
1843
+ 'GavelBold',
1844
+ 'GearBold',
1845
+ 'GearFineBold',
1846
+ 'GearSixBold',
1847
+ 'GenderFemaleBold',
1848
+ 'GenderIntersexBold',
1849
+ 'GenderMaleBold',
1850
+ 'GenderNeuterBold',
1851
+ 'GenderNonbinaryBold',
1852
+ 'GenderTransgenderBold',
1853
+ 'GhostBold',
1854
+ 'GifBold',
1855
+ 'GiftBold',
1856
+ 'GitBranchBold',
1857
+ 'GitCommitBold',
1858
+ 'GitDiffBold',
1859
+ 'GitForkBold',
1860
+ 'GithubLogoBold',
1861
+ 'GitlabLogoBold',
1862
+ 'GitlabLogoSimpleBold',
1863
+ 'GitMergeBold',
1864
+ 'GitPullRequestBold',
1865
+ 'GlobeBold',
1866
+ 'GlobeHemisphereEastBold',
1867
+ 'GlobeHemisphereWestBold',
1868
+ 'GlobeSimpleBold',
1869
+ 'GlobeStandBold',
1870
+ 'GogglesBold',
1871
+ 'GoodreadsLogoBold',
1872
+ 'GoogleCardboardLogoBold',
1873
+ 'GoogleChromeLogoBold',
1874
+ 'GoogleDriveLogoBold',
1875
+ 'GoogleLogoBold',
1876
+ 'GooglePhotosLogoBold',
1877
+ 'GooglePlayLogoBold',
1878
+ 'GooglePodcastsLogoBold',
1879
+ 'GradientBold',
1880
+ 'GraduationCapBold',
1881
+ 'GrainsBold',
1882
+ 'GrainsSlashBold',
1883
+ 'GraphBold',
1884
+ 'GridFourBold',
1885
+ 'GridNineBold',
1886
+ 'GuitarBold',
1887
+ 'HamburgerBold',
1888
+ 'HammerBold',
1889
+ 'HandBold',
1890
+ 'HandbagBold',
1891
+ 'HandbagSimpleBold',
1892
+ 'HandCoinsBold',
1893
+ 'HandEyeBold',
1894
+ 'HandFistBold',
1895
+ 'HandGrabbingBold',
1896
+ 'HandHeartBold',
1897
+ 'HandPalmBold',
1898
+ 'HandPointingBold',
1899
+ 'HandsClappingBold',
1900
+ 'HandshakeBold',
1901
+ 'HandSoapBold',
1902
+ 'HandsPrayingBold',
1903
+ 'HandSwipeLeftBold',
1904
+ 'HandSwipeRightBold',
1905
+ 'HandTapBold',
1906
+ 'HandWavingBold',
1907
+ 'HardDriveBold',
1908
+ 'HardDrivesBold',
1909
+ 'HashBold',
1910
+ 'HashStraightBold',
1911
+ 'HeadlightsBold',
1912
+ 'HeadphonesBold',
1913
+ 'HeadsetBold',
1914
+ 'HeartBold',
1915
+ 'HeartbeatBold',
1916
+ 'HeartBreakBold',
1917
+ 'HeartHalfBold',
1918
+ 'HeartStraightBold',
1919
+ 'HeartStraightBreakBold',
1920
+ 'HexagonBold',
1921
+ 'HighHeelBold',
1922
+ 'HighlighterCircleBold',
1923
+ 'HoodieBold',
1924
+ 'HorseBold',
1925
+ 'HourglassBold',
1926
+ 'HourglassHighBold',
1927
+ 'HourglassLowBold',
1928
+ 'HourglassMediumBold',
1929
+ 'HourglassSimpleBold',
1930
+ 'HourglassSimpleHighBold',
1931
+ 'HourglassSimpleLowBold',
1932
+ 'HourglassSimpleMediumBold',
1933
+ 'HouseBold',
1934
+ 'HouseLineBold',
1935
+ 'HouseSimpleBold',
1936
+ 'IceCreamBold',
1937
+ 'IdentificationBadgeBold',
1938
+ 'IdentificationCardBold',
1939
+ 'ImageBold',
1940
+ 'ImagesBold',
1941
+ 'ImageSquareBold',
1942
+ 'ImagesSquareBold',
1943
+ 'InfinityBold',
1944
+ 'InfoBold',
1945
+ 'InstagramLogoBold',
1946
+ 'IntersectBold',
1947
+ 'IntersectSquareBold',
1948
+ 'IntersectThreeBold',
1949
+ 'JeepBold',
1950
+ 'KanbanBold',
1951
+ 'KeyBold',
1952
+ 'KeyboardBold',
1953
+ 'KeyholeBold',
1954
+ 'KeyReturnBold',
1955
+ 'KnifeBold',
1956
+ 'LadderBold',
1957
+ 'LadderSimpleBold',
1958
+ 'LampBold',
1959
+ 'LaptopBold',
1960
+ 'LayoutBold',
1961
+ 'LeafBold',
1962
+ 'LifebuoyBold',
1963
+ 'LightbulbBold',
1964
+ 'LightbulbFilamentBold',
1965
+ 'LighthouseBold',
1966
+ 'LightningBold',
1967
+ 'LightningABold',
1968
+ 'LightningSlashBold',
1969
+ 'LineSegmentBold',
1970
+ 'LineSegmentsBold',
1971
+ 'LinkBold',
1972
+ 'LinkBreakBold',
1973
+ 'LinkedinLogoBold',
1974
+ 'LinkSimpleBold',
1975
+ 'LinkSimpleBreakBold',
1976
+ 'LinkSimpleHorizontalBold',
1977
+ 'LinkSimpleHorizontalBreakBold',
1978
+ 'LinuxLogoBold',
1979
+ 'ListBold',
1980
+ 'ListBulletsBold',
1981
+ 'ListChecksBold',
1982
+ 'ListDashesBold',
1983
+ 'ListMagnifyingGlassBold',
1984
+ 'ListNumbersBold',
1985
+ 'ListPlusBold',
1986
+ 'LockBold',
1987
+ 'LockersBold',
1988
+ 'LockKeyBold',
1989
+ 'LockKeyOpenBold',
1990
+ 'LockLaminatedBold',
1991
+ 'LockLaminatedOpenBold',
1992
+ 'LockOpenBold',
1993
+ 'LockSimpleBold',
1994
+ 'LockSimpleOpenBold',
1995
+ 'MagicWandBold',
1996
+ 'MagnetBold',
1997
+ 'MagnetStraightBold',
1998
+ 'MagnifyingGlassBold',
1999
+ 'MagnifyingGlassMinusBold',
2000
+ 'MagnifyingGlassPlusBold',
2001
+ 'MapPinBold',
2002
+ 'MapPinLineBold',
2003
+ 'MapTrifoldBold',
2004
+ 'MarkerCircleBold',
2005
+ 'MartiniBold',
2006
+ 'MaskHappyBold',
2007
+ 'MaskSadBold',
2008
+ 'MathOperationsBold',
2009
+ 'MedalBold',
2010
+ 'MedalMilitaryBold',
2011
+ 'MediumLogoBold',
2012
+ 'MegaphoneBold',
2013
+ 'MegaphoneSimpleBold',
2014
+ 'MessengerLogoBold',
2015
+ 'MetaLogoBold',
2016
+ 'MetronomeBold',
2017
+ 'MicrophoneBold',
2018
+ 'MicrophoneSlashBold',
2019
+ 'MicrophoneStageBold',
2020
+ 'MicrosoftExcelLogoBold',
2021
+ 'MicrosoftLogoBold',
2022
+ 'MicrosoftOutlookLogoBold',
2023
+ 'MicrosoftPowerpointLogoBold',
2024
+ 'MicrosoftTeamsLogoBold',
2025
+ 'MicrosoftWordLogoBold',
2026
+ 'MinusBold',
2027
+ 'MinusCircleBold',
2028
+ 'MinusSquareBold',
2029
+ 'MoneyBold',
2030
+ 'MonitorBold',
2031
+ 'MonitorPlayBold',
2032
+ 'MoonBold',
2033
+ 'MoonStarsBold',
2034
+ 'MopedBold',
2035
+ 'MopedFrontBold',
2036
+ 'MosqueBold',
2037
+ 'MotorcycleBold',
2038
+ 'MountainsBold',
2039
+ 'MouseBold',
2040
+ 'MouseSimpleBold',
2041
+ 'MusicNoteBold',
2042
+ 'MusicNotesBold',
2043
+ 'MusicNoteSimpleBold',
2044
+ 'MusicNotesPlusBold',
2045
+ 'MusicNotesSimpleBold',
2046
+ 'NavigationArrowBold',
2047
+ 'NeedleBold',
2048
+ 'NewspaperBold',
2049
+ 'NewspaperClippingBold',
2050
+ 'NotchesBold',
2051
+ 'NoteBold',
2052
+ 'NoteBlankBold',
2053
+ 'NotebookBold',
2054
+ 'NotepadBold',
2055
+ 'NotePencilBold',
2056
+ 'NotificationBold',
2057
+ 'NotionLogoBold',
2058
+ 'NumberCircleEightBold',
2059
+ 'NumberCircleFiveBold',
2060
+ 'NumberCircleFourBold',
2061
+ 'NumberCircleNineBold',
2062
+ 'NumberCircleOneBold',
2063
+ 'NumberCircleSevenBold',
2064
+ 'NumberCircleSixBold',
2065
+ 'NumberCircleThreeBold',
2066
+ 'NumberCircleTwoBold',
2067
+ 'NumberCircleZeroBold',
2068
+ 'NumberEightBold',
2069
+ 'NumberFiveBold',
2070
+ 'NumberFourBold',
2071
+ 'NumberNineBold',
2072
+ 'NumberOneBold',
2073
+ 'NumberSevenBold',
2074
+ 'NumberSixBold',
2075
+ 'NumberSquareEightBold',
2076
+ 'NumberSquareFiveBold',
2077
+ 'NumberSquareFourBold',
2078
+ 'NumberSquareNineBold',
2079
+ 'NumberSquareOneBold',
2080
+ 'NumberSquareSevenBold',
2081
+ 'NumberSquareSixBold',
2082
+ 'NumberSquareThreeBold',
2083
+ 'NumberSquareTwoBold',
2084
+ 'NumberSquareZeroBold',
2085
+ 'NumberThreeBold',
2086
+ 'NumberTwoBold',
2087
+ 'NumberZeroBold',
2088
+ 'NutBold',
2089
+ 'NyTimesLogoBold',
2090
+ 'OctagonBold',
2091
+ 'OfficeChairBold',
2092
+ 'OpenaiLogoBold',
2093
+ 'OpenInNewBold',
2094
+ 'OptionBold',
2095
+ 'OrangeSliceBold',
2096
+ 'PackageBold',
2097
+ 'PaintBrushBold',
2098
+ 'PaintBrushBroadBold',
2099
+ 'PaintBrushHouseholdBold',
2100
+ 'PaintBucketBold',
2101
+ 'PaintRollerBold',
2102
+ 'PaletteBold',
2103
+ 'PantsBold',
2104
+ 'PaperclipBold',
2105
+ 'PaperclipHorizontalBold',
2106
+ 'PaperPlaneBold',
2107
+ 'PaperPlaneRightBold',
2108
+ 'PaperPlaneTiltBold',
2109
+ 'ParachuteBold',
2110
+ 'ParagraphBold',
2111
+ 'ParallelogramBold',
2112
+ 'ParkBold',
2113
+ 'PasswordBold',
2114
+ 'PathBold',
2115
+ 'PatreonLogoBold',
2116
+ 'PauseBold',
2117
+ 'PauseCircleBold',
2118
+ 'PawPrintBold',
2119
+ 'PaypalLogoBold',
2120
+ 'PeaceBold',
2121
+ 'PenBold',
2122
+ 'PencilBold',
2123
+ 'PencilCircleBold',
2124
+ 'PencilLineBold',
2125
+ 'PencilSimpleBold',
2126
+ 'PencilSimpleLineBold',
2127
+ 'PencilSimpleSlashBold',
2128
+ 'PencilSlashBold',
2129
+ 'PenNibBold',
2130
+ 'PenNibStraightBold',
2131
+ 'PentagramBold',
2132
+ 'PepperBold',
2133
+ 'PercentBold',
2134
+ 'PersonBold',
2135
+ 'PersonArmsSpreadBold',
2136
+ 'PersonSimpleBold',
2137
+ 'PersonSimpleBikeBold',
2138
+ 'PersonSimpleRunBold',
2139
+ 'PersonSimpleThrowBold',
2140
+ 'PersonSimpleWalkBold',
2141
+ 'PerspectiveBold',
2142
+ 'PhoneBold',
2143
+ 'PhoneCallBold',
2144
+ 'PhoneDisconnectBold',
2145
+ 'PhoneIncomingBold',
2146
+ 'PhoneOutgoingBold',
2147
+ 'PhonePlusBold',
2148
+ 'PhoneSlashBold',
2149
+ 'PhoneXBold',
2150
+ 'PhosphorLogoBold',
2151
+ 'PiBold',
2152
+ 'PianoKeysBold',
2153
+ 'PictureInPictureBold',
2154
+ 'PiggyBankBold',
2155
+ 'PillBold',
2156
+ 'PinterestLogoBold',
2157
+ 'PinwheelBold',
2158
+ 'PizzaBold',
2159
+ 'PlaceholderBold',
2160
+ 'PlanetBold',
2161
+ 'PlantBold',
2162
+ 'PlayBold',
2163
+ 'PlayCircleBold',
2164
+ 'PlaylistBold',
2165
+ 'PlayPauseBold',
2166
+ 'PlugBold',
2167
+ 'PlugChargingBold',
2168
+ 'PlugsBold',
2169
+ 'PlugsConnectedBold',
2170
+ 'PlusBold',
2171
+ 'PlusCircleBold',
2172
+ 'PlusMinusBold',
2173
+ 'PlusSquareBold',
2174
+ 'PokerChipBold',
2175
+ 'PoliceCarBold',
2176
+ 'PolygonBold',
2177
+ 'PopcornBold',
2178
+ 'PottedPlantBold',
2179
+ 'PowerBold',
2180
+ 'PrescriptionBold',
2181
+ 'PresentationBold',
2182
+ 'PresentationChartBold',
2183
+ 'PrinterBold',
2184
+ 'ProhibitBold',
2185
+ 'ProhibitInsetBold',
2186
+ 'ProjectorScreenBold',
2187
+ 'ProjectorScreenChartBold',
2188
+ 'PulseBold',
2189
+ 'PushPinBold',
2190
+ 'PushPinSimpleBold',
2191
+ 'PushPinSimpleSlashBold',
2192
+ 'PushPinSlashBold',
2193
+ 'PuzzlePieceBold',
2194
+ 'QrCodeBold',
2195
+ 'QuestBoxBold',
2196
+ 'QuestBoxHalfBold',
2197
+ 'QuestionBold',
2198
+ 'QueueBold',
2199
+ 'QuotesBold',
2200
+ 'RadicalBold',
2201
+ 'RadioBold',
2202
+ 'RadioactiveBold',
2203
+ 'RadioButtonBold',
2204
+ 'RainbowBold',
2205
+ 'RainbowCloudBold',
2206
+ 'ReadCvLogoBold',
2207
+ 'ReceiptBold',
2208
+ 'ReceiptXBold',
2209
+ 'RecordBold',
2210
+ 'RectangleBold',
2211
+ 'RecycleBold',
2212
+ 'RedditLogoBold',
2213
+ 'RepeatBold',
2214
+ 'RepeatOnceBold',
2215
+ 'RewindBold',
2216
+ 'RewindCircleBold',
2217
+ 'RoadHorizonBold',
2218
+ 'RobotBold',
2219
+ 'RocketBold',
2220
+ 'RocketLaunchBold',
2221
+ 'RowsBold',
2222
+ 'RssBold',
2223
+ 'RssSimpleBold',
2224
+ 'RugBold',
2225
+ 'RulerBold',
2226
+ 'ScalesBold',
2227
+ 'ScanBold',
2228
+ 'ScissorsBold',
2229
+ 'ScooterBold',
2230
+ 'ScreencastBold',
2231
+ 'ScribbleLoopBold',
2232
+ 'ScrollBold',
2233
+ 'SealBold',
2234
+ 'SealCheckBold',
2235
+ 'SealQuestionBold',
2236
+ 'SealWarningBold',
2237
+ 'SelectionBold',
2238
+ 'SelectionAllBold',
2239
+ 'SelectionBackgroundBold',
2240
+ 'SelectionForegroundBold',
2241
+ 'SelectionInverseBold',
2242
+ 'SelectionPlusBold',
2243
+ 'SelectionSlashBold',
2244
+ 'ShapesBold',
2245
+ 'ShareBold',
2246
+ 'ShareFatBold',
2247
+ 'ShareNetworkBold',
2248
+ 'ShieldBold',
2249
+ 'ShieldCheckBold',
2250
+ 'ShieldCheckeredBold',
2251
+ 'ShieldChevronBold',
2252
+ 'ShieldPlusBold',
2253
+ 'ShieldSlashBold',
2254
+ 'ShieldStarBold',
2255
+ 'ShieldWarningBold',
2256
+ 'ShirtFoldedBold',
2257
+ 'ShootingStarBold',
2258
+ 'ShoppingBagBold',
2259
+ 'ShoppingBagOpenBold',
2260
+ 'ShoppingCartBold',
2261
+ 'ShoppingCartSimpleBold',
2262
+ 'ShowerBold',
2263
+ 'ShrimpBold',
2264
+ 'ShuffleBold',
2265
+ 'ShuffleAngularBold',
2266
+ 'ShuffleSimpleBold',
2267
+ 'SidebarBold',
2268
+ 'SidebarSimpleBold',
2269
+ 'SigmaBold',
2270
+ 'SignatureBold',
2271
+ 'SignInBold',
2272
+ 'SignOutBold',
2273
+ 'SignpostBold',
2274
+ 'SimCardBold',
2275
+ 'SirenBold',
2276
+ 'SketchLogoBold',
2277
+ 'SkipBackBold',
2278
+ 'SkipBackCircleBold',
2279
+ 'SkipForwardBold',
2280
+ 'SkipForwardCircleBold',
2281
+ 'SkullBold',
2282
+ 'SlackLogoBold',
2283
+ 'SlidersBold',
2284
+ 'SlidersHorizontalBold',
2285
+ 'SlideshowBold',
2286
+ 'SmileyBold',
2287
+ 'SmileyAngryBold',
2288
+ 'SmileyBlankBold',
2289
+ 'SmileyMehBold',
2290
+ 'SmileyNervousBold',
2291
+ 'SmileySadBold',
2292
+ 'SmileyStickerBold',
2293
+ 'SmileyWinkBold',
2294
+ 'SmileyXEyesBold',
2295
+ 'SnapchatLogoBold',
2296
+ 'SneakerBold',
2297
+ 'SneakerMoveBold',
2298
+ 'SnowflakeBold',
2299
+ 'SoccerBallBold',
2300
+ 'SortAscendingBold',
2301
+ 'SortDescendingBold',
2302
+ 'SoundcloudLogoBold',
2303
+ 'SpadeBold',
2304
+ 'SparkleBold',
2305
+ 'SpeakerHifiBold',
2306
+ 'SpeakerHighBold',
2307
+ 'SpeakerLowBold',
2308
+ 'SpeakerNoneBold',
2309
+ 'SpeakerSimpleHighBold',
2310
+ 'SpeakerSimpleLowBold',
2311
+ 'SpeakerSimpleNoneBold',
2312
+ 'SpeakerSimpleSlashBold',
2313
+ 'SpeakerSimpleXBold',
2314
+ 'SpeakerSlashBold',
2315
+ 'SpeakerXBold',
2316
+ 'SpinnerBold',
2317
+ 'SpinnerGapBold',
2318
+ 'SpiralBold',
2319
+ 'SplitHorizontalBold',
2320
+ 'SplitVerticalBold',
2321
+ 'SpotifyLogoBold',
2322
+ 'SquareBold',
2323
+ 'SquareHalfBold',
2324
+ 'SquareHalfBottomBold',
2325
+ 'SquareLogoBold',
2326
+ 'SquaresFourBold',
2327
+ 'SquareSplitHorizontalBold',
2328
+ 'SquareSplitVerticalBold',
2329
+ 'StackBold',
2330
+ 'StackOverflowLogoBold',
2331
+ 'StackSimpleBold',
2332
+ 'StairsBold',
2333
+ 'StampBold',
2334
+ 'StarBold',
2335
+ 'StarAndCrescentBold',
2336
+ 'StarFourBold',
2337
+ 'StarHalfBold',
2338
+ 'StarOfDavidBold',
2339
+ 'StatsBold',
2340
+ 'SteeringWheelBold',
2341
+ 'StepsBold',
2342
+ 'StethoscopeBold',
2343
+ 'StickerBold',
2344
+ 'StoolBold',
2345
+ 'StopBold',
2346
+ 'StopCircleBold',
2347
+ 'StorefrontBold',
2348
+ 'StrategyBold',
2349
+ 'StripeLogoBold',
2350
+ 'StudentBold',
2351
+ 'SubtitlesBold',
2352
+ 'SubtractBold',
2353
+ 'SubtractSquareBold',
2354
+ 'SuitcaseBold',
2355
+ 'SuitcaseRollingBold',
2356
+ 'SuitcaseSimpleBold',
2357
+ 'SunBold',
2358
+ 'SunDimBold',
2359
+ 'SunglassesBold',
2360
+ 'SunHorizonBold',
2361
+ 'SwapBold',
2362
+ 'SwatchesBold',
2363
+ 'SwimmingPoolBold',
2364
+ 'SwordBold',
2365
+ 'SynagogueBold',
2366
+ 'SyringeBold',
2367
+ 'TableBold',
2368
+ 'TabsBold',
2369
+ 'TagBold',
2370
+ 'TagChevronBold',
2371
+ 'TagSimpleBold',
2372
+ 'TargetBold',
2373
+ 'TaxiBold',
2374
+ 'TelegramLogoBold',
2375
+ 'TelevisionBold',
2376
+ 'TelevisionSimpleBold',
2377
+ 'TennisBallBold',
2378
+ 'TentBold',
2379
+ 'TerminalBold',
2380
+ 'TerminalWindowBold',
2381
+ 'TestTubeBold',
2382
+ 'TextAaBold',
2383
+ 'TextAlignCenterBold',
2384
+ 'TextAlignJustifyBold',
2385
+ 'TextAlignLeftBold',
2386
+ 'TextAlignRightBold',
2387
+ 'TextAUnderlineBold',
2388
+ 'TextBBold',
2389
+ 'TextboxBold',
2390
+ 'TextColumnsBold',
2391
+ 'TextHBold',
2392
+ 'TextHFiveBold',
2393
+ 'TextHFourBold',
2394
+ 'TextHOneBold',
2395
+ 'TextHSixBold',
2396
+ 'TextHThreeBold',
2397
+ 'TextHTwoBold',
2398
+ 'TextIndentBold',
2399
+ 'TextItalicBold',
2400
+ 'TextOutdentBold',
2401
+ 'TextStrikethroughBold',
2402
+ 'TextTBold',
2403
+ 'TextUnderlineBold',
2404
+ 'ThermometerBold',
2405
+ 'ThermometerColdBold',
2406
+ 'ThermometerHotBold',
2407
+ 'ThermometerSimpleBold',
2408
+ 'ThumbsDownBold',
2409
+ 'ThumbsUpBold',
2410
+ 'TicketBold',
2411
+ 'TidalLogoBold',
2412
+ 'TiktokLogoBold',
2413
+ 'TimerBold',
2414
+ 'TipiBold',
2415
+ 'ToggleLeftBold',
2416
+ 'ToggleRightBold',
2417
+ 'ToiletBold',
2418
+ 'ToiletPaperBold',
2419
+ 'ToolboxBold',
2420
+ 'ToothBold',
2421
+ 'ToteBold',
2422
+ 'ToteSimpleBold',
2423
+ 'TrademarkBold',
2424
+ 'TrademarkRegisteredBold',
2425
+ 'TrafficConeBold',
2426
+ 'TrafficSignBold',
2427
+ 'TrafficSignalBold',
2428
+ 'TrainBold',
2429
+ 'TrainRegionalBold',
2430
+ 'TrainSimpleBold',
2431
+ 'TramBold',
2432
+ 'TranslateBold',
2433
+ 'TrashBold',
2434
+ 'TrashSimpleBold',
2435
+ 'TrayBold',
2436
+ 'TreeBold',
2437
+ 'TreeEvergreenBold',
2438
+ 'TreePalmBold',
2439
+ 'TreeStructureBold',
2440
+ 'TrendDownBold',
2441
+ 'TrendUpBold',
2442
+ 'TriangleBold',
2443
+ 'TrophyBold',
2444
+ 'TruckBold',
2445
+ 'TShirtBold',
2446
+ 'TwitchLogoBold',
2447
+ 'TwitterLogoBold',
2448
+ 'UmbrellaBold',
2449
+ 'UmbrellaSimpleBold',
2450
+ 'UniteBold',
2451
+ 'UniteSquareBold',
2452
+ 'UploadBold',
2453
+ 'UploadSimpleBold',
2454
+ 'UsbBold',
2455
+ 'UserBold',
2456
+ 'UserCircleBold',
2457
+ 'UserCircleGearBold',
2458
+ 'UserCircleMinusBold',
2459
+ 'UserCirclePlusBold',
2460
+ 'UserFocusBold',
2461
+ 'UserGearBold',
2462
+ 'UserListBold',
2463
+ 'UserMinusBold',
2464
+ 'UserPlusBold',
2465
+ 'UserRectangleBold',
2466
+ 'UsersBold',
2467
+ 'UsersFourBold',
2468
+ 'UserSquareBold',
2469
+ 'UsersThreeBold',
2470
+ 'UserSwitchBold',
2471
+ 'VanBold',
2472
+ 'VaultBold',
2473
+ 'VibrateBold',
2474
+ 'VideoBold',
2475
+ 'VideoCameraBold',
2476
+ 'VideoCameraSlashBold',
2477
+ 'VignetteBold',
2478
+ 'VinylRecordBold',
2479
+ 'VirtualRealityBold',
2480
+ 'VirusBold',
2481
+ 'VoicemailBold',
2482
+ 'VolleyballBold',
2483
+ 'WallBold',
2484
+ 'WalletBold',
2485
+ 'WarehouseBold',
2486
+ 'WarningBold',
2487
+ 'WarningCircleBold',
2488
+ 'WarningDiamondBold',
2489
+ 'WarningOctagonBold',
2490
+ 'WatchBold',
2491
+ 'WaveformBold',
2492
+ 'WavesBold',
2493
+ 'WaveSawtoothBold',
2494
+ 'WaveSineBold',
2495
+ 'WaveSquareBold',
2496
+ 'WaveTriangleBold',
2497
+ 'WebcamBold',
2498
+ 'WebcamSlashBold',
2499
+ 'WebhooksLogoBold',
2500
+ 'WechatLogoBold',
2501
+ 'WhatsappLogoBold',
2502
+ 'WheelchairBold',
2503
+ 'WheelchairMotionBold',
2504
+ 'WifiHighBold',
2505
+ 'WifiLowBold',
2506
+ 'WifiMediumBold',
2507
+ 'WifiNoneBold',
2508
+ 'WifiSlashBold',
2509
+ 'WifiXBold',
2510
+ 'WindBold',
2511
+ 'WindowsLogoBold',
2512
+ 'WineBold',
2513
+ 'WrenchBold',
2514
+ 'XBold',
2515
+ 'XCircleBold',
2516
+ 'XSquareBold',
2517
+ 'YinYangBold',
2518
+ 'YoutubeLogoBold',
2519
+ 'AutoAwesomeFil',
2520
+ 'BuckFill',
2521
+ 'CalendarRangeFill',
2522
+ 'MicrosoftLogoFill',
2523
+ 'OpenaiLogoFill',
2524
+ 'OpenInNewFill',
2525
+ 'QuestBoxFill',
2526
+ 'QuestBoxHalfFill',
2527
+ 'StatsFill',
2528
+ 'AddressBookFill',
2529
+ 'AirplaneFill',
2530
+ 'AirplaneInFlightFill',
2531
+ 'AirplaneLandingFill',
2532
+ 'AirplaneTakeoffFill',
2533
+ 'AirplaneTiltFill',
2534
+ 'AirplayFill',
2535
+ 'AirTrafficControlFill',
2536
+ 'AlarmFill',
2537
+ 'AlienFill',
2538
+ 'AlignBottomFill',
2539
+ 'AlignBottomSimpleFill',
2540
+ 'AlignCenterHorizontalFill',
2541
+ 'AlignCenterHorizontalSimpleFill',
2542
+ 'AlignCenterVerticalFill',
2543
+ 'AlignCenterVerticalSimpleFill',
2544
+ 'AlignLeftFill',
2545
+ 'AlignLeftSimpleFill',
2546
+ 'AlignRightFill',
2547
+ 'AlignRightSimpleFill',
2548
+ 'AlignTopFill',
2549
+ 'AlignTopSimpleFill',
2550
+ 'AmazonLogoFill',
2551
+ 'AnchorFill',
2552
+ 'AnchorSimpleFill',
2553
+ 'AndroidLogoFill',
2554
+ 'AngularLogoFill',
2555
+ 'ApertureFill',
2556
+ 'AppleLogoFill',
2557
+ 'ApplePodcastsLogoFill',
2558
+ 'AppStoreLogoFill',
2559
+ 'AppWindowFill',
2560
+ 'ArchiveFill',
2561
+ 'ArchiveBoxFill',
2562
+ 'ArchiveTrayFill',
2563
+ 'ArmchairFill',
2564
+ 'ArrowArcLeftFill',
2565
+ 'ArrowArcRightFill',
2566
+ 'ArrowBendDoubleUpLeftFill',
2567
+ 'ArrowBendDoubleUpRightFill',
2568
+ 'ArrowBendDownLeftFill',
2569
+ 'ArrowBendDownRightFill',
2570
+ 'ArrowBendLeftDownFill',
2571
+ 'ArrowBendLeftUpFill',
2572
+ 'ArrowBendRightDownFill',
2573
+ 'ArrowBendRightUpFill',
2574
+ 'ArrowBendUpLeftFill',
2575
+ 'ArrowBendUpRightFill',
2576
+ 'ArrowCircleDownFill',
2577
+ 'ArrowCircleDownLeftFill',
2578
+ 'ArrowCircleDownRightFill',
2579
+ 'ArrowCircleLeftFill',
2580
+ 'ArrowCircleRightFill',
2581
+ 'ArrowCircleUpFill',
2582
+ 'ArrowCircleUpLeftFill',
2583
+ 'ArrowCircleUpRightFill',
2584
+ 'ArrowClockwiseFill',
2585
+ 'ArrowCounterClockwiseFill',
2586
+ 'ArrowDownFill',
2587
+ 'ArrowDownLeftFill',
2588
+ 'ArrowDownRightFill',
2589
+ 'ArrowElbowDownLeftFill',
2590
+ 'ArrowElbowDownRightFill',
2591
+ 'ArrowElbowLeftFill',
2592
+ 'ArrowElbowLeftDownFill',
2593
+ 'ArrowElbowLeftUpFill',
2594
+ 'ArrowElbowRightFill',
2595
+ 'ArrowElbowRightDownFill',
2596
+ 'ArrowElbowRightUpFill',
2597
+ 'ArrowElbowUpLeftFill',
2598
+ 'ArrowElbowUpRightFill',
2599
+ 'ArrowFatDownFill',
2600
+ 'ArrowFatLeftFill',
2601
+ 'ArrowFatLineDownFill',
2602
+ 'ArrowFatLineLeftFill',
2603
+ 'ArrowFatLineRightFill',
2604
+ 'ArrowFatLinesDownFill',
2605
+ 'ArrowFatLinesLeftFill',
2606
+ 'ArrowFatLinesRightFill',
2607
+ 'ArrowFatLinesUpFill',
2608
+ 'ArrowFatLineUpFill',
2609
+ 'ArrowFatRightFill',
2610
+ 'ArrowFatUpFill',
2611
+ 'ArrowLeftFill',
2612
+ 'ArrowLineDownFill',
2613
+ 'ArrowLineDownLeftFill',
2614
+ 'ArrowLineDownRightFill',
2615
+ 'ArrowLineLeftFill',
2616
+ 'ArrowLineRightFill',
2617
+ 'ArrowLineUpFill',
2618
+ 'ArrowLineUpLeftFill',
2619
+ 'ArrowLineUpRightFill',
2620
+ 'ArrowRightFill',
2621
+ 'ArrowsClockwiseFill',
2622
+ 'ArrowsCounterClockwiseFill',
2623
+ 'ArrowsDownUpFill',
2624
+ 'ArrowsHorizontalFill',
2625
+ 'ArrowsInFill',
2626
+ 'ArrowsInCardinalFill',
2627
+ 'ArrowsInLineHorizontalFill',
2628
+ 'ArrowsInLineVerticalFill',
2629
+ 'ArrowsInSimpleFill',
2630
+ 'ArrowsLeftRightFill',
2631
+ 'ArrowsMergeFill',
2632
+ 'ArrowsOutFill',
2633
+ 'ArrowsOutCardinalFill',
2634
+ 'ArrowsOutLineHorizontalFill',
2635
+ 'ArrowsOutLineVerticalFill',
2636
+ 'ArrowsOutSimpleFill',
2637
+ 'ArrowSquareDownFill',
2638
+ 'ArrowSquareDownLeftFill',
2639
+ 'ArrowSquareDownRightFill',
2640
+ 'ArrowSquareInFill',
2641
+ 'ArrowSquareLeftFill',
2642
+ 'ArrowSquareOutFill',
2643
+ 'ArrowSquareRightFill',
2644
+ 'ArrowSquareUpFill',
2645
+ 'ArrowSquareUpLeftFill',
2646
+ 'ArrowSquareUpRightFill',
2647
+ 'ArrowsSplitFill',
2648
+ 'ArrowsVerticalFill',
2649
+ 'ArrowUDownLeftFill',
2650
+ 'ArrowUDownRightFill',
2651
+ 'ArrowULeftDownFill',
2652
+ 'ArrowULeftUpFill',
2653
+ 'ArrowUpFill',
2654
+ 'ArrowUpLeftFill',
2655
+ 'ArrowUpRightFill',
2656
+ 'ArrowURightDownFill',
2657
+ 'ArrowURightUpFill',
2658
+ 'ArrowUUpLeftFill',
2659
+ 'ArrowUUpRightFill',
2660
+ 'ArticleFill',
2661
+ 'ArticleMediumFill',
2662
+ 'ArticleNyTimesFill',
2663
+ 'AsteriskFill',
2664
+ 'AsteriskSimpleFill',
2665
+ 'AtFill',
2666
+ 'AtomFill',
2667
+ 'BabyFill',
2668
+ 'BackpackFill',
2669
+ 'BackspaceFill',
2670
+ 'BagFill',
2671
+ 'BagSimpleFill',
2672
+ 'BalloonFill',
2673
+ 'BandaidsFill',
2674
+ 'BankFill',
2675
+ 'BarbellFill',
2676
+ 'BarcodeFill',
2677
+ 'BarricadeFill',
2678
+ 'BaseballFill',
2679
+ 'BaseballCapFill',
2680
+ 'BasketFill',
2681
+ 'BasketballFill',
2682
+ 'BathtubFill',
2683
+ 'BatteryChargingFill',
2684
+ 'BatteryChargingVerticalFill',
2685
+ 'BatteryEmptyFill',
2686
+ 'BatteryFullFill',
2687
+ 'BatteryHighFill',
2688
+ 'BatteryLowFill',
2689
+ 'BatteryMediumFill',
2690
+ 'BatteryPlusFill',
2691
+ 'BatteryPlusVerticalFill',
2692
+ 'BatteryVerticalEmptyFill',
2693
+ 'BatteryVerticalFullFill',
2694
+ 'BatteryVerticalHighFill',
2695
+ 'BatteryVerticalLowFill',
2696
+ 'BatteryVerticalMediumFill',
2697
+ 'BatteryWarningFill',
2698
+ 'BatteryWarningVerticalFill',
2699
+ 'BedFill',
2700
+ 'BeerBottleFill',
2701
+ 'BeerSteinFill',
2702
+ 'BehanceLogoFill',
2703
+ 'BellFill',
2704
+ 'BellRingingFill',
2705
+ 'BellSimpleFill',
2706
+ 'BellSimpleRingingFill',
2707
+ 'BellSimpleSlashFill',
2708
+ 'BellSimpleZFill',
2709
+ 'BellSlashFill',
2710
+ 'BellZFill',
2711
+ 'BezierCurveFill',
2712
+ 'BicycleFill',
2713
+ 'BinocularsFill',
2714
+ 'BirdFill',
2715
+ 'BluetoothFill',
2716
+ 'BluetoothConnectedFill',
2717
+ 'BluetoothSlashFill',
2718
+ 'BluetoothXFill',
2719
+ 'BoatFill',
2720
+ 'BoneFill',
2721
+ 'BookFill',
2722
+ 'BookBookmarkFill',
2723
+ 'BookmarkFill',
2724
+ 'BookmarksFill',
2725
+ 'BookmarkSimpleFill',
2726
+ 'BookmarksSimpleFill',
2727
+ 'BookOpenFill',
2728
+ 'BookOpenTextFill',
2729
+ 'BooksFill',
2730
+ 'BootFill',
2731
+ 'BoundingBoxFill',
2732
+ 'BowlFoodFill',
2733
+ 'BracketsAngleFill',
2734
+ 'BracketsCurlyFill',
2735
+ 'BracketsRoundFill',
2736
+ 'BracketsSquareFill',
2737
+ 'BrainFill',
2738
+ 'BrandyFill',
2739
+ 'BridgeFill',
2740
+ 'BriefcaseFill',
2741
+ 'BriefcaseMetalFill',
2742
+ 'BroadcastFill',
2743
+ 'BroomFill',
2744
+ 'BrowserFill',
2745
+ 'BrowsersFill',
2746
+ 'BugFill',
2747
+ 'BugBeetleFill',
2748
+ 'BugDroidFill',
2749
+ 'BuildingsFill',
2750
+ 'BusFill',
2751
+ 'ButterflyFill',
2752
+ 'CactusFill',
2753
+ 'CakeFill',
2754
+ 'CalculatorFill',
2755
+ 'CalendarFill',
2756
+ 'CalendarCheckFill',
2757
+ 'CalendarBlankFill',
2758
+ 'CalendarPlusFill',
2759
+ 'CalendarXFill',
2760
+ 'CallBellFill',
2761
+ 'CameraFill',
2762
+ 'CameraPlusFill',
2763
+ 'CameraRotateFill',
2764
+ 'CameraSlashFill',
2765
+ 'CampfireFill',
2766
+ 'CarFill',
2767
+ 'CardholderFill',
2768
+ 'CardsFill',
2769
+ 'CaretCircleDoubleDownFill',
2770
+ 'CaretCircleDoubleLeftFill',
2771
+ 'CaretCircleDoubleRightFill',
2772
+ 'CaretCircleDoubleUpFill',
2773
+ 'CaretCircleDownFill',
2774
+ 'CaretCircleLeftFill',
2775
+ 'CaretCircleRightFill',
2776
+ 'CaretCircleUpFill',
2777
+ 'CaretCircleUpDownFill',
2778
+ 'CaretDoubleDownFill',
2779
+ 'CaretDoubleLeftFill',
2780
+ 'CaretDoubleRightFill',
2781
+ 'CaretDoubleUpFill',
2782
+ 'CaretDownFill',
2783
+ 'CaretLeftFill',
2784
+ 'CaretRightFill',
2785
+ 'CaretUpFill',
2786
+ 'CaretUpDownFill',
2787
+ 'CarProfileFill',
2788
+ 'CarrotFill',
2789
+ 'CarSimpleFill',
2790
+ 'CassetteTapeFill',
2791
+ 'CastleTurretFill',
2792
+ 'CatFill',
2793
+ 'CellSignalFullFill',
2794
+ 'CellSignalHighFill',
2795
+ 'CellSignalLowFill',
2796
+ 'CellSignalMediumFill',
2797
+ 'CellSignalNoneFill',
2798
+ 'CellSignalSlashFill',
2799
+ 'CellSignalXFill',
2800
+ 'CertificateFill',
2801
+ 'ChairFill',
2802
+ 'ChalkboardFill',
2803
+ 'ChalkboardSimpleFill',
2804
+ 'ChalkboardTeacherFill',
2805
+ 'ChampagneFill',
2806
+ 'ChargingStationFill',
2807
+ 'ChartBarFill',
2808
+ 'ChartBarHorizontalFill',
2809
+ 'ChartDonutFill',
2810
+ 'ChartLineFill',
2811
+ 'ChartLineDownFill',
2812
+ 'ChartLineUpFill',
2813
+ 'ChartPieFill',
2814
+ 'ChartPieSliceFill',
2815
+ 'ChartPolarFill',
2816
+ 'ChartScatterFill',
2817
+ 'ChatFill',
2818
+ 'ChatCenteredFill',
2819
+ 'ChatCenteredDotsFill',
2820
+ 'ChatCenteredTextFill',
2821
+ 'ChatCircleFill',
2822
+ 'ChatCircleDotsFill',
2823
+ 'ChatCircleTextFill',
2824
+ 'ChatDotsFill',
2825
+ 'ChatsFill',
2826
+ 'ChatsCircleFill',
2827
+ 'ChatsTeardropFill',
2828
+ 'ChatTeardropFill',
2829
+ 'ChatTeardropDotsFill',
2830
+ 'ChatTeardropTextFill',
2831
+ 'ChatTextFill',
2832
+ 'CheckFill',
2833
+ 'CheckCircleFill',
2834
+ 'CheckFatFill',
2835
+ 'ChecksFill',
2836
+ 'CheckSquareFill',
2837
+ 'CheckSquareOffsetFill',
2838
+ 'ChurchFill',
2839
+ 'CircleFill',
2840
+ 'CircleDashedFill',
2841
+ 'CircleHalfFill',
2842
+ 'CircleHalfTiltFill',
2843
+ 'CircleNotchFill',
2844
+ 'CirclesFourFill',
2845
+ 'CirclesThreeFill',
2846
+ 'CirclesThreePlusFill',
2847
+ 'CircuitryFill',
2848
+ 'ClipboardFill',
2849
+ 'ClipboardTextFill',
2850
+ 'ClockFill',
2851
+ 'ClockAfternoonFill',
2852
+ 'ClockClockwiseFill',
2853
+ 'ClockCountdownFill',
2854
+ 'ClockCounterClockwiseFill',
2855
+ 'ClosedCaptioningFill',
2856
+ 'CloudFill',
2857
+ 'CloudArrowDownFill',
2858
+ 'CloudArrowUpFill',
2859
+ 'CloudCheckFill',
2860
+ 'CloudFogFill',
2861
+ 'CloudLightningFill',
2862
+ 'CloudMoonFill',
2863
+ 'CloudRainFill',
2864
+ 'CloudSlashFill',
2865
+ 'CloudSnowFill',
2866
+ 'CloudSunFill',
2867
+ 'CloudWarningFill',
2868
+ 'CloudXFill',
2869
+ 'ClubFill',
2870
+ 'CoatHangerFill',
2871
+ 'CodaLogoFill',
2872
+ 'CodeFill',
2873
+ 'CodeBlockFill',
2874
+ 'CodepenLogoFill',
2875
+ 'CodesandboxLogoFill',
2876
+ 'CodeSimpleFill',
2877
+ 'CoffeeFill',
2878
+ 'CoinFill',
2879
+ 'CoinsFill',
2880
+ 'CoinVerticalFill',
2881
+ 'ColumnsFill',
2882
+ 'CommandFill',
2883
+ 'CompassFill',
2884
+ 'CompassToolFill',
2885
+ 'ComputerTowerFill',
2886
+ 'ConfettiFill',
2887
+ 'ContactlessPaymentFill',
2888
+ 'ControlFill',
2889
+ 'CookieFill',
2890
+ 'CookingPotFill',
2891
+ 'CopyFill',
2892
+ 'CopyleftFill',
2893
+ 'CopyrightFill',
2894
+ 'CopySimpleFill',
2895
+ 'CornersInFill',
2896
+ 'CornersOutFill',
2897
+ 'CouchFill',
2898
+ 'CpuFill',
2899
+ 'CreditCardFill',
2900
+ 'CropFill',
2901
+ 'CrossFill',
2902
+ 'CrosshairFill',
2903
+ 'CrosshairSimpleFill',
2904
+ 'CrownFill',
2905
+ 'CrownSimpleFill',
2906
+ 'CubeFill',
2907
+ 'CubeFocusFill',
2908
+ 'CubeTransparentFill',
2909
+ 'CurrencyBtcFill',
2910
+ 'CurrencyCircleDollarFill',
2911
+ 'CurrencyCnyFill',
2912
+ 'CurrencyDollarFill',
2913
+ 'CurrencyDollarSimpleFill',
2914
+ 'CurrencyEthFill',
2915
+ 'CurrencyEurFill',
2916
+ 'CurrencyGbpFill',
2917
+ 'CurrencyInrFill',
2918
+ 'CurrencyJpyFill',
2919
+ 'CurrencyKrwFill',
2920
+ 'CurrencyKztFill',
2921
+ 'CurrencyNgnFill',
2922
+ 'CurrencyRubFill',
2923
+ 'CursorFill',
2924
+ 'CursorClickFill',
2925
+ 'CursorTextFill',
2926
+ 'CylinderFill',
2927
+ 'DatabaseFill',
2928
+ 'DesktopFill',
2929
+ 'DesktopTowerFill',
2930
+ 'DetectiveFill',
2931
+ 'DeviceMobileFill',
2932
+ 'DeviceMobileCameraFill',
2933
+ 'DeviceMobileSpeakerFill',
2934
+ 'DevicesFill',
2935
+ 'DeviceTabletFill',
2936
+ 'DeviceTabletCameraFill',
2937
+ 'DeviceTabletSpeakerFill',
2938
+ 'DevToLogoFill',
2939
+ 'DiamondFill',
2940
+ 'DiamondsFourFill',
2941
+ 'DiceFiveFill',
2942
+ 'DiceFourFill',
2943
+ 'DiceOneFill',
2944
+ 'DiceSixFill',
2945
+ 'DiceThreeFill',
2946
+ 'DiceTwoFill',
2947
+ 'DiscFill',
2948
+ 'DiscordLogoFill',
2949
+ 'DivideFill',
2950
+ 'DnaFill',
2951
+ 'DogFill',
2952
+ 'DoorFill',
2953
+ 'DoorOpenFill',
2954
+ 'DotFill',
2955
+ 'DotOutlineFill',
2956
+ 'DotsNineFill',
2957
+ 'DotsSixFill',
2958
+ 'DotsSixVerticalFill',
2959
+ 'DotsThreeFill',
2960
+ 'DotsThreeCircleFill',
2961
+ 'DotsThreeCircleVerticalFill',
2962
+ 'DotsThreeOutlineFill',
2963
+ 'DotsThreeOutlineVerticalFill',
2964
+ 'DotsThreeVerticalFill',
2965
+ 'DownloadFill',
2966
+ 'DownloadSimpleFill',
2967
+ 'DressFill',
2968
+ 'DribbbleLogoFill',
2969
+ 'DropFill',
2970
+ 'DropboxLogoFill',
2971
+ 'DropHalfFill',
2972
+ 'DropHalfBottomFill',
2973
+ 'EarFill',
2974
+ 'EarSlashFill',
2975
+ 'EggFill',
2976
+ 'EggCrackFill',
2977
+ 'EjectFill',
2978
+ 'EjectSimpleFill',
2979
+ 'ElevatorFill',
2980
+ 'EngineFill',
2981
+ 'EnvelopeFill',
2982
+ 'EnvelopeOpenFill',
2983
+ 'EnvelopeSimpleFill',
2984
+ 'EnvelopeSimpleOpenFill',
2985
+ 'EqualizerFill',
2986
+ 'EqualsFill',
2987
+ 'EraserFill',
2988
+ 'EscalatorDownFill',
2989
+ 'EscalatorUpFill',
2990
+ 'ExamFill',
2991
+ 'ExcludeFill',
2992
+ 'ExcludeSquareFill',
2993
+ 'ExportFill',
2994
+ 'EyeFill',
2995
+ 'EyeClosedFill',
2996
+ 'EyedropperFill',
2997
+ 'EyedropperSampleFill',
2998
+ 'EyeglassesFill',
2999
+ 'EyeSlashFill',
3000
+ 'FacebookLogoFill',
3001
+ 'FaceMaskFill',
3002
+ 'FactoryFill',
3003
+ 'FadersFill',
3004
+ 'FadersHorizontalFill',
3005
+ 'FanFill',
3006
+ 'FastForwardFill',
3007
+ 'FastForwardCircleFill',
3008
+ 'FeatherFill',
3009
+ 'FigmaLogoFill',
3010
+ 'FileFill',
3011
+ 'FileArchiveFill',
3012
+ 'FileArrowDownFill',
3013
+ 'FileArrowUpFill',
3014
+ 'FileAudioFill',
3015
+ 'FileCloudFill',
3016
+ 'FileCodeFill',
3017
+ 'FileCssFill',
3018
+ 'FileCsvFill',
3019
+ 'FileDashedFill',
3020
+ 'FileDocFill',
3021
+ 'FileHtmlFill',
3022
+ 'FileImageFill',
3023
+ 'FileJpgFill',
3024
+ 'FileJsFill',
3025
+ 'FileJsxFill',
3026
+ 'FileLockFill',
3027
+ 'FileMinusFill',
3028
+ 'FilePdfFill',
3029
+ 'FilePlusFill',
3030
+ 'FilePngFill',
3031
+ 'FilePptFill',
3032
+ 'FileRsFill',
3033
+ 'FilesFill',
3034
+ 'FileSearchFill',
3035
+ 'FileSqlFill',
3036
+ 'FileSvgFill',
3037
+ 'FileTextFill',
3038
+ 'FileTsFill',
3039
+ 'FileTsxFill',
3040
+ 'FileVideoFill',
3041
+ 'FileVueFill',
3042
+ 'FileXFill',
3043
+ 'FileXlsFill',
3044
+ 'FileZipFill',
3045
+ 'FilmReelFill',
3046
+ 'FilmScriptFill',
3047
+ 'FilmSlateFill',
3048
+ 'FilmStripFill',
3049
+ 'FingerprintFill',
3050
+ 'FingerprintSimpleFill',
3051
+ 'FinnTheHumanFill',
3052
+ 'FireFill',
3053
+ 'FireExtinguisherFill',
3054
+ 'FireSimpleFill',
3055
+ 'FirstAidFill',
3056
+ 'FirstAidKitFill',
3057
+ 'FishFill',
3058
+ 'FishSimpleFill',
3059
+ 'FlagFill',
3060
+ 'FlagBannerFill',
3061
+ 'FlagCheckeredFill',
3062
+ 'FlagPennantFill',
3063
+ 'FlameFill',
3064
+ 'FlashlightFill',
3065
+ 'FlaskFill',
3066
+ 'FloppyDiskFill',
3067
+ 'FloppyDiskBackFill',
3068
+ 'FlowArrowFill',
3069
+ 'FlowerFill',
3070
+ 'FlowerLotusFill',
3071
+ 'FlowerTulipFill',
3072
+ 'FlyingSaucerFill',
3073
+ 'FolderFill',
3074
+ 'FolderDashedFill',
3075
+ 'FolderLockFill',
3076
+ 'FolderMinusFill',
3077
+ 'FolderNotchFill',
3078
+ 'FolderNotchMinusFill',
3079
+ 'FolderNotchOpenFill',
3080
+ 'FolderNotchPlusFill',
3081
+ 'FolderOpenFill',
3082
+ 'FolderPlusFill',
3083
+ 'FoldersFill',
3084
+ 'FolderSimpleFill',
3085
+ 'FolderSimpleDashedFill',
3086
+ 'FolderSimpleLockFill',
3087
+ 'FolderSimpleMinusFill',
3088
+ 'FolderSimplePlusFill',
3089
+ 'FolderSimpleStarFill',
3090
+ 'FolderSimpleUserFill',
3091
+ 'FolderStarFill',
3092
+ 'FolderUserFill',
3093
+ 'FootballFill',
3094
+ 'FootprintsFill',
3095
+ 'ForkKnifeFill',
3096
+ 'FrameCornersFill',
3097
+ 'FramerLogoFill',
3098
+ 'FunctionFill',
3099
+ 'FunnelFill',
3100
+ 'FunnelSimpleFill',
3101
+ 'GameControllerFill',
3102
+ 'GarageFill',
3103
+ 'GasCanFill',
3104
+ 'GasPumpFill',
3105
+ 'GaugeFill',
3106
+ 'GavelFill',
3107
+ 'GearFill',
3108
+ 'GearFineFill',
3109
+ 'GearSixFill',
3110
+ 'GenderFemaleFill',
3111
+ 'GenderIntersexFill',
3112
+ 'GenderMaleFill',
3113
+ 'GenderNeuterFill',
3114
+ 'GenderNonbinaryFill',
3115
+ 'GenderTransgenderFill',
3116
+ 'GhostFill',
3117
+ 'GifFill',
3118
+ 'GiftFill',
3119
+ 'GitBranchFill',
3120
+ 'GitCommitFill',
3121
+ 'GitDiffFill',
3122
+ 'GitForkFill',
3123
+ 'GithubLogoFill',
3124
+ 'GitlabLogoFill',
3125
+ 'GitlabLogoSimpleFill',
3126
+ 'GitMergeFill',
3127
+ 'GitPullRequestFill',
3128
+ 'GlobeFill',
3129
+ 'GlobeHemisphereEastFill',
3130
+ 'GlobeHemisphereWestFill',
3131
+ 'GlobeSimpleFill',
3132
+ 'GlobeStandFill',
3133
+ 'GogglesFill',
3134
+ 'GoodreadsLogoFill',
3135
+ 'GoogleCardboardLogoFill',
3136
+ 'GoogleChromeLogoFill',
3137
+ 'GoogleDriveLogoFill',
3138
+ 'GoogleLogoFill',
3139
+ 'GooglePhotosLogoFill',
3140
+ 'GooglePlayLogoFill',
3141
+ 'GooglePodcastsLogoFill',
3142
+ 'GradientFill',
3143
+ 'GraduationCapFill',
3144
+ 'GrainsFill',
3145
+ 'GrainsSlashFill',
3146
+ 'GraphFill',
3147
+ 'GridFourFill',
3148
+ 'GridNineFill',
3149
+ 'GuitarFill',
3150
+ 'HamburgerFill',
3151
+ 'HammerFill',
3152
+ 'HandFill',
3153
+ 'HandbagFill',
3154
+ 'HandbagSimpleFill',
3155
+ 'HandCoinsFill',
3156
+ 'HandEyeFill',
3157
+ 'HandFistFill',
3158
+ 'HandGrabbingFill',
3159
+ 'HandHeartFill',
3160
+ 'HandPalmFill',
3161
+ 'HandPointingFill',
3162
+ 'HandsClappingFill',
3163
+ 'HandshakeFill',
3164
+ 'HandSoapFill',
3165
+ 'HandsPrayingFill',
3166
+ 'HandSwipeLeftFill',
3167
+ 'HandSwipeRightFill',
3168
+ 'HandTapFill',
3169
+ 'HandWavingFill',
3170
+ 'HardDriveFill',
3171
+ 'HardDrivesFill',
3172
+ 'HashFill',
3173
+ 'HashStraightFill',
3174
+ 'HeadlightsFill',
3175
+ 'HeadphonesFill',
3176
+ 'HeadsetFill',
3177
+ 'HeartFill',
3178
+ 'HeartbeatFill',
3179
+ 'HeartBreakFill',
3180
+ 'HeartHalfFill',
3181
+ 'HeartStraightFill',
3182
+ 'HeartStraightBreakFill',
3183
+ 'HexagonFill',
3184
+ 'HighHeelFill',
3185
+ 'HighlighterCircleFill',
3186
+ 'HoodieFill',
3187
+ 'HorseFill',
3188
+ 'HourglassFill',
3189
+ 'HourglassHighFill',
3190
+ 'HourglassLowFill',
3191
+ 'HourglassMediumFill',
3192
+ 'HourglassSimpleFill',
3193
+ 'HourglassSimpleHighFill',
3194
+ 'HourglassSimpleLowFill',
3195
+ 'HourglassSimpleMediumFill',
3196
+ 'HouseFill',
3197
+ 'HouseLineFill',
3198
+ 'HouseSimpleFill',
3199
+ 'IceCreamFill',
3200
+ 'IdentificationBadgeFill',
3201
+ 'IdentificationCardFill',
3202
+ 'ImageFill',
3203
+ 'ImagesFill',
3204
+ 'ImageSquareFill',
3205
+ 'ImagesSquareFill',
3206
+ 'InfinityFill',
3207
+ 'InfoFill',
3208
+ 'InstagramLogoFill',
3209
+ 'IntersectFill',
3210
+ 'IntersectSquareFill',
3211
+ 'IntersectThreeFill',
3212
+ 'JeepFill',
3213
+ 'KanbanFill',
3214
+ 'KeyFill',
3215
+ 'KeyboardFill',
3216
+ 'KeyholeFill',
3217
+ 'KeyReturnFill',
3218
+ 'KnifeFill',
3219
+ 'LadderFill',
3220
+ 'LadderSimpleFill',
3221
+ 'LampFill',
3222
+ 'LaptopFill',
3223
+ 'LayoutFill',
3224
+ 'LeafFill',
3225
+ 'LifebuoyFill',
3226
+ 'LightbulbFill',
3227
+ 'LightbulbFilamentFill',
3228
+ 'LighthouseFill',
3229
+ 'LightningFill',
3230
+ 'LightningAFill',
3231
+ 'LightningSlashFill',
3232
+ 'LineSegmentFill',
3233
+ 'LineSegmentsFill',
3234
+ 'LinkFill',
3235
+ 'LinkBreakFill',
3236
+ 'LinkedinLogoFill',
3237
+ 'LinkSimpleFill',
3238
+ 'LinkSimpleBreakFill',
3239
+ 'LinkSimpleHorizontalFill',
3240
+ 'LinkSimpleHorizontalBreakFill',
3241
+ 'LinuxLogoFill',
3242
+ 'ListFill',
3243
+ 'ListBulletsFill',
3244
+ 'ListChecksFill',
3245
+ 'ListDashesFill',
3246
+ 'ListMagnifyingGlassFill',
3247
+ 'ListNumbersFill',
3248
+ 'ListPlusFill',
3249
+ 'LockFill',
3250
+ 'LockersFill',
3251
+ 'LockKeyFill',
3252
+ 'LockKeyOpenFill',
3253
+ 'LockLaminatedFill',
3254
+ 'LockLaminatedOpenFill',
3255
+ 'LockOpenFill',
3256
+ 'LockSimpleFill',
3257
+ 'LockSimpleOpenFill',
3258
+ 'MagicWandFill',
3259
+ 'MagnetFill',
3260
+ 'MagnetStraightFill',
3261
+ 'MagnifyingGlassFill',
3262
+ 'MagnifyingGlassMinusFill',
3263
+ 'MagnifyingGlassPlusFill',
3264
+ 'MapPinFill',
3265
+ 'MapPinLineFill',
3266
+ 'MapTrifoldFill',
3267
+ 'MarkerCircleFill',
3268
+ 'MartiniFill',
3269
+ 'MaskHappyFill',
3270
+ 'MaskSadFill',
3271
+ 'MathOperationsFill',
3272
+ 'MedalFill',
3273
+ 'MedalMilitaryFill',
3274
+ 'MediumLogoFill',
3275
+ 'MegaphoneFill',
3276
+ 'MegaphoneSimpleFill',
3277
+ 'MessengerLogoFill',
3278
+ 'MetaLogoFill',
3279
+ 'MetronomeFill',
3280
+ 'MicrophoneFill',
3281
+ 'MicrophoneSlashFill',
3282
+ 'MicrophoneStageFill',
3283
+ 'MicrosoftExcelLogoFill',
3284
+ 'MicrosoftOutlookLogoFill',
3285
+ 'MicrosoftPowerpointLogoFill',
3286
+ 'MicrosoftTeamsLogoFill',
3287
+ 'MicrosoftWordLogoFill',
3288
+ 'MinusFill',
3289
+ 'MinusCircleFill',
3290
+ 'MinusSquareFill',
3291
+ 'MoneyFill',
3292
+ 'MonitorFill',
3293
+ 'MonitorPlayFill',
3294
+ 'MoonFill',
3295
+ 'MoonStarsFill',
3296
+ 'MopedFill',
3297
+ 'MopedFrontFill',
3298
+ 'MosqueFill',
3299
+ 'MotorcycleFill',
3300
+ 'MountainsFill',
3301
+ 'MouseFill',
3302
+ 'MouseSimpleFill',
3303
+ 'MusicNoteFill',
3304
+ 'MusicNotesFill',
3305
+ 'MusicNoteSimpleFill',
3306
+ 'MusicNotesPlusFill',
3307
+ 'MusicNotesSimpleFill',
3308
+ 'NavigationArrowFill',
3309
+ 'NeedleFill',
3310
+ 'NewspaperFill',
3311
+ 'NewspaperClippingFill',
3312
+ 'NotchesFill',
3313
+ 'NoteFill',
3314
+ 'NoteBlankFill',
3315
+ 'NotebookFill',
3316
+ 'NotepadFill',
3317
+ 'NotePencilFill',
3318
+ 'NotificationFill',
3319
+ 'NotionLogoFill',
3320
+ 'NumberCircleEightFill',
3321
+ 'NumberCircleFiveFill',
3322
+ 'NumberCircleFourFill',
3323
+ 'NumberCircleNineFill',
3324
+ 'NumberCircleOneFill',
3325
+ 'NumberCircleSevenFill',
3326
+ 'NumberCircleSixFill',
3327
+ 'NumberCircleThreeFill',
3328
+ 'NumberCircleTwoFill',
3329
+ 'NumberCircleZeroFill',
3330
+ 'NumberEightFill',
3331
+ 'NumberFiveFill',
3332
+ 'NumberFourFill',
3333
+ 'NumberNineFill',
3334
+ 'NumberOneFill',
3335
+ 'NumberSevenFill',
3336
+ 'NumberSixFill',
3337
+ 'NumberSquareEightFill',
3338
+ 'NumberSquareFiveFill',
3339
+ 'NumberSquareFourFill',
3340
+ 'NumberSquareNineFill',
3341
+ 'NumberSquareOneFill',
3342
+ 'NumberSquareSevenFill',
3343
+ 'NumberSquareSixFill',
3344
+ 'NumberSquareThreeFill',
3345
+ 'NumberSquareTwoFill',
3346
+ 'NumberSquareZeroFill',
3347
+ 'NumberThreeFill',
3348
+ 'NumberTwoFill',
3349
+ 'NumberZeroFill',
3350
+ 'NutFill',
3351
+ 'NyTimesLogoFill',
3352
+ 'OctagonFill',
3353
+ 'OfficeChairFill',
3354
+ 'OptionFill',
3355
+ 'OrangeSliceFill',
3356
+ 'PackageFill',
3357
+ 'PaintBrushFill',
3358
+ 'PaintBrushBroadFill',
3359
+ 'PaintBrushHouseholdFill',
3360
+ 'PaintBucketFill',
3361
+ 'PaintRollerFill',
3362
+ 'PaletteFill',
3363
+ 'PantsFill',
3364
+ 'PaperclipFill',
3365
+ 'PaperclipHorizontalFill',
3366
+ 'PaperPlaneFill',
3367
+ 'PaperPlaneRightFill',
3368
+ 'PaperPlaneTiltFill',
3369
+ 'ParachuteFill',
3370
+ 'ParagraphFill',
3371
+ 'ParallelogramFill',
3372
+ 'ParkFill',
3373
+ 'PasswordFill',
3374
+ 'PathFill',
3375
+ 'PatreonLogoFill',
3376
+ 'PauseFill',
3377
+ 'PauseCircleFill',
3378
+ 'PawPrintFill',
3379
+ 'PaypalLogoFill',
3380
+ 'PeaceFill',
3381
+ 'PenFill',
3382
+ 'PencilFill',
3383
+ 'PencilCircleFill',
3384
+ 'PencilLineFill',
3385
+ 'PencilSimpleFill',
3386
+ 'PencilSimpleLineFill',
3387
+ 'PencilSimpleSlashFill',
3388
+ 'PencilSlashFill',
3389
+ 'PenNibFill',
3390
+ 'PenNibStraightFill',
3391
+ 'PentagramFill',
3392
+ 'PepperFill',
3393
+ 'PercentFill',
3394
+ 'PersonFill',
3395
+ 'PersonArmsSpreadFill',
3396
+ 'PersonSimpleFill',
3397
+ 'PersonSimpleBikeFill',
3398
+ 'PersonSimpleRunFill',
3399
+ 'PersonSimpleThrowFill',
3400
+ 'PersonSimpleWalkFill',
3401
+ 'PerspectiveFill',
3402
+ 'PhoneFill',
3403
+ 'PhoneCallFill',
3404
+ 'PhoneDisconnectFill',
3405
+ 'PhoneIncomingFill',
3406
+ 'PhoneOutgoingFill',
3407
+ 'PhonePlusFill',
3408
+ 'PhoneSlashFill',
3409
+ 'PhoneXFill',
3410
+ 'PhosphorLogoFill',
3411
+ 'PiFill',
3412
+ 'PianoKeysFill',
3413
+ 'PictureInPictureFill',
3414
+ 'PiggyBankFill',
3415
+ 'PillFill',
3416
+ 'PinterestLogoFill',
3417
+ 'PinwheelFill',
3418
+ 'PizzaFill',
3419
+ 'PlaceholderFill',
3420
+ 'PlanetFill',
3421
+ 'PlantFill',
3422
+ 'PlayFill',
3423
+ 'PlayCircleFill',
3424
+ 'PlaylistFill',
3425
+ 'PlayPauseFill',
3426
+ 'PlugFill',
3427
+ 'PlugChargingFill',
3428
+ 'PlugsFill',
3429
+ 'PlugsConnectedFill',
3430
+ 'PlusFill',
3431
+ 'PlusCircleFill',
3432
+ 'PlusMinusFill',
3433
+ 'PlusSquareFill',
3434
+ 'PokerChipFill',
3435
+ 'PoliceCarFill',
3436
+ 'PolygonFill',
3437
+ 'PopcornFill',
3438
+ 'PottedPlantFill',
3439
+ 'PowerFill',
3440
+ 'PrescriptionFill',
3441
+ 'PresentationFill',
3442
+ 'PresentationChartFill',
3443
+ 'PrinterFill',
3444
+ 'ProhibitFill',
3445
+ 'ProhibitInsetFill',
3446
+ 'ProjectorScreenFill',
3447
+ 'ProjectorScreenChartFill',
3448
+ 'PulseFill',
3449
+ 'PushPinFill',
3450
+ 'PushPinSimpleFill',
3451
+ 'PushPinSimpleSlashFill',
3452
+ 'PushPinSlashFill',
3453
+ 'PuzzlePieceFill',
3454
+ 'QrCodeFill',
3455
+ 'QuestionFill',
3456
+ 'QueueFill',
3457
+ 'QuotesFill',
3458
+ 'RadicalFill',
3459
+ 'RadioFill',
3460
+ 'RadioactiveFill',
3461
+ 'RadioButtonFill',
3462
+ 'RainbowFill',
3463
+ 'RainbowCloudFill',
3464
+ 'ReadCvLogoFill',
3465
+ 'ReceiptFill',
3466
+ 'ReceiptXFill',
3467
+ 'RecordFill',
3468
+ 'RectangleFill',
3469
+ 'RecycleFill',
3470
+ 'RedditLogoFill',
3471
+ 'RepeatFill',
3472
+ 'RepeatOnceFill',
3473
+ 'RewindFill',
3474
+ 'RewindCircleFill',
3475
+ 'RoadHorizonFill',
3476
+ 'RobotFill',
3477
+ 'RocketFill',
3478
+ 'RocketLaunchFill',
3479
+ 'RowsFill',
3480
+ 'RssFill',
3481
+ 'RssSimpleFill',
3482
+ 'RugFill',
3483
+ 'RulerFill',
3484
+ 'ScalesFill',
3485
+ 'ScanFill',
3486
+ 'ScissorsFill',
3487
+ 'ScooterFill',
3488
+ 'ScreencastFill',
3489
+ 'ScribbleLoopFill',
3490
+ 'ScrollFill',
3491
+ 'SealFill',
3492
+ 'SealCheckFill',
3493
+ 'SealQuestionFill',
3494
+ 'SealWarningFill',
3495
+ 'SelectionFill',
3496
+ 'SelectionAllFill',
3497
+ 'SelectionBackgroundFill',
3498
+ 'SelectionForegroundFill',
3499
+ 'SelectionInverseFill',
3500
+ 'SelectionPlusFill',
3501
+ 'SelectionSlashFill',
3502
+ 'ShapesFill',
3503
+ 'ShareFill',
3504
+ 'ShareFatFill',
3505
+ 'ShareNetworkFill',
3506
+ 'ShieldFill',
3507
+ 'ShieldCheckFill',
3508
+ 'ShieldCheckeredFill',
3509
+ 'ShieldChevronFill',
3510
+ 'ShieldPlusFill',
3511
+ 'ShieldSlashFill',
3512
+ 'ShieldStarFill',
3513
+ 'ShieldWarningFill',
3514
+ 'ShirtFoldedFill',
3515
+ 'ShootingStarFill',
3516
+ 'ShoppingBagFill',
3517
+ 'ShoppingBagOpenFill',
3518
+ 'ShoppingCartFill',
3519
+ 'ShoppingCartSimpleFill',
3520
+ 'ShowerFill',
3521
+ 'ShrimpFill',
3522
+ 'ShuffleFill',
3523
+ 'ShuffleAngularFill',
3524
+ 'ShuffleSimpleFill',
3525
+ 'SidebarFill',
3526
+ 'SidebarSimpleFill',
3527
+ 'SigmaFill',
3528
+ 'SignatureFill',
3529
+ 'SignInFill',
3530
+ 'SignOutFill',
3531
+ 'SignpostFill',
3532
+ 'SimCardFill',
3533
+ 'SirenFill',
3534
+ 'SketchLogoFill',
3535
+ 'SkipBackFill',
3536
+ 'SkipBackCircleFill',
3537
+ 'SkipForwardFill',
3538
+ 'SkipForwardCircleFill',
3539
+ 'SkullFill',
3540
+ 'SlackLogoFill',
3541
+ 'SlidersFill',
3542
+ 'SlidersHorizontalFill',
3543
+ 'SlideshowFill',
3544
+ 'SmileyFill',
3545
+ 'SmileyAngryFill',
3546
+ 'SmileyBlankFill',
3547
+ 'SmileyMehFill',
3548
+ 'SmileyNervousFill',
3549
+ 'SmileySadFill',
3550
+ 'SmileyStickerFill',
3551
+ 'SmileyWinkFill',
3552
+ 'SmileyXEyesFill',
3553
+ 'SnapchatLogoFill',
3554
+ 'SneakerFill',
3555
+ 'SneakerMoveFill',
3556
+ 'SnowflakeFill',
3557
+ 'SoccerBallFill',
3558
+ 'SortAscendingFill',
3559
+ 'SortDescendingFill',
3560
+ 'SoundcloudLogoFill',
3561
+ 'SpadeFill',
3562
+ 'SparkleFill',
3563
+ 'SpeakerHifiFill',
3564
+ 'SpeakerHighFill',
3565
+ 'SpeakerLowFill',
3566
+ 'SpeakerNoneFill',
3567
+ 'SpeakerSimpleHighFill',
3568
+ 'SpeakerSimpleLowFill',
3569
+ 'SpeakerSimpleNoneFill',
3570
+ 'SpeakerSimpleSlashFill',
3571
+ 'SpeakerSimpleXFill',
3572
+ 'SpeakerSlashFill',
3573
+ 'SpeakerXFill',
3574
+ 'SpinnerFill',
3575
+ 'SpinnerGapFill',
3576
+ 'SpiralFill',
3577
+ 'SplitHorizontalFill',
3578
+ 'SplitVerticalFill',
3579
+ 'SpotifyLogoFill',
3580
+ 'SquareFill',
3581
+ 'SquareHalfFill',
3582
+ 'SquareHalfBottomFill',
3583
+ 'SquareLogoFill',
3584
+ 'SquaresFourFill',
3585
+ 'SquareSplitHorizontalFill',
3586
+ 'SquareSplitVerticalFill',
3587
+ 'StackFill',
3588
+ 'StackOverflowLogoFill',
3589
+ 'StackSimpleFill',
3590
+ 'StairsFill',
3591
+ 'StampFill',
3592
+ 'StarFill',
3593
+ 'StarAndCrescentFill',
3594
+ 'StarFourFill',
3595
+ 'StarHalfFill',
3596
+ 'StarOfDavidFill',
3597
+ 'SteeringWheelFill',
3598
+ 'StepsFill',
3599
+ 'StethoscopeFill',
3600
+ 'StickerFill',
3601
+ 'StoolFill',
3602
+ 'StopFill',
3603
+ 'StopCircleFill',
3604
+ 'StorefrontFill',
3605
+ 'StrategyFill',
3606
+ 'StripeLogoFill',
3607
+ 'StudentFill',
3608
+ 'SubtitlesFill',
3609
+ 'SubtractFill',
3610
+ 'SubtractSquareFill',
3611
+ 'SuitcaseFill',
3612
+ 'SuitcaseRollingFill',
3613
+ 'SuitcaseSimpleFill',
3614
+ 'SunFill',
3615
+ 'SunDimFill',
3616
+ 'SunglassesFill',
3617
+ 'SunHorizonFill',
3618
+ 'SwapFill',
3619
+ 'SwatchesFill',
3620
+ 'SwimmingPoolFill',
3621
+ 'SwordFill',
3622
+ 'SynagogueFill',
3623
+ 'SyringeFill',
3624
+ 'TableFill',
3625
+ 'TabsFill',
3626
+ 'TagFill',
3627
+ 'TagChevronFill',
3628
+ 'TagSimpleFill',
3629
+ 'TargetFill',
3630
+ 'TaxiFill',
3631
+ 'TelegramLogoFill',
3632
+ 'TelevisionFill',
3633
+ 'TelevisionSimpleFill',
3634
+ 'TennisBallFill',
3635
+ 'TentFill',
3636
+ 'TerminalFill',
3637
+ 'TerminalWindowFill',
3638
+ 'TestTubeFill',
3639
+ 'TextAaFill',
3640
+ 'TextAlignCenterFill',
3641
+ 'TextAlignJustifyFill',
3642
+ 'TextAlignLeftFill',
3643
+ 'TextAlignRightFill',
3644
+ 'TextAUnderlineFill',
3645
+ 'TextBFill',
3646
+ 'TextboxFill',
3647
+ 'TextColumnsFill',
3648
+ 'TextHFill',
3649
+ 'TextHFiveFill',
3650
+ 'TextHFourFill',
3651
+ 'TextHOneFill',
3652
+ 'TextHSixFill',
3653
+ 'TextHThreeFill',
3654
+ 'TextHTwoFill',
3655
+ 'TextIndentFill',
3656
+ 'TextItalicFill',
3657
+ 'TextOutdentFill',
3658
+ 'TextStrikethroughFill',
3659
+ 'TextTFill',
3660
+ 'TextUnderlineFill',
3661
+ 'ThermometerFill',
3662
+ 'ThermometerColdFill',
3663
+ 'ThermometerHotFill',
3664
+ 'ThermometerSimpleFill',
3665
+ 'ThumbsDownFill',
3666
+ 'ThumbsUpFill',
3667
+ 'TicketFill',
3668
+ 'TidalLogoFill',
3669
+ 'TiktokLogoFill',
3670
+ 'TimerFill',
3671
+ 'TipiFill',
3672
+ 'ToggleLeftFill',
3673
+ 'ToggleRightFill',
3674
+ 'ToiletFill',
3675
+ 'ToiletPaperFill',
3676
+ 'ToolboxFill',
3677
+ 'ToothFill',
3678
+ 'ToteFill',
3679
+ 'ToteSimpleFill',
3680
+ 'TrademarkFill',
3681
+ 'TrademarkRegisteredFill',
3682
+ 'TrafficConeFill',
3683
+ 'TrafficSignFill',
3684
+ 'TrafficSignalFill',
3685
+ 'TrainFill',
3686
+ 'TrainRegionalFill',
3687
+ 'TrainSimpleFill',
3688
+ 'TramFill',
3689
+ 'TranslateFill',
3690
+ 'TrashFill',
3691
+ 'TrashSimpleFill',
3692
+ 'TrayFill',
3693
+ 'TreeFill',
3694
+ 'TreeEvergreenFill',
3695
+ 'TreePalmFill',
3696
+ 'TreeStructureFill',
3697
+ 'TrendDownFill',
3698
+ 'TrendUpFill',
3699
+ 'TriangleFill',
3700
+ 'TrophyFill',
3701
+ 'TruckFill',
3702
+ 'TShirtFill',
3703
+ 'TwitchLogoFill',
3704
+ 'TwitterLogoFill',
3705
+ 'UmbrellaFill',
3706
+ 'UmbrellaSimpleFill',
3707
+ 'UniteFill',
3708
+ 'UniteSquareFill',
3709
+ 'UploadFill',
3710
+ 'UploadSimpleFill',
3711
+ 'UsbFill',
3712
+ 'UserFill',
3713
+ 'UserCircleFill',
3714
+ 'UserCircleGearFill',
3715
+ 'UserCircleMinusFill',
3716
+ 'UserCirclePlusFill',
3717
+ 'UserFocusFill',
3718
+ 'UserGearFill',
3719
+ 'UserListFill',
3720
+ 'UserMinusFill',
3721
+ 'UserPlusFill',
3722
+ 'UserRectangleFill',
3723
+ 'UsersFill',
3724
+ 'UsersFourFill',
3725
+ 'UserSquareFill',
3726
+ 'UsersThreeFill',
3727
+ 'UserSwitchFill',
3728
+ 'VanFill',
3729
+ 'VaultFill',
3730
+ 'VibrateFill',
3731
+ 'VideoFill',
3732
+ 'VideoCameraFill',
3733
+ 'VideoCameraSlashFill',
3734
+ 'VignetteFill',
3735
+ 'VinylRecordFill',
3736
+ 'VirtualRealityFill',
3737
+ 'VirusFill',
3738
+ 'VoicemailFill',
3739
+ 'VolleyballFill',
3740
+ 'WallFill',
3741
+ 'WalletFill',
3742
+ 'WarehouseFill',
3743
+ 'WarningFill',
3744
+ 'WarningCircleFill',
3745
+ 'WarningDiamondFill',
3746
+ 'WarningOctagonFill',
3747
+ 'WatchFill',
3748
+ 'WaveformFill',
3749
+ 'WavesFill',
3750
+ 'WaveSawtoothFill',
3751
+ 'WaveSineFill',
3752
+ 'WaveSquareFill',
3753
+ 'WaveTriangleFill',
3754
+ 'WebcamFill',
3755
+ 'WebcamSlashFill',
3756
+ 'WebhooksLogoFill',
3757
+ 'WechatLogoFill',
3758
+ 'WhatsappLogoFill',
3759
+ 'WheelchairFill',
3760
+ 'WheelchairMotionFill',
3761
+ 'WifiHighFill',
3762
+ 'WifiLowFill',
3763
+ 'WifiMediumFill',
3764
+ 'WifiNoneFill',
3765
+ 'WifiSlashFill',
3766
+ 'WifiXFill',
3767
+ 'WindFill',
3768
+ 'WindowsLogoFill',
3769
+ 'WineFill',
3770
+ 'WrenchFill',
3771
+ 'XFill',
3772
+ 'XCircleFill',
3773
+ 'XSquareFill',
3774
+ 'YinYangFill',
3775
+ 'YoutubeLogoFill',
3776
+ ];
3777
+ const Ico = createIconSetFromIcoMoon(collectingFontIconSelection, 'cpk', require('./cpk.ttf'));
3778
+ export const Icon = styled(Ico) `
3779
+ color: ${({ theme, color }) => color || theme.text.basic};
3780
+ `;