@uniformdev/design-system 19.38.3-alpha.70 → 19.38.3-alpha.78

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/dist/index.d.mts CHANGED
@@ -8,9 +8,9 @@ import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-na
8
8
  import { LottieComponentProps } from 'lottie-react';
9
9
  import { ButtonProps as ButtonProps$1 } from 'reakit/Button';
10
10
  import { MenuProps as MenuProps$1, MenuItemHTMLProps } from 'reakit';
11
- import * as react_icons from 'react-icons';
12
- import { IconType as IconType$1, IconBaseProps } from 'react-icons';
13
- import * as react_icons_lib from 'react-icons/lib';
11
+ import * as _react_icons_all_files_lib from '@react-icons/all-files/lib';
12
+ import { IconType as IconType$1, IconBaseProps } from '@react-icons/all-files/lib';
13
+ import * as _react_icons_all_files from '@react-icons/all-files';
14
14
  import InternalSelect from 'react-select/dist/declarations/src/Select';
15
15
  import { StateManagerProps } from 'react-select/dist/declarations/src/useStateManager';
16
16
  import { JsonSchema7Type } from 'zod-to-json-schema/src/parseDef';
@@ -20429,7 +20429,7 @@ declare const LoadingCardSkeleton: () => _emotion_react_types_jsx_namespace.Emot
20429
20429
  type ChipSizeProp = 'xs' | 'sm' | 'md';
20430
20430
  type ChipTheme = 'accent-light' | 'accent-dark' | 'accent-alt-light' | 'accent-alt-dark' | 'neutral-light' | 'neutral-dark';
20431
20431
  type ChipProps = {
20432
- icon?: IconType$1;
20432
+ icon?: IconType;
20433
20433
  text: ReactNode;
20434
20434
  /** sets the size of the chip
20435
20435
  * @default 'sm'
@@ -20527,6 +20527,60 @@ type DetailsProps = React$1.HTMLAttributes<HTMLDetailsElement> & {
20527
20527
  /** @example <Details summary="summary text">child content here</Details>*/
20528
20528
  declare const Details: ({ summary, children, isOpenByDefault, isOpen, onChange, ...props }: DetailsProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20529
20529
 
20530
+ interface DrawerRendererProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'children'> {
20531
+ /** The ID of the stack to render. Some drawers need to use the same stack ID to be rendered here */
20532
+ stackId: string;
20533
+ /** The width of the drawers. In any CSS length unit (px, rem, %, et al). Can't use CSS functions (e.g. calc())
20534
+ * @default 'medium'
20535
+ */
20536
+ width?: 'narrow' | 'medium' | 'wide' | (string & NonNullable<unknown>);
20537
+ /** The minimum width of the drawers. In any CSS length unit (px, rem, %, et al)
20538
+ * @default '0'
20539
+ */
20540
+ minWidth?: string;
20541
+ /** The maximum width of the drawers. In any CSS length unit (px, rem, %, et al)
20542
+ * @default '100%'
20543
+ */
20544
+ maxWidth?: string;
20545
+ /** Sets the css position value
20546
+ * @default 'absolute'
20547
+ */
20548
+ position?: 'absolute' | 'fixed' | 'sticky';
20549
+ /** Opens the drawer from left to right
20550
+ * @default false
20551
+ */
20552
+ leftAligned?: boolean;
20553
+ /**
20554
+ * If a drawer in the stack has a specific `width` prop, and its value is larger than the width of the current stack,
20555
+ * the width of the stack will be automatically adjusted to accommodate for that.
20556
+ * Set this prop to `true` to disable this behavior.
20557
+ * @default false
20558
+ */
20559
+ withoutFluidWidth?: boolean;
20560
+ }
20561
+ /**
20562
+ * Renders a stack of drawers in a different location than their original position in the component tree. Uses React Portal under the hood.
20563
+ * @example <DrawerProvider><Drawer id="my-drawer" stackId="my-stack" header="Title">Hello</Drawer><DrawerRenderer stackId="my-stack"/></DrawerProvider>
20564
+ */
20565
+ declare const DrawerRenderer: ({ stackId, position, width, minWidth, maxWidth, leftAligned, withoutFluidWidth, ...otherProps }: DrawerRendererProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
20566
+ interface DrawerRendererItemProps extends React__default.HTMLAttributes<HTMLDivElement> {
20567
+ index: number;
20568
+ totalDrawers: number;
20569
+ width: DrawerRendererProps['width'];
20570
+ minWidth: Required<DrawerRendererProps['minWidth']>;
20571
+ maxWidth: Required<DrawerRendererProps['maxWidth']>;
20572
+ leftAligned: Required<DrawerRendererProps['leftAligned']>;
20573
+ onOverlayClick?: () => void;
20574
+ }
20575
+ declare const getDrawerAttributes: ({ providerId, stackId, id, }: {
20576
+ providerId: string;
20577
+ stackId?: string | undefined;
20578
+ id: string;
20579
+ }) => {
20580
+ 'data-drawer-id': string;
20581
+ 'data-testid': string;
20582
+ };
20583
+
20530
20584
  interface DrawerItem {
20531
20585
  /** An ID for the drawer. It should be unique in the stack where it's rendered */
20532
20586
  id: string;
@@ -20538,6 +20592,12 @@ interface DrawerItem {
20538
20592
  stackId?: string;
20539
20593
  /** Just like React.Key, changing this value indicates that the drawer has changed and we need to close the current instance and open a new one */
20540
20594
  instanceKey?: string;
20595
+ /**
20596
+ * The desired width of the drawer.
20597
+ * This value is ignored if the drawer is part of a DrawerRenderer with `withoutFluidWidth`.
20598
+ * If not set, the drawer will use the width of its renderer.
20599
+ */
20600
+ width?: DrawerRendererProps['width'];
20541
20601
  /** Called when the close button is clicked, the Escape button is pressed, or when the drawer's overlay is clicked */
20542
20602
  onRequestClose?: () => void;
20543
20603
  /** Test ID for test automation **/
@@ -20568,12 +20628,12 @@ declare const DrawerProvider: ({ children }: React__default.PropsWithChildren) =
20568
20628
  declare const useDrawer: () => DrawerContextValue;
20569
20629
  declare const useCloseCurrentDrawer: () => (() => void) | undefined;
20570
20630
 
20571
- interface DrawerProps extends DrawerItem {
20631
+ type DrawerProps = DrawerItem & Omit<DrawerRendererProps, 'stackId'> & {
20572
20632
  header?: React__default.ReactNode;
20573
20633
  children?: React__default.ReactNode;
20574
20634
  bgColor?: 'var(--gray-50)' | 'var(--white)';
20575
20635
  leftAligned?: DrawerRendererProps['leftAligned'];
20576
- }
20636
+ };
20577
20637
  declare const CurrentDrawerContext: React__default.Context<{
20578
20638
  id?: string | undefined;
20579
20639
  stackId?: string | undefined;
@@ -20588,7 +20648,12 @@ declare const useCurrentDrawer: () => {
20588
20648
  * A drawer component that opens from the right side of is parent. The component is used in combination with DrawerProvider and DrawerRenderer
20589
20649
  * @example <Drawer id="my-drawer" header="Title">Hello</Drawer>
20590
20650
  */
20591
- declare const Drawer: React__default.ForwardRefExoticComponent<DrawerProps & Omit<DrawerRendererProps, "stackId"> & React__default.RefAttributes<HTMLDivElement>>;
20651
+ declare const Drawer: React__default.ForwardRefExoticComponent<DrawerItem & Omit<DrawerRendererProps, "stackId"> & {
20652
+ header?: React__default.ReactNode;
20653
+ children?: React__default.ReactNode;
20654
+ bgColor?: "var(--white)" | "var(--gray-50)" | undefined;
20655
+ leftAligned?: DrawerRendererProps['leftAligned'];
20656
+ } & React__default.RefAttributes<HTMLDivElement>>;
20592
20657
 
20593
20658
  type DrawerContentProps = {
20594
20659
  children: ReactNode;
@@ -20597,56 +20662,675 @@ type DrawerContentProps = {
20597
20662
  } & HTMLAttributes<HTMLDivElement>;
20598
20663
  declare const DrawerContent: ({ children, buttonGroup, noPadding, ...props }: DrawerContentProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20599
20664
 
20600
- interface DrawerRendererProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'children'> {
20601
- /** The ID of the stack to render. Some drawers need to use the same stack ID to be rendered here */
20602
- stackId: string;
20603
- /** The width of the drawers. In any CSS length unit (px, rem, %, et al). Can't use CSS functions (e.g. calc())
20604
- * @default 'medium'
20605
- */
20606
- width?: string | 'narrow' | 'medium' | 'wide';
20607
- /** The minimum width of the drawers. In any CSS length unit (px, rem, %, et al)
20608
- * @default '0'
20609
- */
20610
- minWidth?: string;
20611
- /** The maximum width of the drawers. In any CSS length unit (px, rem, %, et al)
20612
- * @default '100%'
20613
- */
20614
- maxWidth?: string;
20615
- /** Sets the css position value
20616
- * @default 'absolute'
20617
- */
20618
- position?: 'absolute' | 'fixed' | 'sticky';
20619
- /** Opens the drawer from left to right
20620
- * @default false
20621
- */
20622
- leftAligned?: boolean;
20623
- }
20624
- /**
20625
- * Renders a stack of drawers in a different location than their original position in the component tree. Uses React Portal under the hood.
20626
- * @example <DrawerProvider><Drawer id="my-drawer" stackId="my-stack" header="Title">Hello</Drawer><DrawerRenderer stackId="my-stack"/></DrawerProvider>
20627
- */
20628
- declare const DrawerRenderer: ({ stackId, position, width, minWidth, maxWidth, leftAligned, ...otherProps }: DrawerRendererProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
20629
- interface DrawerRendererItemProps extends React__default.HTMLAttributes<HTMLDivElement> {
20630
- index: number;
20631
- totalDrawers: number;
20632
- width: DrawerRendererProps['width'];
20633
- minWidth: Required<DrawerRendererProps['minWidth']>;
20634
- maxWidth: Required<DrawerRendererProps['maxWidth']>;
20635
- leftAligned: Required<DrawerRendererProps['leftAligned']>;
20636
- onOverlayClick?: () => void;
20637
- }
20638
- declare const getDrawerAttributes: ({ providerId, stackId, id, }: {
20639
- providerId: string;
20640
- stackId?: string | undefined;
20641
- id: string;
20642
- }) => {
20643
- 'data-drawer-id': string;
20644
- 'data-testid': string;
20665
+ declare const allSupportedIcons: {
20666
+ 'rectangle-rounded': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20667
+ card: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20668
+ 'image-text': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20669
+ 'border-top': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20670
+ 'full-width-screen': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20671
+ 'text-input': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20672
+ 'number-input': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20673
+ 'canvas-alert': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20674
+ warning: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20675
+ 'info-filled': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20676
+ settings: (props: IconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20677
+ 'query-string': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20678
+ json: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20679
+ 'format-bold': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20680
+ 'format-code': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20681
+ 'format-strike': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20682
+ 'format-superscript': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20683
+ 'format-subscript': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20684
+ 'layout-list-numbered': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20685
+ 'clear-formatting': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20686
+ 'yes-no': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20687
+ 'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20688
+ 'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20689
+ 'add-r': _react_icons_all_files_lib.IconType;
20690
+ add: _react_icons_all_files_lib.IconType;
20691
+ airplane: _react_icons_all_files_lib.IconType;
20692
+ alarm: _react_icons_all_files_lib.IconType;
20693
+ album: _react_icons_all_files_lib.IconType;
20694
+ 'align-bottom': _react_icons_all_files_lib.IconType;
20695
+ 'align-center': _react_icons_all_files_lib.IconType;
20696
+ 'align-left': _react_icons_all_files_lib.IconType;
20697
+ 'align-middle': _react_icons_all_files_lib.IconType;
20698
+ 'align-right': _react_icons_all_files_lib.IconType;
20699
+ 'align-top': _react_icons_all_files_lib.IconType;
20700
+ anchor: _react_icons_all_files_lib.IconType;
20701
+ 'apple-watch': _react_icons_all_files_lib.IconType;
20702
+ 'arrange-back': _react_icons_all_files_lib.IconType;
20703
+ 'arrange-front': _react_icons_all_files_lib.IconType;
20704
+ 'arrow-align-h': _react_icons_all_files_lib.IconType;
20705
+ 'arrow-align-v': _react_icons_all_files_lib.IconType;
20706
+ 'arrow-bottom-left-o': _react_icons_all_files_lib.IconType;
20707
+ 'arrow-bottom-left-r': _react_icons_all_files_lib.IconType;
20708
+ 'arrow-bottom-left': _react_icons_all_files_lib.IconType;
20709
+ 'arrow-bottom-right-o': _react_icons_all_files_lib.IconType;
20710
+ 'arrow-bottom-right-r': _react_icons_all_files_lib.IconType;
20711
+ 'arrow-bottom-right': _react_icons_all_files_lib.IconType;
20712
+ 'arrow-down-o': _react_icons_all_files_lib.IconType;
20713
+ 'arrow-down-r': _react_icons_all_files_lib.IconType;
20714
+ 'arrow-down': _react_icons_all_files_lib.IconType;
20715
+ 'arrow-left-o': _react_icons_all_files_lib.IconType;
20716
+ 'arrow-left-r': _react_icons_all_files_lib.IconType;
20717
+ 'arrow-left': _react_icons_all_files_lib.IconType;
20718
+ 'arrow-long-down-c': _react_icons_all_files_lib.IconType;
20719
+ 'arrow-long-down-e': _react_icons_all_files_lib.IconType;
20720
+ 'arrow-long-down-l': _react_icons_all_files_lib.IconType;
20721
+ 'arrow-long-down-r': _react_icons_all_files_lib.IconType;
20722
+ 'arrow-long-down': _react_icons_all_files_lib.IconType;
20723
+ 'arrow-long-left-c': _react_icons_all_files_lib.IconType;
20724
+ 'arrow-long-left-e': _react_icons_all_files_lib.IconType;
20725
+ 'arrow-long-left-l': _react_icons_all_files_lib.IconType;
20726
+ 'arrow-long-left-r': _react_icons_all_files_lib.IconType;
20727
+ 'arrow-long-left': _react_icons_all_files_lib.IconType;
20728
+ 'arrow-long-right-c': _react_icons_all_files_lib.IconType;
20729
+ 'arrow-long-right-e': _react_icons_all_files_lib.IconType;
20730
+ 'arrow-long-right-l': _react_icons_all_files_lib.IconType;
20731
+ 'arrow-long-right-r': _react_icons_all_files_lib.IconType;
20732
+ 'arrow-long-right': _react_icons_all_files_lib.IconType;
20733
+ 'arrow-long-up-c': _react_icons_all_files_lib.IconType;
20734
+ 'arrow-long-up-e': _react_icons_all_files_lib.IconType;
20735
+ 'arrow-long-up-l': _react_icons_all_files_lib.IconType;
20736
+ 'arrow-long-up-r': _react_icons_all_files_lib.IconType;
20737
+ 'arrow-long-up': _react_icons_all_files_lib.IconType;
20738
+ 'arrow-right-o': _react_icons_all_files_lib.IconType;
20739
+ 'arrow-right-r': _react_icons_all_files_lib.IconType;
20740
+ 'arrow-right': _react_icons_all_files_lib.IconType;
20741
+ 'arrow-top-left-o': _react_icons_all_files_lib.IconType;
20742
+ 'arrow-top-left-r': _react_icons_all_files_lib.IconType;
20743
+ 'arrow-top-left': _react_icons_all_files_lib.IconType;
20744
+ 'arrow-top-right-o': _react_icons_all_files_lib.IconType;
20745
+ 'arrow-top-right-r': _react_icons_all_files_lib.IconType;
20746
+ 'arrow-top-right': _react_icons_all_files_lib.IconType;
20747
+ 'arrow-up-o': _react_icons_all_files_lib.IconType;
20748
+ 'arrow-up-r': _react_icons_all_files_lib.IconType;
20749
+ 'arrow-up': _react_icons_all_files_lib.IconType;
20750
+ 'arrows-breake-h': _react_icons_all_files_lib.IconType;
20751
+ 'arrows-breake-v': _react_icons_all_files_lib.IconType;
20752
+ 'arrows-exchange-alt-v': _react_icons_all_files_lib.IconType;
20753
+ 'arrows-exchange-alt': _react_icons_all_files_lib.IconType;
20754
+ 'arrows-exchange-v': _react_icons_all_files_lib.IconType;
20755
+ 'arrows-exchange': _react_icons_all_files_lib.IconType;
20756
+ 'arrows-expand-down-left': _react_icons_all_files_lib.IconType;
20757
+ 'arrows-expand-down-right': _react_icons_all_files_lib.IconType;
20758
+ 'arrows-expand-left-alt': _react_icons_all_files_lib.IconType;
20759
+ 'arrows-expand-left': _react_icons_all_files_lib.IconType;
20760
+ 'arrows-expand-right-alt': _react_icons_all_files_lib.IconType;
20761
+ 'arrows-expand-right': _react_icons_all_files_lib.IconType;
20762
+ 'arrows-expand-up-left': _react_icons_all_files_lib.IconType;
20763
+ 'arrows-expand-up-right': _react_icons_all_files_lib.IconType;
20764
+ 'arrows-h-alt': _react_icons_all_files_lib.IconType;
20765
+ 'arrows-h': _react_icons_all_files_lib.IconType;
20766
+ 'arrows-merge-alt-h': _react_icons_all_files_lib.IconType;
20767
+ 'arrows-merge-alt-v': _react_icons_all_files_lib.IconType;
20768
+ 'arrows-scroll-h': _react_icons_all_files_lib.IconType;
20769
+ 'arrows-scroll-v': _react_icons_all_files_lib.IconType;
20770
+ 'arrows-shrink-h': _react_icons_all_files_lib.IconType;
20771
+ 'arrows-shrink-v': _react_icons_all_files_lib.IconType;
20772
+ 'arrows-v-alt': _react_icons_all_files_lib.IconType;
20773
+ 'arrows-v': _react_icons_all_files_lib.IconType;
20774
+ assign: _react_icons_all_files_lib.IconType;
20775
+ asterisk: _react_icons_all_files_lib.IconType;
20776
+ attachment: _react_icons_all_files_lib.IconType;
20777
+ attribution: _react_icons_all_files_lib.IconType;
20778
+ awards: _react_icons_all_files_lib.IconType;
20779
+ backspace: _react_icons_all_files_lib.IconType;
20780
+ 'band-aid': _react_icons_all_files_lib.IconType;
20781
+ 'battery-empty': _react_icons_all_files_lib.IconType;
20782
+ 'battery-full': _react_icons_all_files_lib.IconType;
20783
+ battery: _react_icons_all_files_lib.IconType;
20784
+ bee: _react_icons_all_files_lib.IconType;
20785
+ bell: _react_icons_all_files_lib.IconType;
20786
+ bitbucket: _react_icons_all_files_lib.IconType;
20787
+ block: _react_icons_all_files_lib.IconType;
20788
+ board: _react_icons_all_files_lib.IconType;
20789
+ bolt: _react_icons_all_files_lib.IconType;
20790
+ bookmark: _react_icons_all_files_lib.IconType;
20791
+ 'border-all': _react_icons_all_files_lib.IconType;
20792
+ 'border-bottom': _react_icons_all_files_lib.IconType;
20793
+ 'border-left': _react_icons_all_files_lib.IconType;
20794
+ 'border-right': _react_icons_all_files_lib.IconType;
20795
+ 'border-style-dashed': _react_icons_all_files_lib.IconType;
20796
+ 'border-style-dotted': _react_icons_all_files_lib.IconType;
20797
+ 'border-style-solid': _react_icons_all_files_lib.IconType;
20798
+ bot: _react_icons_all_files_lib.IconType;
20799
+ bowl: _react_icons_all_files_lib.IconType;
20800
+ box: _react_icons_all_files_lib.IconType;
20801
+ boy: _react_icons_all_files_lib.IconType;
20802
+ briefcase: _react_icons_all_files_lib.IconType;
20803
+ browse: _react_icons_all_files_lib.IconType;
20804
+ browser: _react_icons_all_files_lib.IconType;
20805
+ brush: _react_icons_all_files_lib.IconType;
20806
+ bulb: _react_icons_all_files_lib.IconType;
20807
+ 'c-plus-plus': _react_icons_all_files_lib.IconType;
20808
+ calculator: _react_icons_all_files_lib.IconType;
20809
+ 'calendar-dates': _react_icons_all_files_lib.IconType;
20810
+ 'calendar-due': _react_icons_all_files_lib.IconType;
20811
+ 'calendar-next': _react_icons_all_files_lib.IconType;
20812
+ 'calendar-today': _react_icons_all_files_lib.IconType;
20813
+ 'calendar-two': _react_icons_all_files_lib.IconType;
20814
+ calendar: _react_icons_all_files_lib.IconType;
20815
+ calibrate: _react_icons_all_files_lib.IconType;
20816
+ camera: _react_icons_all_files_lib.IconType;
20817
+ cap: _react_icons_all_files_lib.IconType;
20818
+ captions: _react_icons_all_files_lib.IconType;
20819
+ 'card-clubs': _react_icons_all_files_lib.IconType;
20820
+ 'card-diamonds': _react_icons_all_files_lib.IconType;
20821
+ 'card-hearts': _react_icons_all_files_lib.IconType;
20822
+ 'card-spades': _react_icons_all_files_lib.IconType;
20823
+ carousel: _react_icons_all_files_lib.IconType;
20824
+ cast: _react_icons_all_files_lib.IconType;
20825
+ chart: _react_icons_all_files_lib.IconType;
20826
+ 'check-o': _react_icons_all_files_lib.IconType;
20827
+ 'check-r': _react_icons_all_files_lib.IconType;
20828
+ check: _react_icons_all_files_lib.IconType;
20829
+ 'chevron-double-down-o': _react_icons_all_files_lib.IconType;
20830
+ 'chevron-double-down-r': _react_icons_all_files_lib.IconType;
20831
+ 'chevron-double-down': _react_icons_all_files_lib.IconType;
20832
+ 'chevron-double-left-o': _react_icons_all_files_lib.IconType;
20833
+ 'chevron-double-left-r': _react_icons_all_files_lib.IconType;
20834
+ 'chevron-double-left': _react_icons_all_files_lib.IconType;
20835
+ 'chevron-double-right-o': _react_icons_all_files_lib.IconType;
20836
+ 'chevron-double-right-r': _react_icons_all_files_lib.IconType;
20837
+ 'chevron-double-right': _react_icons_all_files_lib.IconType;
20838
+ 'chevron-double-up-o': _react_icons_all_files_lib.IconType;
20839
+ 'chevron-double-up-r': _react_icons_all_files_lib.IconType;
20840
+ 'chevron-double-up': _react_icons_all_files_lib.IconType;
20841
+ 'chevron-down-o': _react_icons_all_files_lib.IconType;
20842
+ 'chevron-down-r': _react_icons_all_files_lib.IconType;
20843
+ 'chevron-down': _react_icons_all_files_lib.IconType;
20844
+ 'chevron-left-o': _react_icons_all_files_lib.IconType;
20845
+ 'chevron-left-r': _react_icons_all_files_lib.IconType;
20846
+ 'chevron-left': _react_icons_all_files_lib.IconType;
20847
+ 'chevron-right-o': _react_icons_all_files_lib.IconType;
20848
+ 'chevron-right-r': _react_icons_all_files_lib.IconType;
20849
+ 'chevron-right': _react_icons_all_files_lib.IconType;
20850
+ 'chevron-up-o': _react_icons_all_files_lib.IconType;
20851
+ 'chevron-up-r': _react_icons_all_files_lib.IconType;
20852
+ 'chevron-up': _react_icons_all_files_lib.IconType;
20853
+ 'clapper-board': _react_icons_all_files_lib.IconType;
20854
+ clipboard: _react_icons_all_files_lib.IconType;
20855
+ 'close-o': _react_icons_all_files_lib.IconType;
20856
+ 'close-r': _react_icons_all_files_lib.IconType;
20857
+ close: _react_icons_all_files_lib.IconType;
20858
+ cloud: _react_icons_all_files_lib.IconType;
20859
+ 'code-slash': _react_icons_all_files_lib.IconType;
20860
+ code: _react_icons_all_files_lib.IconType;
20861
+ coffee: _react_icons_all_files_lib.IconType;
20862
+ collage: _react_icons_all_files_lib.IconType;
20863
+ 'color-bucket': _react_icons_all_files_lib.IconType;
20864
+ 'color-picker': _react_icons_all_files_lib.IconType;
20865
+ comment: _react_icons_all_files_lib.IconType;
20866
+ community: _react_icons_all_files_lib.IconType;
20867
+ components: _react_icons_all_files_lib.IconType;
20868
+ 'compress-left': _react_icons_all_files_lib.IconType;
20869
+ 'compress-right': _react_icons_all_files_lib.IconType;
20870
+ 'compress-v': _react_icons_all_files_lib.IconType;
20871
+ compress: _react_icons_all_files_lib.IconType;
20872
+ controller: _react_icons_all_files_lib.IconType;
20873
+ copy: _react_icons_all_files_lib.IconType;
20874
+ copyright: _react_icons_all_files_lib.IconType;
20875
+ 'corner-double-down-left': _react_icons_all_files_lib.IconType;
20876
+ 'corner-double-down-right': _react_icons_all_files_lib.IconType;
20877
+ 'corner-double-left-down': _react_icons_all_files_lib.IconType;
20878
+ 'corner-double-left-up': _react_icons_all_files_lib.IconType;
20879
+ 'corner-double-right-down': _react_icons_all_files_lib.IconType;
20880
+ 'corner-double-right-up': _react_icons_all_files_lib.IconType;
20881
+ 'corner-double-up-left': _react_icons_all_files_lib.IconType;
20882
+ 'corner-double-up-right': _react_icons_all_files_lib.IconType;
20883
+ 'corner-down-left': _react_icons_all_files_lib.IconType;
20884
+ 'corner-down-right': _react_icons_all_files_lib.IconType;
20885
+ 'corner-left-down': _react_icons_all_files_lib.IconType;
20886
+ 'corner-left-up': _react_icons_all_files_lib.IconType;
20887
+ 'corner-right-down': _react_icons_all_files_lib.IconType;
20888
+ 'corner-right-up': _react_icons_all_files_lib.IconType;
20889
+ 'corner-up-left': _react_icons_all_files_lib.IconType;
20890
+ 'corner-up-right': _react_icons_all_files_lib.IconType;
20891
+ 'credit-card': _react_icons_all_files_lib.IconType;
20892
+ crop: _react_icons_all_files_lib.IconType;
20893
+ cross: _react_icons_all_files_lib.IconType;
20894
+ crown: _react_icons_all_files_lib.IconType;
20895
+ danger: _react_icons_all_files_lib.IconType;
20896
+ 'dark-mode': _react_icons_all_files_lib.IconType;
20897
+ data: _react_icons_all_files_lib.IconType;
20898
+ database: _react_icons_all_files_lib.IconType;
20899
+ debug: _react_icons_all_files_lib.IconType;
20900
+ desktop: _react_icons_all_files_lib.IconType;
20901
+ 'details-less': _react_icons_all_files_lib.IconType;
20902
+ 'details-more': _react_icons_all_files_lib.IconType;
20903
+ dialpad: _react_icons_all_files_lib.IconType;
20904
+ 'dice-1': _react_icons_all_files_lib.IconType;
20905
+ 'dice-2': _react_icons_all_files_lib.IconType;
20906
+ 'dice-3': _react_icons_all_files_lib.IconType;
20907
+ 'dice-4': _react_icons_all_files_lib.IconType;
20908
+ 'dice-5': _react_icons_all_files_lib.IconType;
20909
+ 'dice-6': _react_icons_all_files_lib.IconType;
20910
+ disc: _react_icons_all_files_lib.IconType;
20911
+ 'display-flex': _react_icons_all_files_lib.IconType;
20912
+ 'display-fullwidth': _react_icons_all_files_lib.IconType;
20913
+ 'display-grid': _react_icons_all_files_lib.IconType;
20914
+ 'display-spacing': _react_icons_all_files_lib.IconType;
20915
+ 'distribute-horizontal': _react_icons_all_files_lib.IconType;
20916
+ 'distribute-vertical': _react_icons_all_files_lib.IconType;
20917
+ 'dock-bottom': _react_icons_all_files_lib.IconType;
20918
+ 'dock-left': _react_icons_all_files_lib.IconType;
20919
+ 'dock-right': _react_icons_all_files_lib.IconType;
20920
+ 'dock-window': _react_icons_all_files_lib.IconType;
20921
+ dollar: _react_icons_all_files_lib.IconType;
20922
+ drive: _react_icons_all_files_lib.IconType;
20923
+ 'drop-invert': _react_icons_all_files_lib.IconType;
20924
+ 'drop-opacity': _react_icons_all_files_lib.IconType;
20925
+ drop: _react_icons_all_files_lib.IconType;
20926
+ duplicate: _react_icons_all_files_lib.IconType;
20927
+ 'edit-black-point': _react_icons_all_files_lib.IconType;
20928
+ 'edit-contrast': _react_icons_all_files_lib.IconType;
20929
+ 'edit-exposure': _react_icons_all_files_lib.IconType;
20930
+ 'edit-fade': _react_icons_all_files_lib.IconType;
20931
+ 'edit-flip-h': _react_icons_all_files_lib.IconType;
20932
+ 'edit-flip-v': _react_icons_all_files_lib.IconType;
20933
+ 'edit-highlight': _react_icons_all_files_lib.IconType;
20934
+ 'edit-markup': _react_icons_all_files_lib.IconType;
20935
+ 'edit-mask': _react_icons_all_files_lib.IconType;
20936
+ 'edit-noise': _react_icons_all_files_lib.IconType;
20937
+ 'edit-shadows': _react_icons_all_files_lib.IconType;
20938
+ 'edit-straight': _react_icons_all_files_lib.IconType;
20939
+ 'edit-unmask': _react_icons_all_files_lib.IconType;
20940
+ eject: _react_icons_all_files_lib.IconType;
20941
+ enter: _react_icons_all_files_lib.IconType;
20942
+ erase: _react_icons_all_files_lib.IconType;
20943
+ ereader: _react_icons_all_files_lib.IconType;
20944
+ ericsson: _react_icons_all_files_lib.IconType;
20945
+ ethernet: _react_icons_all_files_lib.IconType;
20946
+ euro: _react_icons_all_files_lib.IconType;
20947
+ expand: _react_icons_all_files_lib.IconType;
20948
+ export: _react_icons_all_files_lib.IconType;
20949
+ 'extension-add': _react_icons_all_files_lib.IconType;
20950
+ 'extension-alt': _react_icons_all_files_lib.IconType;
20951
+ 'extension-remove': _react_icons_all_files_lib.IconType;
20952
+ extension: _react_icons_all_files_lib.IconType;
20953
+ external: _react_icons_all_files_lib.IconType;
20954
+ 'eye-alt': _react_icons_all_files_lib.IconType;
20955
+ eye: _react_icons_all_files_lib.IconType;
20956
+ feed: _react_icons_all_files_lib.IconType;
20957
+ 'file-add': _react_icons_all_files_lib.IconType;
20958
+ 'file-document': _react_icons_all_files_lib.IconType;
20959
+ 'file-remove': _react_icons_all_files_lib.IconType;
20960
+ file: _react_icons_all_files_lib.IconType;
20961
+ film: _react_icons_all_files_lib.IconType;
20962
+ filters: _react_icons_all_files_lib.IconType;
20963
+ 'flag-alt': _react_icons_all_files_lib.IconType;
20964
+ flag: _react_icons_all_files_lib.IconType;
20965
+ 'folder-add': _react_icons_all_files_lib.IconType;
20966
+ 'folder-remove': _react_icons_all_files_lib.IconType;
20967
+ folder: _react_icons_all_files_lib.IconType;
20968
+ 'font-height': _react_icons_all_files_lib.IconType;
20969
+ 'font-spacing': _react_icons_all_files_lib.IconType;
20970
+ 'format-center': _react_icons_all_files_lib.IconType;
20971
+ 'format-color': _react_icons_all_files_lib.IconType;
20972
+ 'format-heading': _react_icons_all_files_lib.IconType;
20973
+ 'format-indent-decrease': _react_icons_all_files_lib.IconType;
20974
+ 'format-indent-increase': _react_icons_all_files_lib.IconType;
20975
+ 'format-italic': _react_icons_all_files_lib.IconType;
20976
+ 'format-justify': _react_icons_all_files_lib.IconType;
20977
+ 'format-left': _react_icons_all_files_lib.IconType;
20978
+ 'format-line-height': _react_icons_all_files_lib.IconType;
20979
+ 'format-right': _react_icons_all_files_lib.IconType;
20980
+ 'format-separator': _react_icons_all_files_lib.IconType;
20981
+ 'format-slash': _react_icons_all_files_lib.IconType;
20982
+ 'format-text': _react_icons_all_files_lib.IconType;
20983
+ 'format-underline': _react_icons_all_files_lib.IconType;
20984
+ 'format-uppercase': _react_icons_all_files_lib.IconType;
20985
+ games: _react_icons_all_files_lib.IconType;
20986
+ 'gender-female': _react_icons_all_files_lib.IconType;
20987
+ 'gender-male': _react_icons_all_files_lib.IconType;
20988
+ 'ghost-character': _react_icons_all_files_lib.IconType;
20989
+ gift: _react_icons_all_files_lib.IconType;
20990
+ girl: _react_icons_all_files_lib.IconType;
20991
+ 'git-branch': _react_icons_all_files_lib.IconType;
20992
+ 'git-commit': _react_icons_all_files_lib.IconType;
20993
+ 'git-fork': _react_icons_all_files_lib.IconType;
20994
+ 'git-pull': _react_icons_all_files_lib.IconType;
20995
+ 'glass-alt': _react_icons_all_files_lib.IconType;
20996
+ glass: _react_icons_all_files_lib.IconType;
20997
+ 'globe-alt': _react_icons_all_files_lib.IconType;
20998
+ globe: _react_icons_all_files_lib.IconType;
20999
+ gym: _react_icons_all_files_lib.IconType;
21000
+ hashtag: _react_icons_all_files_lib.IconType;
21001
+ headset: _react_icons_all_files_lib.IconType;
21002
+ heart: _react_icons_all_files_lib.IconType;
21003
+ 'home-alt': _react_icons_all_files_lib.IconType;
21004
+ 'home-screen': _react_icons_all_files_lib.IconType;
21005
+ home: _react_icons_all_files_lib.IconType;
21006
+ icecream: _react_icons_all_files_lib.IconType;
21007
+ image: _react_icons_all_files_lib.IconType;
21008
+ import: _react_icons_all_files_lib.IconType;
21009
+ inbox: _react_icons_all_files_lib.IconType;
21010
+ infinity: _react_icons_all_files_lib.IconType;
21011
+ info: _react_icons_all_files_lib.IconType;
21012
+ inpicture: _react_icons_all_files_lib.IconType;
21013
+ 'insert-after-o': _react_icons_all_files_lib.IconType;
21014
+ 'insert-after-r': _react_icons_all_files_lib.IconType;
21015
+ 'insert-after': _react_icons_all_files_lib.IconType;
21016
+ 'insert-before-o': _react_icons_all_files_lib.IconType;
21017
+ 'insert-before-r': _react_icons_all_files_lib.IconType;
21018
+ 'insert-before': _react_icons_all_files_lib.IconType;
21019
+ insights: _react_icons_all_files_lib.IconType;
21020
+ internal: _react_icons_all_files_lib.IconType;
21021
+ key: _react_icons_all_files_lib.IconType;
21022
+ keyboard: _react_icons_all_files_lib.IconType;
21023
+ keyhole: _react_icons_all_files_lib.IconType;
21024
+ laptop: _react_icons_all_files_lib.IconType;
21025
+ 'layout-grid-small': _react_icons_all_files_lib.IconType;
21026
+ 'layout-grid': _react_icons_all_files_lib.IconType;
21027
+ 'layout-list': _react_icons_all_files_lib.IconType;
21028
+ 'layout-pin': _react_icons_all_files_lib.IconType;
21029
+ link: _react_icons_all_files_lib.IconType;
21030
+ 'list-tree': _react_icons_all_files_lib.IconType;
21031
+ list: _react_icons_all_files_lib.IconType;
21032
+ 'live-photo': _react_icons_all_files_lib.IconType;
21033
+ 'loadbar-alt': _react_icons_all_files_lib.IconType;
21034
+ 'loadbar-doc': _react_icons_all_files_lib.IconType;
21035
+ 'loadbar-sound': _react_icons_all_files_lib.IconType;
21036
+ loadbar: _react_icons_all_files_lib.IconType;
21037
+ 'lock-unlock': _react_icons_all_files_lib.IconType;
21038
+ lock: _react_icons_all_files_lib.IconType;
21039
+ 'log-in': _react_icons_all_files_lib.IconType;
21040
+ 'log-off': _react_icons_all_files_lib.IconType;
21041
+ 'log-out': _react_icons_all_files_lib.IconType;
21042
+ loupe: _react_icons_all_files_lib.IconType;
21043
+ magnet: _react_icons_all_files_lib.IconType;
21044
+ 'mail-forward': _react_icons_all_files_lib.IconType;
21045
+ 'mail-open': _react_icons_all_files_lib.IconType;
21046
+ 'mail-reply': _react_icons_all_files_lib.IconType;
21047
+ mail: _react_icons_all_files_lib.IconType;
21048
+ 'math-divide': _react_icons_all_files_lib.IconType;
21049
+ 'math-equal': _react_icons_all_files_lib.IconType;
21050
+ 'math-minus': _react_icons_all_files_lib.IconType;
21051
+ 'math-percent': _react_icons_all_files_lib.IconType;
21052
+ 'math-plus': _react_icons_all_files_lib.IconType;
21053
+ 'maximize-alt': _react_icons_all_files_lib.IconType;
21054
+ maximize: _react_icons_all_files_lib.IconType;
21055
+ 'media-live': _react_icons_all_files_lib.IconType;
21056
+ 'media-podcast': _react_icons_all_files_lib.IconType;
21057
+ 'menu-boxed': _react_icons_all_files_lib.IconType;
21058
+ 'menu-cake': _react_icons_all_files_lib.IconType;
21059
+ 'menu-cheese': _react_icons_all_files_lib.IconType;
21060
+ 'menu-grid-o': _react_icons_all_files_lib.IconType;
21061
+ 'menu-grid-r': _react_icons_all_files_lib.IconType;
21062
+ 'menu-hotdog': _react_icons_all_files_lib.IconType;
21063
+ 'menu-left-alt': _react_icons_all_files_lib.IconType;
21064
+ 'menu-left': _react_icons_all_files_lib.IconType;
21065
+ 'menu-motion': _react_icons_all_files_lib.IconType;
21066
+ 'menu-oreos': _react_icons_all_files_lib.IconType;
21067
+ 'menu-right-alt': _react_icons_all_files_lib.IconType;
21068
+ 'menu-right': _react_icons_all_files_lib.IconType;
21069
+ 'menu-round': _react_icons_all_files_lib.IconType;
21070
+ menu: _react_icons_all_files_lib.IconType;
21071
+ 'merge-horizontal': _react_icons_all_files_lib.IconType;
21072
+ 'merge-vertical': _react_icons_all_files_lib.IconType;
21073
+ mic: _react_icons_all_files_lib.IconType;
21074
+ 'mini-player': _react_icons_all_files_lib.IconType;
21075
+ 'minimize-alt': _react_icons_all_files_lib.IconType;
21076
+ minimize: _react_icons_all_files_lib.IconType;
21077
+ modem: _react_icons_all_files_lib.IconType;
21078
+ moon: _react_icons_all_files_lib.IconType;
21079
+ 'more-alt': _react_icons_all_files_lib.IconType;
21080
+ 'more-o': _react_icons_all_files_lib.IconType;
21081
+ 'more-r': _react_icons_all_files_lib.IconType;
21082
+ 'more-vertical-alt': _react_icons_all_files_lib.IconType;
21083
+ 'more-vertical-o': _react_icons_all_files_lib.IconType;
21084
+ 'more-vertical-r': _react_icons_all_files_lib.IconType;
21085
+ 'more-vertical': _react_icons_all_files_lib.IconType;
21086
+ more: _react_icons_all_files_lib.IconType;
21087
+ mouse: _react_icons_all_files_lib.IconType;
21088
+ 'move-down': _react_icons_all_files_lib.IconType;
21089
+ 'move-left': _react_icons_all_files_lib.IconType;
21090
+ 'move-right': _react_icons_all_files_lib.IconType;
21091
+ 'move-task': _react_icons_all_files_lib.IconType;
21092
+ 'move-up': _react_icons_all_files_lib.IconType;
21093
+ 'music-note': _react_icons_all_files_lib.IconType;
21094
+ 'music-speaker': _react_icons_all_files_lib.IconType;
21095
+ music: _react_icons_all_files_lib.IconType;
21096
+ nametag: _react_icons_all_files_lib.IconType;
21097
+ notes: _react_icons_all_files_lib.IconType;
21098
+ notifications: _react_icons_all_files_lib.IconType;
21099
+ options: _react_icons_all_files_lib.IconType;
21100
+ organisation: _react_icons_all_files_lib.IconType;
21101
+ password: _react_icons_all_files_lib.IconType;
21102
+ 'path-back': _react_icons_all_files_lib.IconType;
21103
+ 'path-crop': _react_icons_all_files_lib.IconType;
21104
+ 'path-divide': _react_icons_all_files_lib.IconType;
21105
+ 'path-exclude': _react_icons_all_files_lib.IconType;
21106
+ 'path-front': _react_icons_all_files_lib.IconType;
21107
+ 'path-intersect': _react_icons_all_files_lib.IconType;
21108
+ 'path-outline': _react_icons_all_files_lib.IconType;
21109
+ 'path-trim': _react_icons_all_files_lib.IconType;
21110
+ 'path-unite': _react_icons_all_files_lib.IconType;
21111
+ pen: _react_icons_all_files_lib.IconType;
21112
+ 'pentagon-bottom-left': _react_icons_all_files_lib.IconType;
21113
+ 'pentagon-bottom-right': _react_icons_all_files_lib.IconType;
21114
+ 'pentagon-down': _react_icons_all_files_lib.IconType;
21115
+ 'pentagon-left': _react_icons_all_files_lib.IconType;
21116
+ 'pentagon-right': _react_icons_all_files_lib.IconType;
21117
+ 'pentagon-top-left': _react_icons_all_files_lib.IconType;
21118
+ 'pentagon-top-right': _react_icons_all_files_lib.IconType;
21119
+ 'pentagon-up': _react_icons_all_files_lib.IconType;
21120
+ performance: _react_icons_all_files_lib.IconType;
21121
+ phone: _react_icons_all_files_lib.IconType;
21122
+ photoscan: _react_icons_all_files_lib.IconType;
21123
+ piano: _react_icons_all_files_lib.IconType;
21124
+ pill: _react_icons_all_files_lib.IconType;
21125
+ 'pin-alt': _react_icons_all_files_lib.IconType;
21126
+ 'pin-bottom': _react_icons_all_files_lib.IconType;
21127
+ 'pin-top': _react_icons_all_files_lib.IconType;
21128
+ pin: _react_icons_all_files_lib.IconType;
21129
+ 'play-backwards': _react_icons_all_files_lib.IconType;
21130
+ 'play-button-o': _react_icons_all_files_lib.IconType;
21131
+ 'play-button-r': _react_icons_all_files_lib.IconType;
21132
+ 'play-button': _react_icons_all_files_lib.IconType;
21133
+ 'play-forwards': _react_icons_all_files_lib.IconType;
21134
+ 'play-list-add': _react_icons_all_files_lib.IconType;
21135
+ 'play-list-check': _react_icons_all_files_lib.IconType;
21136
+ 'play-list-remove': _react_icons_all_files_lib.IconType;
21137
+ 'play-list-search': _react_icons_all_files_lib.IconType;
21138
+ 'play-list': _react_icons_all_files_lib.IconType;
21139
+ 'play-pause-o': _react_icons_all_files_lib.IconType;
21140
+ 'play-pause-r': _react_icons_all_files_lib.IconType;
21141
+ 'play-pause': _react_icons_all_files_lib.IconType;
21142
+ 'play-stop-o': _react_icons_all_files_lib.IconType;
21143
+ 'play-stop-r': _react_icons_all_files_lib.IconType;
21144
+ 'play-stop': _react_icons_all_files_lib.IconType;
21145
+ 'play-track-next-o': _react_icons_all_files_lib.IconType;
21146
+ 'play-track-next-r': _react_icons_all_files_lib.IconType;
21147
+ 'play-track-next': _react_icons_all_files_lib.IconType;
21148
+ 'play-track-prev-o': _react_icons_all_files_lib.IconType;
21149
+ 'play-track-prev-r': _react_icons_all_files_lib.IconType;
21150
+ 'play-track-prev': _react_icons_all_files_lib.IconType;
21151
+ plug: _react_icons_all_files_lib.IconType;
21152
+ polaroid: _react_icons_all_files_lib.IconType;
21153
+ poll: _react_icons_all_files_lib.IconType;
21154
+ presentation: _react_icons_all_files_lib.IconType;
21155
+ printer: _react_icons_all_files_lib.IconType;
21156
+ profile: _react_icons_all_files_lib.IconType;
21157
+ 'pull-clear': _react_icons_all_files_lib.IconType;
21158
+ 'push-chevron-down-o': _react_icons_all_files_lib.IconType;
21159
+ 'push-chevron-down-r': _react_icons_all_files_lib.IconType;
21160
+ 'push-chevron-down': _react_icons_all_files_lib.IconType;
21161
+ 'push-chevron-left-o': _react_icons_all_files_lib.IconType;
21162
+ 'push-chevron-left-r': _react_icons_all_files_lib.IconType;
21163
+ 'push-chevron-left': _react_icons_all_files_lib.IconType;
21164
+ 'push-chevron-right-o': _react_icons_all_files_lib.IconType;
21165
+ 'push-chevron-right-r': _react_icons_all_files_lib.IconType;
21166
+ 'push-chevron-right': _react_icons_all_files_lib.IconType;
21167
+ 'push-chevron-up-o': _react_icons_all_files_lib.IconType;
21168
+ 'push-chevron-up-r': _react_icons_all_files_lib.IconType;
21169
+ 'push-chevron-up': _react_icons_all_files_lib.IconType;
21170
+ 'push-down': _react_icons_all_files_lib.IconType;
21171
+ 'push-left': _react_icons_all_files_lib.IconType;
21172
+ 'push-right': _react_icons_all_files_lib.IconType;
21173
+ 'push-up': _react_icons_all_files_lib.IconType;
21174
+ qr: _react_icons_all_files_lib.IconType;
21175
+ 'quote-o': _react_icons_all_files_lib.IconType;
21176
+ quote: _react_icons_all_files_lib.IconType;
21177
+ 'radio-check': _react_icons_all_files_lib.IconType;
21178
+ 'radio-checked': _react_icons_all_files_lib.IconType;
21179
+ ratio: _react_icons_all_files_lib.IconType;
21180
+ read: _react_icons_all_files_lib.IconType;
21181
+ readme: _react_icons_all_files_lib.IconType;
21182
+ record: _react_icons_all_files_lib.IconType;
21183
+ redo: _react_icons_all_files_lib.IconType;
21184
+ remote: _react_icons_all_files_lib.IconType;
21185
+ 'remove-r': _react_icons_all_files_lib.IconType;
21186
+ remove: _react_icons_all_files_lib.IconType;
21187
+ rename: _react_icons_all_files_lib.IconType;
21188
+ reorder: _react_icons_all_files_lib.IconType;
21189
+ repeat: _react_icons_all_files_lib.IconType;
21190
+ ring: _react_icons_all_files_lib.IconType;
21191
+ 'row-first': _react_icons_all_files_lib.IconType;
21192
+ 'row-last': _react_icons_all_files_lib.IconType;
21193
+ ruler: _react_icons_all_files_lib.IconType;
21194
+ 'sand-clock': _react_icons_all_files_lib.IconType;
21195
+ scan: _react_icons_all_files_lib.IconType;
21196
+ 'screen-mirror': _react_icons_all_files_lib.IconType;
21197
+ 'screen-shot': _react_icons_all_files_lib.IconType;
21198
+ 'screen-wide': _react_icons_all_files_lib.IconType;
21199
+ screen: _react_icons_all_files_lib.IconType;
21200
+ 'scroll-h': _react_icons_all_files_lib.IconType;
21201
+ 'scroll-v': _react_icons_all_files_lib.IconType;
21202
+ 'search-found': _react_icons_all_files_lib.IconType;
21203
+ 'search-loading': _react_icons_all_files_lib.IconType;
21204
+ search: _react_icons_all_files_lib.IconType;
21205
+ 'select-o': _react_icons_all_files_lib.IconType;
21206
+ 'select-r': _react_icons_all_files_lib.IconType;
21207
+ select: _react_icons_all_files_lib.IconType;
21208
+ server: _react_icons_all_files_lib.IconType;
21209
+ 'shape-circle': _react_icons_all_files_lib.IconType;
21210
+ 'shape-half-circle': _react_icons_all_files_lib.IconType;
21211
+ 'shape-hexagon': _react_icons_all_files_lib.IconType;
21212
+ 'shape-rhombus': _react_icons_all_files_lib.IconType;
21213
+ 'shape-square': _react_icons_all_files_lib.IconType;
21214
+ 'shape-triangle': _react_icons_all_files_lib.IconType;
21215
+ 'shape-zigzag': _react_icons_all_files_lib.IconType;
21216
+ share: _react_icons_all_files_lib.IconType;
21217
+ shield: _react_icons_all_files_lib.IconType;
21218
+ 'shopping-bag': _react_icons_all_files_lib.IconType;
21219
+ 'shopping-cart': _react_icons_all_files_lib.IconType;
21220
+ shortcut: _react_icons_all_files_lib.IconType;
21221
+ 'sidebar-open': _react_icons_all_files_lib.IconType;
21222
+ 'sidebar-right': _react_icons_all_files_lib.IconType;
21223
+ sidebar: _react_icons_all_files_lib.IconType;
21224
+ signal: _react_icons_all_files_lib.IconType;
21225
+ size: _react_icons_all_files_lib.IconType;
21226
+ sleep: _react_icons_all_files_lib.IconType;
21227
+ 'smart-home-boiler': _react_icons_all_files_lib.IconType;
21228
+ 'smart-home-cooker': _react_icons_all_files_lib.IconType;
21229
+ 'smart-home-heat': _react_icons_all_files_lib.IconType;
21230
+ 'smart-home-light': _react_icons_all_files_lib.IconType;
21231
+ 'smart-home-refrigerator': _react_icons_all_files_lib.IconType;
21232
+ 'smart-home-wash-machine': _react_icons_all_files_lib.IconType;
21233
+ 'smartphone-chip': _react_icons_all_files_lib.IconType;
21234
+ 'smartphone-ram': _react_icons_all_files_lib.IconType;
21235
+ 'smartphone-shake': _react_icons_all_files_lib.IconType;
21236
+ smartphone: _react_icons_all_files_lib.IconType;
21237
+ 'smile-mouth-open': _react_icons_all_files_lib.IconType;
21238
+ 'smile-neutral': _react_icons_all_files_lib.IconType;
21239
+ 'smile-no-mouth': _react_icons_all_files_lib.IconType;
21240
+ 'smile-none': _react_icons_all_files_lib.IconType;
21241
+ 'smile-sad': _react_icons_all_files_lib.IconType;
21242
+ 'smile-upside': _react_icons_all_files_lib.IconType;
21243
+ smile: _react_icons_all_files_lib.IconType;
21244
+ 'software-download': _react_icons_all_files_lib.IconType;
21245
+ 'software-upload': _react_icons_all_files_lib.IconType;
21246
+ 'sort-az': _react_icons_all_files_lib.IconType;
21247
+ 'sort-za': _react_icons_all_files_lib.IconType;
21248
+ 'space-between-v': _react_icons_all_files_lib.IconType;
21249
+ 'space-between': _react_icons_all_files_lib.IconType;
21250
+ 'spinner-alt': _react_icons_all_files_lib.IconType;
21251
+ 'spinner-two-alt': _react_icons_all_files_lib.IconType;
21252
+ 'spinner-two': _react_icons_all_files_lib.IconType;
21253
+ spinner: _react_icons_all_files_lib.IconType;
21254
+ stack: _react_icons_all_files_lib.IconType;
21255
+ stopwatch: _react_icons_all_files_lib.IconType;
21256
+ stories: _react_icons_all_files_lib.IconType;
21257
+ style: _react_icons_all_files_lib.IconType;
21258
+ sun: _react_icons_all_files_lib.IconType;
21259
+ support: _react_icons_all_files_lib.IconType;
21260
+ 'swap-vertical': _react_icons_all_files_lib.IconType;
21261
+ swap: _react_icons_all_files_lib.IconType;
21262
+ sweden: _react_icons_all_files_lib.IconType;
21263
+ swiss: _react_icons_all_files_lib.IconType;
21264
+ sync: _react_icons_all_files_lib.IconType;
21265
+ tab: _react_icons_all_files_lib.IconType;
21266
+ tag: _react_icons_all_files_lib.IconType;
21267
+ 'tap-double': _react_icons_all_files_lib.IconType;
21268
+ 'tap-single': _react_icons_all_files_lib.IconType;
21269
+ template: _react_icons_all_files_lib.IconType;
21270
+ tennis: _react_icons_all_files_lib.IconType;
21271
+ terminal: _react_icons_all_files_lib.IconType;
21272
+ terrain: _react_icons_all_files_lib.IconType;
21273
+ thermometer: _react_icons_all_files_lib.IconType;
21274
+ thermostat: _react_icons_all_files_lib.IconType;
21275
+ tikcode: _react_icons_all_files_lib.IconType;
21276
+ time: _react_icons_all_files_lib.IconType;
21277
+ timelapse: _react_icons_all_files_lib.IconType;
21278
+ timer: _react_icons_all_files_lib.IconType;
21279
+ today: _react_icons_all_files_lib.IconType;
21280
+ 'toggle-off': _react_icons_all_files_lib.IconType;
21281
+ 'toggle-on': _react_icons_all_files_lib.IconType;
21282
+ 'toggle-square-off': _react_icons_all_files_lib.IconType;
21283
+ 'toggle-square': _react_icons_all_files_lib.IconType;
21284
+ 'toolbar-bottom': _react_icons_all_files_lib.IconType;
21285
+ 'toolbar-left': _react_icons_all_files_lib.IconType;
21286
+ 'toolbar-right': _react_icons_all_files_lib.IconType;
21287
+ 'toolbar-top': _react_icons_all_files_lib.IconType;
21288
+ toolbox: _react_icons_all_files_lib.IconType;
21289
+ touchpad: _react_icons_all_files_lib.IconType;
21290
+ track: _react_icons_all_files_lib.IconType;
21291
+ transcript: _react_icons_all_files_lib.IconType;
21292
+ 'trash-empty': _react_icons_all_files_lib.IconType;
21293
+ trash: _react_icons_all_files_lib.IconType;
21294
+ tree: _react_icons_all_files_lib.IconType;
21295
+ trees: _react_icons_all_files_lib.IconType;
21296
+ 'trending-down': _react_icons_all_files_lib.IconType;
21297
+ trending: _react_icons_all_files_lib.IconType;
21298
+ trophy: _react_icons_all_files_lib.IconType;
21299
+ tv: _react_icons_all_files_lib.IconType;
21300
+ 'ui-kit': _react_icons_all_files_lib.IconType;
21301
+ umbrella: _react_icons_all_files_lib.IconType;
21302
+ unavailable: _react_icons_all_files_lib.IconType;
21303
+ unblock: _react_icons_all_files_lib.IconType;
21304
+ undo: _react_icons_all_files_lib.IconType;
21305
+ unsplash: _react_icons_all_files_lib.IconType;
21306
+ 'usb-c': _react_icons_all_files_lib.IconType;
21307
+ usb: _react_icons_all_files_lib.IconType;
21308
+ 'user-add': _react_icons_all_files_lib.IconType;
21309
+ 'user-list': _react_icons_all_files_lib.IconType;
21310
+ 'user-remove': _react_icons_all_files_lib.IconType;
21311
+ user: _react_icons_all_files_lib.IconType;
21312
+ 'view-cols': _react_icons_all_files_lib.IconType;
21313
+ 'view-comfortable': _react_icons_all_files_lib.IconType;
21314
+ 'view-day': _react_icons_all_files_lib.IconType;
21315
+ 'view-grid': _react_icons_all_files_lib.IconType;
21316
+ 'view-list': _react_icons_all_files_lib.IconType;
21317
+ 'view-month': _react_icons_all_files_lib.IconType;
21318
+ 'view-split': _react_icons_all_files_lib.IconType;
21319
+ vinyl: _react_icons_all_files_lib.IconType;
21320
+ 'voicemail-o': _react_icons_all_files_lib.IconType;
21321
+ 'voicemail-r': _react_icons_all_files_lib.IconType;
21322
+ voicemail: _react_icons_all_files_lib.IconType;
21323
+ volume: _react_icons_all_files_lib.IconType;
21324
+ webcam: _react_icons_all_files_lib.IconType;
21325
+ website: _react_icons_all_files_lib.IconType;
21326
+ 'work-alt': _react_icons_all_files_lib.IconType;
21327
+ yinyang: _react_icons_all_files_lib.IconType;
21328
+ 'zoom-in': _react_icons_all_files_lib.IconType;
21329
+ 'zoom-out': _react_icons_all_files_lib.IconType;
20645
21330
  };
20646
21331
 
20647
- declare const iconNames: readonly ["add-r", "add", "airplane", "alarm", "album", "align-bottom", "align-center", "align-left", "align-middle", "align-right", "align-top", "anchor", "apple-watch", "arrange-back", "arrange-front", "arrow-align-h", "arrow-align-v", "arrow-bottom-left-o", "arrow-bottom-left-r", "arrow-bottom-left", "arrow-bottom-right-o", "arrow-bottom-right-r", "arrow-bottom-right", "arrow-down-o", "arrow-down-r", "arrow-down", "arrow-left-o", "arrow-left-r", "arrow-left", "arrow-long-down-c", "arrow-long-down-e", "arrow-long-down-l", "arrow-long-down-r", "arrow-long-down", "arrow-long-left-c", "arrow-long-left-e", "arrow-long-left-l", "arrow-long-left-r", "arrow-long-left", "arrow-long-right-c", "arrow-long-right-e", "arrow-long-right-l", "arrow-long-right-r", "arrow-long-right", "arrow-long-up-c", "arrow-long-up-e", "arrow-long-up-l", "arrow-long-up-r", "arrow-long-up", "arrow-right-o", "arrow-right-r", "arrow-right", "arrow-top-left-o", "arrow-top-left-r", "arrow-top-left", "arrow-top-right-o", "arrow-top-right-r", "arrow-top-right", "arrow-up-o", "arrow-up-r", "arrow-up", "arrows-breake-h", "arrows-breake-v", "arrows-exchange-alt-v", "arrows-exchange-alt", "arrows-exchange-v", "arrows-exchange", "arrows-expand-down-left", "arrows-expand-down-right", "arrows-expand-left-alt", "arrows-expand-left", "arrows-expand-right-alt", "arrows-expand-right", "arrows-expand-up-left", "arrows-expand-up-right", "arrows-h-alt", "arrows-h", "arrows-merge-alt-h", "arrows-merge-alt-v", "arrows-scroll-h", "arrows-scroll-v", "arrows-shrink-h", "arrows-shrink-v", "arrows-v-alt", "arrows-v", "assign", "asterisk", "attachment", "attribution", "awards", "backspace", "band-aid", "battery-empty", "battery-full", "battery", "bee", "bell", "bitbucket", "block", "board", "bolt", "bookmark", "border-all", "border-bottom", "border-left", "border-right", "border-style-dashed", "border-style-dotted", "border-style-solid", "border-top", "bot", "bowl", "box", "boy", "briefcase", "browse", "browser", "brush", "bulb", "c-plus-plus", "calculator", "calendar-dates", "calendar-due", "calendar-next", "calendar-today", "calendar-two", "calendar", "calibrate", "camera", "cap", "captions", "card-clubs", "card-diamonds", "card-hearts", "card-spades", "carousel", "cast", "chart", "check-o", "check-r", "check", "chevron-double-down-o", "chevron-double-down-r", "chevron-double-down", "chevron-double-left-o", "chevron-double-left-r", "chevron-double-left", "chevron-double-right-o", "chevron-double-right-r", "chevron-double-right", "chevron-double-up-o", "chevron-double-up-r", "chevron-double-up", "chevron-down-o", "chevron-down-r", "chevron-down", "chevron-left-o", "chevron-left-r", "chevron-left", "chevron-right-o", "chevron-right-r", "chevron-right", "chevron-up-o", "chevron-up-r", "chevron-up", "clapper-board", "clear-formatting", "clipboard", "close-o", "close-r", "close", "cloud", "code-slash", "code", "coffee", "collage", "color-bucket", "color-picker", "comment", "community", "components", "compress-left", "compress-right", "compress-v", "compress", "controller", "copy", "copyright", "corner-double-down-left", "corner-double-down-right", "corner-double-left-down", "corner-double-left-up", "corner-double-right-down", "corner-double-right-up", "corner-double-up-left", "corner-double-up-right", "corner-down-left", "corner-down-right", "corner-left-down", "corner-left-up", "corner-right-down", "corner-right-up", "corner-up-left", "corner-up-right", "credit-card", "crop", "cross", "crown", "danger", "dark-mode", "data", "database", "debug", "desktop", "details-less", "details-more", "dialpad", "dice-1", "dice-2", "dice-3", "dice-4", "dice-5", "dice-6", "disc", "display-flex", "display-fullwidth", "display-grid", "display-spacing", "distribute-horizontal", "distribute-vertical", "dock-bottom", "dock-left", "dock-right", "dock-window", "dollar", "drive", "drop-invert", "drop-opacity", "drop", "duplicate", "edit-black-point", "edit-contrast", "edit-exposure", "edit-fade", "edit-flip-h", "edit-flip-v", "edit-highlight", "edit-markup", "edit-mask", "edit-noise", "edit-shadows", "edit-straight", "edit-unmask", "eject", "enter", "erase", "ereader", "ericsson", "ethernet", "euro", "expand", "export", "extension-add", "extension-alt", "extension-remove", "extension", "external", "eye-alt", "eye", "feed", "file-add", "file-document", "file-remove", "file", "film", "filters", "flag-alt", "flag", "folder-add", "folder-remove", "folder", "font-height", "font-spacing", "format-bold", "format-center", "format-color", "format-code", "format-heading", "format-indent-decrease", "format-indent-increase", "format-italic", "format-justify", "format-left", "format-line-height", "format-right", "format-separator", "format-slash", "format-strike", "format-subscript", "format-superscript", "format-text", "format-underline", "format-uppercase", "games", "gender-female", "gender-male", "ghost-character", "gift", "girl", "git-branch", "git-commit", "git-fork", "git-pull", "glass-alt", "glass", "globe-alt", "globe", "gym", "hashtag", "headset", "heart", "home-alt", "home-screen", "home", "icecream", "image", "import", "inbox", "infinity", "info", "inpicture", "insert-after-o", "insert-after-r", "insert-after", "insert-before-o", "insert-before-r", "insert-before", "insights", "internal", "key", "keyboard", "keyhole", "laptop", "layout-grid-small", "layout-grid", "layout-list", "layout-list-numbered", "layout-pin", "link", "list-tree", "list", "live-photo", "loadbar-alt", "loadbar-doc", "loadbar-sound", "loadbar", "lock-unlock", "lock", "log-in", "log-off", "log-out", "loupe", "magnet", "mail-forward", "mail-open", "mail-reply", "mail", "math-divide", "math-equal", "math-minus", "math-percent", "math-plus", "maximize-alt", "maximize", "media-live", "media-podcast", "menu-boxed", "menu-cake", "menu-cheese", "menu-grid-o", "menu-grid-r", "menu-hotdog", "menu-left-alt", "menu-left", "menu-motion", "menu-oreos", "menu-right-alt", "menu-right", "menu-round", "menu", "merge-horizontal", "merge-vertical", "mic", "mini-player", "minimize-alt", "minimize", "modem", "moon", "more-alt", "more-o", "more-r", "more-vertical-alt", "more-vertical-o", "more-vertical-r", "more-vertical", "more", "mouse", "move-down", "move-left", "move-right", "move-task", "move-up", "music-note", "music-speaker", "music", "nametag", "notes", "notifications", "options", "organisation", "password", "path-back", "path-crop", "path-divide", "path-exclude", "path-front", "path-intersect", "path-outline", "path-trim", "path-unite", "pen", "pentagon-bottom-left", "pentagon-bottom-right", "pentagon-down", "pentagon-left", "pentagon-right", "pentagon-top-left", "pentagon-top-right", "pentagon-up", "performance", "phone", "photoscan", "piano", "pill", "pin-alt", "pin-bottom", "pin-top", "pin", "play-backwards", "play-button-o", "play-button-r", "play-button", "play-forwards", "play-list-add", "play-list-check", "play-list-remove", "play-list-search", "play-list", "play-pause-o", "play-pause-r", "play-pause", "play-stop-o", "play-stop-r", "play-stop", "play-track-next-o", "play-track-next-r", "play-track-next", "play-track-prev-o", "play-track-prev-r", "play-track-prev", "plug", "polaroid", "poll", "presentation", "printer", "profile", "pull-clear", "push-chevron-down-o", "push-chevron-down-r", "push-chevron-down", "push-chevron-left-o", "push-chevron-left-r", "push-chevron-left", "push-chevron-right-o", "push-chevron-right-r", "push-chevron-right", "push-chevron-up-o", "push-chevron-up-r", "push-chevron-up", "push-down", "push-left", "push-right", "push-up", "qr", "quote-o", "quote", "radio-check", "radio-checked", "ratio", "read", "readme", "record", "redo", "remote", "remove-r", "remove", "rename", "reorder", "repeat", "ring", "row-first", "row-last", "ruler", "sand-clock", "scan", "screen-mirror", "screen-shot", "screen-wide", "screen", "scroll-h", "scroll-v", "search-found", "search-loading", "search", "select-o", "select-r", "select", "server", "shape-circle", "shape-half-circle", "shape-hexagon", "shape-rhombus", "shape-square", "shape-triangle", "shape-zigzag", "share", "shield", "shopping-bag", "shopping-cart", "shortcut", "sidebar-open", "sidebar-right", "sidebar", "signal", "size", "sleep", "smart-home-boiler", "smart-home-cooker", "smart-home-heat", "smart-home-light", "smart-home-refrigerator", "smart-home-wash-machine", "smartphone-chip", "smartphone-ram", "smartphone-shake", "smartphone", "smile-mouth-open", "smile-neutral", "smile-no-mouth", "smile-none", "smile-sad", "smile-upside", "smile", "software-download", "software-upload", "sort-az", "sort-za", "space-between-v", "space-between", "spinner-alt", "spinner-two-alt", "spinner-two", "spinner", "stack", "stopwatch", "stories", "style", "sun", "support", "swap-vertical", "swap", "sweden", "swiss", "sync", "tab", "tag", "tap-double", "tap-single", "template", "tennis", "terminal", "terrain", "thermometer", "thermostat", "tikcode", "time", "timelapse", "timer", "today", "toggle-off", "toggle-on", "toggle-square-off", "toggle-square", "toolbar-bottom", "toolbar-left", "toolbar-right", "toolbar-top", "toolbox", "touchpad", "track", "transcript", "trash-empty", "trash", "tree", "trees", "trending-down", "trending", "trophy", "tv", "ui-kit", "umbrella", "unavailable", "unblock", "undo", "unsplash", "usb-c", "usb", "user-add", "user-list", "user-remove", "user", "view-cols", "view-comfortable", "view-day", "view-grid", "view-list", "view-month", "view-split", "vinyl", "voicemail-o", "voicemail-r", "voicemail", "volume", "webcam", "website", "work-alt", "yinyang", "zoom-in", "zoom-out", "rectangle-rounded", "card", "image-text", "border-top", "full-width-screen", "text-input", "number-input", "canvas-alert", "warning", "settings", "query-string", "json", "yes-no", "diamond-outline", "diamond-fill"];
20648
21332
  /** A list of available icon names that can be used with the Uniform brand */
20649
- type IconName = (typeof iconNames)[number];
21333
+ type IconName = keyof typeof allSupportedIcons;
20650
21334
 
20651
21335
  /** sets fill color of the svg icon
20652
21336
  * @default 'default'
@@ -20668,46 +21352,46 @@ interface IconProps extends IconBaseProps {
20668
21352
  */
20669
21353
  declare const Icon: React__default.MemoExoticComponent<({ icon, iconColor, size, ...otherProps }: IconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null>;
20670
21354
 
20671
- declare const rectangleRoundedIcon: (props: react_icons.IconBaseProps) => JSX.Element;
20672
- declare const cardIcon: (props: react_icons.IconBaseProps) => JSX.Element;
20673
- declare const imageTextIcon: (props: react_icons.IconBaseProps) => JSX.Element;
20674
- declare const borderTopIcon: (props: react_icons.IconBaseProps) => JSX.Element;
20675
- declare const fullWidthScreenIcon: (props: react_icons.IconBaseProps) => JSX.Element;
20676
- declare const textInput: (props: react_icons.IconBaseProps) => JSX.Element;
20677
- declare const numberInput: (props: react_icons.IconBaseProps) => JSX.Element;
20678
- declare const canvasAlertIcon: (props: react_icons.IconBaseProps) => JSX.Element;
20679
- declare const warningIcon: (props: react_icons.IconBaseProps) => JSX.Element;
20680
- declare const infoFilledIcon: (props: react_icons.IconBaseProps) => JSX.Element;
20681
- declare const settingsIcon: react_icons_lib.IconType;
21355
+ declare const rectangleRoundedIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21356
+ declare const cardIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21357
+ declare const imageTextIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21358
+ declare const borderTopIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21359
+ declare const fullWidthScreenIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21360
+ declare const textInput: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21361
+ declare const numberInput: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21362
+ declare const canvasAlertIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21363
+ declare const warningIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21364
+ declare const infoFilledIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21365
+ declare const settingsIcon: _react_icons_all_files_lib.IconType;
20682
21366
  declare const settings: (props: IconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20683
- declare const queryStringIcon: (props: react_icons.IconBaseProps) => JSX.Element;
20684
- declare const structurePanelIcon: (props: react_icons.IconBaseProps) => JSX.Element;
20685
- declare const jsonIcon: (props: react_icons.IconBaseProps) => JSX.Element;
20686
- declare const yesNoIcon: (props: react_icons.IconBaseProps) => JSX.Element;
21367
+ declare const queryStringIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21368
+ declare const structurePanelIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21369
+ declare const jsonIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21370
+ declare const yesNoIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20687
21371
  declare const customIcons: {
20688
- 'rectangle-rounded': (props: react_icons.IconBaseProps) => JSX.Element;
20689
- card: (props: react_icons.IconBaseProps) => JSX.Element;
20690
- 'image-text': (props: react_icons.IconBaseProps) => JSX.Element;
20691
- 'border-top': (props: react_icons.IconBaseProps) => JSX.Element;
20692
- 'full-width-screen': (props: react_icons.IconBaseProps) => JSX.Element;
20693
- 'text-input': (props: react_icons.IconBaseProps) => JSX.Element;
20694
- 'number-input': (props: react_icons.IconBaseProps) => JSX.Element;
20695
- 'canvas-alert': (props: react_icons.IconBaseProps) => JSX.Element;
20696
- warning: (props: react_icons.IconBaseProps) => JSX.Element;
20697
- 'info-filled': (props: react_icons.IconBaseProps) => JSX.Element;
21372
+ 'rectangle-rounded': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21373
+ card: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21374
+ 'image-text': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21375
+ 'border-top': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21376
+ 'full-width-screen': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21377
+ 'text-input': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21378
+ 'number-input': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21379
+ 'canvas-alert': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21380
+ warning: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21381
+ 'info-filled': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20698
21382
  settings: (props: IconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20699
- 'query-string': (props: react_icons.IconBaseProps) => JSX.Element;
20700
- json: (props: react_icons.IconBaseProps) => JSX.Element;
20701
- 'format-bold': (props: react_icons.IconBaseProps) => JSX.Element;
20702
- 'format-code': (props: react_icons.IconBaseProps) => JSX.Element;
20703
- 'format-strike': (props: react_icons.IconBaseProps) => JSX.Element;
20704
- 'format-superscript': (props: react_icons.IconBaseProps) => JSX.Element;
20705
- 'format-subscript': (props: react_icons.IconBaseProps) => JSX.Element;
20706
- 'layout-list-numbered': (props: react_icons.IconBaseProps) => JSX.Element;
20707
- 'clear-formatting': (props: react_icons.IconBaseProps) => JSX.Element;
20708
- 'yes-no': (props: react_icons.IconBaseProps) => JSX.Element;
20709
- 'diamond-outline': (props: react_icons.IconBaseProps) => JSX.Element;
20710
- 'diamond-fill': (props: react_icons.IconBaseProps) => JSX.Element;
21383
+ 'query-string': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21384
+ json: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21385
+ 'format-bold': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21386
+ 'format-code': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21387
+ 'format-strike': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21388
+ 'format-superscript': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21389
+ 'format-subscript': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21390
+ 'layout-list-numbered': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21391
+ 'clear-formatting': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21392
+ 'yes-no': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21393
+ 'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21394
+ 'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20711
21395
  };
20712
21396
 
20713
21397
  type IconsMap = Record<string, IconType$1>;
@@ -20828,6 +21512,10 @@ type InputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
20828
21512
  /** (option) sets caption message test id for test automation */
20829
21513
  captionTestId?: string;
20830
21514
  capture?: boolean | 'user' | 'environment';
21515
+ /**
21516
+ * (optional) sets an overriding classname on the root element
21517
+ */
21518
+ classNameRoot?: string | SerializedStyles;
20831
21519
  /**
20832
21520
  * (optional) sets an overriding classname on the container element
20833
21521
  * @deprecated */
@@ -20867,6 +21555,10 @@ declare const Input: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttribut
20867
21555
  /** (option) sets caption message test id for test automation */
20868
21556
  captionTestId?: string | undefined;
20869
21557
  capture?: boolean | "user" | "environment" | undefined;
21558
+ /**
21559
+ * (optional) sets an overriding classname on the root element
21560
+ */
21561
+ classNameRoot?: string | SerializedStyles | undefined;
20870
21562
  /**
20871
21563
  * (optional) sets an overriding classname on the container element
20872
21564
  * @deprecated */
@@ -21304,7 +21996,9 @@ declare const ScrollableListItem: ({ buttonText, active, disableShadow, ...props
21304
21996
  * Loading Indicator
21305
21997
  * @example <LoadingIndicator />
21306
21998
  */
21307
- declare const LoadingIndicator: ({ ...props }: HTMLAttributes<HTMLDivElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21999
+ declare const LoadingIndicator: ({ size, ...props }: HTMLAttributes<HTMLDivElement> & {
22000
+ size?: "sm" | "lg" | undefined;
22001
+ }) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21308
22002
 
21309
22003
  interface LoadingOverlayProps {
21310
22004
  /** sets whether to display the loading overlay components */
@@ -21378,6 +22072,8 @@ interface MenuProps extends MenuHTMLProps {
21378
22072
  * If you need to disable this functionality, set this prop to true.
21379
22073
  */
21380
22074
  disableAutoSeparatorManagement?: boolean;
22075
+ /** sets whether to use a React portal rendering or not */
22076
+ withoutPortal?: boolean;
21381
22077
  }
21382
22078
  declare const MenuContext: React$1.Context<MenuStateReturn>;
21383
22079
  declare const useMenuContext: () => MenuStateReturn | undefined;
@@ -21390,7 +22086,7 @@ declare const useMenuContext: () => MenuStateReturn | undefined;
21390
22086
  * menuLabel="Linked environment management options">
21391
22087
  * </Menu>
21392
22088
  */
21393
- declare const Menu: ({ menuLabel, menuTrigger, placement, menuItemsContainerCssClasses, children, forceVisible, disableAutoSeparatorManagement, }: MenuProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22089
+ declare const Menu: ({ menuLabel, menuTrigger, placement, menuItemsContainerCssClasses, children, forceVisible, disableAutoSeparatorManagement, withoutPortal, }: MenuProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21394
22090
 
21395
22091
  type MenuGroupProps = {
21396
22092
  /** Title for the menu group. If undefined or an empty string, the group will render as normal menu */
@@ -21469,8 +22165,10 @@ declare const Modal: React__default.ForwardRefExoticComponent<{
21469
22165
  type CommonParameterProps = {
21470
22166
  /** sets the label value */
21471
22167
  label: string;
21472
- /** (optional): allows user to pass a component within the label */
22168
+ /** (optional): allows user to pass a component before the label */
21473
22169
  labelLeadingIcon?: ReactNode;
22170
+ /** (optional): allows user to pass a component after the label */
22171
+ labelTrailingIcon?: ReactNode;
21474
22172
  /** sets the value for label and id on the input field */
21475
22173
  id: string;
21476
22174
  /** (optional): hides the label, but set an aria-label on the input */
@@ -21593,6 +22291,8 @@ type ParameterImageProps = Omit<CommonParameterInputProps, 'inputIcon' | 'type'>
21593
22291
  declare const ParameterImage: React__default.ForwardRefExoticComponent<Omit<CommonParameterInputProps, "type" | "inputIcon"> & React__default.InputHTMLAttributes<HTMLInputElement> & {
21594
22292
  /** Turns off the image preview, if it's not desired or rendered separately with `ParameterImageImage` elsewhere */
21595
22293
  disablePreview?: boolean | undefined;
22294
+ } & {
22295
+ children?: React__default.ReactNode;
21596
22296
  } & React__default.RefAttributes<HTMLInputElement>>;
21597
22297
  declare const ParameterImageInner: React__default.ForwardRefExoticComponent<React__default.InputHTMLAttributes<HTMLInputElement> & {
21598
22298
  disablePreview?: boolean | undefined;
@@ -21600,7 +22300,7 @@ declare const ParameterImageInner: React__default.ForwardRefExoticComponent<Reac
21600
22300
 
21601
22301
  declare function ParameterImagePreview({ imageSrc }: {
21602
22302
  imageSrc: string;
21603
- }): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22303
+ }): _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
21604
22304
 
21605
22305
  type ParameterInputProps = CommonParameterInputProps & React.InputHTMLAttributes<HTMLInputElement>;
21606
22306
  /** @example <ParameterInput label="label value" id="my-input" /> */
@@ -21804,9 +22504,6 @@ declare const extractParameterProps: <T>(props: T & CommonParameterProps & {
21804
22504
  menuItems?: ReactNode;
21805
22505
  errorTestId?: string | undefined;
21806
22506
  captionTestId?: string | undefined;
21807
- /** sets overriding parameters indicator
21808
- * @deprecated
21809
- */
21810
22507
  title?: string | undefined;
21811
22508
  }) => {
21812
22509
  shellProps: {
@@ -21830,9 +22527,6 @@ declare const extractParameterProps: <T>(props: T & CommonParameterProps & {
21830
22527
  menuItems?: ReactNode;
21831
22528
  errorTestId?: string | undefined;
21832
22529
  captionTestId?: string | undefined;
21833
- /** sets overriding parameters indicator
21834
- * @deprecated
21835
- */
21836
22530
  title?: string | undefined;
21837
22531
  }, "caption" | "label" | "title" | "id" | "menuItems" | "errorMessage" | "warningMessage" | "errorTestId" | "captionTestId" | "hiddenLabel" | "labelLeadingIcon" | "infoMessage" | "hasOverriddenValue" | "onResetOverriddenValue">;
21838
22532
  };
@@ -21851,7 +22545,7 @@ type ParameterShellProps = React.InputHTMLAttributes<HTMLDivElement> & CommonPar
21851
22545
  * Uniform Parameter shell component
21852
22546
  * @example <ParameterShell label="my label" id="my-id"><ParameterInput onChange={() => {}} /></ParameterShell>
21853
22547
  */
21854
- declare const ParameterShell: ({ label, labelLeadingIcon, hiddenLabel, id, errorMessage, warningMessage, infoMessage, caption, errorTestId, captionTestId, menuItems, hasOverriddenValue, onResetOverriddenValue, title, children, ...props }: ParameterShellProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22548
+ declare const ParameterShell: ({ label, labelLeadingIcon, labelTrailingIcon, hiddenLabel, id, errorMessage, warningMessage, infoMessage, caption, errorTestId, captionTestId, menuItems, hasOverriddenValue, onResetOverriddenValue, title, children, ...props }: ParameterShellProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21855
22549
  declare const ParameterShellPlaceholder: ({ children }: {
21856
22550
  children?: ReactNode;
21857
22551
  }) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
@@ -21910,8 +22604,9 @@ type PopoverProps = PopoverProps$1 & {
21910
22604
  /** sets a test id for e2e tests */
21911
22605
  testId?: string;
21912
22606
  children: ReactNode;
22607
+ trigger?: ReactNode;
21913
22608
  };
21914
- declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, children, ...otherProps }: PopoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22609
+ declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, trigger, children, ...otherProps }: PopoverProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21915
22610
 
21916
22611
  type ProgressListItemStatus = 'completed' | 'inProgress' | 'queued';
21917
22612
  type ProgressListProps = React__default.HTMLAttributes<HTMLOListElement> & {
@@ -21953,7 +22648,7 @@ declare const ProgressListItem: ({ children, status, error, errorLevel, autoElli
21953
22648
  type SegmentedControlOption<TValue extends string = string> = {
21954
22649
  value: TValue;
21955
22650
  label?: string;
21956
- icon?: IconType$1;
22651
+ icon?: IconType;
21957
22652
  tooltip?: string;
21958
22653
  disabled?: boolean;
21959
22654
  };