@workbuddy/piece-workbuddy-vnext 1.0.106 → 1.0.108
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/lib/actions/jobs-contacts.d.ts +4 -0
- package/src/lib/actions/jobs-contacts.d.ts.map +1 -1
- package/src/lib/actions/jobs-contacts.js +36 -2
- package/src/lib/actions/jobs-contacts.js.map +1 -1
- package/src/lib/actions/jobs-contacts.ts +39 -2
- package/src/lib/actions/settings-reference-data.d.ts +1 -0
- package/src/lib/actions/settings-reference-data.d.ts.map +1 -1
- package/src/lib/actions/settings-reference-data.js +1405 -2
- package/src/lib/actions/settings-reference-data.js.map +1 -1
- package/src/lib/actions/settings-reference-data.ts +1405 -2
|
@@ -314,7 +314,7 @@ exports.PublicApiTagController_list = (0, pieces_framework_1.createAction)({
|
|
|
314
314
|
name: 'PublicApiTagController_list',
|
|
315
315
|
auth: auth_1.workbuddyAuth,
|
|
316
316
|
displayName: 'List tags',
|
|
317
|
-
description: 'Retrieve all active tags (labels) configured. Use the optional `type` query parameter to filter by label type. Defaults to `job` if not specified. `colors` is the Settings label-picker palette used by PUT /settings/tags. Supported types: job, scheduling, quote, customer, user, overheads, form, finance, system, work-order-system, account, contact, zone, work-categories, lead-source, lead, opportunity, opportunity-lost, project, project-type, payment-type, file, asset, item-location, task, phase, site, service-type, service-scope, subscriptions, agreement, work, integration-types, flag-category.',
|
|
317
|
+
description: 'Retrieve all active tags (labels) configured. Use the optional `type` query parameter to filter by label type. Defaults to `job` if not specified. `colors` is the Settings label-picker palette used by PUT /settings/tags for non-service-type tags. `icons` is the Settings icon-picker names used by PUT /settings/tags for service-type. Supported types: job, scheduling, quote, customer, user, overheads, form, finance, system, work-order-system, account, contact, zone, work-categories, lead-source, lead, opportunity, opportunity-lost, project, project-type, payment-type, file, asset, item-location, task, phase, site, service-type, service-scope, subscriptions, agreement, work, integration-types, flag-category.',
|
|
318
318
|
props: {},
|
|
319
319
|
async run(context) {
|
|
320
320
|
const token = await (0, auth_1.getAccessToken)(context.auth);
|
|
@@ -336,7 +336,7 @@ exports.PublicApiTagController_upsert = (0, pieces_framework_1.createAction)({
|
|
|
336
336
|
name: 'PublicApiTagController_upsert',
|
|
337
337
|
auth: auth_1.workbuddyAuth,
|
|
338
338
|
displayName: 'Upsert a tag',
|
|
339
|
-
description: 'Create a tag, or return the existing active tag with the same type and name (case-insensitive). Limited to service-type, service-scope, and work-categories.
|
|
339
|
+
description: 'Create a tag, or return the existing active tag with the same type and name (case-insensitive). Limited to service-type, service-scope, and work-categories. service-type uses icon (Settings icon-picker name; omitted on create → tag) and rejects color. Other types use color (Settings palette hex; omitted on create → hashed from the name) and reject icon. A sent icon or color is written onto an existing match; omitted leaves the stored visual. Invalid palette hex or icon name → 400. Requires settings:tags:write — not settings:write.',
|
|
340
340
|
props: {
|
|
341
341
|
type: pieces_framework_1.Property.StaticDropdown({
|
|
342
342
|
displayName: 'Type',
|
|
@@ -389,6 +389,1408 @@ exports.PublicApiTagController_upsert = (0, pieces_framework_1.createAction)({
|
|
|
389
389
|
],
|
|
390
390
|
},
|
|
391
391
|
}),
|
|
392
|
+
icon: pieces_framework_1.Property.StaticDropdown({
|
|
393
|
+
displayName: 'Icon',
|
|
394
|
+
description: '',
|
|
395
|
+
required: false,
|
|
396
|
+
options: {
|
|
397
|
+
options: [
|
|
398
|
+
{ label: '0', value: '0' },
|
|
399
|
+
{ label: '1', value: '1' },
|
|
400
|
+
{ label: '2', value: '2' },
|
|
401
|
+
{ label: '3', value: '3' },
|
|
402
|
+
{ label: '4', value: '4' },
|
|
403
|
+
{ label: '5', value: '5' },
|
|
404
|
+
{ label: '6', value: '6' },
|
|
405
|
+
{ label: '7', value: '7' },
|
|
406
|
+
{ label: '8', value: '8' },
|
|
407
|
+
{ label: '9', value: '9' },
|
|
408
|
+
{ label: 'electrical-safety', value: 'electrical-safety' },
|
|
409
|
+
{ label: 'gas-safety', value: 'gas-safety' },
|
|
410
|
+
{ label: 'smoke-safety', value: 'smoke-safety' },
|
|
411
|
+
{ label: 'shield-cat', value: 'shield-cat' },
|
|
412
|
+
{ label: 'lungs-virus', value: 'lungs-virus' },
|
|
413
|
+
{ label: 'land-mine-on', value: 'land-mine-on' },
|
|
414
|
+
{ label: 'suitcase-rolling', value: 'suitcase-rolling' },
|
|
415
|
+
{ label: 'person-hiking', value: 'person-hiking' },
|
|
416
|
+
{ label: 'users-slash', value: 'users-slash' },
|
|
417
|
+
{ label: 'file-circle-minus', value: 'file-circle-minus' },
|
|
418
|
+
{ label: 'road-circle-xmark', value: 'road-circle-xmark' },
|
|
419
|
+
{ label: 'right-left', value: 'right-left' },
|
|
420
|
+
{ label: 'icons', value: 'icons' },
|
|
421
|
+
{ label: 'shuttle-space', value: 'shuttle-space' },
|
|
422
|
+
{ label: 'screwdriver', value: 'screwdriver' },
|
|
423
|
+
{ label: 'computer', value: 'computer' },
|
|
424
|
+
{ label: 'arrow-up-short-wide', value: 'arrow-up-short-wide' },
|
|
425
|
+
{ label: 'square-plus', value: 'square-plus' },
|
|
426
|
+
{ label: 'heart-circle-xmark', value: 'heart-circle-xmark' },
|
|
427
|
+
{ label: 'cat', value: 'cat' },
|
|
428
|
+
{ label: 'car', value: 'car' },
|
|
429
|
+
{ label: 'hand-holding-droplet', value: 'hand-holding-droplet' },
|
|
430
|
+
{ label: 'briefcase-medical', value: 'briefcase-medical' },
|
|
431
|
+
{ label: 'person', value: 'person' },
|
|
432
|
+
{ label: 'square', value: 'square' },
|
|
433
|
+
{ label: 'baseball', value: 'baseball' },
|
|
434
|
+
{ label: 'microphone-lines-slash', value: 'microphone-lines-slash' },
|
|
435
|
+
{ label: 'cloud-sun', value: 'cloud-sun' },
|
|
436
|
+
{ label: 'kaaba', value: 'kaaba' },
|
|
437
|
+
{ label: 'square-h', value: 'square-h' },
|
|
438
|
+
{ label: 'pump-soap', value: 'pump-soap' },
|
|
439
|
+
{ label: 'seedling', value: 'seedling' },
|
|
440
|
+
{ label: 'table', value: 'table' },
|
|
441
|
+
{ label: 'face-grin-wink', value: 'face-grin-wink' },
|
|
442
|
+
{ label: 'trowel-bricks', value: 'trowel-bricks' },
|
|
443
|
+
{ label: 'baby', value: 'baby' },
|
|
444
|
+
{ label: 'cubes', value: 'cubes' },
|
|
445
|
+
{ label: 'volume-low', value: 'volume-low' },
|
|
446
|
+
{ label: 'cloud-meatball', value: 'cloud-meatball' },
|
|
447
|
+
{ label: 'magnifying-glass-arrow-right', value: 'magnifying-glass-arrow-right' },
|
|
448
|
+
{ label: 'sheet-plastic', value: 'sheet-plastic' },
|
|
449
|
+
{ label: 'arrow-up-from-ground-water', value: 'arrow-up-from-ground-water' },
|
|
450
|
+
{ label: 'door-closed', value: 'door-closed' },
|
|
451
|
+
{ label: 'torii-gate', value: 'torii-gate' },
|
|
452
|
+
{ label: 'check-double', value: 'check-double' },
|
|
453
|
+
{ label: 'earth-oceania', value: 'earth-oceania' },
|
|
454
|
+
{ label: 'building-columns', value: 'building-columns' },
|
|
455
|
+
{ label: 'toggle-off', value: 'toggle-off' },
|
|
456
|
+
{ label: 'children', value: 'children' },
|
|
457
|
+
{ label: 'earth-asia', value: 'earth-asia' },
|
|
458
|
+
{ label: 'bell', value: 'bell' },
|
|
459
|
+
{ label: 'hand-scissors', value: 'hand-scissors' },
|
|
460
|
+
{ label: 'file-audio', value: 'file-audio' },
|
|
461
|
+
{ label: 'bridge-circle-exclamation', value: 'bridge-circle-exclamation' },
|
|
462
|
+
{ label: 'earth-europe', value: 'earth-europe' },
|
|
463
|
+
{ label: 'chevron-right', value: 'chevron-right' },
|
|
464
|
+
{ label: 'vest-patches', value: 'vest-patches' },
|
|
465
|
+
{ label: 'ban-smoking', value: 'ban-smoking' },
|
|
466
|
+
{ label: 'align-justify', value: 'align-justify' },
|
|
467
|
+
{ label: 'lemon', value: 'lemon' },
|
|
468
|
+
{ label: 'person-walking-luggage', value: 'person-walking-luggage' },
|
|
469
|
+
{ label: 'bolt-lightning', value: 'bolt-lightning' },
|
|
470
|
+
{ label: 'building-flag', value: 'building-flag' },
|
|
471
|
+
{ label: 'egg', value: 'egg' },
|
|
472
|
+
{ label: 'tape', value: 'tape' },
|
|
473
|
+
{ label: 'stamp', value: 'stamp' },
|
|
474
|
+
{ label: 'baby-carriage', value: 'baby-carriage' },
|
|
475
|
+
{ label: 'plate-wheat', value: 'plate-wheat' },
|
|
476
|
+
{ label: 'bowl-food', value: 'bowl-food' },
|
|
477
|
+
{ label: 'sliders', value: 'sliders' },
|
|
478
|
+
{ label: 'comment-slash', value: 'comment-slash' },
|
|
479
|
+
{ label: 'align-left', value: 'align-left' },
|
|
480
|
+
{ label: 'mars-and-venus-burst', value: 'mars-and-venus-burst' },
|
|
481
|
+
{ label: 'person-chalkboard', value: 'person-chalkboard' },
|
|
482
|
+
{ label: 'headphones', value: 'headphones' },
|
|
483
|
+
{ label: 'hashtag', value: 'hashtag' },
|
|
484
|
+
{ label: 'ruler-horizontal', value: 'ruler-horizontal' },
|
|
485
|
+
{ label: 'lock', value: 'lock' },
|
|
486
|
+
{ label: 'video-slash', value: 'video-slash' },
|
|
487
|
+
{ label: 'person-arrow-down-to-line', value: 'person-arrow-down-to-line' },
|
|
488
|
+
{ label: 'user-large-slash', value: 'user-large-slash' },
|
|
489
|
+
{ label: 'signature', value: 'signature' },
|
|
490
|
+
{ label: 'cube', value: 'cube' },
|
|
491
|
+
{ label: 'arrow-pointer', value: 'arrow-pointer' },
|
|
492
|
+
{ label: 'map-location', value: 'map-location' },
|
|
493
|
+
{ label: 'folder-closed', value: 'folder-closed' },
|
|
494
|
+
{ label: 'drum-steelpan', value: 'drum-steelpan' },
|
|
495
|
+
{ label: 'handshake', value: 'handshake' },
|
|
496
|
+
{ label: 'thumbs-down', value: 'thumbs-down' },
|
|
497
|
+
{ label: 'font', value: 'font' },
|
|
498
|
+
{ label: 'anchor', value: 'anchor' },
|
|
499
|
+
{ label: 'person-skating', value: 'person-skating' },
|
|
500
|
+
{ label: 'circle-question', value: 'circle-question' },
|
|
501
|
+
{ label: 'feather', value: 'feather' },
|
|
502
|
+
{ label: 'clipboard-check', value: 'clipboard-check' },
|
|
503
|
+
{ label: 'user-slash', value: 'user-slash' },
|
|
504
|
+
{ label: 'industry', value: 'industry' },
|
|
505
|
+
{ label: 'delete-left', value: 'delete-left' },
|
|
506
|
+
{ label: 'shekel-sign', value: 'shekel-sign' },
|
|
507
|
+
{ label: 'gem', value: 'gem' },
|
|
508
|
+
{ label: 'gamepad', value: 'gamepad' },
|
|
509
|
+
{ label: 'hands-praying', value: 'hands-praying' },
|
|
510
|
+
{ label: 'window-maximize', value: 'window-maximize' },
|
|
511
|
+
{ label: 'computer-mouse', value: 'computer-mouse' },
|
|
512
|
+
{ label: 'head-side-cough-slash', value: 'head-side-cough-slash' },
|
|
513
|
+
{ label: 'registered', value: 'registered' },
|
|
514
|
+
{ label: 'flag-usa', value: 'flag-usa' },
|
|
515
|
+
{ label: 'wine-bottle', value: 'wine-bottle' },
|
|
516
|
+
{ label: 'ghost', value: 'ghost' },
|
|
517
|
+
{ label: 'house-circle-xmark', value: 'house-circle-xmark' },
|
|
518
|
+
{ label: 'list-check', value: 'list-check' },
|
|
519
|
+
{ label: 'otter', value: 'otter' },
|
|
520
|
+
{ label: 'circle-chevron-left', value: 'circle-chevron-left' },
|
|
521
|
+
{ label: 'plug-circle-bolt', value: 'plug-circle-bolt' },
|
|
522
|
+
{ label: 'radio', value: 'radio' },
|
|
523
|
+
{ label: 'inbox', value: 'inbox' },
|
|
524
|
+
{ label: 'file-video', value: 'file-video' },
|
|
525
|
+
{ label: 'backward-fast', value: 'backward-fast' },
|
|
526
|
+
{ label: 'smoking', value: 'smoking' },
|
|
527
|
+
{ label: 'file-code', value: 'file-code' },
|
|
528
|
+
{ label: 'truck', value: 'truck' },
|
|
529
|
+
{ label: 'face-sad-tear', value: 'face-sad-tear' },
|
|
530
|
+
{ label: 'money-bills', value: 'money-bills' },
|
|
531
|
+
{ label: 'helicopter-symbol', value: 'helicopter-symbol' },
|
|
532
|
+
{ label: 'user-minus', value: 'user-minus' },
|
|
533
|
+
{ label: 'dove', value: 'dove' },
|
|
534
|
+
{ label: 'angles-right', value: 'angles-right' },
|
|
535
|
+
{ label: 'brain', value: 'brain' },
|
|
536
|
+
{ label: 'person-dress-burst', value: 'person-dress-burst' },
|
|
537
|
+
{ label: 'group-arrows-rotate', value: 'group-arrows-rotate' },
|
|
538
|
+
{ label: 'copyright', value: 'copyright' },
|
|
539
|
+
{ label: 'mortar-pestle', value: 'mortar-pestle' },
|
|
540
|
+
{ label: 'bowling-ball', value: 'bowling-ball' },
|
|
541
|
+
{ label: 'calculator', value: 'calculator' },
|
|
542
|
+
{ label: 'candy-cane', value: 'candy-cane' },
|
|
543
|
+
{ label: 'square-poll-vertical', value: 'square-poll-vertical' },
|
|
544
|
+
{ label: 'wine-glass', value: 'wine-glass' },
|
|
545
|
+
{ label: 'cookie-bite', value: 'cookie-bite' },
|
|
546
|
+
{ label: 'tag', value: 'tag' },
|
|
547
|
+
{ label: 'hryvnia-sign', value: 'hryvnia-sign' },
|
|
548
|
+
{ label: 'truck-ramp-box', value: 'truck-ramp-box' },
|
|
549
|
+
{ label: 'arrow-down-wide-short', value: 'arrow-down-wide-short' },
|
|
550
|
+
{ label: 'calendar-day', value: 'calendar-day' },
|
|
551
|
+
{ label: 'helmet-un', value: 'helmet-un' },
|
|
552
|
+
{ label: 'mars-stroke', value: 'mars-stroke' },
|
|
553
|
+
{ label: 'less-than-equal', value: 'less-than-equal' },
|
|
554
|
+
{ label: 'anchor-circle-check', value: 'anchor-circle-check' },
|
|
555
|
+
{ label: 'money-check', value: 'money-check' },
|
|
556
|
+
{ label: 'download', value: 'download' },
|
|
557
|
+
{ label: 'virus-slash', value: 'virus-slash' },
|
|
558
|
+
{ label: 'info', value: 'info' },
|
|
559
|
+
{ label: 'headset', value: 'headset' },
|
|
560
|
+
{ label: 'location-dot', value: 'location-dot' },
|
|
561
|
+
{ label: 'burger', value: 'burger' },
|
|
562
|
+
{ label: 'folder-plus', value: 'folder-plus' },
|
|
563
|
+
{ label: 'user-tie', value: 'user-tie' },
|
|
564
|
+
{ label: 'bell-concierge', value: 'bell-concierge' },
|
|
565
|
+
{ label: 'file-shield', value: 'file-shield' },
|
|
566
|
+
{ label: 'hat-cowboy', value: 'hat-cowboy' },
|
|
567
|
+
{ label: 'not-equal', value: 'not-equal' },
|
|
568
|
+
{ label: 'book-open', value: 'book-open' },
|
|
569
|
+
{ label: 'splotch', value: 'splotch' },
|
|
570
|
+
{ label: 'comments-dollar', value: 'comments-dollar' },
|
|
571
|
+
{ label: 'cent-sign', value: 'cent-sign' },
|
|
572
|
+
{ label: 'comments', value: 'comments' },
|
|
573
|
+
{ label: 'explosion', value: 'explosion' },
|
|
574
|
+
{ label: 'fingerprint', value: 'fingerprint' },
|
|
575
|
+
{ label: 'peace', value: 'peace' },
|
|
576
|
+
{ label: 'calendar-check', value: 'calendar-check' },
|
|
577
|
+
{ label: 'shuffle', value: 'shuffle' },
|
|
578
|
+
{ label: 'tablets', value: 'tablets' },
|
|
579
|
+
{ label: 'pen-ruler', value: 'pen-ruler' },
|
|
580
|
+
{ label: 'football', value: 'football' },
|
|
581
|
+
{ label: 'masks-theater', value: 'masks-theater' },
|
|
582
|
+
{ label: 'pen-clip', value: 'pen-clip' },
|
|
583
|
+
{ label: 'tooth', value: 'tooth' },
|
|
584
|
+
{ label: 'eye-dropper', value: 'eye-dropper' },
|
|
585
|
+
{ label: 'hands-holding', value: 'hands-holding' },
|
|
586
|
+
{ label: 'mountain', value: 'mountain' },
|
|
587
|
+
{ label: 'hat-wizard', value: 'hat-wizard' },
|
|
588
|
+
{ label: 'envelope', value: 'envelope' },
|
|
589
|
+
{ label: 'helmet-safety', value: 'helmet-safety' },
|
|
590
|
+
{ label: 'person-skiing-nordic', value: 'person-skiing-nordic' },
|
|
591
|
+
{ label: 'asterisk', value: 'asterisk' },
|
|
592
|
+
{ label: 'sailboat', value: 'sailboat' },
|
|
593
|
+
{ label: 'up-down', value: 'up-down' },
|
|
594
|
+
{ label: 'hand-lizard', value: 'hand-lizard' },
|
|
595
|
+
{ label: 'person-breastfeeding', value: 'person-breastfeeding' },
|
|
596
|
+
{ label: 'cloud-arrow-up', value: 'cloud-arrow-up' },
|
|
597
|
+
{ label: 'hard-drive', value: 'hard-drive' },
|
|
598
|
+
{ label: 'spinner', value: 'spinner' },
|
|
599
|
+
{ label: 'crosshairs', value: 'crosshairs' },
|
|
600
|
+
{ label: 'glass-water-droplet', value: 'glass-water-droplet' },
|
|
601
|
+
{ label: 'users-between-lines', value: 'users-between-lines' },
|
|
602
|
+
{ label: 'braille', value: 'braille' },
|
|
603
|
+
{ label: 'head-side-virus', value: 'head-side-virus' },
|
|
604
|
+
{ label: 'face-smile-beam', value: 'face-smile-beam' },
|
|
605
|
+
{ label: 'cake-candles', value: 'cake-candles' },
|
|
606
|
+
{ label: 'cart-arrow-down', value: 'cart-arrow-down' },
|
|
607
|
+
{ label: 'code', value: 'code' },
|
|
608
|
+
{ label: 'book-journal-whills', value: 'book-journal-whills' },
|
|
609
|
+
{ label: 'circle-plus', value: 'circle-plus' },
|
|
610
|
+
{ label: 'poo-storm', value: 'poo-storm' },
|
|
611
|
+
{ label: 'sort-down', value: 'sort-down' },
|
|
612
|
+
{ label: 'landmark', value: 'landmark' },
|
|
613
|
+
{ label: 'book-open-reader', value: 'book-open-reader' },
|
|
614
|
+
{ label: 'indent', value: 'indent' },
|
|
615
|
+
{ label: 'certificate', value: 'certificate' },
|
|
616
|
+
{ label: 'square-caret-left', value: 'square-caret-left' },
|
|
617
|
+
{ label: 'face-flushed', value: 'face-flushed' },
|
|
618
|
+
{ label: 'droplet-slash', value: 'droplet-slash' },
|
|
619
|
+
{ label: 'snowplow', value: 'snowplow' },
|
|
620
|
+
{ label: 'print', value: 'print' },
|
|
621
|
+
{ label: 'pen', value: 'pen' },
|
|
622
|
+
{ label: 'fill-drip', value: 'fill-drip' },
|
|
623
|
+
{ label: 'rupee-sign', value: 'rupee-sign' },
|
|
624
|
+
{ label: 'language', value: 'language' },
|
|
625
|
+
{ label: 'envelope-open-text', value: 'envelope-open-text' },
|
|
626
|
+
{ label: 'reply', value: 'reply' },
|
|
627
|
+
{ label: 'memory', value: 'memory' },
|
|
628
|
+
{ label: 'xmark', value: 'xmark' },
|
|
629
|
+
{ label: 'face-grin-stars', value: 'face-grin-stars' },
|
|
630
|
+
{ label: 'truck-front', value: 'truck-front' },
|
|
631
|
+
{ label: 'temperature-high', value: 'temperature-high' },
|
|
632
|
+
{ label: 'tent-arrow-left-right', value: 'tent-arrow-left-right' },
|
|
633
|
+
{ label: 'arrow-down-up-lock', value: 'arrow-down-up-lock' },
|
|
634
|
+
{ label: 'tornado', value: 'tornado' },
|
|
635
|
+
{ label: 'house-chimney-user', value: 'house-chimney-user' },
|
|
636
|
+
{ label: 'chart-area', value: 'chart-area' },
|
|
637
|
+
{ label: 'star-half', value: 'star-half' },
|
|
638
|
+
{ label: 'truck-arrow-right', value: 'truck-arrow-right' },
|
|
639
|
+
{ label: 'taxi', value: 'taxi' },
|
|
640
|
+
{ label: 'grip-lines', value: 'grip-lines' },
|
|
641
|
+
{ label: 'file-excel', value: 'file-excel' },
|
|
642
|
+
{ label: 'person-falling', value: 'person-falling' },
|
|
643
|
+
{ label: 'square-caret-up', value: 'square-caret-up' },
|
|
644
|
+
{ label: 'arrows-left-right-to-line', value: 'arrows-left-right-to-line' },
|
|
645
|
+
{ label: 'ice-cream', value: 'ice-cream' },
|
|
646
|
+
{ label: 'arrow-down-up-across-line', value: 'arrow-down-up-across-line' },
|
|
647
|
+
{ label: 'face-grin-tongue', value: 'face-grin-tongue' },
|
|
648
|
+
{ label: 'plane-circle-check', value: 'plane-circle-check' },
|
|
649
|
+
{ label: 'trademark', value: 'trademark' },
|
|
650
|
+
{ label: 'hand-back-fist', value: 'hand-back-fist' },
|
|
651
|
+
{ label: 'venus', value: 'venus' },
|
|
652
|
+
{ label: 'hot-tub-person', value: 'hot-tub-person' },
|
|
653
|
+
{ label: 'parachute-box', value: 'parachute-box' },
|
|
654
|
+
{ label: 'map-pin', value: 'map-pin' },
|
|
655
|
+
{ label: 'file-arrow-up', value: 'file-arrow-up' },
|
|
656
|
+
{ label: 'repeat', value: 'repeat' },
|
|
657
|
+
{ label: 'snowman', value: 'snowman' },
|
|
658
|
+
{ label: 'mound', value: 'mound' },
|
|
659
|
+
{ label: 'forward', value: 'forward' },
|
|
660
|
+
{ label: 'circle-up', value: 'circle-up' },
|
|
661
|
+
{ label: 'school-circle-check', value: 'school-circle-check' },
|
|
662
|
+
{ label: 'satellite', value: 'satellite' },
|
|
663
|
+
{ label: 'yin-yang', value: 'yin-yang' },
|
|
664
|
+
{ label: 'cable-car', value: 'cable-car' },
|
|
665
|
+
{ label: 'person-biking', value: 'person-biking' },
|
|
666
|
+
{ label: 'microchip', value: 'microchip' },
|
|
667
|
+
{ label: 'face-frown', value: 'face-frown' },
|
|
668
|
+
{ label: 'arrow-up-z-a', value: 'arrow-up-z-a' },
|
|
669
|
+
{ label: 'school-circle-exclamation', value: 'school-circle-exclamation' },
|
|
670
|
+
{ label: 'house-medical-circle-check', value: 'house-medical-circle-check' },
|
|
671
|
+
{ label: 'trash', value: 'trash' },
|
|
672
|
+
{ label: 'temperature-arrow-up', value: 'temperature-arrow-up' },
|
|
673
|
+
{ label: 'sack-xmark', value: 'sack-xmark' },
|
|
674
|
+
{ label: 'calendar-plus', value: 'calendar-plus' },
|
|
675
|
+
{ label: 'skull-crossbones', value: 'skull-crossbones' },
|
|
676
|
+
{ label: 'car-on', value: 'car-on' },
|
|
677
|
+
{ label: 'circle-arrow-right', value: 'circle-arrow-right' },
|
|
678
|
+
{ label: 'person-circle-question', value: 'person-circle-question' },
|
|
679
|
+
{ label: 'square-phone', value: 'square-phone' },
|
|
680
|
+
{ label: 'code-branch', value: 'code-branch' },
|
|
681
|
+
{ label: 'question', value: 'question' },
|
|
682
|
+
{ label: 'vest', value: 'vest' },
|
|
683
|
+
{ label: 'star-and-crescent', value: 'star-and-crescent' },
|
|
684
|
+
{ label: 'superscript', value: 'superscript' },
|
|
685
|
+
{ label: 'scale-unbalanced-flip', value: 'scale-unbalanced-flip' },
|
|
686
|
+
{ label: 'thermometer', value: 'thermometer' },
|
|
687
|
+
{ label: 'dungeon', value: 'dungeon' },
|
|
688
|
+
{ label: 'lungs', value: 'lungs' },
|
|
689
|
+
{ label: 'recycle', value: 'recycle' },
|
|
690
|
+
{ label: 'money-check-dollar', value: 'money-check-dollar' },
|
|
691
|
+
{ label: 'ear-listen', value: 'ear-listen' },
|
|
692
|
+
{ label: 'house-flood-water', value: 'house-flood-water' },
|
|
693
|
+
{ label: 'tractor', value: 'tractor' },
|
|
694
|
+
{ label: 'door-open', value: 'door-open' },
|
|
695
|
+
{ label: 'shield-virus', value: 'shield-virus' },
|
|
696
|
+
{ label: 'user-plus', value: 'user-plus' },
|
|
697
|
+
{ label: 'tents', value: 'tents' },
|
|
698
|
+
{ label: 'money-bill', value: 'money-bill' },
|
|
699
|
+
{ label: 'tarp', value: 'tarp' },
|
|
700
|
+
{ label: 'file-csv', value: 'file-csv' },
|
|
701
|
+
{ label: 'handshake-slash', value: 'handshake-slash' },
|
|
702
|
+
{ label: 'umbrella-beach', value: 'umbrella-beach' },
|
|
703
|
+
{ label: 'car-battery', value: 'car-battery' },
|
|
704
|
+
{ label: 'face-laugh', value: 'face-laugh' },
|
|
705
|
+
{ label: 'circle-pause', value: 'circle-pause' },
|
|
706
|
+
{ label: 'vihara', value: 'vihara' },
|
|
707
|
+
{ label: 'hand-pointer', value: 'hand-pointer' },
|
|
708
|
+
{ label: 'people-pulling', value: 'people-pulling' },
|
|
709
|
+
{ label: 'paw', value: 'paw' },
|
|
710
|
+
{ label: 'user-lock', value: 'user-lock' },
|
|
711
|
+
{ label: 'gas-pump', value: 'gas-pump' },
|
|
712
|
+
{ label: 'hands-holding-circle', value: 'hands-holding-circle' },
|
|
713
|
+
{ label: 'earth-americas', value: 'earth-americas' },
|
|
714
|
+
{ label: 'arrow-down-a-z', value: 'arrow-down-a-z' },
|
|
715
|
+
{ label: 'chart-line', value: 'chart-line' },
|
|
716
|
+
{ label: 'rotate-right', value: 'rotate-right' },
|
|
717
|
+
{ label: 'fill', value: 'fill' },
|
|
718
|
+
{ label: 'file-word', value: 'file-word' },
|
|
719
|
+
{ label: 'film', value: 'film' },
|
|
720
|
+
{ label: 'lines-leaning', value: 'lines-leaning' },
|
|
721
|
+
{ label: 'angles-left', value: 'angles-left' },
|
|
722
|
+
{ label: 'tachograph-digital', value: 'tachograph-digital' },
|
|
723
|
+
{ label: 'person-rifle', value: 'person-rifle' },
|
|
724
|
+
{ label: 'podcast', value: 'podcast' },
|
|
725
|
+
{ label: 'receipt', value: 'receipt' },
|
|
726
|
+
{ label: 'table-cells', value: 'table-cells' },
|
|
727
|
+
{ label: 'user-tag', value: 'user-tag' },
|
|
728
|
+
{ label: 'shield', value: 'shield' },
|
|
729
|
+
{ label: 'file-circle-question', value: 'file-circle-question' },
|
|
730
|
+
{ label: 'coins', value: 'coins' },
|
|
731
|
+
{ label: 'file', value: 'file' },
|
|
732
|
+
{ label: 'bridge', value: 'bridge' },
|
|
733
|
+
{ label: 'comment-sms', value: 'comment-sms' },
|
|
734
|
+
{ label: 'plug', value: 'plug' },
|
|
735
|
+
{ label: 'hand-point-down', value: 'hand-point-down' },
|
|
736
|
+
{ label: 'server', value: 'server' },
|
|
737
|
+
{ label: 'lock-open', value: 'lock-open' },
|
|
738
|
+
{ label: 'scale-unbalanced', value: 'scale-unbalanced' },
|
|
739
|
+
{ label: 'arrows-rotate', value: 'arrows-rotate' },
|
|
740
|
+
{ label: 'warehouse', value: 'warehouse' },
|
|
741
|
+
{ label: 'circle-arrow-left', value: 'circle-arrow-left' },
|
|
742
|
+
{ label: 'sort', value: 'sort' },
|
|
743
|
+
{ label: 'house-chimney-window', value: 'house-chimney-window' },
|
|
744
|
+
{ label: 'plus', value: 'plus' },
|
|
745
|
+
{ label: 'heart-circle-exclamation', value: 'heart-circle-exclamation' },
|
|
746
|
+
{ label: 'anchor-lock', value: 'anchor-lock' },
|
|
747
|
+
{ label: 'hands-asl-interpreting', value: 'hands-asl-interpreting' },
|
|
748
|
+
{ label: 'horse', value: 'horse' },
|
|
749
|
+
{ label: 'hamsa', value: 'hamsa' },
|
|
750
|
+
{ label: 'meteor', value: 'meteor' },
|
|
751
|
+
{ label: 'virus', value: 'virus' },
|
|
752
|
+
{ label: 'dice-d6', value: 'dice-d6' },
|
|
753
|
+
{ label: 'strikethrough', value: 'strikethrough' },
|
|
754
|
+
{ label: 'smog', value: 'smog' },
|
|
755
|
+
{ label: 'calendar-xmark', value: 'calendar-xmark' },
|
|
756
|
+
{ label: 'eraser', value: 'eraser' },
|
|
757
|
+
{ label: 'person-booth', value: 'person-booth' },
|
|
758
|
+
{ label: 'star-of-life', value: 'star-of-life' },
|
|
759
|
+
{ label: 'manat-sign', value: 'manat-sign' },
|
|
760
|
+
{ label: 'republican', value: 'republican' },
|
|
761
|
+
{ label: 'clock', value: 'clock' },
|
|
762
|
+
{ label: 'hill-rockslide', value: 'hill-rockslide' },
|
|
763
|
+
{ label: 'house-signal', value: 'house-signal' },
|
|
764
|
+
{ label: 'truck-droplet', value: 'truck-droplet' },
|
|
765
|
+
{ label: 'lightbulb', value: 'lightbulb' },
|
|
766
|
+
{ label: 'flask-vial', value: 'flask-vial' },
|
|
767
|
+
{ label: 'book-bookmark', value: 'book-bookmark' },
|
|
768
|
+
{ label: 'right-from-bracket', value: 'right-from-bracket' },
|
|
769
|
+
{ label: 'arrows-turn-right', value: 'arrows-turn-right' },
|
|
770
|
+
{ label: 'diagram-successor', value: 'diagram-successor' },
|
|
771
|
+
{ label: 'bars', value: 'bars' },
|
|
772
|
+
{ label: 'phone', value: 'phone' },
|
|
773
|
+
{ label: 'users-rays', value: 'users-rays' },
|
|
774
|
+
{ label: 'clipboard-question', value: 'clipboard-question' },
|
|
775
|
+
{ label: 'building-lock', value: 'building-lock' },
|
|
776
|
+
{ label: 'code-merge', value: 'code-merge' },
|
|
777
|
+
{ label: 'person-arrow-up-from-line', value: 'person-arrow-up-from-line' },
|
|
778
|
+
{ label: 'eject', value: 'eject' },
|
|
779
|
+
{ label: 'vr-cardboard', value: 'vr-cardboard' },
|
|
780
|
+
{ label: 'sd-card', value: 'sd-card' },
|
|
781
|
+
{ label: 'circle-nodes', value: 'circle-nodes' },
|
|
782
|
+
{ label: 'box', value: 'box' },
|
|
783
|
+
{ label: 'toilet-paper', value: 'toilet-paper' },
|
|
784
|
+
{ label: 'plane-circle-exclamation', value: 'plane-circle-exclamation' },
|
|
785
|
+
{ label: 'draw-polygon', value: 'draw-polygon' },
|
|
786
|
+
{ label: 'filter-circle-xmark', value: 'filter-circle-xmark' },
|
|
787
|
+
{ label: 'arrow-right-arrow-left', value: 'arrow-right-arrow-left' },
|
|
788
|
+
{ label: 'road-spikes', value: 'road-spikes' },
|
|
789
|
+
{ label: 'square-nfi', value: 'square-nfi' },
|
|
790
|
+
{ label: 'mars', value: 'mars' },
|
|
791
|
+
{ label: 'person-harassing', value: 'person-harassing' },
|
|
792
|
+
{ label: 'eye-low-vision', value: 'eye-low-vision' },
|
|
793
|
+
{ label: 'user-xmark', value: 'user-xmark' },
|
|
794
|
+
{ label: 'volcano', value: 'volcano' },
|
|
795
|
+
{ label: 'angles-up', value: 'angles-up' },
|
|
796
|
+
{ label: 'file-invoice', value: 'file-invoice' },
|
|
797
|
+
{ label: 'scale-balanced', value: 'scale-balanced' },
|
|
798
|
+
{ label: 'face-kiss', value: 'face-kiss' },
|
|
799
|
+
{ label: 'person-digging', value: 'person-digging' },
|
|
800
|
+
{ label: 'train-subway', value: 'train-subway' },
|
|
801
|
+
{ label: 'user-graduate', value: 'user-graduate' },
|
|
802
|
+
{ label: 'person-skiing', value: 'person-skiing' },
|
|
803
|
+
{ label: 'up-down-left-right', value: 'up-down-left-right' },
|
|
804
|
+
{ label: 'bath', value: 'bath' },
|
|
805
|
+
{ label: 'user-secret', value: 'user-secret' },
|
|
806
|
+
{ label: 'road-lock', value: 'road-lock' },
|
|
807
|
+
{ label: 'camera', value: 'camera' },
|
|
808
|
+
{ label: 'beer-mug-empty', value: 'beer-mug-empty' },
|
|
809
|
+
{ label: 'mask', value: 'mask' },
|
|
810
|
+
{ label: 'faucet-drip', value: 'faucet-drip' },
|
|
811
|
+
{ label: 'chalkboard-user', value: 'chalkboard-user' },
|
|
812
|
+
{ label: 'face-sad-cry', value: 'face-sad-cry' },
|
|
813
|
+
{ label: 'jedi', value: 'jedi' },
|
|
814
|
+
{ label: 'spray-can-sparkles', value: 'spray-can-sparkles' },
|
|
815
|
+
{ label: 'qrcode', value: 'qrcode' },
|
|
816
|
+
{ label: 'people-carry-box', value: 'people-carry-box' },
|
|
817
|
+
{ label: 'volume-off', value: 'volume-off' },
|
|
818
|
+
{ label: 'user-ninja', value: 'user-ninja' },
|
|
819
|
+
{ label: 'viruses', value: 'viruses' },
|
|
820
|
+
{ label: 'arrows-left-right', value: 'arrows-left-right' },
|
|
821
|
+
{ label: 'handshake-simple-slash', value: 'handshake-simple-slash' },
|
|
822
|
+
{ label: 'fish-fins', value: 'fish-fins' },
|
|
823
|
+
{ label: 'worm', value: 'worm' },
|
|
824
|
+
{ label: 'circle-down', value: 'circle-down' },
|
|
825
|
+
{ label: 'fire-extinguisher', value: 'fire-extinguisher' },
|
|
826
|
+
{ label: 'house-medical-circle-exclamation', value: 'house-medical-circle-exclamation' },
|
|
827
|
+
{ label: 'hat-cowboy-side', value: 'hat-cowboy-side' },
|
|
828
|
+
{ label: 'gifts', value: 'gifts' },
|
|
829
|
+
{ label: 'arrow-up-from-bracket', value: 'arrow-up-from-bracket' },
|
|
830
|
+
{ label: 'file-circle-xmark', value: 'file-circle-xmark' },
|
|
831
|
+
{ label: 'people-group', value: 'people-group' },
|
|
832
|
+
{ label: 'person-walking-with-cane', value: 'person-walking-with-cane' },
|
|
833
|
+
{ label: 'marker', value: 'marker' },
|
|
834
|
+
{ label: 'sack-dollar', value: 'sack-dollar' },
|
|
835
|
+
{ label: 'kip-sign', value: 'kip-sign' },
|
|
836
|
+
{ label: 'pen-nib', value: 'pen-nib' },
|
|
837
|
+
{ label: 'circle-xmark', value: 'circle-xmark' },
|
|
838
|
+
{ label: 'road', value: 'road' },
|
|
839
|
+
{ label: 'circle-info', value: 'circle-info' },
|
|
840
|
+
{ label: 'magnifying-glass', value: 'magnifying-glass' },
|
|
841
|
+
{ label: 'pencil', value: 'pencil' },
|
|
842
|
+
{ label: 'oil-can', value: 'oil-can' },
|
|
843
|
+
{ label: 'wifi', value: 'wifi' },
|
|
844
|
+
{ label: 'heart-pulse', value: 'heart-pulse' },
|
|
845
|
+
{ label: 'comment-medical', value: 'comment-medical' },
|
|
846
|
+
{ label: 'italic', value: 'italic' },
|
|
847
|
+
{ label: 'handshake-simple', value: 'handshake-simple' },
|
|
848
|
+
{ label: 'stroopwafel', value: 'stroopwafel' },
|
|
849
|
+
{ label: 'id-badge', value: 'id-badge' },
|
|
850
|
+
{ label: 'greater-than-equal', value: 'greater-than-equal' },
|
|
851
|
+
{ label: 'terminal', value: 'terminal' },
|
|
852
|
+
{ label: 'face-rolling-eyes', value: 'face-rolling-eyes' },
|
|
853
|
+
{ label: 'pause', value: 'pause' },
|
|
854
|
+
{ label: 'truck-medical', value: 'truck-medical' },
|
|
855
|
+
{ label: 'closed-captioning', value: 'closed-captioning' },
|
|
856
|
+
{ label: 'plant-wilt', value: 'plant-wilt' },
|
|
857
|
+
{ label: 'house-circle-check', value: 'house-circle-check' },
|
|
858
|
+
{ label: 'arrow-trend-up', value: 'arrow-trend-up' },
|
|
859
|
+
{ label: 'fire', value: 'fire' },
|
|
860
|
+
{ label: 'star-of-david', value: 'star-of-david' },
|
|
861
|
+
{ label: 'map', value: 'map' },
|
|
862
|
+
{ label: 'file-contract', value: 'file-contract' },
|
|
863
|
+
{ label: 'equals', value: 'equals' },
|
|
864
|
+
{ label: 'gavel', value: 'gavel' },
|
|
865
|
+
{ label: 'star', value: 'star' },
|
|
866
|
+
{ label: 'arrow-right-to-bracket', value: 'arrow-right-to-bracket' },
|
|
867
|
+
{ label: 'peso-sign', value: 'peso-sign' },
|
|
868
|
+
{ label: 'sleigh', value: 'sleigh' },
|
|
869
|
+
{ label: 'arrows-up-down', value: 'arrows-up-down' },
|
|
870
|
+
{ label: 'upload', value: 'upload' },
|
|
871
|
+
{ label: 'spray-can', value: 'spray-can' },
|
|
872
|
+
{ label: 'shield-dog', value: 'shield-dog' },
|
|
873
|
+
{ label: 'pepper-hot', value: 'pepper-hot' },
|
|
874
|
+
{ label: 'square-arrow-up-right', value: 'square-arrow-up-right' },
|
|
875
|
+
{ label: 'bridge-circle-xmark', value: 'bridge-circle-xmark' },
|
|
876
|
+
{ label: 'chess-knight', value: 'chess-knight' },
|
|
877
|
+
{ label: 'book-medical', value: 'book-medical' },
|
|
878
|
+
{ label: 'clone', value: 'clone' },
|
|
879
|
+
{ label: 'fish', value: 'fish' },
|
|
880
|
+
{ label: 'dog', value: 'dog' },
|
|
881
|
+
{ label: 'hands-holding-child', value: 'hands-holding-child' },
|
|
882
|
+
{ label: 'ethernet', value: 'ethernet' },
|
|
883
|
+
{ label: 'dice-three', value: 'dice-three' },
|
|
884
|
+
{ label: 'ellipsis-vertical', value: 'ellipsis-vertical' },
|
|
885
|
+
{ label: 'user-shield', value: 'user-shield' },
|
|
886
|
+
{ label: 'id-card', value: 'id-card' },
|
|
887
|
+
{ label: 'building-shield', value: 'building-shield' },
|
|
888
|
+
{ label: 'suitcase-medical', value: 'suitcase-medical' },
|
|
889
|
+
{ label: 'bridge-circle-check', value: 'bridge-circle-check' },
|
|
890
|
+
{ label: 'tent-arrow-turn-left', value: 'tent-arrow-turn-left' },
|
|
891
|
+
{ label: 'code-commit', value: 'code-commit' },
|
|
892
|
+
{ label: 'thumbs-up', value: 'thumbs-up' },
|
|
893
|
+
{ label: 'shirt', value: 'shirt' },
|
|
894
|
+
{ label: 'house-lock', value: 'house-lock' },
|
|
895
|
+
{ label: 'pen-fancy', value: 'pen-fancy' },
|
|
896
|
+
{ label: 'user-doctor', value: 'user-doctor' },
|
|
897
|
+
{ label: 'envelope-circle-check', value: 'envelope-circle-check' },
|
|
898
|
+
{ label: 'spa', value: 'spa' },
|
|
899
|
+
{ label: 'users', value: 'users' },
|
|
900
|
+
{ label: 'tenge-sign', value: 'tenge-sign' },
|
|
901
|
+
{ label: 'person-shelter', value: 'person-shelter' },
|
|
902
|
+
{ label: 'check', value: 'check' },
|
|
903
|
+
{ label: 'hand-point-up', value: 'hand-point-up' },
|
|
904
|
+
{ label: 'file-lines', value: 'file-lines' },
|
|
905
|
+
{ label: 'venus-double', value: 'venus-double' },
|
|
906
|
+
{ label: 'broom-ball', value: 'broom-ball' },
|
|
907
|
+
{ label: 'sink', value: 'sink' },
|
|
908
|
+
{ label: 'hands-bubbles', value: 'hands-bubbles' },
|
|
909
|
+
{ label: 'swatchbook', value: 'swatchbook' },
|
|
910
|
+
{ label: 'photo-film', value: 'photo-film' },
|
|
911
|
+
{ label: 'mask-face', value: 'mask-face' },
|
|
912
|
+
{ label: 'square-caret-right', value: 'square-caret-right' },
|
|
913
|
+
{ label: 'sitemap', value: 'sitemap' },
|
|
914
|
+
{ label: 'code-fork', value: 'code-fork' },
|
|
915
|
+
{ label: 'plug-circle-minus', value: 'plug-circle-minus' },
|
|
916
|
+
{ label: 'vial-virus', value: 'vial-virus' },
|
|
917
|
+
{ label: 'arrows-down-to-people', value: 'arrows-down-to-people' },
|
|
918
|
+
{ label: 'comment-dollar', value: 'comment-dollar' },
|
|
919
|
+
{ label: 'pills', value: 'pills' },
|
|
920
|
+
{ label: 'sign-hanging', value: 'sign-hanging' },
|
|
921
|
+
{ label: 'hanukiah', value: 'hanukiah' },
|
|
922
|
+
{ label: 'arrow-trend-down', value: 'arrow-trend-down' },
|
|
923
|
+
{ label: 'mug-saucer', value: 'mug-saucer' },
|
|
924
|
+
{ label: 'place-of-worship', value: 'place-of-worship' },
|
|
925
|
+
{ label: 'child', value: 'child' },
|
|
926
|
+
{ label: 'trowel', value: 'trowel' },
|
|
927
|
+
{ label: 'circle-chevron-up', value: 'circle-chevron-up' },
|
|
928
|
+
{ label: 'baseball-bat-ball', value: 'baseball-bat-ball' },
|
|
929
|
+
{ label: 'building-wheat', value: 'building-wheat' },
|
|
930
|
+
{ label: 'prescription', value: 'prescription' },
|
|
931
|
+
{ label: 'bicycle', value: 'bicycle' },
|
|
932
|
+
{ label: 'angle-right', value: 'angle-right' },
|
|
933
|
+
{ label: 'face-grin-wide', value: 'face-grin-wide' },
|
|
934
|
+
{ label: 'stethoscope', value: 'stethoscope' },
|
|
935
|
+
{ label: 'tarp-droplet', value: 'tarp-droplet' },
|
|
936
|
+
{ label: 'user-group', value: 'user-group' },
|
|
937
|
+
{ label: 'up-long', value: 'up-long' },
|
|
938
|
+
{ label: 'bottle-droplet', value: 'bottle-droplet' },
|
|
939
|
+
{ label: 'infinity', value: 'infinity' },
|
|
940
|
+
{ label: 'i-cursor', value: 'i-cursor' },
|
|
941
|
+
{ label: 'record-vinyl', value: 'record-vinyl' },
|
|
942
|
+
{ label: 'hospital-user', value: 'hospital-user' },
|
|
943
|
+
{ label: 'chevron-left', value: 'chevron-left' },
|
|
944
|
+
{ label: 'circle-check', value: 'circle-check' },
|
|
945
|
+
{ label: 'bell-slash', value: 'bell-slash' },
|
|
946
|
+
{ label: 'maximize', value: 'maximize' },
|
|
947
|
+
{ label: 'menorah', value: 'menorah' },
|
|
948
|
+
{ label: 'snowflake', value: 'snowflake' },
|
|
949
|
+
{ label: 'handshake-angle', value: 'handshake-angle' },
|
|
950
|
+
{ label: 'champagne-glasses', value: 'champagne-glasses' },
|
|
951
|
+
{ label: 'file-waveform', value: 'file-waveform' },
|
|
952
|
+
{ label: 'circle-h', value: 'circle-h' },
|
|
953
|
+
{ label: 'building', value: 'building' },
|
|
954
|
+
{ label: 'radiation', value: 'radiation' },
|
|
955
|
+
{ label: 'user-check', value: 'user-check' },
|
|
956
|
+
{ label: 'bookmark', value: 'bookmark' },
|
|
957
|
+
{ label: 'user-astronaut', value: 'user-astronaut' },
|
|
958
|
+
{ label: 'hill-avalanche', value: 'hill-avalanche' },
|
|
959
|
+
{ label: 'faucet', value: 'faucet' },
|
|
960
|
+
{ label: 'arrow-down-short-wide', value: 'arrow-down-short-wide' },
|
|
961
|
+
{ label: 'hand-holding-heart', value: 'hand-holding-heart' },
|
|
962
|
+
{ label: 'landmark-dome', value: 'landmark-dome' },
|
|
963
|
+
{ label: 'arrow-down-9-1', value: 'arrow-down-9-1' },
|
|
964
|
+
{ label: 'plane-departure', value: 'plane-departure' },
|
|
965
|
+
{ label: 'plug-circle-exclamation', value: 'plug-circle-exclamation' },
|
|
966
|
+
{ label: 'camera-retro', value: 'camera-retro' },
|
|
967
|
+
{ label: 'cart-flatbed-suitcase', value: 'cart-flatbed-suitcase' },
|
|
968
|
+
{ label: 'life-ring', value: 'life-ring' },
|
|
969
|
+
{ label: 'mosquito-net', value: 'mosquito-net' },
|
|
970
|
+
{ label: 'grip-lines-vertical', value: 'grip-lines-vertical' },
|
|
971
|
+
{ label: 'toolbox', value: 'toolbox' },
|
|
972
|
+
{ label: 'hourglass-end', value: 'hourglass-end' },
|
|
973
|
+
{ label: 'audio-description', value: 'audio-description' },
|
|
974
|
+
{ label: 'wind', value: 'wind' },
|
|
975
|
+
{ label: 'stop', value: 'stop' },
|
|
976
|
+
{ label: 'location-pin', value: 'location-pin' },
|
|
977
|
+
{ label: 'chart-pie', value: 'chart-pie' },
|
|
978
|
+
{ label: 'gopuram', value: 'gopuram' },
|
|
979
|
+
{ label: 'microphone-lines', value: 'microphone-lines' },
|
|
980
|
+
{ label: 'clipboard', value: 'clipboard' },
|
|
981
|
+
{ label: 'lari-sign', value: 'lari-sign' },
|
|
982
|
+
{ label: 'money-bill-wave', value: 'money-bill-wave' },
|
|
983
|
+
{ label: 'user-pen', value: 'user-pen' },
|
|
984
|
+
{ label: 'arrow-down', value: 'arrow-down' },
|
|
985
|
+
{ label: 'link', value: 'link' },
|
|
986
|
+
{ label: 'toilet-paper-slash', value: 'toilet-paper-slash' },
|
|
987
|
+
{ label: 'phone-volume', value: 'phone-volume' },
|
|
988
|
+
{ label: 'cloud-moon-rain', value: 'cloud-moon-rain' },
|
|
989
|
+
{ label: 'music', value: 'music' },
|
|
990
|
+
{ label: 'temperature-three-quarters', value: 'temperature-three-quarters' },
|
|
991
|
+
{ label: 'angle-left', value: 'angle-left' },
|
|
992
|
+
{ label: 'person-drowning', value: 'person-drowning' },
|
|
993
|
+
{ label: 'indian-rupee-sign', value: 'indian-rupee-sign' },
|
|
994
|
+
{ label: 'wheelchair-move', value: 'wheelchair-move' },
|
|
995
|
+
{ label: 'clover', value: 'clover' },
|
|
996
|
+
{ label: 'pen-to-square', value: 'pen-to-square' },
|
|
997
|
+
{ label: 'futbol', value: 'futbol' },
|
|
998
|
+
{ label: 'face-laugh-beam', value: 'face-laugh-beam' },
|
|
999
|
+
{ label: 'square-minus', value: 'square-minus' },
|
|
1000
|
+
{ label: 'arrow-turn-up', value: 'arrow-turn-up' },
|
|
1001
|
+
{ label: 'poop', value: 'poop' },
|
|
1002
|
+
{ label: 'users-rectangle', value: 'users-rectangle' },
|
|
1003
|
+
{ label: 'temperature-quarter', value: 'temperature-quarter' },
|
|
1004
|
+
{ label: 'van-shuttle', value: 'van-shuttle' },
|
|
1005
|
+
{ label: 'building-un', value: 'building-un' },
|
|
1006
|
+
{ label: 'dice-two', value: 'dice-two' },
|
|
1007
|
+
{ label: 'images', value: 'images' },
|
|
1008
|
+
{ label: 'bus-simple', value: 'bus-simple' },
|
|
1009
|
+
{ label: 'circle-user', value: 'circle-user' },
|
|
1010
|
+
{ label: 'turn-up', value: 'turn-up' },
|
|
1011
|
+
{ label: 'video', value: 'video' },
|
|
1012
|
+
{ label: 'quote-right', value: 'quote-right' },
|
|
1013
|
+
{ label: 'person-rays', value: 'person-rays' },
|
|
1014
|
+
{ label: 'bridge-lock', value: 'bridge-lock' },
|
|
1015
|
+
{ label: 'wheelchair', value: 'wheelchair' },
|
|
1016
|
+
{ label: 'ellipsis', value: 'ellipsis' },
|
|
1017
|
+
{ label: 'arrow-rotate-right', value: 'arrow-rotate-right' },
|
|
1018
|
+
{ label: 'text-width', value: 'text-width' },
|
|
1019
|
+
{ label: 'arrows-to-eye', value: 'arrows-to-eye' },
|
|
1020
|
+
{ label: 'volleyball', value: 'volleyball' },
|
|
1021
|
+
{ label: 'folder-open', value: 'folder-open' },
|
|
1022
|
+
{ label: 'face-laugh-squint', value: 'face-laugh-squint' },
|
|
1023
|
+
{ label: 'virus-covid-slash', value: 'virus-covid-slash' },
|
|
1024
|
+
{ label: 'stopwatch-20', value: 'stopwatch-20' },
|
|
1025
|
+
{ label: 'blender-phone', value: 'blender-phone' },
|
|
1026
|
+
{ label: 'hands-bound', value: 'hands-bound' },
|
|
1027
|
+
{ label: 'house-medical', value: 'house-medical' },
|
|
1028
|
+
{ label: 'square-rss', value: 'square-rss' },
|
|
1029
|
+
{ label: 'mars-and-venus', value: 'mars-and-venus' },
|
|
1030
|
+
{ label: 'cheese', value: 'cheese' },
|
|
1031
|
+
{ label: 'newspaper', value: 'newspaper' },
|
|
1032
|
+
{ label: 'street-view', value: 'street-view' },
|
|
1033
|
+
{ label: 'laptop', value: 'laptop' },
|
|
1034
|
+
{ label: 'key', value: 'key' },
|
|
1035
|
+
{ label: 'hospital', value: 'hospital' },
|
|
1036
|
+
{ label: 'anchor-circle-xmark', value: 'anchor-circle-xmark' },
|
|
1037
|
+
{ label: 'cloud', value: 'cloud' },
|
|
1038
|
+
{ label: 'chess-rook', value: 'chess-rook' },
|
|
1039
|
+
{ label: 'staff-snake', value: 'staff-snake' },
|
|
1040
|
+
{ label: 'whiskey-glass', value: 'whiskey-glass' },
|
|
1041
|
+
{ label: 'drumstick-bite', value: 'drumstick-bite' },
|
|
1042
|
+
{ label: 'person-circle-plus', value: 'person-circle-plus' },
|
|
1043
|
+
{ label: 'shop-lock', value: 'shop-lock' },
|
|
1044
|
+
{ label: 'prescription-bottle-medical', value: 'prescription-bottle-medical' },
|
|
1045
|
+
{ label: 'face-grin-tongue-wink', value: 'face-grin-tongue-wink' },
|
|
1046
|
+
{ label: 'house-crack', value: 'house-crack' },
|
|
1047
|
+
{ label: 'sun', value: 'sun' },
|
|
1048
|
+
{ label: 'bullhorn', value: 'bullhorn' },
|
|
1049
|
+
{ label: 'colon-sign', value: 'colon-sign' },
|
|
1050
|
+
{ label: 'vector-square', value: 'vector-square' },
|
|
1051
|
+
{ label: 'hand-spock', value: 'hand-spock' },
|
|
1052
|
+
{ label: 'fire-burner', value: 'fire-burner' },
|
|
1053
|
+
{ label: 'leaf', value: 'leaf' },
|
|
1054
|
+
{ label: 'circle', value: 'circle' },
|
|
1055
|
+
{ label: 'person-praying', value: 'person-praying' },
|
|
1056
|
+
{ label: 'truck-field', value: 'truck-field' },
|
|
1057
|
+
{ label: 'rupiah-sign', value: 'rupiah-sign' },
|
|
1058
|
+
{ label: 'headphones-simple', value: 'headphones-simple' },
|
|
1059
|
+
{ label: 'weight-scale', value: 'weight-scale' },
|
|
1060
|
+
{ label: 'up-right-from-square', value: 'up-right-from-square' },
|
|
1061
|
+
{ label: 'person-walking', value: 'person-walking' },
|
|
1062
|
+
{ label: 'caret-up', value: 'caret-up' },
|
|
1063
|
+
{ label: 'code-compare', value: 'code-compare' },
|
|
1064
|
+
{ label: 'hand-fist', value: 'hand-fist' },
|
|
1065
|
+
{ label: 'circle-radiation', value: 'circle-radiation' },
|
|
1066
|
+
{ label: 'person-snowboarding', value: 'person-snowboarding' },
|
|
1067
|
+
{ label: 'stapler', value: 'stapler' },
|
|
1068
|
+
{ label: 'shoe-prints', value: 'shoe-prints' },
|
|
1069
|
+
{ label: 'sun-plant-wilt', value: 'sun-plant-wilt' },
|
|
1070
|
+
{ label: 'file-powerpoint', value: 'file-powerpoint' },
|
|
1071
|
+
{ label: 'flag', value: 'flag' },
|
|
1072
|
+
{ label: 'water', value: 'water' },
|
|
1073
|
+
{ label: 'crutch', value: 'crutch' },
|
|
1074
|
+
{ label: 'chalkboard', value: 'chalkboard' },
|
|
1075
|
+
{ label: 'neuter', value: 'neuter' },
|
|
1076
|
+
{ label: 'car-tunnel', value: 'car-tunnel' },
|
|
1077
|
+
{ label: 'arrow-up-a-z', value: 'arrow-up-a-z' },
|
|
1078
|
+
{ label: 'copy', value: 'copy' },
|
|
1079
|
+
{ label: 'compass-drafting', value: 'compass-drafting' },
|
|
1080
|
+
{ label: 'square-person-confined', value: 'square-person-confined' },
|
|
1081
|
+
{ label: 'box-open', value: 'box-open' },
|
|
1082
|
+
{ label: 'ruble-sign', value: 'ruble-sign' },
|
|
1083
|
+
{ label: 'dice-four', value: 'dice-four' },
|
|
1084
|
+
{ label: 'dumbbell', value: 'dumbbell' },
|
|
1085
|
+
{ label: 'spell-check', value: 'spell-check' },
|
|
1086
|
+
{ label: 'chevron-up', value: 'chevron-up' },
|
|
1087
|
+
{ label: 'network-wired', value: 'network-wired' },
|
|
1088
|
+
{ label: 'subscript', value: 'subscript' },
|
|
1089
|
+
{ label: 'truck-monster', value: 'truck-monster' },
|
|
1090
|
+
{ label: 'at', value: 'at' },
|
|
1091
|
+
{ label: 'hands', value: 'hands' },
|
|
1092
|
+
{ label: 'house-user', value: 'house-user' },
|
|
1093
|
+
{ label: 'car-rear', value: 'car-rear' },
|
|
1094
|
+
{ label: 'frog', value: 'frog' },
|
|
1095
|
+
{ label: 'cubes-stacked', value: 'cubes-stacked' },
|
|
1096
|
+
{ label: 'bore-hole', value: 'bore-hole' },
|
|
1097
|
+
{ label: 'circle-chevron-right', value: 'circle-chevron-right' },
|
|
1098
|
+
{ label: 'blog', value: 'blog' },
|
|
1099
|
+
{ label: 'code-pull-request', value: 'code-pull-request' },
|
|
1100
|
+
{ label: 'weight-hanging', value: 'weight-hanging' },
|
|
1101
|
+
{ label: 'cloud-showers-heavy', value: 'cloud-showers-heavy' },
|
|
1102
|
+
{ label: 'bus', value: 'bus' },
|
|
1103
|
+
{ label: 'bug', value: 'bug' },
|
|
1104
|
+
{ label: 'drum', value: 'drum' },
|
|
1105
|
+
{ label: 'message', value: 'message' },
|
|
1106
|
+
{ label: 'passport', value: 'passport' },
|
|
1107
|
+
{ label: 'person-walking-arrow-loop-left', value: 'person-walking-arrow-loop-left' },
|
|
1108
|
+
{ label: 'file-zipper', value: 'file-zipper' },
|
|
1109
|
+
{ label: 'paragraph', value: 'paragraph' },
|
|
1110
|
+
{ label: 'person-circle-minus', value: 'person-circle-minus' },
|
|
1111
|
+
{ label: 'bezier-curve', value: 'bezier-curve' },
|
|
1112
|
+
{ label: 'socks', value: 'socks' },
|
|
1113
|
+
{ label: 'file-circle-check', value: 'file-circle-check' },
|
|
1114
|
+
{ label: 'people-roof', value: 'people-roof' },
|
|
1115
|
+
{ label: 'puzzle-piece', value: 'puzzle-piece' },
|
|
1116
|
+
{ label: 'mill-sign', value: 'mill-sign' },
|
|
1117
|
+
{ label: 'phone-slash', value: 'phone-slash' },
|
|
1118
|
+
{ label: 'share-from-square', value: 'share-from-square' },
|
|
1119
|
+
{ label: 'database', value: 'database' },
|
|
1120
|
+
{ label: 'bed-pulse', value: 'bed-pulse' },
|
|
1121
|
+
{ label: 'temperature-low', value: 'temperature-low' },
|
|
1122
|
+
{ label: 'xmarks-lines', value: 'xmarks-lines' },
|
|
1123
|
+
{ label: 'chair', value: 'chair' },
|
|
1124
|
+
{ label: 'align-center', value: 'align-center' },
|
|
1125
|
+
{ label: 'plane-circle-xmark', value: 'plane-circle-xmark' },
|
|
1126
|
+
{ label: 'battery-full', value: 'battery-full' },
|
|
1127
|
+
{ label: 'trash-can-arrow-up', value: 'trash-can-arrow-up' },
|
|
1128
|
+
{ label: 'arrow-up-right-from-square', value: 'arrow-up-right-from-square' },
|
|
1129
|
+
{ label: 'face-dizzy', value: 'face-dizzy' },
|
|
1130
|
+
{ label: 'forward-fast', value: 'forward-fast' },
|
|
1131
|
+
{ label: 'circle-chevron-down', value: 'circle-chevron-down' },
|
|
1132
|
+
{ label: 'person-military-rifle', value: 'person-military-rifle' },
|
|
1133
|
+
{ label: 'cart-shopping', value: 'cart-shopping' },
|
|
1134
|
+
{ label: 'monument', value: 'monument' },
|
|
1135
|
+
{ label: 'chess-queen', value: 'chess-queen' },
|
|
1136
|
+
{ label: 'magnifying-glass-location', value: 'magnifying-glass-location' },
|
|
1137
|
+
{ label: 'arrow-up-right-dots', value: 'arrow-up-right-dots' },
|
|
1138
|
+
{ label: 'arrow-right-long', value: 'arrow-right-long' },
|
|
1139
|
+
{ label: 'eye-slash', value: 'eye-slash' },
|
|
1140
|
+
{ label: 'house', value: 'house' },
|
|
1141
|
+
{ label: 'panorama', value: 'panorama' },
|
|
1142
|
+
{ label: 'wrench', value: 'wrench' },
|
|
1143
|
+
{ label: 'user-clock', value: 'user-clock' },
|
|
1144
|
+
{ label: 'baht-sign', value: 'baht-sign' },
|
|
1145
|
+
{ label: 'capsules', value: 'capsules' },
|
|
1146
|
+
{ label: 'scroll-torah', value: 'scroll-torah' },
|
|
1147
|
+
{ label: 'grip-vertical', value: 'grip-vertical' },
|
|
1148
|
+
{ label: 'triangle-exclamation', value: 'triangle-exclamation' },
|
|
1149
|
+
{ label: 'prescription-bottle', value: 'prescription-bottle' },
|
|
1150
|
+
{ label: 'clipboard-user', value: 'clipboard-user' },
|
|
1151
|
+
{ label: 'motorcycle', value: 'motorcycle' },
|
|
1152
|
+
{ label: 'square-phone-flip', value: 'square-phone-flip' },
|
|
1153
|
+
{ label: 'face-surprise', value: 'face-surprise' },
|
|
1154
|
+
{ label: 'golf-ball-tee', value: 'golf-ball-tee' },
|
|
1155
|
+
{ label: 'mitten', value: 'mitten' },
|
|
1156
|
+
{ label: 'pump-medical', value: 'pump-medical' },
|
|
1157
|
+
{ label: 'share', value: 'share' },
|
|
1158
|
+
{ label: 'floppy-disk', value: 'floppy-disk' },
|
|
1159
|
+
{ label: 'dolly', value: 'dolly' },
|
|
1160
|
+
{ label: 'glasses', value: 'glasses' },
|
|
1161
|
+
{ label: 'building-circle-arrow-right', value: 'building-circle-arrow-right' },
|
|
1162
|
+
{ label: 'suitcase', value: 'suitcase' },
|
|
1163
|
+
{ label: 'retweet', value: 'retweet' },
|
|
1164
|
+
{ label: 'shapes', value: 'shapes' },
|
|
1165
|
+
{ label: 'bitcoin-sign', value: 'bitcoin-sign' },
|
|
1166
|
+
{ label: 'chart-gantt', value: 'chart-gantt' },
|
|
1167
|
+
{ label: 'teeth-open', value: 'teeth-open' },
|
|
1168
|
+
{ label: 'universal-access', value: 'universal-access' },
|
|
1169
|
+
{ label: 'map-location-dot', value: 'map-location-dot' },
|
|
1170
|
+
{ label: 'plug-circle-plus', value: 'plug-circle-plus' },
|
|
1171
|
+
{ label: 'pager', value: 'pager' },
|
|
1172
|
+
{ label: 'arrows-spin', value: 'arrows-spin' },
|
|
1173
|
+
{ label: 'car-side', value: 'car-side' },
|
|
1174
|
+
{ label: 'list-ol', value: 'list-ol' },
|
|
1175
|
+
{ label: 'bandage', value: 'bandage' },
|
|
1176
|
+
{ label: 'money-bill-transfer', value: 'money-bill-transfer' },
|
|
1177
|
+
{ label: 'ban', value: 'ban' },
|
|
1178
|
+
{ label: 'train-tram', value: 'train-tram' },
|
|
1179
|
+
{ label: 'face-grin-hearts', value: 'face-grin-hearts' },
|
|
1180
|
+
{ label: 'guitar', value: 'guitar' },
|
|
1181
|
+
{ label: 'mattress-pillow', value: 'mattress-pillow' },
|
|
1182
|
+
{ label: 'square-poll-horizontal', value: 'square-poll-horizontal' },
|
|
1183
|
+
{ label: 'scissors', value: 'scissors' },
|
|
1184
|
+
{ label: 'people-arrows', value: 'people-arrows' },
|
|
1185
|
+
{ label: 'compact-disc', value: 'compact-disc' },
|
|
1186
|
+
{ label: 'tv', value: 'tv' },
|
|
1187
|
+
{ label: 'medal', value: 'medal' },
|
|
1188
|
+
{ label: 'arrow-right-from-bracket', value: 'arrow-right-from-bracket' },
|
|
1189
|
+
{ label: 'heading', value: 'heading' },
|
|
1190
|
+
{ label: 'hand-holding-medical', value: 'hand-holding-medical' },
|
|
1191
|
+
{ label: 'gift', value: 'gift' },
|
|
1192
|
+
{ label: 'laptop-code', value: 'laptop-code' },
|
|
1193
|
+
{ label: 'money-bill-1', value: 'money-bill-1' },
|
|
1194
|
+
{ label: 'calendar-minus', value: 'calendar-minus' },
|
|
1195
|
+
{ label: 'rectangle-ad', value: 'rectangle-ad' },
|
|
1196
|
+
{ label: 'hourglass', value: 'hourglass' },
|
|
1197
|
+
{ label: 'tablet', value: 'tablet' },
|
|
1198
|
+
{ label: 'wand-sparkles', value: 'wand-sparkles' },
|
|
1199
|
+
{ label: 'users-viewfinder', value: 'users-viewfinder' },
|
|
1200
|
+
{ label: 'truck-field-un', value: 'truck-field-un' },
|
|
1201
|
+
{ label: 'house-flag', value: 'house-flag' },
|
|
1202
|
+
{ label: 'arrows-down-to-line', value: 'arrows-down-to-line' },
|
|
1203
|
+
{ label: 'carrot', value: 'carrot' },
|
|
1204
|
+
{ label: 'apple-whole', value: 'apple-whole' },
|
|
1205
|
+
{ label: 'envelope-open', value: 'envelope-open' },
|
|
1206
|
+
{ label: 'brush', value: 'brush' },
|
|
1207
|
+
{ label: 'gauge-simple-high', value: 'gauge-simple-high' },
|
|
1208
|
+
{ label: 'person-dress', value: 'person-dress' },
|
|
1209
|
+
{ label: 'person-burst', value: 'person-burst' },
|
|
1210
|
+
{ label: 'gauge-simple', value: 'gauge-simple' },
|
|
1211
|
+
{ label: 'object-ungroup', value: 'object-ungroup' },
|
|
1212
|
+
{ label: 'circle-arrow-down', value: 'circle-arrow-down' },
|
|
1213
|
+
{ label: 'toilets-portable', value: 'toilets-portable' },
|
|
1214
|
+
{ label: 'money-bill-wheat', value: 'money-bill-wheat' },
|
|
1215
|
+
{ label: 'turkish-lira-sign', value: 'turkish-lira-sign' },
|
|
1216
|
+
{ label: 'face-grin-beam-sweat', value: 'face-grin-beam-sweat' },
|
|
1217
|
+
{ label: 'diagram-project', value: 'diagram-project' },
|
|
1218
|
+
{ label: 'cloud-showers-water', value: 'cloud-showers-water' },
|
|
1219
|
+
{ label: 'cannabis', value: 'cannabis' },
|
|
1220
|
+
{ label: 'pallet', value: 'pallet' },
|
|
1221
|
+
{ label: 'volume-high', value: 'volume-high' },
|
|
1222
|
+
{ label: 'jet-fighter', value: 'jet-fighter' },
|
|
1223
|
+
{ label: 'campground', value: 'campground' },
|
|
1224
|
+
{ label: 'stopwatch', value: 'stopwatch' },
|
|
1225
|
+
{ label: 'handcuffs', value: 'handcuffs' },
|
|
1226
|
+
{ label: 'shield-heart', value: 'shield-heart' },
|
|
1227
|
+
{ label: 'bug-slash', value: 'bug-slash' },
|
|
1228
|
+
{ label: 'droplet', value: 'droplet' },
|
|
1229
|
+
{ label: 'virus-covid', value: 'virus-covid' },
|
|
1230
|
+
{ label: 'face-smile', value: 'face-smile' },
|
|
1231
|
+
{ label: 'crop-simple', value: 'crop-simple' },
|
|
1232
|
+
{ label: 'chess-board', value: 'chess-board' },
|
|
1233
|
+
{ label: 'face-kiss-beam', value: 'face-kiss-beam' },
|
|
1234
|
+
{ label: 'hand', value: 'hand' },
|
|
1235
|
+
{ label: 'battery-empty', value: 'battery-empty' },
|
|
1236
|
+
{ label: 'dumpster-fire', value: 'dumpster-fire' },
|
|
1237
|
+
{ label: 'arrows-to-dot', value: 'arrows-to-dot' },
|
|
1238
|
+
{ label: 'store-slash', value: 'store-slash' },
|
|
1239
|
+
{ label: 'face-grin-squint-tears', value: 'face-grin-squint-tears' },
|
|
1240
|
+
{ label: 'fire-flame-curved', value: 'fire-flame-curved' },
|
|
1241
|
+
{ label: 'church', value: 'church' },
|
|
1242
|
+
{ label: 'helicopter', value: 'helicopter' },
|
|
1243
|
+
{ label: 'face-kiss-wink-heart', value: 'face-kiss-wink-heart' },
|
|
1244
|
+
{ label: 'laptop-file', value: 'laptop-file' },
|
|
1245
|
+
{ label: 'chess', value: 'chess' },
|
|
1246
|
+
{ label: 'trash-arrow-up', value: 'trash-arrow-up' },
|
|
1247
|
+
{ label: 'trophy', value: 'trophy' },
|
|
1248
|
+
{ label: 'house-chimney', value: 'house-chimney' },
|
|
1249
|
+
{ label: 'compress', value: 'compress' },
|
|
1250
|
+
{ label: 'notdef', value: 'notdef' },
|
|
1251
|
+
{ label: 'bread-slice', value: 'bread-slice' },
|
|
1252
|
+
{ label: 'shower', value: 'shower' },
|
|
1253
|
+
{ label: 'minimize', value: 'minimize' },
|
|
1254
|
+
{ label: 'toilet', value: 'toilet' },
|
|
1255
|
+
{ label: 'temperature-half', value: 'temperature-half' },
|
|
1256
|
+
{ label: 'bugs', value: 'bugs' },
|
|
1257
|
+
{ label: 'diamond', value: 'diamond' },
|
|
1258
|
+
{ label: 'sterling-sign', value: 'sterling-sign' },
|
|
1259
|
+
{ label: 'person-through-window', value: 'person-through-window' },
|
|
1260
|
+
{ label: 'calendar-days', value: 'calendar-days' },
|
|
1261
|
+
{ label: 'face-meh-blank', value: 'face-meh-blank' },
|
|
1262
|
+
{ label: 'bowl-rice', value: 'bowl-rice' },
|
|
1263
|
+
{ label: 'school-circle-xmark', value: 'school-circle-xmark' },
|
|
1264
|
+
{ label: 'person-half-dress', value: 'person-half-dress' },
|
|
1265
|
+
{ label: 'plane-lock', value: 'plane-lock' },
|
|
1266
|
+
{ label: 'list', value: 'list' },
|
|
1267
|
+
{ label: 'square-parking', value: 'square-parking' },
|
|
1268
|
+
{ label: 'square-caret-down', value: 'square-caret-down' },
|
|
1269
|
+
{ label: 'paperclip', value: 'paperclip' },
|
|
1270
|
+
{ label: 'road-circle-exclamation', value: 'road-circle-exclamation' },
|
|
1271
|
+
{ label: 'circle-play', value: 'circle-play' },
|
|
1272
|
+
{ label: 'building-user', value: 'building-user' },
|
|
1273
|
+
{ label: 'battery-quarter', value: 'battery-quarter' },
|
|
1274
|
+
{ label: 'house-chimney-medical', value: 'house-chimney-medical' },
|
|
1275
|
+
{ label: 'mercury', value: 'mercury' },
|
|
1276
|
+
{ label: 'comment-dots', value: 'comment-dots' },
|
|
1277
|
+
{ label: 'mosque', value: 'mosque' },
|
|
1278
|
+
{ label: 'notes-medical', value: 'notes-medical' },
|
|
1279
|
+
{ label: 'charging-station', value: 'charging-station' },
|
|
1280
|
+
{ label: 'archway', value: 'archway' },
|
|
1281
|
+
{ label: 'face-grimace', value: 'face-grimace' },
|
|
1282
|
+
{ label: 'om', value: 'om' },
|
|
1283
|
+
{ label: 'flask', value: 'flask' },
|
|
1284
|
+
{ label: 'school', value: 'school' },
|
|
1285
|
+
{ label: 'head-side-mask', value: 'head-side-mask' },
|
|
1286
|
+
{ label: 'rotate-left', value: 'rotate-left' },
|
|
1287
|
+
{ label: 'file-prescription', value: 'file-prescription' },
|
|
1288
|
+
{ label: 'book-skull', value: 'book-skull' },
|
|
1289
|
+
{ label: 'ranking-star', value: 'ranking-star' },
|
|
1290
|
+
{ label: 'square-full', value: 'square-full' },
|
|
1291
|
+
{ label: 'couch', value: 'couch' },
|
|
1292
|
+
{ label: 'keyboard', value: 'keyboard' },
|
|
1293
|
+
{ label: 'litecoin-sign', value: 'litecoin-sign' },
|
|
1294
|
+
{ label: 'house-medical-flag', value: 'house-medical-flag' },
|
|
1295
|
+
{ label: 'expand', value: 'expand' },
|
|
1296
|
+
{ label: 'paste', value: 'paste' },
|
|
1297
|
+
{ label: 'table-tennis-paddle-ball', value: 'table-tennis-paddle-ball' },
|
|
1298
|
+
{ label: 'tablet-button', value: 'tablet-button' },
|
|
1299
|
+
{ label: 'basketball', value: 'basketball' },
|
|
1300
|
+
{ label: 'wallet', value: 'wallet' },
|
|
1301
|
+
{ label: 'person-running', value: 'person-running' },
|
|
1302
|
+
{ label: 'window-minimize', value: 'window-minimize' },
|
|
1303
|
+
{ label: 'book-atlas', value: 'book-atlas' },
|
|
1304
|
+
{ label: 'stairs', value: 'stairs' },
|
|
1305
|
+
{ label: 'unlock', value: 'unlock' },
|
|
1306
|
+
{ label: 'arrow-down-1-9', value: 'arrow-down-1-9' },
|
|
1307
|
+
{ label: 'tent-arrows-down', value: 'tent-arrows-down' },
|
|
1308
|
+
{ label: 'face-grin', value: 'face-grin' },
|
|
1309
|
+
{ label: 'arrow-down-long', value: 'arrow-down-long' },
|
|
1310
|
+
{ label: 'heart', value: 'heart' },
|
|
1311
|
+
{ label: 'dollar-sign', value: 'dollar-sign' },
|
|
1312
|
+
{ label: 'khanda', value: 'khanda' },
|
|
1313
|
+
{ label: 'dice-five', value: 'dice-five' },
|
|
1314
|
+
{ label: 'diamond-turn-right', value: 'diamond-turn-right' },
|
|
1315
|
+
{ label: 'hammer', value: 'hammer' },
|
|
1316
|
+
{ label: 'check-to-slot', value: 'check-to-slot' },
|
|
1317
|
+
{ label: 'locust', value: 'locust' },
|
|
1318
|
+
{ label: 'umbrella', value: 'umbrella' },
|
|
1319
|
+
{ label: 'genderless', value: 'genderless' },
|
|
1320
|
+
{ label: 'kit-medical', value: 'kit-medical' },
|
|
1321
|
+
{ label: 'face-smile-wink', value: 'face-smile-wink' },
|
|
1322
|
+
{ label: 'unlock-keyhole', value: 'unlock-keyhole' },
|
|
1323
|
+
{ label: 'arrow-up-9-1', value: 'arrow-up-9-1' },
|
|
1324
|
+
{ label: 'square-pen', value: 'square-pen' },
|
|
1325
|
+
{ label: 'square-envelope', value: 'square-envelope' },
|
|
1326
|
+
{ label: 'florin-sign', value: 'florin-sign' },
|
|
1327
|
+
{ label: 'arrow-up-long', value: 'arrow-up-long' },
|
|
1328
|
+
{ label: 'people-robbery', value: 'people-robbery' },
|
|
1329
|
+
{ label: 'location-crosshairs', value: 'location-crosshairs' },
|
|
1330
|
+
{ label: 'walkie-talkie', value: 'walkie-talkie' },
|
|
1331
|
+
{ label: 'dna', value: 'dna' },
|
|
1332
|
+
{ label: 'file-image', value: 'file-image' },
|
|
1333
|
+
{ label: 'diagram-predecessor', value: 'diagram-predecessor' },
|
|
1334
|
+
{ label: 'circle-dollar-to-slot', value: 'circle-dollar-to-slot' },
|
|
1335
|
+
{ label: 'martini-glass', value: 'martini-glass' },
|
|
1336
|
+
{ label: 'person-pregnant', value: 'person-pregnant' },
|
|
1337
|
+
{ label: 'vial', value: 'vial' },
|
|
1338
|
+
{ label: 'people-line', value: 'people-line' },
|
|
1339
|
+
{ label: 'euro-sign', value: 'euro-sign' },
|
|
1340
|
+
{ label: 'arrow-right-to-city', value: 'arrow-right-to-city' },
|
|
1341
|
+
{ label: 'square-share-nodes', value: 'square-share-nodes' },
|
|
1342
|
+
{ label: 'envelopes-bulk', value: 'envelopes-bulk' },
|
|
1343
|
+
{ label: 'window-restore', value: 'window-restore' },
|
|
1344
|
+
{ label: 'share-nodes', value: 'share-nodes' },
|
|
1345
|
+
{ label: 'mobile-screen-button', value: 'mobile-screen-button' },
|
|
1346
|
+
{ label: 'ring', value: 'ring' },
|
|
1347
|
+
{ label: 'plus-minus', value: 'plus-minus' },
|
|
1348
|
+
{ label: 'toggle-on', value: 'toggle-on' },
|
|
1349
|
+
{ label: 'guarani-sign', value: 'guarani-sign' },
|
|
1350
|
+
{ label: 'building-circle-xmark', value: 'building-circle-xmark' },
|
|
1351
|
+
{ label: 'plane-up', value: 'plane-up' },
|
|
1352
|
+
{ label: 'circle-dot', value: 'circle-dot' },
|
|
1353
|
+
{ label: 'filter-circle-dollar', value: 'filter-circle-dollar' },
|
|
1354
|
+
{ label: 'address-card', value: 'address-card' },
|
|
1355
|
+
{ label: 'hotdog', value: 'hotdog' },
|
|
1356
|
+
{ label: 'hourglass-start', value: 'hourglass-start' },
|
|
1357
|
+
{ label: 'pizza-slice', value: 'pizza-slice' },
|
|
1358
|
+
{ label: 'tablet-screen-button', value: 'tablet-screen-button' },
|
|
1359
|
+
{ label: 'face-tired', value: 'face-tired' },
|
|
1360
|
+
{ label: 'cross', value: 'cross' },
|
|
1361
|
+
{ label: 'house-laptop', value: 'house-laptop' },
|
|
1362
|
+
{ label: 'location-pin-lock', value: 'location-pin-lock' },
|
|
1363
|
+
{ label: 'user-injured', value: 'user-injured' },
|
|
1364
|
+
{ label: 'truck-plane', value: 'truck-plane' },
|
|
1365
|
+
{ label: 'building-circle-check', value: 'building-circle-check' },
|
|
1366
|
+
{ label: 'graduation-cap', value: 'graduation-cap' },
|
|
1367
|
+
{ label: 'atom', value: 'atom' },
|
|
1368
|
+
{ label: 'biohazard', value: 'biohazard' },
|
|
1369
|
+
{ label: 'spoon', value: 'spoon' },
|
|
1370
|
+
{ label: 'broom', value: 'broom' },
|
|
1371
|
+
{ label: 'vial-circle-check', value: 'vial-circle-check' },
|
|
1372
|
+
{ label: 'hurricane', value: 'hurricane' },
|
|
1373
|
+
{ label: 'file-export', value: 'file-export' },
|
|
1374
|
+
{ label: 'user-gear', value: 'user-gear' },
|
|
1375
|
+
{ label: 'paper-plane', value: 'paper-plane' },
|
|
1376
|
+
{ label: 'tower-broadcast', value: 'tower-broadcast' },
|
|
1377
|
+
{ label: 'money-bill-trend-up', value: 'money-bill-trend-up' },
|
|
1378
|
+
{ label: 'mobile-screen', value: 'mobile-screen' },
|
|
1379
|
+
{ label: 'basket-shopping', value: 'basket-shopping' },
|
|
1380
|
+
{ label: 'arrow-right', value: 'arrow-right' },
|
|
1381
|
+
{ label: 'person-walking-arrow-right', value: 'person-walking-arrow-right' },
|
|
1382
|
+
{ label: 'flag-checkered', value: 'flag-checkered' },
|
|
1383
|
+
{ label: 'border-none', value: 'border-none' },
|
|
1384
|
+
{ label: 'city', value: 'city' },
|
|
1385
|
+
{ label: 'chess-king', value: 'chess-king' },
|
|
1386
|
+
{ label: 'backward', value: 'backward' },
|
|
1387
|
+
{ label: 'chart-column', value: 'chart-column' },
|
|
1388
|
+
{ label: 'caret-left', value: 'caret-left' },
|
|
1389
|
+
{ label: 'divide', value: 'divide' },
|
|
1390
|
+
{ label: 'house-fire', value: 'house-fire' },
|
|
1391
|
+
{ label: 'mars-stroke-right', value: 'mars-stroke-right' },
|
|
1392
|
+
{ label: 'ruler-combined', value: 'ruler-combined' },
|
|
1393
|
+
{ label: 'heart-circle-bolt', value: 'heart-circle-bolt' },
|
|
1394
|
+
{ label: 'greater-than', value: 'greater-than' },
|
|
1395
|
+
{ label: 'cookie', value: 'cookie' },
|
|
1396
|
+
{ label: 'face-grin-beam', value: 'face-grin-beam' },
|
|
1397
|
+
{ label: 'fire-flame-simple', value: 'fire-flame-simple' },
|
|
1398
|
+
{ label: 'person-swimming', value: 'person-swimming' },
|
|
1399
|
+
{ label: 'chart-bar', value: 'chart-bar' },
|
|
1400
|
+
{ label: 'satellite-dish', value: 'satellite-dish' },
|
|
1401
|
+
{ label: 'head-side-cough', value: 'head-side-cough' },
|
|
1402
|
+
{ label: 'spaghetti-monster-flying', value: 'spaghetti-monster-flying' },
|
|
1403
|
+
{ label: 'jar-wheat', value: 'jar-wheat' },
|
|
1404
|
+
{ label: 'skull', value: 'skull' },
|
|
1405
|
+
{ label: 'down-long', value: 'down-long' },
|
|
1406
|
+
{ label: 'utensils', value: 'utensils' },
|
|
1407
|
+
{ label: 'child-reaching', value: 'child-reaching' },
|
|
1408
|
+
{ label: 'comment', value: 'comment' },
|
|
1409
|
+
{ label: 'gear', value: 'gear' },
|
|
1410
|
+
{ label: 'bacteria', value: 'bacteria' },
|
|
1411
|
+
{ label: 'mountain-city', value: 'mountain-city' },
|
|
1412
|
+
{ label: 'heart-crack', value: 'heart-crack' },
|
|
1413
|
+
{ label: 'truck-pickup', value: 'truck-pickup' },
|
|
1414
|
+
{ label: 'id-card-clip', value: 'id-card-clip' },
|
|
1415
|
+
{ label: 'file-medical', value: 'file-medical' },
|
|
1416
|
+
{ label: 'spider', value: 'spider' },
|
|
1417
|
+
{ label: 'right-to-bracket', value: 'right-to-bracket' },
|
|
1418
|
+
{ label: 'signs-post', value: 'signs-post' },
|
|
1419
|
+
{ label: 'naira-sign', value: 'naira-sign' },
|
|
1420
|
+
{ label: 'school-flag', value: 'school-flag' },
|
|
1421
|
+
{ label: 'briefcase', value: 'briefcase' },
|
|
1422
|
+
{ label: 'circle-half-stroke', value: 'circle-half-stroke' },
|
|
1423
|
+
{ label: 'heart-circle-minus', value: 'heart-circle-minus' },
|
|
1424
|
+
{ label: 'bed', value: 'bed' },
|
|
1425
|
+
{ label: 'restroom', value: 'restroom' },
|
|
1426
|
+
{ label: 'wheat-awn-circle-exclamation', value: 'wheat-awn-circle-exclamation' },
|
|
1427
|
+
{ label: 'palette', value: 'palette' },
|
|
1428
|
+
{ label: 'user-large', value: 'user-large' },
|
|
1429
|
+
{ label: 'circle-right', value: 'circle-right' },
|
|
1430
|
+
{ label: 'ribbon', value: 'ribbon' },
|
|
1431
|
+
{ label: 'hockey-puck', value: 'hockey-puck' },
|
|
1432
|
+
{ label: 'blender', value: 'blender' },
|
|
1433
|
+
{ label: 'arrow-up', value: 'arrow-up' },
|
|
1434
|
+
{ label: 'heart-circle-check', value: 'heart-circle-check' },
|
|
1435
|
+
{ label: 'user-nurse', value: 'user-nurse' },
|
|
1436
|
+
{ label: 'arrows-to-circle', value: 'arrows-to-circle' },
|
|
1437
|
+
{ label: 'compass', value: 'compass' },
|
|
1438
|
+
{ label: 'gauge', value: 'gauge' },
|
|
1439
|
+
{ label: 'face-meh', value: 'face-meh' },
|
|
1440
|
+
{ label: 'cart-plus', value: 'cart-plus' },
|
|
1441
|
+
{ label: 'barcode', value: 'barcode' },
|
|
1442
|
+
{ label: 'bone', value: 'bone' },
|
|
1443
|
+
{ label: 'rotate', value: 'rotate' },
|
|
1444
|
+
{ label: 'reply-all', value: 'reply-all' },
|
|
1445
|
+
{ label: 'link-slash', value: 'link-slash' },
|
|
1446
|
+
{ label: 'magnifying-glass-dollar', value: 'magnifying-glass-dollar' },
|
|
1447
|
+
{ label: 'jug-detergent', value: 'jug-detergent' },
|
|
1448
|
+
{ label: 'users-gear', value: 'users-gear' },
|
|
1449
|
+
{ label: 'business-time', value: 'business-time' },
|
|
1450
|
+
{ label: 'bag-shopping', value: 'bag-shopping' },
|
|
1451
|
+
{ label: 'crown', value: 'crown' },
|
|
1452
|
+
{ label: 'bong', value: 'bong' },
|
|
1453
|
+
{ label: 'angles-down', value: 'angles-down' },
|
|
1454
|
+
{ label: 'elevator', value: 'elevator' },
|
|
1455
|
+
{ label: 'dice-six', value: 'dice-six' },
|
|
1456
|
+
{ label: 'kitchen-set', value: 'kitchen-set' },
|
|
1457
|
+
{ label: 'brazilian-real-sign', value: 'brazilian-real-sign' },
|
|
1458
|
+
{ label: 'turn-down', value: 'turn-down' },
|
|
1459
|
+
{ label: 'arrow-rotate-left', value: 'arrow-rotate-left' },
|
|
1460
|
+
{ label: 'caret-down', value: 'caret-down' },
|
|
1461
|
+
{ label: 'feather-pointed', value: 'feather-pointed' },
|
|
1462
|
+
{ label: 'mountain-sun', value: 'mountain-sun' },
|
|
1463
|
+
{ label: 'circle-notch', value: 'circle-notch' },
|
|
1464
|
+
{ label: 'power-off', value: 'power-off' },
|
|
1465
|
+
{ label: 'icicles', value: 'icicles' },
|
|
1466
|
+
{ label: 'wave-square', value: 'wave-square' },
|
|
1467
|
+
{ label: 'arrows-turn-to-dots', value: 'arrows-turn-to-dots' },
|
|
1468
|
+
{ label: 'arrow-up-from-water-pump', value: 'arrow-up-from-water-pump' },
|
|
1469
|
+
{ label: 'slash', value: 'slash' },
|
|
1470
|
+
{ label: 'magnifying-glass-chart', value: 'magnifying-glass-chart' },
|
|
1471
|
+
{ label: 'rectangle-list', value: 'rectangle-list' },
|
|
1472
|
+
{ label: 'wine-glass-empty', value: 'wine-glass-empty' },
|
|
1473
|
+
{ label: 'less-than', value: 'less-than' },
|
|
1474
|
+
{ label: 'book', value: 'book' },
|
|
1475
|
+
{ label: 'magnifying-glass-minus', value: 'magnifying-glass-minus' },
|
|
1476
|
+
{ label: 'person-military-to-person', value: 'person-military-to-person' },
|
|
1477
|
+
{ label: 'cloud-bolt', value: 'cloud-bolt' },
|
|
1478
|
+
{ label: 'bacon', value: 'bacon' },
|
|
1479
|
+
{ label: 'arrow-up-wide-short', value: 'arrow-up-wide-short' },
|
|
1480
|
+
{ label: 'square-check', value: 'square-check' },
|
|
1481
|
+
{ label: 'chess-pawn', value: 'chess-pawn' },
|
|
1482
|
+
{ label: 'moon', value: 'moon' },
|
|
1483
|
+
{ label: 'jar', value: 'jar' },
|
|
1484
|
+
{ label: 'mobile-button', value: 'mobile-button' },
|
|
1485
|
+
{ label: 'file-invoice-dollar', value: 'file-invoice-dollar' },
|
|
1486
|
+
{ label: 'shop', value: 'shop' },
|
|
1487
|
+
{ label: 'house-tsunami', value: 'house-tsunami' },
|
|
1488
|
+
{ label: 'house-chimney-crack', value: 'house-chimney-crack' },
|
|
1489
|
+
{ label: 'phone-flip', value: 'phone-flip' },
|
|
1490
|
+
{ label: 'file-pdf', value: 'file-pdf' },
|
|
1491
|
+
{ label: 'traffic-light', value: 'traffic-light' },
|
|
1492
|
+
{ label: 'hand-dots', value: 'hand-dots' },
|
|
1493
|
+
{ label: 'teeth', value: 'teeth' },
|
|
1494
|
+
{ label: 'image', value: 'image' },
|
|
1495
|
+
{ label: 'location-arrow', value: 'location-arrow' },
|
|
1496
|
+
{ label: 'outdent', value: 'outdent' },
|
|
1497
|
+
{ label: 'holly-berry', value: 'holly-berry' },
|
|
1498
|
+
{ label: 'temperature-arrow-down', value: 'temperature-arrow-down' },
|
|
1499
|
+
{ label: 'angle-up', value: 'angle-up' },
|
|
1500
|
+
{ label: 'microscope', value: 'microscope' },
|
|
1501
|
+
{ label: 'voicemail', value: 'voicemail' },
|
|
1502
|
+
{ label: 'file-signature', value: 'file-signature' },
|
|
1503
|
+
{ label: 'table-cells-large', value: 'table-cells-large' },
|
|
1504
|
+
{ label: 'align-right', value: 'align-right' },
|
|
1505
|
+
{ label: 'venus-mars', value: 'venus-mars' },
|
|
1506
|
+
{ label: 'temperature-full', value: 'temperature-full' },
|
|
1507
|
+
{ label: 'mobile', value: 'mobile' },
|
|
1508
|
+
{ label: 'font-awesome', value: 'font-awesome' },
|
|
1509
|
+
{ label: 'play', value: 'play' },
|
|
1510
|
+
{ label: 'tty', value: 'tty' },
|
|
1511
|
+
{ label: 'signal', value: 'signal' },
|
|
1512
|
+
{ label: 'address-book', value: 'address-book' },
|
|
1513
|
+
{ label: 'bottle-water', value: 'bottle-water' },
|
|
1514
|
+
{ label: 'hand-point-left', value: 'hand-point-left' },
|
|
1515
|
+
{ label: 'book-bible', value: 'book-bible' },
|
|
1516
|
+
{ label: 'person-cane', value: 'person-cane' },
|
|
1517
|
+
{ label: 'ticket-simple', value: 'ticket-simple' },
|
|
1518
|
+
{ label: 'transgender', value: 'transgender' },
|
|
1519
|
+
{ label: 'folder-minus', value: 'folder-minus' },
|
|
1520
|
+
{ label: 'plug-circle-check', value: 'plug-circle-check' },
|
|
1521
|
+
{ label: 'truck-fast', value: 'truck-fast' },
|
|
1522
|
+
{ label: 'caravan', value: 'caravan' },
|
|
1523
|
+
{ label: 'ship', value: 'ship' },
|
|
1524
|
+
{ label: 'boxes-stacked', value: 'boxes-stacked' },
|
|
1525
|
+
{ label: 'person-walking-dashed-line-arrow-right', value: 'person-walking-dashed-line-arrow-right' },
|
|
1526
|
+
{ label: 'book-tanakh', value: 'book-tanakh' },
|
|
1527
|
+
{ label: 'glass-water', value: 'glass-water' },
|
|
1528
|
+
{ label: 'ankh', value: 'ankh' },
|
|
1529
|
+
{ label: 'face-frown-open', value: 'face-frown-open' },
|
|
1530
|
+
{ label: 'arrow-left', value: 'arrow-left' },
|
|
1531
|
+
{ label: 'up-right-and-down-left-from-center', value: 'up-right-and-down-left-from-center' },
|
|
1532
|
+
{ label: 'folder', value: 'folder' },
|
|
1533
|
+
{ label: 'vault', value: 'vault' },
|
|
1534
|
+
{ label: 'mars-double', value: 'mars-double' },
|
|
1535
|
+
{ label: 'house-medical-circle-xmark', value: 'house-medical-circle-xmark' },
|
|
1536
|
+
{ label: 'circle-arrow-up', value: 'circle-arrow-up' },
|
|
1537
|
+
{ label: 'scroll', value: 'scroll' },
|
|
1538
|
+
{ label: 'synagogue', value: 'synagogue' },
|
|
1539
|
+
{ label: 'joint', value: 'joint' },
|
|
1540
|
+
{ label: 'forward-step', value: 'forward-step' },
|
|
1541
|
+
{ label: 'truck-moving', value: 'truck-moving' },
|
|
1542
|
+
{ label: 'volume-xmark', value: 'volume-xmark' },
|
|
1543
|
+
{ label: 'gauge-high', value: 'gauge-high' },
|
|
1544
|
+
{ label: 'file-pen', value: 'file-pen' },
|
|
1545
|
+
{ label: 'trailer', value: 'trailer' },
|
|
1546
|
+
{ label: 'hand-peace', value: 'hand-peace' },
|
|
1547
|
+
{ label: 'hands-clapping', value: 'hands-clapping' },
|
|
1548
|
+
{ label: 'gun', value: 'gun' },
|
|
1549
|
+
{ label: 'martini-glass-empty', value: 'martini-glass-empty' },
|
|
1550
|
+
{ label: 'heart-circle-plus', value: 'heart-circle-plus' },
|
|
1551
|
+
{ label: 'plane-arrival', value: 'plane-arrival' },
|
|
1552
|
+
{ label: 'martini-glass-citrus', value: 'martini-glass-citrus' },
|
|
1553
|
+
{ label: 'vials', value: 'vials' },
|
|
1554
|
+
{ label: 'caret-right', value: 'caret-right' },
|
|
1555
|
+
{ label: 'rainbow', value: 'rainbow' },
|
|
1556
|
+
{ label: 'kiwi-bird', value: 'kiwi-bird' },
|
|
1557
|
+
{ label: 'ferry', value: 'ferry' },
|
|
1558
|
+
{ label: 'robot', value: 'robot' },
|
|
1559
|
+
{ label: 'gears', value: 'gears' },
|
|
1560
|
+
{ label: 'bold', value: 'bold' },
|
|
1561
|
+
{ label: 'train', value: 'train' },
|
|
1562
|
+
{ label: 'border-all', value: 'border-all' },
|
|
1563
|
+
{ label: 'cow', value: 'cow' },
|
|
1564
|
+
{ label: 'person-dots-from-line', value: 'person-dots-from-line' },
|
|
1565
|
+
{ label: 'dice-d20', value: 'dice-d20' },
|
|
1566
|
+
{ label: 'paint-roller', value: 'paint-roller' },
|
|
1567
|
+
{ label: 'crop', value: 'crop' },
|
|
1568
|
+
{ label: 'percent', value: 'percent' },
|
|
1569
|
+
{ label: 'book-quran', value: 'book-quran' },
|
|
1570
|
+
{ label: 'bars-staggered', value: 'bars-staggered' },
|
|
1571
|
+
{ label: 'crow', value: 'crow' },
|
|
1572
|
+
{ label: 'square-up-right', value: 'square-up-right' },
|
|
1573
|
+
{ label: 'minus', value: 'minus' },
|
|
1574
|
+
{ label: 'bolt', value: 'bolt' },
|
|
1575
|
+
{ label: 'shop-slash', value: 'shop-slash' },
|
|
1576
|
+
{ label: 'mask-ventilator', value: 'mask-ventilator' },
|
|
1577
|
+
{ label: 'exclamation', value: 'exclamation' },
|
|
1578
|
+
{ label: 'star-half-stroke', value: 'star-half-stroke' },
|
|
1579
|
+
{ label: 'bomb', value: 'bomb' },
|
|
1580
|
+
{ label: 'folder-tree', value: 'folder-tree' },
|
|
1581
|
+
{ label: 'sim-card', value: 'sim-card' },
|
|
1582
|
+
{ label: 'route', value: 'route' },
|
|
1583
|
+
{ label: 'road-barrier', value: 'road-barrier' },
|
|
1584
|
+
{ label: 'wand-magic', value: 'wand-magic' },
|
|
1585
|
+
{ label: 'syringe', value: 'syringe' },
|
|
1586
|
+
{ label: 'burst', value: 'burst' },
|
|
1587
|
+
{ label: 'tent-arrow-down-to-line', value: 'tent-arrow-down-to-line' },
|
|
1588
|
+
{ label: 'hand-holding-dollar', value: 'hand-holding-dollar' },
|
|
1589
|
+
{ label: 'plane', value: 'plane' },
|
|
1590
|
+
{ label: 'horse-head', value: 'horse-head' },
|
|
1591
|
+
{ label: 'plane-slash', value: 'plane-slash' },
|
|
1592
|
+
{ label: 'tower-observation', value: 'tower-observation' },
|
|
1593
|
+
{ label: 'arrow-down-z-a', value: 'arrow-down-z-a' },
|
|
1594
|
+
{ label: 'oil-well', value: 'oil-well' },
|
|
1595
|
+
{ label: 'left-right', value: 'left-right' },
|
|
1596
|
+
{ label: 'person-falling-burst', value: 'person-falling-burst' },
|
|
1597
|
+
{ label: 'clapperboard', value: 'clapperboard' },
|
|
1598
|
+
{ label: 'calendar', value: 'calendar' },
|
|
1599
|
+
{ label: 'trash-can', value: 'trash-can' },
|
|
1600
|
+
{ label: 'hand-holding-hand', value: 'hand-holding-hand' },
|
|
1601
|
+
{ label: 'laptop-medical', value: 'laptop-medical' },
|
|
1602
|
+
{ label: 'a', value: 'a' },
|
|
1603
|
+
{ label: 'clipboard-list', value: 'clipboard-list' },
|
|
1604
|
+
{ label: 'b', value: 'b' },
|
|
1605
|
+
{ label: 'franc-sign', value: 'franc-sign' },
|
|
1606
|
+
{ label: 'globe', value: 'globe' },
|
|
1607
|
+
{ label: 'toilet-portable', value: 'toilet-portable' },
|
|
1608
|
+
{ label: 'rectangle-xmark', value: 'rectangle-xmark' },
|
|
1609
|
+
{ label: 'bars-progress', value: 'bars-progress' },
|
|
1610
|
+
{ label: 'section', value: 'section' },
|
|
1611
|
+
{ label: 'file-arrow-down', value: 'file-arrow-down' },
|
|
1612
|
+
{ label: 'i', value: 'i' },
|
|
1613
|
+
{ label: 'filter', value: 'filter' },
|
|
1614
|
+
{ label: 'j', value: 'j' },
|
|
1615
|
+
{ label: 'user', value: 'user' },
|
|
1616
|
+
{ label: 'g', value: 'g' },
|
|
1617
|
+
{ label: 'h', value: 'h' },
|
|
1618
|
+
{ label: 'e', value: 'e' },
|
|
1619
|
+
{ label: 'thumbtack', value: 'thumbtack' },
|
|
1620
|
+
{ label: 'cedi-sign', value: 'cedi-sign' },
|
|
1621
|
+
{ label: 'f', value: 'f' },
|
|
1622
|
+
{ label: 'c', value: 'c' },
|
|
1623
|
+
{ label: 'd', value: 'd' },
|
|
1624
|
+
{ label: 'diagram-next', value: 'diagram-next' },
|
|
1625
|
+
{ label: 'backward-step', value: 'backward-step' },
|
|
1626
|
+
{ label: 'austral-sign', value: 'austral-sign' },
|
|
1627
|
+
{ label: 'paintbrush', value: 'paintbrush' },
|
|
1628
|
+
{ label: 'cloud-rain', value: 'cloud-rain' },
|
|
1629
|
+
{ label: 'tree-city', value: 'tree-city' },
|
|
1630
|
+
{ label: 'mars-stroke-up', value: 'mars-stroke-up' },
|
|
1631
|
+
{ label: 'building-circle-exclamation', value: 'building-circle-exclamation' },
|
|
1632
|
+
{ label: 'road-bridge', value: 'road-bridge' },
|
|
1633
|
+
{ label: 'landmark-flag', value: 'landmark-flag' },
|
|
1634
|
+
{ label: 'cruzeiro-sign', value: 'cruzeiro-sign' },
|
|
1635
|
+
{ label: 'chess-bishop', value: 'chess-bishop' },
|
|
1636
|
+
{ label: 'face-angry', value: 'face-angry' },
|
|
1637
|
+
{ label: 'shield-halved', value: 'shield-halved' },
|
|
1638
|
+
{ label: 'bangladeshi-taka-sign', value: 'bangladeshi-taka-sign' },
|
|
1639
|
+
{ label: 'temperature-empty', value: 'temperature-empty' },
|
|
1640
|
+
{ label: 'house-circle-exclamation', value: 'house-circle-exclamation' },
|
|
1641
|
+
{ label: 'person-circle-xmark', value: 'person-circle-xmark' },
|
|
1642
|
+
{ label: 'shrimp', value: 'shrimp' },
|
|
1643
|
+
{ label: 'fax', value: 'fax' },
|
|
1644
|
+
{ label: 'person-circle-exclamation', value: 'person-circle-exclamation' },
|
|
1645
|
+
{ label: 'store', value: 'store' },
|
|
1646
|
+
{ label: 'tent', value: 'tent' },
|
|
1647
|
+
{ label: 'face-grin-squint', value: 'face-grin-squint' },
|
|
1648
|
+
{ label: 'wheat-awn', value: 'wheat-awn' },
|
|
1649
|
+
{ label: 'hand-point-right', value: 'hand-point-right' },
|
|
1650
|
+
{ label: 'magnifying-glass-plus', value: 'magnifying-glass-plus' },
|
|
1651
|
+
{ label: 'arrow-up-1-9', value: 'arrow-up-1-9' },
|
|
1652
|
+
{ label: 'fan', value: 'fan' },
|
|
1653
|
+
{ label: 'anchor-circle-exclamation', value: 'anchor-circle-exclamation' },
|
|
1654
|
+
{ label: 'cart-flatbed', value: 'cart-flatbed' },
|
|
1655
|
+
{ label: 'mosquito', value: 'mosquito' },
|
|
1656
|
+
{ label: 'battery-three-quarters', value: 'battery-three-quarters' },
|
|
1657
|
+
{ label: 'microphone', value: 'microphone' },
|
|
1658
|
+
{ label: 'face-grin-tears', value: 'face-grin-tears' },
|
|
1659
|
+
{ label: 'face-grin-tongue-squint', value: 'face-grin-tongue-squint' },
|
|
1660
|
+
{ label: 'jet-fighter-up', value: 'jet-fighter-up' },
|
|
1661
|
+
{ label: 'table-list', value: 'table-list' },
|
|
1662
|
+
{ label: 'person-military-pointing', value: 'person-military-pointing' },
|
|
1663
|
+
{ label: 'circle-exclamation', value: 'circle-exclamation' },
|
|
1664
|
+
{ label: 'tags', value: 'tags' },
|
|
1665
|
+
{ label: 'clock-rotate-left', value: 'clock-rotate-left' },
|
|
1666
|
+
{ label: 'ticket', value: 'ticket' },
|
|
1667
|
+
{ label: 'calendar-week', value: 'calendar-week' },
|
|
1668
|
+
{ label: 'sort-up', value: 'sort-up' },
|
|
1669
|
+
{ label: 'hand-holding', value: 'hand-holding' },
|
|
1670
|
+
{ label: 'box-tissue', value: 'box-tissue' },
|
|
1671
|
+
{ label: 'magnet', value: 'magnet' },
|
|
1672
|
+
{ label: 'earth-africa', value: 'earth-africa' },
|
|
1673
|
+
{ label: 'dong-sign', value: 'dong-sign' },
|
|
1674
|
+
{ label: 'arrows-up-to-line', value: 'arrows-up-to-line' },
|
|
1675
|
+
{ label: 'display', value: 'display' },
|
|
1676
|
+
{ label: 'microphone-slash', value: 'microphone-slash' },
|
|
1677
|
+
{ label: 'arrows-split-up-and-left', value: 'arrows-split-up-and-left' },
|
|
1678
|
+
{ label: 'square-virus', value: 'square-virus' },
|
|
1679
|
+
{ label: 'chart-simple', value: 'chart-simple' },
|
|
1680
|
+
{ label: 'hourglass-half', value: 'hourglass-half' },
|
|
1681
|
+
{ label: 'file-import', value: 'file-import' },
|
|
1682
|
+
{ label: 'ruler-vertical', value: 'ruler-vertical' },
|
|
1683
|
+
{ label: 'x-ray', value: 'x-ray' },
|
|
1684
|
+
{ label: 'table-columns', value: 'table-columns' },
|
|
1685
|
+
{ label: 'boxes-packing', value: 'boxes-packing' },
|
|
1686
|
+
{ label: 'face-laugh-wink', value: 'face-laugh-wink' },
|
|
1687
|
+
{ label: 'chevron-down', value: 'chevron-down' },
|
|
1688
|
+
{ label: 'file-circle-exclamation', value: 'file-circle-exclamation' },
|
|
1689
|
+
{ label: 'disease', value: 'disease' },
|
|
1690
|
+
{ label: 'quote-left', value: 'quote-left' },
|
|
1691
|
+
{ label: 'wand-magic-sparkles', value: 'wand-magic-sparkles' },
|
|
1692
|
+
{ label: 'users-line', value: 'users-line' },
|
|
1693
|
+
{ label: 'cash-register', value: 'cash-register' },
|
|
1694
|
+
{ label: 'child-dress', value: 'child-dress' },
|
|
1695
|
+
{ label: 'grip', value: 'grip' },
|
|
1696
|
+
{ label: 'bacterium', value: 'bacterium' },
|
|
1697
|
+
{ label: 'dice-one', value: 'dice-one' },
|
|
1698
|
+
{ label: 'school-lock', value: 'school-lock' },
|
|
1699
|
+
{ label: 'bucket', value: 'bucket' },
|
|
1700
|
+
{ label: 'money-bill-1-wave', value: 'money-bill-1-wave' },
|
|
1701
|
+
{ label: 'object-group', value: 'object-group' },
|
|
1702
|
+
{ label: 'rss', value: 'rss' },
|
|
1703
|
+
{ label: 'camera-rotate', value: 'camera-rotate' },
|
|
1704
|
+
{ label: 'poo', value: 'poo' },
|
|
1705
|
+
{ label: 'plug-circle-xmark', value: 'plug-circle-xmark' },
|
|
1706
|
+
{ label: 'ear-deaf', value: 'ear-deaf' },
|
|
1707
|
+
{ label: 'arrow-left-long', value: 'arrow-left-long' },
|
|
1708
|
+
{ label: 'cloud-sun-rain', value: 'cloud-sun-rain' },
|
|
1709
|
+
{ label: 'ruler', value: 'ruler' },
|
|
1710
|
+
{ label: 'arrows-up-down-left-right', value: 'arrows-up-down-left-right' },
|
|
1711
|
+
{ label: 'hand-sparkles', value: 'hand-sparkles' },
|
|
1712
|
+
{ label: 'igloo', value: 'igloo' },
|
|
1713
|
+
{ label: 'democrat', value: 'democrat' },
|
|
1714
|
+
{ label: 'layer-group', value: 'layer-group' },
|
|
1715
|
+
{ label: 'box-archive', value: 'box-archive' },
|
|
1716
|
+
{ label: 'battery-half', value: 'battery-half' },
|
|
1717
|
+
{ label: 'circle-left', value: 'circle-left' },
|
|
1718
|
+
{ label: 'award', value: 'award' },
|
|
1719
|
+
{ label: 'dragon', value: 'dragon' },
|
|
1720
|
+
{ label: 'cloud-moon', value: 'cloud-moon' },
|
|
1721
|
+
{ label: 'text-height', value: 'text-height' },
|
|
1722
|
+
{ label: 'child-combatant', value: 'child-combatant' },
|
|
1723
|
+
{ label: 'mug-hot', value: 'mug-hot' },
|
|
1724
|
+
{ label: 'rocket', value: 'rocket' },
|
|
1725
|
+
{ label: 'eye', value: 'eye' },
|
|
1726
|
+
{ label: 'right-long', value: 'right-long' },
|
|
1727
|
+
{ label: 'down-left-and-up-right-to-center', value: 'down-left-and-up-right-to-center' },
|
|
1728
|
+
{ label: 'bullseye', value: 'bullseye' },
|
|
1729
|
+
{ label: 'dumpster', value: 'dumpster' },
|
|
1730
|
+
{ label: 'circle-stop', value: 'circle-stop' },
|
|
1731
|
+
{ label: 'bahai', value: 'bahai' },
|
|
1732
|
+
{ label: 'water-ladder', value: 'water-ladder' },
|
|
1733
|
+
{ label: 'file-circle-plus', value: 'file-circle-plus' },
|
|
1734
|
+
{ label: 'left-long', value: 'left-long' },
|
|
1735
|
+
{ label: 'binoculars', value: 'binoculars' },
|
|
1736
|
+
{ label: 'highlighter', value: 'highlighter' },
|
|
1737
|
+
{ label: 'timeline', value: 'timeline' },
|
|
1738
|
+
{ label: 'cloud-arrow-down', value: 'cloud-arrow-down' },
|
|
1739
|
+
{ label: 'lira-sign', value: 'lira-sign' },
|
|
1740
|
+
{ label: 'hotel', value: 'hotel' },
|
|
1741
|
+
{ label: 'mobile-retro', value: 'mobile-retro' },
|
|
1742
|
+
{ label: 'won-sign', value: 'won-sign' },
|
|
1743
|
+
{ label: 'soap', value: 'soap' },
|
|
1744
|
+
{ label: 'piggy-bank', value: 'piggy-bank' },
|
|
1745
|
+
{ label: 'bridge-water', value: 'bridge-water' },
|
|
1746
|
+
{ label: 'credit-card', value: 'credit-card' },
|
|
1747
|
+
{ label: 'yen-sign', value: 'yen-sign' },
|
|
1748
|
+
{ label: 'q', value: 'q' },
|
|
1749
|
+
{ label: 'r', value: 'r' },
|
|
1750
|
+
{ label: 'o', value: 'o' },
|
|
1751
|
+
{ label: 'hand-middle-finger', value: 'hand-middle-finger' },
|
|
1752
|
+
{ label: 'p', value: 'p' },
|
|
1753
|
+
{ label: 'rug', value: 'rug' },
|
|
1754
|
+
{ label: 'peseta-sign', value: 'peseta-sign' },
|
|
1755
|
+
{ label: 'm', value: 'm' },
|
|
1756
|
+
{ label: 'n', value: 'n' },
|
|
1757
|
+
{ label: 'k', value: 'k' },
|
|
1758
|
+
{ label: 'l', value: 'l' },
|
|
1759
|
+
{ label: 'tree', value: 'tree' },
|
|
1760
|
+
{ label: 'y', value: 'y' },
|
|
1761
|
+
{ label: 'road-circle-check', value: 'road-circle-check' },
|
|
1762
|
+
{ label: 'z', value: 'z' },
|
|
1763
|
+
{ label: 'w', value: 'w' },
|
|
1764
|
+
{ label: 'house-flood-water-circle-arrow-right', value: 'house-flood-water-circle-arrow-right' },
|
|
1765
|
+
{ label: 'circle-minus', value: 'circle-minus' },
|
|
1766
|
+
{ label: 'x', value: 'x' },
|
|
1767
|
+
{ label: 'square-xmark', value: 'square-xmark' },
|
|
1768
|
+
{ label: 'u', value: 'u' },
|
|
1769
|
+
{ label: 'image-portrait', value: 'image-portrait' },
|
|
1770
|
+
{ label: 'v', value: 'v' },
|
|
1771
|
+
{ label: 'list-ul', value: 'list-ul' },
|
|
1772
|
+
{ label: 's', value: 's' },
|
|
1773
|
+
{ label: 't', value: 't' },
|
|
1774
|
+
{ label: 'arrow-turn-down', value: 'arrow-turn-down' },
|
|
1775
|
+
{ label: 'angle-down', value: 'angle-down' },
|
|
1776
|
+
{ label: 'building-ngo', value: 'building-ngo' },
|
|
1777
|
+
{ label: 'screwdriver-wrench', value: 'screwdriver-wrench' },
|
|
1778
|
+
{ label: 'person-circle-check', value: 'person-circle-check' },
|
|
1779
|
+
{ label: 'square-root-variable', value: 'square-root-variable' },
|
|
1780
|
+
{ label: 'underline', value: 'underline' },
|
|
1781
|
+
{ label: 'tower-cell', value: 'tower-cell' },
|
|
1782
|
+
{ label: 'dice', value: 'dice' },
|
|
1783
|
+
{ label: 'dharmachakra', value: 'dharmachakra' },
|
|
1784
|
+
{ label: 'note-sticky', value: 'note-sticky' },
|
|
1785
|
+
{ label: 'car-burst', value: 'car-burst' },
|
|
1786
|
+
{ label: 'solar-panel', value: 'solar-panel' },
|
|
1787
|
+
{ label: 'border-top-left', value: 'border-top-left' },
|
|
1788
|
+
{ label: 'hippo', value: 'hippo' },
|
|
1789
|
+
{ label: 'desktop', value: 'desktop' },
|
|
1790
|
+
{ label: 'text-slash', value: 'text-slash' },
|
|
1791
|
+
],
|
|
1792
|
+
},
|
|
1793
|
+
}),
|
|
392
1794
|
},
|
|
393
1795
|
async run(context) {
|
|
394
1796
|
const token = await (0, auth_1.getAccessToken)(context.auth);
|
|
@@ -399,6 +1801,7 @@ exports.PublicApiTagController_upsert = (0, pieces_framework_1.createAction)({
|
|
|
399
1801
|
type: context.propsValue.type,
|
|
400
1802
|
name: context.propsValue.name,
|
|
401
1803
|
color: context.propsValue.color,
|
|
1804
|
+
icon: context.propsValue.icon,
|
|
402
1805
|
};
|
|
403
1806
|
const body = Object.fromEntries(Object.entries(rawBody).filter(([_, v]) => v !== undefined && v !== null && v !== ''));
|
|
404
1807
|
const response = await pieces_common_1.httpClient.sendRequest({
|