@indico-data/design-system 2.3.1 → 2.3.2

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/lib/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as styled_components from 'styled-components';
3
3
  import React$1, { ChangeEvent, MouseEventHandler } from 'react';
4
- import { PermafrostComponent, IconName, IconSizes as IconSizes$1 } from '@/types';
4
+ import { PermafrostComponent as PermafrostComponent$1, IconName as IconName$1, IconSizes as IconSizes$1 } from '@/types';
5
5
  import { AriaButtonProps } from '@react-types/button';
6
6
  import { AriaRadioProps, RadioGroupProps as RadioGroupProps$1, AriaRadioGroupProps } from '@react-types/radio';
7
7
  import { DateRange } from 'react-day-picker';
@@ -220,33 +220,33 @@ declare const allColors: {
220
220
  readonly backgroundColor: "#182432";
221
221
  };
222
222
 
223
- type Props$o = PermafrostComponent & {
223
+ type Props$o = PermafrostComponent$1 & {
224
224
  content: React$1.ReactNode;
225
225
  header?: React$1.ReactNode | string;
226
226
  open?: boolean;
227
227
  };
228
228
  declare const Accordion: (props: Props$o) => react_jsx_runtime.JSX.Element;
229
229
 
230
- type Props$n = PermafrostComponent & {
230
+ type Props$n = PermafrostComponent$1 & {
231
231
  style?: object;
232
232
  children: React$1.ReactNode;
233
233
  };
234
234
  declare const Section: (props: Props$n) => react_jsx_runtime.JSX.Element;
235
235
 
236
- type Props$m = PermafrostComponent & {
236
+ type Props$m = PermafrostComponent$1 & {
237
237
  title?: string;
238
238
  style?: object;
239
239
  children: React$1.ReactNode;
240
240
  };
241
241
  declare const SectionBlock: (props: Props$m) => react_jsx_runtime.JSX.Element;
242
242
 
243
- type SectionBodyProps = PermafrostComponent & {
243
+ type SectionBodyProps = PermafrostComponent$1 & {
244
244
  style?: object;
245
245
  children: React$1.ReactNode;
246
246
  };
247
247
  declare const SectionBody: (props: SectionBodyProps) => react_jsx_runtime.JSX.Element;
248
248
 
249
- type Props$l = PermafrostComponent & {
249
+ type Props$l = PermafrostComponent$1 & {
250
250
  style?: object;
251
251
  children?: React$1.ReactNode;
252
252
  };
@@ -261,7 +261,7 @@ declare const SectionHeader: {
261
261
  declare const SectionTable: (props: any) => react_jsx_runtime.JSX.Element;
262
262
 
263
263
  type ButtonVariant = 'primary' | 'cta' | 'normal' | 'link-style' | 'no-style' | 'outline';
264
- type ButtonProps$1 = PermafrostComponent & {
264
+ type ButtonProps$1 = PermafrostComponent$1 & {
265
265
  'aria-label'?: string;
266
266
  'aria-pressed'?: boolean;
267
267
  'aria-selected'?: boolean;
@@ -283,13 +283,13 @@ declare function Button$1(props: ButtonProps$1): React$1.ReactElement;
283
283
  type IconButtonVariant = 'default' | 'primary' | 'destructive' | 'outline';
284
284
  type ButtonSize = 'normal' | 'large';
285
285
 
286
- type Props$k = PermafrostComponent & {
286
+ type Props$k = PermafrostComponent$1 & {
287
287
  /**
288
288
  * Adjusts vertical alignment of the text label, in relation to the icon
289
289
  */
290
290
  adjustAlignment?: number;
291
291
  busy?: boolean;
292
- iconName: IconName;
292
+ iconName: IconName$1;
293
293
  iconSide?: 'start' | 'end';
294
294
  isDisabled?: boolean;
295
295
  /**
@@ -311,7 +311,7 @@ type Props$k = PermafrostComponent & {
311
311
  */
312
312
  declare function IconButton(props: Props$k): react_jsx_runtime.JSX.Element;
313
313
 
314
- type Props$j = PermafrostComponent & {
314
+ type Props$j = PermafrostComponent$1 & {
315
315
  defaultValue?: string;
316
316
  disabled?: boolean;
317
317
  horizontal?: boolean;
@@ -374,7 +374,7 @@ type ComboboxOption = {
374
374
  type ComboboxSize = 'small' | 'medium';
375
375
  type ComboboxVariant = 'default' | 'light';
376
376
 
377
- type Props$i = PermafrostComponent & {
377
+ type Props$i = PermafrostComponent$1 & {
378
378
  disabled?: boolean;
379
379
  initialText?: string;
380
380
  options: {
@@ -397,7 +397,7 @@ declare const Select: (props: Props$i) => react_jsx_runtime.JSX.Element;
397
397
  *
398
398
  * @see [useCombobox]{@link import('useCombobox').useCombobox}
399
399
  */
400
- declare const MultiCombobox: React$1.ForwardRefExoticComponent<PermafrostComponent & ComboboxProps & {
400
+ declare const MultiCombobox: React$1.ForwardRefExoticComponent<PermafrostComponent$1 & ComboboxProps & {
401
401
  /**
402
402
  * MultiValue is a selected option in the input area
403
403
  */
@@ -418,7 +418,7 @@ declare const MultiCombobox: React$1.ForwardRefExoticComponent<PermafrostCompone
418
418
  *
419
419
  * @see [useCombobox]{@link import('useCombobox').useCombobox}
420
420
  */
421
- declare const SingleCombobox: React$1.ForwardRefExoticComponent<PermafrostComponent & ComboboxProps & {
421
+ declare const SingleCombobox: React$1.ForwardRefExoticComponent<PermafrostComponent$1 & ComboboxProps & {
422
422
  dropdownIndicatorProps?: {
423
423
  "data-cy": string;
424
424
  };
@@ -429,7 +429,7 @@ declare const SingleCombobox: React$1.ForwardRefExoticComponent<PermafrostCompon
429
429
  onChange: (selectedOption: ComboboxOption) => void;
430
430
  } & React$1.RefAttributes<unknown>>;
431
431
 
432
- type Props$h = PermafrostComponent & {
432
+ type Props$h = PermafrostComponent$1 & {
433
433
  children: React$1.ReactNode | string;
434
434
  minLength?: number;
435
435
  onUpdate?(newValue: string): void;
@@ -440,7 +440,7 @@ type Props$h = PermafrostComponent & {
440
440
  */
441
441
  declare function EditableInput(props: Props$h): react_jsx_runtime.JSX.Element;
442
442
 
443
- type Props$g = PermafrostComponent & {
443
+ type Props$g = PermafrostComponent$1 & {
444
444
  autoFocus?: boolean;
445
445
  decrement?(): void;
446
446
  disabled?: boolean;
@@ -462,7 +462,7 @@ type Props$g = PermafrostComponent & {
462
462
  */
463
463
  declare function NumberInput(props: Props$g): React$1.ReactElement;
464
464
 
465
- type Props$f = PermafrostComponent & {
465
+ type Props$f = PermafrostComponent$1 & {
466
466
  inputBorder?: boolean;
467
467
  showClearInputIcon?: boolean;
468
468
  showSearchIcon?: boolean;
@@ -482,7 +482,7 @@ declare const SearchInput: {
482
482
  };
483
483
  };
484
484
 
485
- type Props$e = PermafrostComponent & {
485
+ type Props$e = PermafrostComponent$1 & {
486
486
  autoComplete?: 'email' | 'current-password' | 'new-password' | string;
487
487
  autoFocus?: boolean;
488
488
  defaultValue?: string;
@@ -514,7 +514,7 @@ type Props$d = {
514
514
  hoverAndSelectedColor: string;
515
515
  focusRingColor: string;
516
516
  value: string;
517
- } & RadioGroupProps$1 & PermafrostComponent;
517
+ } & RadioGroupProps$1 & PermafrostComponent$1;
518
518
  /**
519
519
  * Renders a group of radio buttons.
520
520
  *
@@ -527,7 +527,7 @@ declare function RadioGroup$1({ children, ...props }: Props$d): react_jsx_runtim
527
527
  */
528
528
  declare function Radio$1({ children, ...props }: AriaRadioProps): react_jsx_runtime.JSX.Element;
529
529
 
530
- type RadioGroupProps = PermafrostComponent & {
530
+ type RadioGroupProps = PermafrostComponent$1 & {
531
531
  value?: string;
532
532
  onChange?: (value: string) => void;
533
533
  children: React$1.ReactNode;
@@ -550,7 +550,7 @@ declare function Radio(props: AriaRadioProps & {
550
550
  isVisuallySelected?: (selectedValue: string) => void;
551
551
  }): react_jsx_runtime.JSX.Element;
552
552
 
553
- type Props$c = PermafrostComponent & {
553
+ type Props$c = PermafrostComponent$1 & {
554
554
  ariaLabel?: string;
555
555
  disableBeforeDate?: Date;
556
556
  disableAfterDate?: Date;
@@ -564,7 +564,7 @@ type Props$c = PermafrostComponent & {
564
564
  };
565
565
  declare const DatePicker: (props: Props$c) => react_jsx_runtime.JSX.Element;
566
566
 
567
- type Props$b = PermafrostComponent & {
567
+ type Props$b = PermafrostComponent$1 & {
568
568
  ariaLabel?: string;
569
569
  disableBeforeDate?: Date;
570
570
  disableAfterDate?: Date;
@@ -575,7 +575,7 @@ type Props$b = PermafrostComponent & {
575
575
  selected?: Date | undefined;
576
576
  selectedRange?: DateRange | undefined;
577
577
  value: Date | undefined;
578
- triggerIcon: IconName;
578
+ triggerIcon: IconName$1;
579
579
  triggerIconSize: IconSizes$1;
580
580
  isRangePicker?: boolean;
581
581
  isOpen?: boolean;
@@ -583,7 +583,7 @@ type Props$b = PermafrostComponent & {
583
583
  };
584
584
  declare const NoInputDatePicker: (props: Props$b) => react_jsx_runtime.JSX.Element;
585
585
 
586
- type Props$a = PermafrostComponent & {
586
+ type Props$a = PermafrostComponent$1 & {
587
587
  ariaLabel?: string;
588
588
  size?: IconSizes$1;
589
589
  style?: React$1.CSSProperties;
@@ -591,12 +591,12 @@ type Props$a = PermafrostComponent & {
591
591
  };
592
592
  declare function CircleSpinner(props: Props$a): React$1.ReactElement;
593
593
 
594
- type Props$9 = PermafrostComponent & {
594
+ type Props$9 = PermafrostComponent$1 & {
595
595
  width?: string;
596
596
  };
597
597
  declare function BarSpinner(props: Props$9): React$1.ReactElement;
598
598
 
599
- type Props$8 = PermafrostComponent & {
599
+ type Props$8 = PermafrostComponent$1 & {
600
600
  color?: string;
601
601
  overallSize?: string | number;
602
602
  rippleSize?: string | number;
@@ -606,7 +606,7 @@ declare function CirclePulse(props: Props$8): React$1.ReactElement;
606
606
 
607
607
  declare const RandomLoadingMessage: () => react_jsx_runtime.JSX.Element;
608
608
 
609
- type Props$7 = PermafrostComponent & {
609
+ type Props$7 = PermafrostComponent$1 & {
610
610
  backgroundColor?: string;
611
611
  foregroundColor?: string;
612
612
  ringRadius?: number;
@@ -619,7 +619,7 @@ declare function PercentageRing(props: Props$7): react_jsx_runtime.JSX.Element;
619
619
 
620
620
  declare const LoadingList: () => react_jsx_runtime.JSX.Element;
621
621
 
622
- type Props$6 = PermafrostComponent & {
622
+ type Props$6 = PermafrostComponent$1 & {
623
623
  accordion?: boolean;
624
624
  accordionDefaultOpen?: boolean;
625
625
  emptyListMessage?: string;
@@ -658,7 +658,7 @@ type Props$6 = PermafrostComponent & {
658
658
  };
659
659
  declare const ListTable: (props: Props$6) => react_jsx_runtime.JSX.Element;
660
660
 
661
- type Props$5 = PermafrostComponent & {
661
+ type Props$5 = PermafrostComponent$1 & {
662
662
  currentPage: number;
663
663
  limit: number;
664
664
  pageInfo: {
@@ -675,7 +675,7 @@ type Props$5 = PermafrostComponent & {
675
675
  };
676
676
  declare function Pagination(props: Props$5): react_jsx_runtime.JSX.Element;
677
677
 
678
- type Props$4 = PermafrostComponent & {
678
+ type Props$4 = PermafrostComponent$1 & {
679
679
  actionLink?: string;
680
680
  actionText?: string;
681
681
  buttonAction?(): void;
@@ -687,7 +687,7 @@ type Props$4 = PermafrostComponent & {
687
687
  };
688
688
  declare function Shrug(props: Props$4): React$1.ReactElement;
689
689
 
690
- type ModalBaseProps = PermafrostComponent & {
690
+ type ModalBaseProps = PermafrostComponent$1 & {
691
691
  children: React$1.ReactNode | React$1.ReactNode[];
692
692
  clickToDismiss?(): void;
693
693
  describedBy?: string;
@@ -713,7 +713,7 @@ type ModalBaseProps = PermafrostComponent & {
713
713
  */
714
714
  declare function ModalBase(props: ModalBaseProps): react_jsx_runtime.JSX.Element;
715
715
 
716
- type Props$3 = PermafrostComponent & Pick<ModalBaseProps, 'open'> & {
716
+ type Props$3 = PermafrostComponent$1 & Pick<ModalBaseProps, 'open'> & {
717
717
  describedBy?: string;
718
718
  clickOutsideHandler(e?: React$1.SyntheticEvent): void;
719
719
  confirmText?: string;
@@ -755,12 +755,12 @@ type Props$1 = {
755
755
  value: boolean;
756
756
  ['aria-label']?: string;
757
757
  iconSize?: IconSizes$1;
758
- checkedIconName?: IconName;
759
- notCheckedIconName?: IconName;
760
- } & PermafrostComponent;
758
+ checkedIconName?: IconName$1;
759
+ notCheckedIconName?: IconName$1;
760
+ } & PermafrostComponent$1;
761
761
  declare const Toggle: (props: Props$1) => react_jsx_runtime.JSX.Element;
762
762
 
763
- type Props = PermafrostComponent & {
763
+ type Props = PermafrostComponent$1 & {
764
764
  questionMark?: boolean;
765
765
  for?: string | null;
766
766
  place?: string;
@@ -883,7 +883,7 @@ interface ButtonProps {
883
883
  iconPosition?: ButtonIconPositions;
884
884
  color?: ButtonColors;
885
885
  size?: ButtonSizes;
886
- iconName?: IconName;
886
+ iconName?: IconName$1;
887
887
  type?: ButtonTypes;
888
888
  href?: string;
889
889
  isDisabled?: boolean;
@@ -891,6 +891,16 @@ interface ButtonProps {
891
891
 
892
892
  declare const Button: (props: ButtonProps) => react_jsx_runtime.JSX.Element;
893
893
 
894
+ declare const iconNames: readonly ["account", "address", "api-doc", "arrow-dots", "arrow-down", "arrow-up-circle", "arrows-cursor", "bookmark", "bookmark-saved", "bookmarks", "branch", "calendar", "check", "check-circle", "checkbox", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "choose-library", "circle-help", "classification-document", "classification-image", "classification-page", "classify-and-unbundle", "clipboard", "coffee-1", "coffee-2", "coffee-fail", "coffeecup", "coffeesteam", "cog", "collection", "company-name", "compare", "confidence-bar-1", "confidence-bar-2", "confidence-bar-3", "confidence-bar-4", "confidence-bars", "configure", "crowdlabel", "currency", "dashboard", "data-and-access", "database", "date", "document", "draggable", "droplet", "edit", "education", "ellipsis", "elmos-fire", "email", "enterprise", "exclamation-circle-stroke", "extraction", "eye", "fa-0", "fa-1", "fa-2", "fa-3", "fa-4", "fa-5", "fa-6", "fa-7", "fa-8", "fa-9", "fa-a", "fa-ad", "fa-add", "fa-address-book", "fa-address-card", "fa-adjust", "fa-air-freshener", "fa-align-center", "fa-align-justify", "fa-align-left", "fa-align-right", "fa-allergies", "fa-ambulance", "fa-american-sign-language-interpreting", "fa-anchor", "fa-anchor-circle-check", "fa-anchor-circle-exclamation", "fa-anchor-circle-xmark", "fa-anchor-lock", "fa-angle-double-down", "fa-angle-double-left", "fa-angle-double-right", "fa-angle-double-up", "fa-angle-down", "fa-angle-left", "fa-angle-right", "fa-angle-up", "fa-angles-down", "fa-angles-left", "fa-angles-right", "fa-angles-up", "fa-angry", "fa-ankh", "fa-apple-alt", "fa-apple-whole", "fa-archive", "fa-archway", "fa-area-chart", "fa-arrow-alt-circle-down", "fa-arrow-alt-circle-left", "fa-arrow-alt-circle-right", "fa-arrow-alt-circle-up", "fa-arrow-circle-down", "fa-arrow-circle-left", "fa-arrow-circle-right", "fa-arrow-circle-up", "fa-arrow-down", "fa-arrow-down-19", "fa-arrow-down-91", "fa-arrow-down-a-z", "fa-arrow-down-long", "fa-arrow-down-short-wide", "fa-arrow-down-up-across-line", "fa-arrow-down-up-lock", "fa-arrow-down-wide-short", "fa-arrow-down-z-a", "fa-arrow-left", "fa-arrow-left-long", "fa-arrow-left-rotate", "fa-arrow-pointer", "fa-arrow-right", "fa-arrow-right-arrow-left", "fa-arrow-right-from-bracket", "fa-arrow-right-from-file", "fa-arrow-right-long", "fa-arrow-right-rotate", "fa-arrow-right-to-bracket", "fa-arrow-right-to-city", "fa-arrow-right-to-file", "fa-arrow-rotate-back", "fa-arrow-rotate-backward", "fa-arrow-rotate-forward", "fa-arrow-rotate-left", "fa-arrow-rotate-right", "fa-arrow-trend-down", "fa-arrow-trend-up", "fa-arrow-turn-down", "fa-arrow-turn-up", "fa-arrow-up", "fa-arrow-up-19", "fa-arrow-up-91", "fa-arrow-up-a-z", "fa-arrow-up-from-bracket", "fa-arrow-up-from-ground-water", "fa-arrow-up-from-water-pump", "fa-arrow-up-long", "fa-arrow-up-right-dots", "fa-arrow-up-right-from-square", "fa-arrow-up-short-wide", "fa-arrow-up-wide-short", "fa-arrow-up-z-a", "fa-arrows", "fa-arrows-alt", "fa-arrows-alt-h", "fa-arrows-alt-v", "fa-arrows-down-to-line", "fa-arrows-down-to-people", "fa-arrows-h", "fa-arrows-left-right", "fa-arrows-left-right-to-line", "fa-arrows-rotate", "fa-arrows-spin", "fa-arrows-split-up-and-left", "fa-arrows-to-circle", "fa-arrows-to-dot", "fa-arrows-to-eye", "fa-arrows-turn-right", "fa-arrows-turn-to-dots", "fa-arrows-up-down", "fa-arrows-up-down-left-right", "fa-arrows-up-to-line", "fa-arrows-v", "fa-asl-interpreting", "fa-assistive-listening-systems", "fa-asterisk", "fa-at", "fa-atlas", "fa-atom", "fa-audio-description", "fa-austral-sign", "fa-automobile", "fa-award", "fa-b", "fa-baby", "fa-baby-carriage", "fa-backspace", "fa-backward", "fa-backward-fast", "fa-backward-step", "fa-bacon", "fa-bacteria", "fa-bacterium", "fa-bag-shopping", "fa-bahai", "fa-baht-sign", "fa-balance-scale", "fa-balance-scale-left", "fa-balance-scale-right", "fa-ban", "fa-ban-smoking", "fa-band-aid", "fa-bandage", "fa-bangladeshi-taka-sign", "fa-bank", "fa-bar-chart", "fa-barcode", "fa-bars", "fa-bars-progress", "fa-bars-staggered", "fa-baseball", "fa-baseball-ball", "fa-baseball-bat-ball", "fa-basket-shopping", "fa-basketball", "fa-basketball-ball", "fa-bath", "fa-bathtub", "fa-battery", "fa-battery-0", "fa-battery-2", "fa-battery-3", "fa-battery-4", "fa-battery-5", "fa-battery-car", "fa-battery-empty", "fa-battery-full", "fa-battery-half", "fa-battery-quarter", "fa-battery-three-quarters", "fa-bed", "fa-bed-pulse", "fa-beer", "fa-beer-mug-empty", "fa-bell", "fa-bell-concierge", "fa-bell-slash", "fa-bezier-curve", "fa-bible", "fa-bicycle", "fa-biking", "fa-binoculars", "fa-biohazard", "fa-birthday-cake", "fa-bitcoin-sign", "fa-blackboard", "fa-blender", "fa-blender-phone", "fa-blind", "fa-blog", "fa-bold", "fa-bolt", "fa-bolt-lightning", "fa-bomb", "fa-bone", "fa-bong", "fa-book", "fa-book-atlas", "fa-book-bible", "fa-book-bookmark", "fa-book-dead", "fa-book-journal-whills", "fa-book-medical", "fa-book-open", "fa-book-open-reader", "fa-book-quran", "fa-book-reader", "fa-book-skull", "fa-book-tanakh", "fa-bookmark", "fa-border-all", "fa-border-none", "fa-border-style", "fa-border-top-left", "fa-bore-hole", "fa-bottle-droplet", "fa-bottle-water", "fa-bowl-food", "fa-bowl-rice", "fa-bowling-ball", "fa-box", "fa-box-archive", "fa-box-open", "fa-box-tissue", "fa-boxes", "fa-boxes-alt", "fa-boxes-packing", "fa-boxes-stacked", "fa-braille", "fa-brain", "fa-brazilian-real-sign", "fa-bread-slice", "fa-bridge", "fa-bridge-circle-check", "fa-bridge-circle-exclamation", "fa-bridge-circle-xmark", "fa-bridge-lock", "fa-bridge-water", "fa-briefcase", "fa-briefcase-clock", "fa-briefcase-medical", "fa-broadcast-tower", "fa-broom", "fa-broom-ball", "fa-brush", "fa-bucket", "fa-bug", "fa-bug-slash", "fa-bugs", "fa-building", "fa-building-circle-arrow-right", "fa-building-circle-check", "fa-building-circle-exclamation", "fa-building-circle-xmark", "fa-building-columns", "fa-building-flag", "fa-building-lock", "fa-building-ngo", "fa-building-shield", "fa-building-un", "fa-building-user", "fa-building-wheat", "fa-bullhorn", "fa-bullseye", "fa-burger", "fa-burn", "fa-burst", "fa-bus", "fa-bus-alt", "fa-bus-simple", "fa-business-time", "fa-c", "fa-cab", "fa-cable-car", "fa-cake", "fa-cake-candles", "fa-calculator", "fa-calendar", "fa-calendar-alt", "fa-calendar-check", "fa-calendar-day", "fa-calendar-days", "fa-calendar-minus", "fa-calendar-plus", "fa-calendar-times", "fa-calendar-week", "fa-calendar-xmark", "fa-camera", "fa-camera-alt", "fa-camera-retro", "fa-camera-rotate", "fa-campground", "fa-cancel", "fa-candy-cane", "fa-cannabis", "fa-capsules", "fa-car", "fa-car-alt", "fa-car-battery", "fa-car-burst", "fa-car-crash", "fa-car-on", "fa-car-rear", "fa-car-side", "fa-car-tunnel", "fa-caravan", "fa-caret-down", "fa-caret-left", "fa-caret-right", "fa-caret-square-down", "fa-caret-square-left", "fa-caret-square-right", "fa-caret-square-up", "fa-caret-up", "fa-carriage-baby", "fa-carrot", "fa-cart-arrow-down", "fa-cart-flatbed", "fa-cart-flatbed-suitcase", "fa-cart-plus", "fa-cart-shopping", "fa-cash-register", "fa-cat", "fa-cedi-sign", "fa-cent-sign", "fa-certificate", "fa-chain", "fa-chain-broken", "fa-chain-slash", "fa-chair", "fa-chalkboard", "fa-chalkboard-teacher", "fa-chalkboard-user", "fa-champagne-glasses", "fa-charging-station", "fa-chart-area", "fa-chart-bar", "fa-chart-column", "fa-chart-gantt", "fa-chart-line", "fa-chart-pie", "fa-chart-simple", "fa-check", "fa-check-circle", "fa-check-double", "fa-check-square", "fa-check-to-slot", "fa-cheese", "fa-chess", "fa-chess-bishop", "fa-chess-board", "fa-chess-king", "fa-chess-knight", "fa-chess-pawn", "fa-chess-queen", "fa-chess-rook", "fa-chevron-circle-down", "fa-chevron-circle-left", "fa-chevron-circle-right", "fa-chevron-circle-up", "fa-chevron-down", "fa-chevron-left", "fa-chevron-right", "fa-chevron-up", "fa-child", "fa-child-combatant", "fa-child-dress", "fa-child-reaching", "fa-child-rifle", "fa-children", "fa-church", "fa-circle", "fa-circle-arrow-down", "fa-circle-arrow-left", "fa-circle-arrow-right", "fa-circle-arrow-up", "fa-circle-check", "fa-circle-chevron-down", "fa-circle-chevron-left", "fa-circle-chevron-right", "fa-circle-chevron-up", "fa-circle-dollar-to-slot", "fa-circle-dot", "fa-circle-down", "fa-circle-exclamation", "fa-circle-h", "fa-circle-half-stroke", "fa-circle-info", "fa-circle-left", "fa-circle-minus", "fa-circle-nodes", "fa-circle-notch", "fa-circle-pause", "fa-circle-play", "fa-circle-plus", "fa-circle-question", "fa-circle-radiation", "fa-circle-right", "fa-circle-stop", "fa-circle-up", "fa-circle-user", "fa-circle-xmark", "fa-city", "fa-clapperboard", "fa-clinic-medical", "fa-clipboard", "fa-clipboard-check", "fa-clipboard-list", "fa-clipboard-question", "fa-clipboard-user", "fa-clock", "fa-clock-four", "fa-clock-rotate-left", "fa-clone", "fa-close", "fa-closed-captioning", "fa-cloud", "fa-cloud-arrow-down", "fa-cloud-arrow-up", "fa-cloud-bolt", "fa-cloud-download", "fa-cloud-download-alt", "fa-cloud-meatball", "fa-cloud-moon", "fa-cloud-moon-rain", "fa-cloud-rain", "fa-cloud-showers-heavy", "fa-cloud-showers-water", "fa-cloud-sun", "fa-cloud-sun-rain", "fa-cloud-upload", "fa-cloud-upload-alt", "fa-clover", "fa-cny", "fa-cocktail", "fa-code", "fa-code-branch", "fa-code-commit", "fa-code-compare", "fa-code-fork", "fa-code-merge", "fa-code-pull-request", "fa-coffee", "fa-cog", "fa-cogs", "fa-coins", "fa-colon-sign", "fa-columns", "fa-comment", "fa-comment-alt", "fa-comment-dollar", "fa-comment-dots", "fa-comment-medical", "fa-comment-slash", "fa-comment-sms", "fa-commenting", "fa-comments", "fa-comments-dollar", "fa-compact-disc", "fa-compass", "fa-compass-drafting", "fa-compress", "fa-compress-alt", "fa-compress-arrows-alt", "fa-computer", "fa-computer-mouse", "fa-concierge-bell", "fa-contact-book", "fa-contact-card", "fa-cookie", "fa-cookie-bite", "fa-copy", "fa-copyright", "fa-couch", "fa-cow", "fa-credit-card", "fa-credit-card-alt", "fa-crop", "fa-crop-alt", "fa-crop-simple", "fa-cross", "fa-crosshairs", "fa-crow", "fa-crown", "fa-crutch", "fa-cruzeiro-sign", "fa-cube", "fa-cubes", "fa-cubes-stacked", "fa-cut", "fa-cutlery", "fa-d", "fa-dashboard", "fa-database", "fa-deaf", "fa-deafness", "fa-dedent", "fa-delete-left", "fa-democrat", "fa-desktop", "fa-desktop-alt", "fa-dharmachakra", "fa-diagnoses", "fa-diagram-next", "fa-diagram-predecessor", "fa-diagram-project", "fa-diagram-successor", "fa-diamond", "fa-diamond-turn-right", "fa-dice", "fa-dice-d-20", "fa-dice-d-6", "fa-dice-five", "fa-dice-four", "fa-dice-one", "fa-dice-six", "fa-dice-three", "fa-dice-two", "fa-digging", "fa-digital-tachograph", "fa-directions", "fa-disease", "fa-display", "fa-divide", "fa-dizzy", "fa-dna", "fa-dog", "fa-dollar", "fa-dollar-sign", "fa-dolly", "fa-dolly-box", "fa-dolly-flatbed", "fa-donate", "fa-dong-sign", "fa-door-closed", "fa-door-open", "fa-dot-circle", "fa-dove", "fa-down-left-and-up-right-to-center", "fa-down-long", "fa-download", "fa-drafting-compass", "fa-dragon", "fa-draw-polygon", "fa-drivers-license", "fa-droplet", "fa-droplet-slash", "fa-drum", "fa-drum-steelpan", "fa-drumstick-bite", "fa-dumbbell", "fa-dumpster", "fa-dumpster-fire", "fa-dungeon", "fa-e", "fa-ear-deaf", "fa-ear-listen", "fa-earth", "fa-earth-africa", "fa-earth-america", "fa-earth-americas", "fa-earth-asia", "fa-earth-europe", "fa-earth-oceania", "fa-edit", "fa-egg", "fa-eject", "fa-elevator", "fa-ellipsis", "fa-ellipsis-h", "fa-ellipsis-v", "fa-ellipsis-vertical", "fa-envelope", "fa-envelope-circle-check", "fa-envelope-open", "fa-envelope-open-text", "fa-envelope-square", "fa-envelopes-bulk", "fa-equals", "fa-eraser", "fa-ethernet", "fa-eur", "fa-euro", "fa-euro-sign", "fa-exchange", "fa-exchange-alt", "fa-exclamation", "fa-exclamation-circle", "fa-exclamation-triangle", "fa-expand", "fa-expand-alt", "fa-expand-arrows-alt", "fa-explosion", "fa-external-link", "fa-external-link-alt", "fa-external-link-square", "fa-external-link-square-alt", "fa-eye", "fa-eye-dropper", "fa-eye-dropper-empty", "fa-eye-low-vision", "fa-eye-slash", "fa-eyedropper", "fa-f", "fa-face-angry", "fa-face-dizzy", "fa-face-flushed", "fa-face-frown", "fa-face-frown-open", "fa-face-grimace", "fa-face-grin", "fa-face-grin-beam", "fa-face-grin-beam-sweat", "fa-face-grin-hearts", "fa-face-grin-squint", "fa-face-grin-squint-tears", "fa-face-grin-stars", "fa-face-grin-tears", "fa-face-grin-tongue", "fa-face-grin-tongue-squint", "fa-face-grin-tongue-wink", "fa-face-grin-wide", "fa-face-grin-wink", "fa-face-kiss", "fa-face-kiss-beam", "fa-face-kiss-wink-heart", "fa-face-laugh", "fa-face-laugh-beam", "fa-face-laugh-squint", "fa-face-laugh-wink", "fa-face-meh", "fa-face-meh-blank", "fa-face-rolling-eyes", "fa-face-sad-cry", "fa-face-sad-tear", "fa-face-smile", "fa-face-smile-beam", "fa-face-smile-wink", "fa-face-surprise", "fa-face-tired", "fa-fan", "fa-fast-backward", "fa-fast-forward", "fa-faucet", "fa-faucet-drip", "fa-fax", "fa-feather", "fa-feather-alt", "fa-feather-pointed", "fa-feed", "fa-female", "fa-ferry", "fa-fighter-jet", "fa-file", "fa-file-alt", "fa-file-archive", "fa-file-arrow-down", "fa-file-arrow-up", "fa-file-audio", "fa-file-circle-check", "fa-file-circle-exclamation", "fa-file-circle-minus", "fa-file-circle-plus", "fa-file-circle-question", "fa-file-circle-xmark", "fa-file-clipboard", "fa-file-code", "fa-file-contract", "fa-file-csv", "fa-file-download", "fa-file-edit", "fa-file-excel", "fa-file-export", "fa-file-image", "fa-file-import", "fa-file-invoice", "fa-file-invoice-dollar", "fa-file-lines", "fa-file-medical", "fa-file-medical-alt", "fa-file-pdf", "fa-file-pen", "fa-file-powerpoint", "fa-file-prescription", "fa-file-shield", "fa-file-signature", "fa-file-text", "fa-file-upload", "fa-file-video", "fa-file-waveform", "fa-file-word", "fa-file-zipper", "fa-fill", "fa-fill-drip", "fa-film", "fa-filter", "fa-filter-circle-dollar", "fa-filter-circle-xmark", "fa-fingerprint", "fa-fire", "fa-fire-alt", "fa-fire-burner", "fa-fire-extinguisher", "fa-fire-flame-curved", "fa-fire-flame-simple", "fa-first-aid", "fa-fish", "fa-fish-fins", "fa-fist-raised", "fa-flag", "fa-flag-checkered", "fa-flag-usa", "fa-flask", "fa-flask-vial", "fa-floppy-disk", "fa-florin-sign", "fa-flushed", "fa-folder", "fa-folder-blank", "fa-folder-closed", "fa-folder-minus", "fa-folder-open", "fa-folder-plus", "fa-folder-tree", "fa-font", "fa-font-awesome", "fa-font-awesome-flag", "fa-font-awesome-logo-full", "fa-football", "fa-football-ball", "fa-forward", "fa-forward-fast", "fa-forward-step", "fa-franc-sign", "fa-frog", "fa-frown", "fa-frown-open", "fa-funnel-dollar", "fa-futbol", "fa-futbol-ball", "fa-g", "fa-gamepad", "fa-gas-pump", "fa-gauge", "fa-gauge-high", "fa-gauge-med", "fa-gauge-simple", "fa-gauge-simple-high", "fa-gauge-simple-med", "fa-gavel", "fa-gbp", "fa-gear", "fa-gears", "fa-gem", "fa-genderless", "fa-ghost", "fa-gift", "fa-gifts", "fa-glass-cheers", "fa-glass-martini", "fa-glass-martini-alt", "fa-glass-water", "fa-glass-water-droplet", "fa-glass-whiskey", "fa-glasses", "fa-globe", "fa-globe-africa", "fa-globe-americas", "fa-globe-asia", "fa-globe-europe", "fa-globe-oceania", "fa-golf-ball", "fa-golf-ball-tee", "fa-gopuram", "fa-graduation-cap", "fa-greater-than", "fa-greater-than-equal", "fa-grimace", "fa-grin", "fa-grin-alt", "fa-grin-beam", "fa-grin-beam-sweat", "fa-grin-hearts", "fa-grin-squint", "fa-grin-squint-tears", "fa-grin-stars", "fa-grin-tears", "fa-grin-tongue", "fa-grin-tongue-squint", "fa-grin-tongue-wink", "fa-grin-wink", "fa-grip", "fa-grip-horizontal", "fa-grip-lines", "fa-grip-lines-vertical", "fa-grip-vertical", "fa-group-arrows-rotate", "fa-guarani-sign", "fa-guitar", "fa-gun", "fa-h", "fa-h-square", "fa-hamburger", "fa-hammer", "fa-hamsa", "fa-hand", "fa-hand-back-fist", "fa-hand-dots", "fa-hand-fist", "fa-hand-holding", "fa-hand-holding-dollar", "fa-hand-holding-droplet", "fa-hand-holding-hand", "fa-hand-holding-heart", "fa-hand-holding-medical", "fa-hand-holding-usd", "fa-hand-holding-water", "fa-hand-lizard", "fa-hand-middle-finger", "fa-hand-paper", "fa-hand-peace", "fa-hand-point-down", "fa-hand-point-left", "fa-hand-point-right", "fa-hand-point-up", "fa-hand-pointer", "fa-hand-rock", "fa-hand-scissors", "fa-hand-sparkles", "fa-hand-spock", "fa-handcuffs", "fa-hands", "fa-hands-american-sign-language-interpreting", "fa-hands-asl-interpreting", "fa-hands-bound", "fa-hands-bubbles", "fa-hands-clapping", "fa-hands-helping", "fa-hands-holding", "fa-hands-holding-child", "fa-hands-holding-circle", "fa-hands-praying", "fa-hands-wash", "fa-handshake", "fa-handshake-alt", "fa-handshake-alt-slash", "fa-handshake-angle", "fa-handshake-simple", "fa-handshake-simple-slash", "fa-handshake-slash", "fa-hanukiah", "fa-hard-drive", "fa-hard-hat", "fa-hard-of-hearing", "fa-hashtag", "fa-hat-cowboy", "fa-hat-cowboy-side", "fa-hat-hard", "fa-hat-wizard", "fa-haykal", "fa-hdd", "fa-head-side-cough", "fa-head-side-cough-slash", "fa-head-side-mask", "fa-head-side-virus", "fa-header", "fa-heading", "fa-headphones", "fa-headphones-alt", "fa-headphones-simple", "fa-headset", "fa-heart", "fa-heart-broken", "fa-heart-circle-bolt", "fa-heart-circle-check", "fa-heart-circle-exclamation", "fa-heart-circle-minus", "fa-heart-circle-plus", "fa-heart-circle-xmark", "fa-heart-crack", "fa-heart-music-camera-bolt", "fa-heart-pulse", "fa-heartbeat", "fa-helicopter", "fa-helicopter-symbol", "fa-helmet-safety", "fa-helmet-un", "fa-highlighter", "fa-hiking", "fa-hill-avalanche", "fa-hill-rockslide", "fa-hippo", "fa-history", "fa-hockey-puck", "fa-holly-berry", "fa-home", "fa-home-alt", "fa-home-lg", "fa-home-lg-alt", "fa-home-user", "fa-horse", "fa-horse-head", "fa-hospital", "fa-hospital-alt", "fa-hospital-symbol", "fa-hospital-user", "fa-hospital-wide", "fa-hot-tub", "fa-hot-tub-person", "fa-hotdog", "fa-hotel", "fa-hourglass", "fa-hourglass-1", "fa-hourglass-2", "fa-hourglass-3", "fa-hourglass-empty", "fa-hourglass-end", "fa-hourglass-half", "fa-hourglass-start", "fa-house", "fa-house-chimney", "fa-house-chimney-crack", "fa-house-chimney-medical", "fa-house-chimney-user", "fa-house-chimney-window", "fa-house-circle-check", "fa-house-circle-exclamation", "fa-house-circle-xmark", "fa-house-crack", "fa-house-damage", "fa-house-fire", "fa-house-flag", "fa-house-flood-water", "fa-house-flood-water-circle-arrow-right", "fa-house-laptop", "fa-house-lock", "fa-house-medical", "fa-house-medical-circle-check", "fa-house-medical-circle-exclamation", "fa-house-medical-circle-xmark", "fa-house-medical-flag", "fa-house-signal", "fa-house-tsunami", "fa-house-user", "fa-hryvnia", "fa-hryvnia-sign", "fa-hurricane", "fa-i", "fa-i-cursor", "fa-ice-cream", "fa-icicles", "fa-icons", "fa-id-badge", "fa-id-card", "fa-id-card-alt", "fa-id-card-clip", "fa-igloo", "fa-ils", "fa-image", "fa-image-portrait", "fa-images", "fa-inbox", "fa-indent", "fa-indian-rupee", "fa-indian-rupee-sign", "fa-industry", "fa-infinity", "fa-info", "fa-info-circle", "fa-inr", "fa-institution", "fa-italic", "fa-j", "fa-jar", "fa-jar-wheat", "fa-jedi", "fa-jet-fighter", "fa-jet-fighter-up", "fa-joint", "fa-journal-whills", "fa-jpy", "fa-jug-detergent", "fa-k", "fa-kaaba", "fa-key", "fa-keyboard", "fa-khanda", "fa-kip-sign", "fa-kiss", "fa-kiss-beam", "fa-kiss-wink-heart", "fa-kit-medical", "fa-kitchen-set", "fa-kiwi-bird", "fa-krw", "fa-l", "fa-ladder-water", "fa-land-mine-on", "fa-landmark", "fa-landmark-alt", "fa-landmark-dome", "fa-landmark-flag", "fa-language", "fa-laptop", "fa-laptop-code", "fa-laptop-file", "fa-laptop-house", "fa-laptop-medical", "fa-lari-sign", "fa-laugh", "fa-laugh-beam", "fa-laugh-squint", "fa-laugh-wink", "fa-layer-group", "fa-leaf", "fa-left-long", "fa-left-right", "fa-legal", "fa-lemon", "fa-less-than", "fa-less-than-equal", "fa-level-down", "fa-level-down-alt", "fa-level-up", "fa-level-up-alt", "fa-life-ring", "fa-lightbulb", "fa-line-chart", "fa-lines-leaning", "fa-link", "fa-link-slash", "fa-lira-sign", "fa-list", "fa-list-12", "fa-list-alt", "fa-list-check", "fa-list-dots", "fa-list-numeric", "fa-list-ol", "fa-list-squares", "fa-list-ul", "fa-litecoin-sign", "fa-location", "fa-location-arrow", "fa-location-crosshairs", "fa-location-dot", "fa-location-pin", "fa-location-pin-lock", "fa-lock", "fa-lock-open", "fa-locust", "fa-long-arrow-alt-down", "fa-long-arrow-alt-left", "fa-long-arrow-alt-right", "fa-long-arrow-alt-up", "fa-long-arrow-down", "fa-long-arrow-left", "fa-long-arrow-right", "fa-long-arrow-up", "fa-low-vision", "fa-luggage-cart", "fa-lungs", "fa-lungs-virus", "fa-m", "fa-magic", "fa-magic-wand-sparkles", "fa-magnet", "fa-magnifying-glass", "fa-magnifying-glass-arrow-right", "fa-magnifying-glass-chart", "fa-magnifying-glass-dollar", "fa-magnifying-glass-location", "fa-magnifying-glass-minus", "fa-magnifying-glass-plus", "fa-mail-bulk", "fa-mail-forward", "fa-mail-reply", "fa-mail-reply-all", "fa-male", "fa-manat-sign", "fa-map", "fa-map-location", "fa-map-location-dot", "fa-map-marked", "fa-map-marked-alt", "fa-map-marker", "fa-map-marker-alt", "fa-map-pin", "fa-map-signs", "fa-marker", "fa-mars", "fa-mars-and-venus", "fa-mars-and-venus-burst", "fa-mars-double", "fa-mars-stroke", "fa-mars-stroke-h", "fa-mars-stroke-right", "fa-mars-stroke-up", "fa-mars-stroke-v", "fa-martini-glass", "fa-martini-glass-citrus", "fa-martini-glass-empty", "fa-mask", "fa-mask-face", "fa-mask-ventilator", "fa-masks-theater", "fa-mattress-pillow", "fa-maximize", "fa-medal", "fa-medkit", "fa-meh", "fa-meh-blank", "fa-meh-rolling-eyes", "fa-memory", "fa-menorah", "fa-mercury", "fa-message", "fa-meteor", "fa-microchip", "fa-microphone", "fa-microphone-alt", "fa-microphone-alt-slash", "fa-microphone-lines", "fa-microphone-lines-slash", "fa-microphone-slash", "fa-microscope", "fa-mill-sign", "fa-minimize", "fa-minus", "fa-minus-circle", "fa-minus-square", "fa-mitten", "fa-mobile", "fa-mobile-alt", "fa-mobile-android", "fa-mobile-android-alt", "fa-mobile-button", "fa-mobile-phone", "fa-mobile-retro", "fa-mobile-screen", "fa-mobile-screen-button", "fa-money-bill", "fa-money-bill-1", "fa-money-bill-1-wave", "fa-money-bill-alt", "fa-money-bill-transfer", "fa-money-bill-trend-up", "fa-money-bill-wave", "fa-money-bill-wave-alt", "fa-money-bill-wheat", "fa-money-bills", "fa-money-check", "fa-money-check-alt", "fa-money-check-dollar", "fa-monument", "fa-moon", "fa-mortar-board", "fa-mortar-pestle", "fa-mosque", "fa-mosquito", "fa-mosquito-net", "fa-motorcycle", "fa-mound", "fa-mountain", "fa-mountain-city", "fa-mountain-sun", "fa-mouse", "fa-mouse-pointer", "fa-mug-hot", "fa-mug-saucer", "fa-multiply", "fa-museum", "fa-music", "fa-n", "fa-naira-sign", "fa-navicon", "fa-network-wired", "fa-neuter", "fa-newspaper", "fa-not-equal", "fa-notdef", "fa-note-sticky", "fa-notes-medical", "fa-o", "fa-object-group", "fa-object-ungroup", "fa-oil-can", "fa-oil-well", "fa-om", "fa-otter", "fa-outdent", "fa-p", "fa-pager", "fa-paint-brush", "fa-paint-roller", "fa-paintbrush", "fa-palette", "fa-pallet", "fa-panorama", "fa-paper-plane", "fa-paperclip", "fa-parachute-box", "fa-paragraph", "fa-parking", "fa-passport", "fa-pastafarianism", "fa-paste", "fa-pause", "fa-pause-circle", "fa-paw", "fa-peace", "fa-pen", "fa-pen-alt", "fa-pen-clip", "fa-pen-fancy", "fa-pen-nib", "fa-pen-ruler", "fa-pen-square", "fa-pen-to-square", "fa-pencil", "fa-pencil-alt", "fa-pencil-ruler", "fa-pencil-square", "fa-people-arrows", "fa-people-arrows-left-right", "fa-people-carry", "fa-people-carry-box", "fa-people-group", "fa-people-line", "fa-people-pulling", "fa-people-robbery", "fa-people-roof", "fa-pepper-hot", "fa-percent", "fa-percentage", "fa-person", "fa-person-arrow-down-to-line", "fa-person-arrow-up-from-line", "fa-person-biking", "fa-person-booth", "fa-person-breastfeeding", "fa-person-burst", "fa-person-cane", "fa-person-chalkboard", "fa-person-circle-check", "fa-person-circle-exclamation", "fa-person-circle-minus", "fa-person-circle-plus", "fa-person-circle-question", "fa-person-circle-xmark", "fa-person-digging", "fa-person-dots-from-line", "fa-person-dress", "fa-person-dress-burst", "fa-person-drowning", "fa-person-falling", "fa-person-falling-burst", "fa-person-half-dress", "fa-person-harassing", "fa-person-hiking", "fa-person-military-pointing", "fa-person-military-rifle", "fa-person-military-to-person", "fa-person-praying", "fa-person-pregnant", "fa-person-rays", "fa-person-rifle", "fa-person-running", "fa-person-shelter", "fa-person-skating", "fa-person-skiing", "fa-person-skiing-nordic", "fa-person-snowboarding", "fa-person-swimming", "fa-person-through-window", "fa-person-walking", "fa-person-walking-arrow-loop-left", "fa-person-walking-arrow-right", "fa-person-walking-dashed-line-arrow-right", "fa-person-walking-luggage", "fa-person-walking-with-cane", "fa-peseta-sign", "fa-peso-sign", "fa-phone", "fa-phone-alt", "fa-phone-flip", "fa-phone-slash", "fa-phone-square", "fa-phone-square-alt", "fa-phone-volume", "fa-photo-film", "fa-photo-video", "fa-pie-chart", "fa-piggy-bank", "fa-pills", "fa-ping-pong-paddle-ball", "fa-pizza-slice", "fa-place-of-worship", "fa-plane", "fa-plane-arrival", "fa-plane-circle-check", "fa-plane-circle-exclamation", "fa-plane-circle-xmark", "fa-plane-departure", "fa-plane-lock", "fa-plane-slash", "fa-plane-up", "fa-plant-wilt", "fa-plate-wheat", "fa-play", "fa-play-circle", "fa-plug", "fa-plug-circle-bolt", "fa-plug-circle-check", "fa-plug-circle-exclamation", "fa-plug-circle-minus", "fa-plug-circle-plus", "fa-plug-circle-xmark", "fa-plus", "fa-plus-circle", "fa-plus-minus", "fa-plus-square", "fa-podcast", "fa-poll", "fa-poll-h", "fa-poo", "fa-poo-bolt", "fa-poo-storm", "fa-poop", "fa-portrait", "fa-pound-sign", "fa-power-off", "fa-pray", "fa-praying-hands", "fa-prescription", "fa-prescription-bottle", "fa-prescription-bottle-alt", "fa-prescription-bottle-medical", "fa-print", "fa-procedures", "fa-project-diagram", "fa-pump-medical", "fa-pump-soap", "fa-puzzle-piece", "fa-q", "fa-qrcode", "fa-question", "fa-question-circle", "fa-quidditch", "fa-quidditch-broom-ball", "fa-quote-left", "fa-quote-left-alt", "fa-quote-right", "fa-quote-right-alt", "fa-quran", "fa-r", "fa-radiation", "fa-radiation-alt", "fa-radio", "fa-rainbow", "fa-random", "fa-ranking-star", "fa-receipt", "fa-record-vinyl", "fa-rectangle-ad", "fa-rectangle-list", "fa-rectangle-times", "fa-rectangle-xmark", "fa-recycle", "fa-redo", "fa-redo-alt", "fa-refresh", "fa-registered", "fa-remove", "fa-remove-format", "fa-reorder", "fa-repeat", "fa-reply", "fa-reply-all", "fa-republican", "fa-restroom", "fa-retweet", "fa-ribbon", "fa-right-from-bracket", "fa-right-left", "fa-right-long", "fa-right-to-bracket", "fa-ring", "fa-rmb", "fa-road", "fa-road-barrier", "fa-road-bridge", "fa-road-circle-check", "fa-road-circle-exclamation", "fa-road-circle-xmark", "fa-road-lock", "fa-road-spikes", "fa-robot", "fa-rocket", "fa-rod-asclepius", "fa-rod-snake", "fa-rotate", "fa-rotate-back", "fa-rotate-backward", "fa-rotate-forward", "fa-rotate-left", "fa-rotate-right", "fa-rouble", "fa-route", "fa-rss", "fa-rss-square", "fa-rub", "fa-ruble", "fa-ruble-sign", "fa-rug", "fa-ruler", "fa-ruler-combined", "fa-ruler-horizontal", "fa-ruler-vertical", "fa-running", "fa-rupee", "fa-rupee-sign", "fa-rupiah-sign", "fa-s", "fa-sack-dollar", "fa-sack-xmark", "fa-sad-cry", "fa-sad-tear", "fa-sailboat", "fa-satellite", "fa-satellite-dish", "fa-save", "fa-scale-balanced", "fa-scale-unbalanced", "fa-scale-unbalanced-flip", "fa-school", "fa-school-circle-check", "fa-school-circle-exclamation", "fa-school-circle-xmark", "fa-school-flag", "fa-school-lock", "fa-scissors", "fa-screwdriver", "fa-screwdriver-wrench", "fa-scroll", "fa-scroll-torah", "fa-sd-card", "fa-search", "fa-search-dollar", "fa-search-location", "fa-search-minus", "fa-search-plus", "fa-section", "fa-seedling", "fa-server", "fa-shapes", "fa-share", "fa-share-alt", "fa-share-alt-square", "fa-share-from-square", "fa-share-nodes", "fa-share-square", "fa-sheet-plastic", "fa-shekel", "fa-shekel-sign", "fa-sheqel", "fa-sheqel-sign", "fa-shield", "fa-shield-alt", "fa-shield-blank", "fa-shield-cat", "fa-shield-dog", "fa-shield-halved", "fa-shield-heart", "fa-shield-virus", "fa-ship", "fa-shipping-fast", "fa-shirt", "fa-shoe-prints", "fa-shop", "fa-shop-lock", "fa-shop-slash", "fa-shopping-bag", "fa-shopping-basket", "fa-shopping-cart", "fa-shower", "fa-shrimp", "fa-shuffle", "fa-shuttle-space", "fa-shuttle-van", "fa-sign", "fa-sign-hanging", "fa-sign-in", "fa-sign-in-alt", "fa-sign-language", "fa-sign-out", "fa-sign-out-alt", "fa-signal", "fa-signal-5", "fa-signal-perfect", "fa-signature", "fa-signing", "fa-signs-post", "fa-sim-card", "fa-sink", "fa-sitemap", "fa-skating", "fa-skiing", "fa-skiing-nordic", "fa-skull", "fa-skull-crossbones", "fa-slash", "fa-sleigh", "fa-sliders", "fa-sliders-h", "fa-smile", "fa-smile-beam", "fa-smile-wink", "fa-smog", "fa-smoking", "fa-smoking-ban", "fa-sms", "fa-snowboarding", "fa-snowflake", "fa-snowman", "fa-snowplow", "fa-soap", "fa-soccer-ball", "fa-socks", "fa-solar-panel", "fa-sort", "fa-sort-alpha-asc", "fa-sort-alpha-desc", "fa-sort-alpha-down", "fa-sort-alpha-down-alt", "fa-sort-alpha-up", "fa-sort-alpha-up-alt", "fa-sort-amount-asc", "fa-sort-amount-desc", "fa-sort-amount-down", "fa-sort-amount-down-alt", "fa-sort-amount-up", "fa-sort-amount-up-alt", "fa-sort-asc", "fa-sort-desc", "fa-sort-down", "fa-sort-numeric-asc", "fa-sort-numeric-desc", "fa-sort-numeric-down", "fa-sort-numeric-down-alt", "fa-sort-numeric-up", "fa-sort-numeric-up-alt", "fa-sort-up", "fa-spa", "fa-space-shuttle", "fa-spaghetti-monster-flying", "fa-spell-check", "fa-spider", "fa-spinner", "fa-splotch", "fa-spoon", "fa-spray-can", "fa-spray-can-sparkles", "fa-sprout", "fa-square", "fa-square-arrow-up-right", "fa-square-caret-down", "fa-square-caret-left", "fa-square-caret-right", "fa-square-caret-up", "fa-square-check", "fa-square-envelope", "fa-square-full", "fa-square-h", "fa-square-minus", "fa-square-nfi", "fa-square-parking", "fa-square-pen", "fa-square-person-confined", "fa-square-phone", "fa-square-phone-flip", "fa-square-plus", "fa-square-poll-horizontal", "fa-square-poll-vertical", "fa-square-root-alt", "fa-square-root-variable", "fa-square-rss", "fa-square-share-nodes", "fa-square-up-right", "fa-square-virus", "fa-square-xmark", "fa-staff-aesculapius", "fa-staff-snake", "fa-stairs", "fa-stamp", "fa-stapler", "fa-star", "fa-star-and-crescent", "fa-star-half", "fa-star-half-alt", "fa-star-half-stroke", "fa-star-of-david", "fa-star-of-life", "fa-step-backward", "fa-step-forward", "fa-sterling-sign", "fa-stethoscope", "fa-sticky-note", "fa-stop", "fa-stop-circle", "fa-stopwatch", "fa-stopwatch-20", "fa-store", "fa-store-alt", "fa-store-alt-slash", "fa-store-slash", "fa-stream", "fa-street-view", "fa-strikethrough", "fa-stroopwafel", "fa-subscript", "fa-subtract", "fa-subway", "fa-suitcase", "fa-suitcase-medical", "fa-suitcase-rolling", "fa-sun", "fa-sun-plant-wilt", "fa-superscript", "fa-surprise", "fa-swatchbook", "fa-swimmer", "fa-swimming-pool", "fa-synagogue", "fa-sync", "fa-sync-alt", "fa-syringe", "fa-t", "fa-t-shirt", "fa-table", "fa-table-cells", "fa-table-cells-column-lock", "fa-table-cells-large", "fa-table-cells-row-lock", "fa-table-columns", "fa-table-list", "fa-table-tennis", "fa-table-tennis-paddle-ball", "fa-tablet", "fa-tablet-alt", "fa-tablet-android", "fa-tablet-button", "fa-tablet-screen-button", "fa-tablets", "fa-tachograph-digital", "fa-tachometer", "fa-tachometer-alt", "fa-tachometer-alt-average", "fa-tachometer-alt-fast", "fa-tachometer-average", "fa-tachometer-fast", "fa-tag", "fa-tags", "fa-tanakh", "fa-tape", "fa-tarp", "fa-tarp-droplet", "fa-tasks", "fa-tasks-alt", "fa-taxi", "fa-teeth", "fa-teeth-open", "fa-teletype", "fa-television", "fa-temperature-0", "fa-temperature-1", "fa-temperature-2", "fa-temperature-3", "fa-temperature-4", "fa-temperature-arrow-down", "fa-temperature-arrow-up", "fa-temperature-down", "fa-temperature-empty", "fa-temperature-full", "fa-temperature-half", "fa-temperature-high", "fa-temperature-low", "fa-temperature-quarter", "fa-temperature-three-quarters", "fa-temperature-up", "fa-tenge", "fa-tenge-sign", "fa-tent", "fa-tent-arrow-down-to-line", "fa-tent-arrow-left-right", "fa-tent-arrow-turn-left", "fa-tent-arrows-down", "fa-tents", "fa-terminal", "fa-text-height", "fa-text-slash", "fa-text-width", "fa-th", "fa-th-large", "fa-th-list", "fa-theater-masks", "fa-thermometer", "fa-thermometer-0", "fa-thermometer-1", "fa-thermometer-2", "fa-thermometer-3", "fa-thermometer-4", "fa-thermometer-empty", "fa-thermometer-full", "fa-thermometer-half", "fa-thermometer-quarter", "fa-thermometer-three-quarters", "fa-thumb-tack", "fa-thumbs-down", "fa-thumbs-up", "fa-thumbtack", "fa-thunderstorm", "fa-ticket", "fa-ticket-alt", "fa-ticket-simple", "fa-timeline", "fa-times", "fa-times-circle", "fa-times-rectangle", "fa-times-square", "fa-tint", "fa-tint-slash", "fa-tired", "fa-toggle-off", "fa-toggle-on", "fa-toilet", "fa-toilet-paper", "fa-toilet-paper-slash", "fa-toilet-portable", "fa-toilets-portable", "fa-toolbox", "fa-tools", "fa-tooth", "fa-torah", "fa-torii-gate", "fa-tornado", "fa-tower-broadcast", "fa-tower-cell", "fa-tower-observation", "fa-tractor", "fa-trademark", "fa-traffic-light", "fa-trailer", "fa-train", "fa-train-subway", "fa-train-tram", "fa-tram", "fa-transgender", "fa-transgender-alt", "fa-trash", "fa-trash-alt", "fa-trash-arrow-up", "fa-trash-can", "fa-trash-can-arrow-up", "fa-trash-restore", "fa-trash-restore-alt", "fa-tree", "fa-tree-city", "fa-triangle-circle-square", "fa-triangle-exclamation", "fa-trophy", "fa-trowel", "fa-trowel-bricks", "fa-truck", "fa-truck-arrow-right", "fa-truck-droplet", "fa-truck-fast", "fa-truck-field", "fa-truck-field-un", "fa-truck-front", "fa-truck-loading", "fa-truck-medical", "fa-truck-monster", "fa-truck-moving", "fa-truck-pickup", "fa-truck-plane", "fa-truck-ramp-box", "fa-try", "fa-tshirt", "fa-tty", "fa-turkish-lira", "fa-turkish-lira-sign", "fa-turn-down", "fa-turn-up", "fa-tv", "fa-tv-alt", "fa-u", "fa-umbrella", "fa-umbrella-beach", "fa-underline", "fa-undo", "fa-undo-alt", "fa-universal-access", "fa-university", "fa-unlink", "fa-unlock", "fa-unlock-alt", "fa-unlock-keyhole", "fa-unsorted", "fa-up-down", "fa-up-down-left-right", "fa-up-long", "fa-up-right-and-down-left-from-center", "fa-up-right-from-square", "fa-upload", "fa-usd", "fa-user", "fa-user-alt", "fa-user-alt-slash", "fa-user-astronaut", "fa-user-check", "fa-user-circle", "fa-user-clock", "fa-user-cog", "fa-user-doctor", "fa-user-edit", "fa-user-friends", "fa-user-gear", "fa-user-graduate", "fa-user-group", "fa-user-injured", "fa-user-large", "fa-user-large-slash", "fa-user-lock", "fa-user-md", "fa-user-minus", "fa-user-ninja", "fa-user-nurse", "fa-user-pen", "fa-user-plus", "fa-user-secret", "fa-user-shield", "fa-user-slash", "fa-user-tag", "fa-user-tie", "fa-user-times", "fa-user-xmark", "fa-users", "fa-users-between-lines", "fa-users-cog", "fa-users-gear", "fa-users-line", "fa-users-rays", "fa-users-rectangle", "fa-users-slash", "fa-users-viewfinder", "fa-utensil-spoon", "fa-utensils", "fa-v", "fa-van-shuttle", "fa-vault", "fa-vcard", "fa-vector-square", "fa-venus", "fa-venus-double", "fa-venus-mars", "fa-vest", "fa-vest-patches", "fa-vial", "fa-vial-circle-check", "fa-vial-virus", "fa-vials", "fa-video", "fa-video-camera", "fa-video-slash", "fa-vihara", "fa-virus", "fa-virus-covid", "fa-virus-covid-slash", "fa-virus-slash", "fa-viruses", "fa-voicemail", "fa-volcano", "fa-volleyball", "fa-volleyball-ball", "fa-volume-control-phone", "fa-volume-down", "fa-volume-high", "fa-volume-low", "fa-volume-mute", "fa-volume-off", "fa-volume-times", "fa-volume-up", "fa-volume-xmark", "fa-vote-yea", "fa-vr-cardboard", "fa-w", "fa-walkie-talkie", "fa-walking", "fa-wallet", "fa-wand-magic", "fa-wand-magic-sparkles", "fa-wand-sparkles", "fa-warehouse", "fa-warning", "fa-water", "fa-water-ladder", "fa-wave-square", "fa-weight", "fa-weight-hanging", "fa-weight-scale", "fa-wheat-alt", "fa-wheat-awn", "fa-wheat-awn-circle-exclamation", "fa-wheelchair", "fa-wheelchair-alt", "fa-wheelchair-move", "fa-whiskey-glass", "fa-wifi", "fa-wifi-3", "fa-wifi-strong", "fa-wind", "fa-window-close", "fa-window-maximize", "fa-window-minimize", "fa-window-restore", "fa-wine-bottle", "fa-wine-glass", "fa-wine-glass-alt", "fa-wine-glass-empty", "fa-won", "fa-won-sign", "fa-worm", "fa-wrench", "fa-x", "fa-x-ray", "fa-xmark", "fa-xmark-circle", "fa-xmark-square", "fa-xmarks-lines", "fa-y", "fa-yen", "fa-yen-sign", "fa-yin-yang", "fa-z", "fa-zap", "file", "fileHappy", "filter", "filter-outline", "find-documents", "folder", "form", "gallery", "graphiql", "grid-view", "happy", "help", "help-solid", "highlight", "highlight-outline", "indico-logo-white", "indico-o", "indico-o-white", "info", "kabob", "key", "label", "layout-complex", "layout-simple", "libraries", "list-view", "location", "lock", "logout", "menu", "model-import", "model-starter", "moon", "moonbow", "no-collections", "no-format", "no-libraries", "no_results", "object-detection", "organizations", "output", "page-thumbnail", "pay-as-you-go", "person", "phone", "pin", "plus", "pointer", "popup", "preview-view", "price", "radio-button", "recruiter", "regex", "reject", "repair", "research", "reset", "retrain", "sad", "search", "search-thin", "shrug", "signature", "sort-down", "split", "step-forward", "sun", "surround", "surround-outline", "text", "thumbs-down", "thumbs-up", "time", "trash", "unlock", "upload", "url", "user", "wand", "warning", "warning-stroke", "workflows", "x-close", "zoom-in", "zoom-out"];
895
+ type IconName = typeof iconNames[number];
896
+
897
+ type PermafrostComponent = {
898
+ id?: string;
899
+ className?: string;
900
+ 'data-cy'?: string;
901
+ 'data-testid'?: string;
902
+ };
903
+
894
904
  type IconSizes = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
895
905
  type IconProps = PermafrostComponent & {
896
906
  name: IconName;
@@ -900,7 +910,7 @@ type IconProps = PermafrostComponent & {
900
910
  onClick?: MouseEventHandler<SVGElement>;
901
911
  };
902
912
 
903
- declare const Icon: React$1.FC<IconProps>;
913
+ declare const Icon: ({ name, size, className, ariaLabel, ...props }: IconProps) => react_jsx_runtime.JSX.Element | null;
904
914
 
905
915
  type LocalDirection = 'auto' | 'ltr' | 'rtl';
906
916
  type LocalAlignment = 'left' | 'right' | 'center';