@uniformdev/design-system 19.150.0 → 19.151.1-alpha.16

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
@@ -1,17 +1,19 @@
1
1
  import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
2
2
  import { DecoratorFn } from '@storybook/react';
3
3
  import * as React$1 from 'react';
4
- import React__default, { RefObject, HTMLAttributes, ReactNode, ImgHTMLAttributes, SVGProps, InputHTMLAttributes, CSSProperties, Ref, ButtonHTMLAttributes, FocusEventHandler, ChangeEvent, HtmlHTMLAttributes } from 'react';
4
+ import React__default, { RefObject, HTMLAttributes, MutableRefObject, ReactNode, ImgHTMLAttributes, SVGProps, InputHTMLAttributes, CSSProperties, Ref, ButtonHTMLAttributes, FocusEventHandler, ChangeEvent, HtmlHTMLAttributes } from 'react';
5
5
  import { GroupBase, Props } from 'react-select';
6
6
  export { ActionMeta, FormatOptionLabelContext, FormatOptionLabelMeta, GetOptionLabel, GetOptionValue, GroupBase, GroupHeadingProps, GroupProps, MenuListProps, MenuPlacement, MultiValue, MultiValueGenericProps, MultiValueProps, MultiValueRemoveProps, OnChangeValue, OptionContext, OptionProps, Options, OptionsOrGroups } from 'react-select';
7
7
  import * as _emotion_react from '@emotion/react';
8
8
  import { SerializedStyles } from '@emotion/react';
9
9
  import { LottieComponentProps } from 'lottie-react';
10
10
  import { ButtonProps as ButtonProps$1 } from 'reakit/Button';
11
+ import { RefType } from 'react-hotkeys-hook/dist/types';
12
+ import { TooltipOptions, TooltipInitialState } from 'reakit/Tooltip';
11
13
  import { MenuProps as MenuProps$1 } from 'reakit';
12
- import * as _react_icons_all_files_lib from '@react-icons/all-files/lib';
13
14
  import { IconType as IconType$1, IconBaseProps } from '@react-icons/all-files/lib';
14
15
  import * as _react_icons_all_files from '@react-icons/all-files';
16
+ import { IconType as IconType$2 } from '@react-icons/all-files';
15
17
  import { DateValue } from '@internationalized/date';
16
18
  import { CalendarProps as CalendarProps$1, TimeFieldProps, TimeValue } from 'react-aria-components';
17
19
  import InternalSelect from 'react-select/dist/declarations/src/Select';
@@ -22,8 +24,6 @@ import { InitialConfigType } from '@lexical/react/LexicalComposer';
22
24
  import { LinkParamValue, RichTextParamConfiguration } from '@uniformdev/canvas';
23
25
  export { RichTextBuiltInElement, RichTextBuiltInFormat } from '@uniformdev/canvas';
24
26
  import { Spread, SerializedElementNode, ElementNode, NodeKey, EditorConfig, DOMConversionMap, RangeSelection, SerializedEditorState, LexicalEditor } from 'lexical';
25
- import * as react_hotkeys_hook_dist_types from 'react-hotkeys-hook/dist/types';
26
- import { TooltipOptions, TooltipInitialState } from 'reakit/Tooltip';
27
27
  export { richTextBuiltInElements, richTextBuiltInFormats } from '@uniformdev/richtext';
28
28
  export { Id as ToastId, toast } from 'react-toastify';
29
29
 
@@ -215,29 +215,6 @@ type AddListButtonProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
215
215
  */
216
216
  declare const AddListButton: ({ buttonText, onButtonClick, disabled, icon, variant, theme, ...buttonProps }: AddListButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
217
217
 
218
- type ArrowPositionProps = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'left-top' | 'left-bottom' | 'right-top' | 'right-bottom';
219
- type InlineAlertProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
220
- /** sets the id of the popup and the aria-controls attibute on the close button
221
- * @example 'my-alert-box'
222
- */
223
- id: string;
224
- /** sets the title of the inline alert message */
225
- title: string;
226
- /** sets the text of the inline alert message */
227
- text: string;
228
- /** (optional) sets the position of the arrow
229
- * @default 'left-top'
230
- */
231
- arrowPosition?: ArrowPositionProps;
232
- /** (optional) allows to position alert using direct css */
233
- positionCss?: SerializedStyles;
234
- };
235
- /**
236
- * Uniform Inline Alert Component
237
- * @example <InlineAlert id="my-alert-box" title="my alert box" text="some description text" />
238
- */
239
- declare const InlineAlert: ({ id, title, text, arrowPosition, positionCss, ...btnProps }: InlineAlertProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
240
-
241
218
  var v$1 = "4.8.0";
242
219
  var meta$1 = {
243
220
  g: "LottieFiles AE 3.1.1",
@@ -20307,6 +20284,86 @@ declare const UniformBadge: ({ theme, ...props }: React__default.SVGAttributes<S
20307
20284
  declare const UniformLogo: ({ theme, ...props }: UniformLogoProps & React.SVGAttributes<SVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20308
20285
  declare const UniformLogoLarge: ({ ...props }: React.SVGAttributes<SVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20309
20286
 
20287
+ /**
20288
+ * Gets a formatted version of a shortcut for display.
20289
+ *
20290
+ * i.e. converts "mod+alt+n" to "['⌘', '⌥', 'N']" on macs,
20291
+ * or ['^', 'Alt', 'N'] on windows.
20292
+ * @param shortcut The +-delimited shortcut string
20293
+ */
20294
+ declare function getFormattedShortcut(shortcut: string | null): string[];
20295
+
20296
+ /**
20297
+ * @deprecated Use tooltips or menu items with a shortcut instead,
20298
+ * and getFormattedShortcut for display
20299
+ */
20300
+ declare function ShortcutContext({ children }: {
20301
+ children: React__default.ReactNode;
20302
+ }): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20303
+ /**
20304
+ * @deprecated Use tooltips or menu items with a shortcut instead,
20305
+ * and getFormattedShortcut for display
20306
+ */
20307
+ declare function ShortcutRevealer({ shortcut, macShortcut, className, }: {
20308
+ shortcut: string;
20309
+ macShortcut?: string;
20310
+ className?: SerializedStyles | string;
20311
+ }): _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
20312
+
20313
+ type UseShortcutOptions = {
20314
+ /**
20315
+ * Shortcut to type to activate. Keys are +-delimited.
20316
+ * Prefer 'mod' to 'ctrl' (mod = ctrl on windows, cmd on mac).
20317
+ *
20318
+ * ex: mod+n for ctrl+n on windows, cmd+n on mac
20319
+ *
20320
+ * When macShortcut is not provided, this shortcut is used for macs.
20321
+ */
20322
+ shortcut: string | null;
20323
+ /**
20324
+ * Shortcut to type to activate on macs. Keys are +-delimited.
20325
+ * Only required to use a different shortcut on mac, i.e. to be
20326
+ * idiomatic with OS shortcuts like cmd+shift+z for redo,
20327
+ * vs windows' ctrl+y.
20328
+ */
20329
+ macShortcut?: string | null;
20330
+ /**
20331
+ * Function to call when the shortcut is activated.
20332
+ *
20333
+ * The event is undefined if the handler has been invoked
20334
+ * imperatively by calling the handler fn returned by the hook
20335
+ */
20336
+ handler: (event: KeyboardEvent | undefined) => void;
20337
+ /** Does not abort the default keyboard event. */
20338
+ doNotPreventDefault?: boolean;
20339
+ /** Whether the shortcut will activate with a form field in focus */
20340
+ activeWhenEditing?: boolean;
20341
+ /** When true, the shortcut is disabled. The result will also reflect this state, which may disable attached menus, buttons, etc */
20342
+ disabled?: boolean;
20343
+ };
20344
+ type ShortcutReference = {
20345
+ shortcut: string;
20346
+ handler: () => void | Promise<void>;
20347
+ disabled: boolean;
20348
+ };
20349
+ interface UseShortcutResult extends ShortcutReference {
20350
+ focusTrap: MutableRefObject<RefType<HTMLElement>>;
20351
+ }
20352
+ declare function useShortcut({ disabled, handler, shortcut, macShortcut, doNotPreventDefault, activeWhenEditing, }: UseShortcutOptions): UseShortcutResult;
20353
+
20354
+ type TooltipProps = TooltipOptions & {
20355
+ /** Content of tooltip popover */
20356
+ title: string | React__default.ReactElement;
20357
+ /** Optional ability to specify alternative placement. By default - bottom center */
20358
+ placement?: TooltipInitialState['placement'];
20359
+ /** Optional ability to control visibility of Tooltip manually, useful for showing tooltip on click instead of on hover */
20360
+ visible?: TooltipInitialState['visible'];
20361
+ children: JSX.Element;
20362
+ /** If the tooltip should not be rendered inside a portal */
20363
+ withoutPortal?: boolean;
20364
+ };
20365
+ declare function Tooltip({ children, title, placement, visible, withoutPortal, ...props }: TooltipProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20366
+
20310
20367
  /** Button themes that are available to use with our brand */
20311
20368
  type ButtonThemeProps$1 = 'primary' | 'secondary' | 'accent-alt-dark' | 'accent-alt-dark-outline' | 'destructive' | 'tertiary' | 'tertiaryOutline' | 'unimportant' | 'ghost' | 'ghostDestructive' | 'primaryInvert' | 'secondaryInvert' | 'ghostUnimportant';
20312
20369
  /** Button sizes that are available to use with our brand */
@@ -20322,6 +20379,21 @@ type ButtonProps = ButtonProps$1 & {
20322
20379
  * @default "md"
20323
20380
  * */
20324
20381
  size?: ButtonSizeProps$1;
20382
+ /**
20383
+ * Sets a tooltip on the button when hovered
20384
+ * Note that the tooltip will be shown whether disabled or not.
20385
+ */
20386
+ tooltip?: React$1.ReactNode;
20387
+ /**
20388
+ * Sets additional tooltip options if the tooltip is set
20389
+ */
20390
+ tooltipOptions?: Omit<TooltipProps, 'title' | 'children'>;
20391
+ /**
20392
+ * Sets a shortcut for the button.
20393
+ * The shortcut's handler function will be automatically set to the onClick of the button,
20394
+ * and a tooltip will be added to the button that shows the keyboard shortcut.
20395
+ */
20396
+ shortcut?: ShortcutReference;
20325
20397
  };
20326
20398
  /**
20327
20399
  * Uniform Button Component
@@ -20331,678 +20403,678 @@ type ButtonProps = ButtonProps$1 & {
20331
20403
  declare const Button: React$1.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
20332
20404
 
20333
20405
  declare const allSupportedIcons: {
20334
- 'rectangle-rounded': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20335
- card: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20336
- 'image-text': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20337
- 'border-top': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20338
- 'full-width-screen': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20339
- 'text-input': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20340
- 'number-input': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20341
- 'canvas-alert': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20342
- warning: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20343
- 'info-filled': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20406
+ 'rectangle-rounded': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20407
+ card: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20408
+ 'image-text': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20409
+ 'border-top': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20410
+ 'full-width-screen': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20411
+ 'text-input': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20412
+ 'number-input': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20413
+ 'canvas-alert': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20414
+ warning: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20415
+ 'info-filled': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20344
20416
  settings: (props: IconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20345
- 'query-string': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20346
- json: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20347
- 'format-bold': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20348
- 'format-code': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20349
- 'format-strike': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20350
- 'format-superscript': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20351
- 'format-subscript': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20352
- 'layout-list-numbered': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20353
- 'clear-formatting': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20354
- 'yes-no': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20355
- 'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20356
- 'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20357
- 'magic-wand': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20358
- 'list-view-short': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20359
- 'list-view-long': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20360
- 'filter-add': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20361
- 'clipboard-copy': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20362
- 'clipboard-paste': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20363
- refresh: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20364
- 'add-r': _react_icons_all_files_lib.IconType;
20365
- add: _react_icons_all_files_lib.IconType;
20366
- airplane: _react_icons_all_files_lib.IconType;
20367
- alarm: _react_icons_all_files_lib.IconType;
20368
- album: _react_icons_all_files_lib.IconType;
20369
- 'align-bottom': _react_icons_all_files_lib.IconType;
20370
- 'align-center': _react_icons_all_files_lib.IconType;
20371
- 'align-left': _react_icons_all_files_lib.IconType;
20372
- 'align-middle': _react_icons_all_files_lib.IconType;
20373
- 'align-right': _react_icons_all_files_lib.IconType;
20374
- 'align-top': _react_icons_all_files_lib.IconType;
20375
- anchor: _react_icons_all_files_lib.IconType;
20376
- 'apple-watch': _react_icons_all_files_lib.IconType;
20377
- 'arrange-back': _react_icons_all_files_lib.IconType;
20378
- 'arrange-front': _react_icons_all_files_lib.IconType;
20379
- 'arrow-align-h': _react_icons_all_files_lib.IconType;
20380
- 'arrow-align-v': _react_icons_all_files_lib.IconType;
20381
- 'arrow-bottom-left-o': _react_icons_all_files_lib.IconType;
20382
- 'arrow-bottom-left-r': _react_icons_all_files_lib.IconType;
20383
- 'arrow-bottom-left': _react_icons_all_files_lib.IconType;
20384
- 'arrow-bottom-right-o': _react_icons_all_files_lib.IconType;
20385
- 'arrow-bottom-right-r': _react_icons_all_files_lib.IconType;
20386
- 'arrow-bottom-right': _react_icons_all_files_lib.IconType;
20387
- 'arrow-down-o': _react_icons_all_files_lib.IconType;
20388
- 'arrow-down-r': _react_icons_all_files_lib.IconType;
20389
- 'arrow-down': _react_icons_all_files_lib.IconType;
20390
- 'arrow-left-o': _react_icons_all_files_lib.IconType;
20391
- 'arrow-left-r': _react_icons_all_files_lib.IconType;
20392
- 'arrow-left': _react_icons_all_files_lib.IconType;
20393
- 'arrow-long-down-c': _react_icons_all_files_lib.IconType;
20394
- 'arrow-long-down-e': _react_icons_all_files_lib.IconType;
20395
- 'arrow-long-down-l': _react_icons_all_files_lib.IconType;
20396
- 'arrow-long-down-r': _react_icons_all_files_lib.IconType;
20397
- 'arrow-long-down': _react_icons_all_files_lib.IconType;
20398
- 'arrow-long-left-c': _react_icons_all_files_lib.IconType;
20399
- 'arrow-long-left-e': _react_icons_all_files_lib.IconType;
20400
- 'arrow-long-left-l': _react_icons_all_files_lib.IconType;
20401
- 'arrow-long-left-r': _react_icons_all_files_lib.IconType;
20402
- 'arrow-long-left': _react_icons_all_files_lib.IconType;
20403
- 'arrow-long-right-c': _react_icons_all_files_lib.IconType;
20404
- 'arrow-long-right-e': _react_icons_all_files_lib.IconType;
20405
- 'arrow-long-right-l': _react_icons_all_files_lib.IconType;
20406
- 'arrow-long-right-r': _react_icons_all_files_lib.IconType;
20407
- 'arrow-long-right': _react_icons_all_files_lib.IconType;
20408
- 'arrow-long-up-c': _react_icons_all_files_lib.IconType;
20409
- 'arrow-long-up-e': _react_icons_all_files_lib.IconType;
20410
- 'arrow-long-up-l': _react_icons_all_files_lib.IconType;
20411
- 'arrow-long-up-r': _react_icons_all_files_lib.IconType;
20412
- 'arrow-long-up': _react_icons_all_files_lib.IconType;
20413
- 'arrow-right-o': _react_icons_all_files_lib.IconType;
20414
- 'arrow-right-r': _react_icons_all_files_lib.IconType;
20415
- 'arrow-right': _react_icons_all_files_lib.IconType;
20416
- 'arrow-top-left-o': _react_icons_all_files_lib.IconType;
20417
- 'arrow-top-left-r': _react_icons_all_files_lib.IconType;
20418
- 'arrow-top-left': _react_icons_all_files_lib.IconType;
20419
- 'arrow-top-right-o': _react_icons_all_files_lib.IconType;
20420
- 'arrow-top-right-r': _react_icons_all_files_lib.IconType;
20421
- 'arrow-top-right': _react_icons_all_files_lib.IconType;
20422
- 'arrow-up-o': _react_icons_all_files_lib.IconType;
20423
- 'arrow-up-r': _react_icons_all_files_lib.IconType;
20424
- 'arrow-up': _react_icons_all_files_lib.IconType;
20425
- 'arrows-breake-h': _react_icons_all_files_lib.IconType;
20426
- 'arrows-breake-v': _react_icons_all_files_lib.IconType;
20427
- 'arrows-exchange-alt-v': _react_icons_all_files_lib.IconType;
20428
- 'arrows-exchange-alt': _react_icons_all_files_lib.IconType;
20429
- 'arrows-exchange-v': _react_icons_all_files_lib.IconType;
20430
- 'arrows-exchange': _react_icons_all_files_lib.IconType;
20431
- 'arrows-expand-down-left': _react_icons_all_files_lib.IconType;
20432
- 'arrows-expand-down-right': _react_icons_all_files_lib.IconType;
20433
- 'arrows-expand-left-alt': _react_icons_all_files_lib.IconType;
20434
- 'arrows-expand-left': _react_icons_all_files_lib.IconType;
20435
- 'arrows-expand-right-alt': _react_icons_all_files_lib.IconType;
20436
- 'arrows-expand-right': _react_icons_all_files_lib.IconType;
20437
- 'arrows-expand-up-left': _react_icons_all_files_lib.IconType;
20438
- 'arrows-expand-up-right': _react_icons_all_files_lib.IconType;
20439
- 'arrows-h-alt': _react_icons_all_files_lib.IconType;
20440
- 'arrows-h': _react_icons_all_files_lib.IconType;
20441
- 'arrows-merge-alt-h': _react_icons_all_files_lib.IconType;
20442
- 'arrows-merge-alt-v': _react_icons_all_files_lib.IconType;
20443
- 'arrows-scroll-h': _react_icons_all_files_lib.IconType;
20444
- 'arrows-scroll-v': _react_icons_all_files_lib.IconType;
20445
- 'arrows-shrink-h': _react_icons_all_files_lib.IconType;
20446
- 'arrows-shrink-v': _react_icons_all_files_lib.IconType;
20447
- 'arrows-v-alt': _react_icons_all_files_lib.IconType;
20448
- 'arrows-v': _react_icons_all_files_lib.IconType;
20449
- assign: _react_icons_all_files_lib.IconType;
20450
- asterisk: _react_icons_all_files_lib.IconType;
20451
- attachment: _react_icons_all_files_lib.IconType;
20452
- attribution: _react_icons_all_files_lib.IconType;
20453
- awards: _react_icons_all_files_lib.IconType;
20454
- backspace: _react_icons_all_files_lib.IconType;
20455
- 'band-aid': _react_icons_all_files_lib.IconType;
20456
- 'battery-empty': _react_icons_all_files_lib.IconType;
20457
- 'battery-full': _react_icons_all_files_lib.IconType;
20458
- battery: _react_icons_all_files_lib.IconType;
20459
- bee: _react_icons_all_files_lib.IconType;
20460
- bell: _react_icons_all_files_lib.IconType;
20461
- bitbucket: _react_icons_all_files_lib.IconType;
20462
- block: _react_icons_all_files_lib.IconType;
20463
- board: _react_icons_all_files_lib.IconType;
20464
- bolt: _react_icons_all_files_lib.IconType;
20465
- bookmark: _react_icons_all_files_lib.IconType;
20466
- 'border-all': _react_icons_all_files_lib.IconType;
20467
- 'border-bottom': _react_icons_all_files_lib.IconType;
20468
- 'border-left': _react_icons_all_files_lib.IconType;
20469
- 'border-right': _react_icons_all_files_lib.IconType;
20470
- 'border-style-dashed': _react_icons_all_files_lib.IconType;
20471
- 'border-style-dotted': _react_icons_all_files_lib.IconType;
20472
- 'border-style-solid': _react_icons_all_files_lib.IconType;
20473
- bot: _react_icons_all_files_lib.IconType;
20474
- bowl: _react_icons_all_files_lib.IconType;
20475
- box: _react_icons_all_files_lib.IconType;
20476
- boy: _react_icons_all_files_lib.IconType;
20477
- briefcase: _react_icons_all_files_lib.IconType;
20478
- browse: _react_icons_all_files_lib.IconType;
20479
- browser: _react_icons_all_files_lib.IconType;
20480
- brush: _react_icons_all_files_lib.IconType;
20481
- bulb: _react_icons_all_files_lib.IconType;
20482
- 'c-plus-plus': _react_icons_all_files_lib.IconType;
20483
- calculator: _react_icons_all_files_lib.IconType;
20484
- 'calendar-dates': _react_icons_all_files_lib.IconType;
20485
- 'calendar-due': _react_icons_all_files_lib.IconType;
20486
- 'calendar-next': _react_icons_all_files_lib.IconType;
20487
- 'calendar-today': _react_icons_all_files_lib.IconType;
20488
- 'calendar-two': _react_icons_all_files_lib.IconType;
20489
- calendar: _react_icons_all_files_lib.IconType;
20490
- calibrate: _react_icons_all_files_lib.IconType;
20491
- camera: _react_icons_all_files_lib.IconType;
20492
- cap: _react_icons_all_files_lib.IconType;
20493
- captions: _react_icons_all_files_lib.IconType;
20494
- 'card-clubs': _react_icons_all_files_lib.IconType;
20495
- 'card-diamonds': _react_icons_all_files_lib.IconType;
20496
- 'card-hearts': _react_icons_all_files_lib.IconType;
20497
- 'card-spades': _react_icons_all_files_lib.IconType;
20498
- carousel: _react_icons_all_files_lib.IconType;
20499
- cast: _react_icons_all_files_lib.IconType;
20500
- chart: _react_icons_all_files_lib.IconType;
20501
- 'check-o': _react_icons_all_files_lib.IconType;
20502
- 'check-r': _react_icons_all_files_lib.IconType;
20503
- check: _react_icons_all_files_lib.IconType;
20504
- 'chevron-double-down-o': _react_icons_all_files_lib.IconType;
20505
- 'chevron-double-down-r': _react_icons_all_files_lib.IconType;
20506
- 'chevron-double-down': _react_icons_all_files_lib.IconType;
20507
- 'chevron-double-left-o': _react_icons_all_files_lib.IconType;
20508
- 'chevron-double-left-r': _react_icons_all_files_lib.IconType;
20509
- 'chevron-double-left': _react_icons_all_files_lib.IconType;
20510
- 'chevron-double-right-o': _react_icons_all_files_lib.IconType;
20511
- 'chevron-double-right-r': _react_icons_all_files_lib.IconType;
20512
- 'chevron-double-right': _react_icons_all_files_lib.IconType;
20513
- 'chevron-double-up-o': _react_icons_all_files_lib.IconType;
20514
- 'chevron-double-up-r': _react_icons_all_files_lib.IconType;
20515
- 'chevron-double-up': _react_icons_all_files_lib.IconType;
20516
- 'chevron-down-o': _react_icons_all_files_lib.IconType;
20517
- 'chevron-down-r': _react_icons_all_files_lib.IconType;
20518
- 'chevron-down': _react_icons_all_files_lib.IconType;
20519
- 'chevron-left-o': _react_icons_all_files_lib.IconType;
20520
- 'chevron-left-r': _react_icons_all_files_lib.IconType;
20521
- 'chevron-left': _react_icons_all_files_lib.IconType;
20522
- 'chevron-right-o': _react_icons_all_files_lib.IconType;
20523
- 'chevron-right-r': _react_icons_all_files_lib.IconType;
20524
- 'chevron-right': _react_icons_all_files_lib.IconType;
20525
- 'chevron-up-o': _react_icons_all_files_lib.IconType;
20526
- 'chevron-up-r': _react_icons_all_files_lib.IconType;
20527
- 'chevron-up': _react_icons_all_files_lib.IconType;
20528
- 'clapper-board': _react_icons_all_files_lib.IconType;
20529
- clipboard: _react_icons_all_files_lib.IconType;
20530
- 'close-o': _react_icons_all_files_lib.IconType;
20531
- 'close-r': _react_icons_all_files_lib.IconType;
20532
- close: _react_icons_all_files_lib.IconType;
20533
- cloud: _react_icons_all_files_lib.IconType;
20534
- 'code-slash': _react_icons_all_files_lib.IconType;
20535
- code: _react_icons_all_files_lib.IconType;
20536
- coffee: _react_icons_all_files_lib.IconType;
20537
- collage: _react_icons_all_files_lib.IconType;
20538
- 'color-bucket': _react_icons_all_files_lib.IconType;
20539
- 'color-picker': _react_icons_all_files_lib.IconType;
20540
- comment: _react_icons_all_files_lib.IconType;
20541
- community: _react_icons_all_files_lib.IconType;
20542
- components: _react_icons_all_files_lib.IconType;
20543
- 'compress-left': _react_icons_all_files_lib.IconType;
20544
- 'compress-right': _react_icons_all_files_lib.IconType;
20545
- 'compress-v': _react_icons_all_files_lib.IconType;
20546
- compress: _react_icons_all_files_lib.IconType;
20547
- controller: _react_icons_all_files_lib.IconType;
20548
- copy: _react_icons_all_files_lib.IconType;
20549
- 'copy-all': _react_icons_all_files_lib.IconType;
20550
- copyright: _react_icons_all_files_lib.IconType;
20551
- 'corner-double-down-left': _react_icons_all_files_lib.IconType;
20552
- 'corner-double-down-right': _react_icons_all_files_lib.IconType;
20553
- 'corner-double-left-down': _react_icons_all_files_lib.IconType;
20554
- 'corner-double-left-up': _react_icons_all_files_lib.IconType;
20555
- 'corner-double-right-down': _react_icons_all_files_lib.IconType;
20556
- 'corner-double-right-up': _react_icons_all_files_lib.IconType;
20557
- 'corner-double-up-left': _react_icons_all_files_lib.IconType;
20558
- 'corner-double-up-right': _react_icons_all_files_lib.IconType;
20559
- 'corner-down-left': _react_icons_all_files_lib.IconType;
20560
- 'corner-down-right': _react_icons_all_files_lib.IconType;
20561
- 'corner-left-down': _react_icons_all_files_lib.IconType;
20562
- 'corner-left-up': _react_icons_all_files_lib.IconType;
20563
- 'corner-right-down': _react_icons_all_files_lib.IconType;
20564
- 'corner-right-up': _react_icons_all_files_lib.IconType;
20565
- 'corner-up-left': _react_icons_all_files_lib.IconType;
20566
- 'corner-up-right': _react_icons_all_files_lib.IconType;
20567
- 'credit-card': _react_icons_all_files_lib.IconType;
20568
- crop: _react_icons_all_files_lib.IconType;
20569
- cross: _react_icons_all_files_lib.IconType;
20570
- crown: _react_icons_all_files_lib.IconType;
20571
- danger: _react_icons_all_files_lib.IconType;
20572
- 'dark-mode': _react_icons_all_files_lib.IconType;
20573
- data: _react_icons_all_files_lib.IconType;
20574
- database: _react_icons_all_files_lib.IconType;
20575
- debug: _react_icons_all_files_lib.IconType;
20576
- desktop: _react_icons_all_files_lib.IconType;
20577
- 'details-less': _react_icons_all_files_lib.IconType;
20578
- 'details-more': _react_icons_all_files_lib.IconType;
20579
- dialpad: _react_icons_all_files_lib.IconType;
20580
- 'dice-1': _react_icons_all_files_lib.IconType;
20581
- 'dice-2': _react_icons_all_files_lib.IconType;
20582
- 'dice-3': _react_icons_all_files_lib.IconType;
20583
- 'dice-4': _react_icons_all_files_lib.IconType;
20584
- 'dice-5': _react_icons_all_files_lib.IconType;
20585
- 'dice-6': _react_icons_all_files_lib.IconType;
20586
- disc: _react_icons_all_files_lib.IconType;
20587
- 'display-flex': _react_icons_all_files_lib.IconType;
20588
- 'display-fullwidth': _react_icons_all_files_lib.IconType;
20589
- 'display-grid': _react_icons_all_files_lib.IconType;
20590
- 'display-spacing': _react_icons_all_files_lib.IconType;
20591
- 'distribute-horizontal': _react_icons_all_files_lib.IconType;
20592
- 'distribute-vertical': _react_icons_all_files_lib.IconType;
20593
- 'dock-bottom': _react_icons_all_files_lib.IconType;
20594
- 'dock-left': _react_icons_all_files_lib.IconType;
20595
- 'dock-right': _react_icons_all_files_lib.IconType;
20596
- 'dock-window': _react_icons_all_files_lib.IconType;
20597
- dollar: _react_icons_all_files_lib.IconType;
20598
- drive: _react_icons_all_files_lib.IconType;
20599
- 'drop-invert': _react_icons_all_files_lib.IconType;
20600
- 'drop-opacity': _react_icons_all_files_lib.IconType;
20601
- drop: _react_icons_all_files_lib.IconType;
20602
- duplicate: _react_icons_all_files_lib.IconType;
20603
- 'edit-black-point': _react_icons_all_files_lib.IconType;
20604
- 'edit-contrast': _react_icons_all_files_lib.IconType;
20605
- 'edit-exposure': _react_icons_all_files_lib.IconType;
20606
- 'edit-fade': _react_icons_all_files_lib.IconType;
20607
- 'edit-flip-h': _react_icons_all_files_lib.IconType;
20608
- 'edit-flip-v': _react_icons_all_files_lib.IconType;
20609
- 'edit-highlight': _react_icons_all_files_lib.IconType;
20610
- 'edit-markup': _react_icons_all_files_lib.IconType;
20611
- 'edit-mask': _react_icons_all_files_lib.IconType;
20612
- 'edit-noise': _react_icons_all_files_lib.IconType;
20613
- 'edit-shadows': _react_icons_all_files_lib.IconType;
20614
- 'edit-straight': _react_icons_all_files_lib.IconType;
20615
- 'edit-unmask': _react_icons_all_files_lib.IconType;
20616
- eject: _react_icons_all_files_lib.IconType;
20617
- enter: _react_icons_all_files_lib.IconType;
20618
- erase: _react_icons_all_files_lib.IconType;
20619
- ereader: _react_icons_all_files_lib.IconType;
20620
- ericsson: _react_icons_all_files_lib.IconType;
20621
- ethernet: _react_icons_all_files_lib.IconType;
20622
- euro: _react_icons_all_files_lib.IconType;
20623
- expand: _react_icons_all_files_lib.IconType;
20624
- export: _react_icons_all_files_lib.IconType;
20625
- 'extension-add': _react_icons_all_files_lib.IconType;
20626
- 'extension-alt': _react_icons_all_files_lib.IconType;
20627
- 'extension-remove': _react_icons_all_files_lib.IconType;
20628
- extension: _react_icons_all_files_lib.IconType;
20629
- external: _react_icons_all_files_lib.IconType;
20630
- 'eye-alt': _react_icons_all_files_lib.IconType;
20631
- eye: _react_icons_all_files_lib.IconType;
20632
- feed: _react_icons_all_files_lib.IconType;
20633
- 'file-add': _react_icons_all_files_lib.IconType;
20634
- 'file-document': _react_icons_all_files_lib.IconType;
20635
- 'file-remove': _react_icons_all_files_lib.IconType;
20636
- file: _react_icons_all_files_lib.IconType;
20637
- film: _react_icons_all_files_lib.IconType;
20638
- filters: _react_icons_all_files_lib.IconType;
20639
- 'flag-alt': _react_icons_all_files_lib.IconType;
20640
- flag: _react_icons_all_files_lib.IconType;
20641
- 'folder-add': _react_icons_all_files_lib.IconType;
20642
- 'folder-remove': _react_icons_all_files_lib.IconType;
20643
- folder: _react_icons_all_files_lib.IconType;
20644
- 'font-height': _react_icons_all_files_lib.IconType;
20645
- 'font-spacing': _react_icons_all_files_lib.IconType;
20646
- 'format-center': _react_icons_all_files_lib.IconType;
20647
- 'format-color': _react_icons_all_files_lib.IconType;
20648
- 'format-heading': _react_icons_all_files_lib.IconType;
20649
- 'format-indent-decrease': _react_icons_all_files_lib.IconType;
20650
- 'format-indent-increase': _react_icons_all_files_lib.IconType;
20651
- 'format-italic': _react_icons_all_files_lib.IconType;
20652
- 'format-justify': _react_icons_all_files_lib.IconType;
20653
- 'format-left': _react_icons_all_files_lib.IconType;
20654
- 'format-line-height': _react_icons_all_files_lib.IconType;
20655
- 'format-right': _react_icons_all_files_lib.IconType;
20656
- 'format-separator': _react_icons_all_files_lib.IconType;
20657
- 'format-slash': _react_icons_all_files_lib.IconType;
20658
- 'format-text': _react_icons_all_files_lib.IconType;
20659
- 'format-underline': _react_icons_all_files_lib.IconType;
20660
- 'format-uppercase': _react_icons_all_files_lib.IconType;
20661
- games: _react_icons_all_files_lib.IconType;
20662
- 'gender-female': _react_icons_all_files_lib.IconType;
20663
- 'gender-male': _react_icons_all_files_lib.IconType;
20664
- 'ghost-character': _react_icons_all_files_lib.IconType;
20665
- gift: _react_icons_all_files_lib.IconType;
20666
- girl: _react_icons_all_files_lib.IconType;
20667
- 'git-branch': _react_icons_all_files_lib.IconType;
20668
- 'git-commit': _react_icons_all_files_lib.IconType;
20669
- 'git-fork': _react_icons_all_files_lib.IconType;
20670
- 'git-pull': _react_icons_all_files_lib.IconType;
20671
- 'glass-alt': _react_icons_all_files_lib.IconType;
20672
- glass: _react_icons_all_files_lib.IconType;
20673
- 'globe-alt': _react_icons_all_files_lib.IconType;
20674
- globe: _react_icons_all_files_lib.IconType;
20675
- gym: _react_icons_all_files_lib.IconType;
20676
- hashtag: _react_icons_all_files_lib.IconType;
20677
- headset: _react_icons_all_files_lib.IconType;
20678
- heart: _react_icons_all_files_lib.IconType;
20679
- 'home-alt': _react_icons_all_files_lib.IconType;
20680
- 'home-screen': _react_icons_all_files_lib.IconType;
20681
- home: _react_icons_all_files_lib.IconType;
20682
- icecream: _react_icons_all_files_lib.IconType;
20683
- image: _react_icons_all_files_lib.IconType;
20684
- import: _react_icons_all_files_lib.IconType;
20685
- inbox: _react_icons_all_files_lib.IconType;
20686
- infinity: _react_icons_all_files_lib.IconType;
20687
- info: _react_icons_all_files_lib.IconType;
20688
- inpicture: _react_icons_all_files_lib.IconType;
20689
- 'insert-after-o': _react_icons_all_files_lib.IconType;
20690
- 'insert-after-r': _react_icons_all_files_lib.IconType;
20691
- 'insert-after': _react_icons_all_files_lib.IconType;
20692
- 'insert-before-o': _react_icons_all_files_lib.IconType;
20693
- 'insert-before-r': _react_icons_all_files_lib.IconType;
20694
- 'insert-before': _react_icons_all_files_lib.IconType;
20695
- insights: _react_icons_all_files_lib.IconType;
20696
- internal: _react_icons_all_files_lib.IconType;
20697
- key: _react_icons_all_files_lib.IconType;
20698
- keyboard: _react_icons_all_files_lib.IconType;
20699
- keyhole: _react_icons_all_files_lib.IconType;
20700
- laptop: _react_icons_all_files_lib.IconType;
20701
- 'layout-grid-small': _react_icons_all_files_lib.IconType;
20702
- 'layout-grid': _react_icons_all_files_lib.IconType;
20703
- 'layout-list': _react_icons_all_files_lib.IconType;
20704
- 'layout-pin': _react_icons_all_files_lib.IconType;
20705
- link: _react_icons_all_files_lib.IconType;
20706
- 'list-tree': _react_icons_all_files_lib.IconType;
20707
- list: _react_icons_all_files_lib.IconType;
20708
- 'live-photo': _react_icons_all_files_lib.IconType;
20709
- 'loadbar-alt': _react_icons_all_files_lib.IconType;
20710
- 'loadbar-doc': _react_icons_all_files_lib.IconType;
20711
- 'loadbar-sound': _react_icons_all_files_lib.IconType;
20712
- loadbar: _react_icons_all_files_lib.IconType;
20713
- 'lock-unlock': _react_icons_all_files_lib.IconType;
20714
- lock: _react_icons_all_files_lib.IconType;
20715
- 'log-in': _react_icons_all_files_lib.IconType;
20716
- 'log-off': _react_icons_all_files_lib.IconType;
20717
- 'log-out': _react_icons_all_files_lib.IconType;
20718
- loupe: _react_icons_all_files_lib.IconType;
20719
- magnet: _react_icons_all_files_lib.IconType;
20720
- 'mail-forward': _react_icons_all_files_lib.IconType;
20721
- 'mail-open': _react_icons_all_files_lib.IconType;
20722
- 'mail-reply': _react_icons_all_files_lib.IconType;
20723
- mail: _react_icons_all_files_lib.IconType;
20724
- 'math-divide': _react_icons_all_files_lib.IconType;
20725
- 'math-equal': _react_icons_all_files_lib.IconType;
20726
- 'math-minus': _react_icons_all_files_lib.IconType;
20727
- 'math-percent': _react_icons_all_files_lib.IconType;
20728
- 'math-plus': _react_icons_all_files_lib.IconType;
20729
- 'maximize-alt': _react_icons_all_files_lib.IconType;
20730
- maximize: _react_icons_all_files_lib.IconType;
20731
- 'media-live': _react_icons_all_files_lib.IconType;
20732
- 'media-podcast': _react_icons_all_files_lib.IconType;
20733
- 'menu-boxed': _react_icons_all_files_lib.IconType;
20734
- 'menu-cake': _react_icons_all_files_lib.IconType;
20735
- 'menu-cheese': _react_icons_all_files_lib.IconType;
20736
- 'menu-grid-o': _react_icons_all_files_lib.IconType;
20737
- 'menu-grid-r': _react_icons_all_files_lib.IconType;
20738
- 'menu-hotdog': _react_icons_all_files_lib.IconType;
20739
- 'menu-left-alt': _react_icons_all_files_lib.IconType;
20740
- 'menu-left': _react_icons_all_files_lib.IconType;
20741
- 'menu-motion': _react_icons_all_files_lib.IconType;
20742
- 'menu-oreos': _react_icons_all_files_lib.IconType;
20743
- 'menu-right-alt': _react_icons_all_files_lib.IconType;
20744
- 'menu-right': _react_icons_all_files_lib.IconType;
20745
- 'menu-round': _react_icons_all_files_lib.IconType;
20746
- menu: _react_icons_all_files_lib.IconType;
20747
- 'merge-horizontal': _react_icons_all_files_lib.IconType;
20748
- 'merge-vertical': _react_icons_all_files_lib.IconType;
20749
- mic: _react_icons_all_files_lib.IconType;
20750
- 'mini-player': _react_icons_all_files_lib.IconType;
20751
- 'minimize-alt': _react_icons_all_files_lib.IconType;
20752
- minimize: _react_icons_all_files_lib.IconType;
20753
- modem: _react_icons_all_files_lib.IconType;
20754
- moon: _react_icons_all_files_lib.IconType;
20755
- 'more-alt': _react_icons_all_files_lib.IconType;
20756
- 'more-o': _react_icons_all_files_lib.IconType;
20757
- 'more-r': _react_icons_all_files_lib.IconType;
20758
- 'more-vertical-alt': _react_icons_all_files_lib.IconType;
20759
- 'more-vertical-o': _react_icons_all_files_lib.IconType;
20760
- 'more-vertical-r': _react_icons_all_files_lib.IconType;
20761
- 'more-vertical': _react_icons_all_files_lib.IconType;
20762
- more: _react_icons_all_files_lib.IconType;
20763
- mouse: _react_icons_all_files_lib.IconType;
20764
- 'move-down': _react_icons_all_files_lib.IconType;
20765
- 'move-left': _react_icons_all_files_lib.IconType;
20766
- 'move-right': _react_icons_all_files_lib.IconType;
20767
- 'move-task': _react_icons_all_files_lib.IconType;
20768
- 'move-up': _react_icons_all_files_lib.IconType;
20769
- 'music-note': _react_icons_all_files_lib.IconType;
20770
- 'music-speaker': _react_icons_all_files_lib.IconType;
20771
- music: _react_icons_all_files_lib.IconType;
20772
- nametag: _react_icons_all_files_lib.IconType;
20773
- notes: _react_icons_all_files_lib.IconType;
20774
- notifications: _react_icons_all_files_lib.IconType;
20775
- options: _react_icons_all_files_lib.IconType;
20776
- organisation: _react_icons_all_files_lib.IconType;
20777
- password: _react_icons_all_files_lib.IconType;
20778
- 'path-back': _react_icons_all_files_lib.IconType;
20779
- 'path-crop': _react_icons_all_files_lib.IconType;
20780
- 'path-divide': _react_icons_all_files_lib.IconType;
20781
- 'path-exclude': _react_icons_all_files_lib.IconType;
20782
- 'path-front': _react_icons_all_files_lib.IconType;
20783
- 'path-intersect': _react_icons_all_files_lib.IconType;
20784
- 'path-outline': _react_icons_all_files_lib.IconType;
20785
- 'path-trim': _react_icons_all_files_lib.IconType;
20786
- 'path-unite': _react_icons_all_files_lib.IconType;
20787
- pen: _react_icons_all_files_lib.IconType;
20788
- 'pentagon-bottom-left': _react_icons_all_files_lib.IconType;
20789
- 'pentagon-bottom-right': _react_icons_all_files_lib.IconType;
20790
- 'pentagon-down': _react_icons_all_files_lib.IconType;
20791
- 'pentagon-left': _react_icons_all_files_lib.IconType;
20792
- 'pentagon-right': _react_icons_all_files_lib.IconType;
20793
- 'pentagon-top-left': _react_icons_all_files_lib.IconType;
20794
- 'pentagon-top-right': _react_icons_all_files_lib.IconType;
20795
- 'pentagon-up': _react_icons_all_files_lib.IconType;
20796
- performance: _react_icons_all_files_lib.IconType;
20797
- phone: _react_icons_all_files_lib.IconType;
20798
- photoscan: _react_icons_all_files_lib.IconType;
20799
- piano: _react_icons_all_files_lib.IconType;
20800
- pill: _react_icons_all_files_lib.IconType;
20801
- 'pin-alt': _react_icons_all_files_lib.IconType;
20802
- 'pin-bottom': _react_icons_all_files_lib.IconType;
20803
- 'pin-top': _react_icons_all_files_lib.IconType;
20804
- pin: _react_icons_all_files_lib.IconType;
20805
- 'play-backwards': _react_icons_all_files_lib.IconType;
20806
- 'play-button-o': _react_icons_all_files_lib.IconType;
20807
- 'play-button-r': _react_icons_all_files_lib.IconType;
20808
- 'play-button': _react_icons_all_files_lib.IconType;
20809
- 'play-forwards': _react_icons_all_files_lib.IconType;
20810
- 'play-list-add': _react_icons_all_files_lib.IconType;
20811
- 'play-list-check': _react_icons_all_files_lib.IconType;
20812
- 'play-list-remove': _react_icons_all_files_lib.IconType;
20813
- 'play-list-search': _react_icons_all_files_lib.IconType;
20814
- 'play-list': _react_icons_all_files_lib.IconType;
20815
- 'play-pause-o': _react_icons_all_files_lib.IconType;
20816
- 'play-pause-r': _react_icons_all_files_lib.IconType;
20817
- 'play-pause': _react_icons_all_files_lib.IconType;
20818
- 'play-stop-o': _react_icons_all_files_lib.IconType;
20819
- 'play-stop-r': _react_icons_all_files_lib.IconType;
20820
- 'play-stop': _react_icons_all_files_lib.IconType;
20821
- 'play-track-next-o': _react_icons_all_files_lib.IconType;
20822
- 'play-track-next-r': _react_icons_all_files_lib.IconType;
20823
- 'play-track-next': _react_icons_all_files_lib.IconType;
20824
- 'play-track-prev-o': _react_icons_all_files_lib.IconType;
20825
- 'play-track-prev-r': _react_icons_all_files_lib.IconType;
20826
- 'play-track-prev': _react_icons_all_files_lib.IconType;
20827
- plug: _react_icons_all_files_lib.IconType;
20828
- polaroid: _react_icons_all_files_lib.IconType;
20829
- poll: _react_icons_all_files_lib.IconType;
20830
- presentation: _react_icons_all_files_lib.IconType;
20831
- printer: _react_icons_all_files_lib.IconType;
20832
- profile: _react_icons_all_files_lib.IconType;
20833
- 'pull-clear': _react_icons_all_files_lib.IconType;
20834
- 'push-chevron-down-o': _react_icons_all_files_lib.IconType;
20835
- 'push-chevron-down-r': _react_icons_all_files_lib.IconType;
20836
- 'push-chevron-down': _react_icons_all_files_lib.IconType;
20837
- 'push-chevron-left-o': _react_icons_all_files_lib.IconType;
20838
- 'push-chevron-left-r': _react_icons_all_files_lib.IconType;
20839
- 'push-chevron-left': _react_icons_all_files_lib.IconType;
20840
- 'push-chevron-right-o': _react_icons_all_files_lib.IconType;
20841
- 'push-chevron-right-r': _react_icons_all_files_lib.IconType;
20842
- 'push-chevron-right': _react_icons_all_files_lib.IconType;
20843
- 'push-chevron-up-o': _react_icons_all_files_lib.IconType;
20844
- 'push-chevron-up-r': _react_icons_all_files_lib.IconType;
20845
- 'push-chevron-up': _react_icons_all_files_lib.IconType;
20846
- 'push-down': _react_icons_all_files_lib.IconType;
20847
- 'push-left': _react_icons_all_files_lib.IconType;
20848
- 'push-right': _react_icons_all_files_lib.IconType;
20849
- 'push-up': _react_icons_all_files_lib.IconType;
20850
- qr: _react_icons_all_files_lib.IconType;
20851
- 'quote-o': _react_icons_all_files_lib.IconType;
20852
- quote: _react_icons_all_files_lib.IconType;
20853
- 'radio-check': _react_icons_all_files_lib.IconType;
20854
- 'radio-checked': _react_icons_all_files_lib.IconType;
20855
- ratio: _react_icons_all_files_lib.IconType;
20856
- read: _react_icons_all_files_lib.IconType;
20857
- readme: _react_icons_all_files_lib.IconType;
20858
- record: _react_icons_all_files_lib.IconType;
20859
- redo: _react_icons_all_files_lib.IconType;
20860
- remote: _react_icons_all_files_lib.IconType;
20861
- 'remove-r': _react_icons_all_files_lib.IconType;
20862
- remove: _react_icons_all_files_lib.IconType;
20863
- rename: _react_icons_all_files_lib.IconType;
20864
- reorder: _react_icons_all_files_lib.IconType;
20865
- repeat: _react_icons_all_files_lib.IconType;
20866
- ring: _react_icons_all_files_lib.IconType;
20867
- 'row-first': _react_icons_all_files_lib.IconType;
20868
- 'row-last': _react_icons_all_files_lib.IconType;
20869
- ruler: _react_icons_all_files_lib.IconType;
20870
- 'sand-clock': _react_icons_all_files_lib.IconType;
20871
- scan: _react_icons_all_files_lib.IconType;
20872
- 'screen-mirror': _react_icons_all_files_lib.IconType;
20873
- 'screen-shot': _react_icons_all_files_lib.IconType;
20874
- 'screen-wide': _react_icons_all_files_lib.IconType;
20875
- screen: _react_icons_all_files_lib.IconType;
20876
- 'scroll-h': _react_icons_all_files_lib.IconType;
20877
- 'scroll-v': _react_icons_all_files_lib.IconType;
20878
- 'search-found': _react_icons_all_files_lib.IconType;
20879
- 'search-loading': _react_icons_all_files_lib.IconType;
20880
- search: _react_icons_all_files_lib.IconType;
20881
- 'select-o': _react_icons_all_files_lib.IconType;
20882
- 'select-r': _react_icons_all_files_lib.IconType;
20883
- select: _react_icons_all_files_lib.IconType;
20884
- server: _react_icons_all_files_lib.IconType;
20885
- 'shape-circle': _react_icons_all_files_lib.IconType;
20886
- 'shape-half-circle': _react_icons_all_files_lib.IconType;
20887
- 'shape-hexagon': _react_icons_all_files_lib.IconType;
20888
- 'shape-rhombus': _react_icons_all_files_lib.IconType;
20889
- 'shape-square': _react_icons_all_files_lib.IconType;
20890
- 'shape-triangle': _react_icons_all_files_lib.IconType;
20891
- 'shape-zigzag': _react_icons_all_files_lib.IconType;
20892
- share: _react_icons_all_files_lib.IconType;
20893
- shield: _react_icons_all_files_lib.IconType;
20894
- 'shopping-bag': _react_icons_all_files_lib.IconType;
20895
- 'shopping-cart': _react_icons_all_files_lib.IconType;
20896
- shortcut: _react_icons_all_files_lib.IconType;
20897
- 'sidebar-open': _react_icons_all_files_lib.IconType;
20898
- 'sidebar-right': _react_icons_all_files_lib.IconType;
20899
- sidebar: _react_icons_all_files_lib.IconType;
20900
- signal: _react_icons_all_files_lib.IconType;
20901
- size: _react_icons_all_files_lib.IconType;
20902
- sleep: _react_icons_all_files_lib.IconType;
20903
- 'smart-home-boiler': _react_icons_all_files_lib.IconType;
20904
- 'smart-home-cooker': _react_icons_all_files_lib.IconType;
20905
- 'smart-home-heat': _react_icons_all_files_lib.IconType;
20906
- 'smart-home-light': _react_icons_all_files_lib.IconType;
20907
- 'smart-home-refrigerator': _react_icons_all_files_lib.IconType;
20908
- 'smart-home-wash-machine': _react_icons_all_files_lib.IconType;
20909
- 'smartphone-chip': _react_icons_all_files_lib.IconType;
20910
- 'smartphone-ram': _react_icons_all_files_lib.IconType;
20911
- 'smartphone-shake': _react_icons_all_files_lib.IconType;
20912
- smartphone: _react_icons_all_files_lib.IconType;
20913
- 'smile-mouth-open': _react_icons_all_files_lib.IconType;
20914
- 'smile-neutral': _react_icons_all_files_lib.IconType;
20915
- 'smile-no-mouth': _react_icons_all_files_lib.IconType;
20916
- 'smile-none': _react_icons_all_files_lib.IconType;
20917
- 'smile-sad': _react_icons_all_files_lib.IconType;
20918
- 'smile-upside': _react_icons_all_files_lib.IconType;
20919
- smile: _react_icons_all_files_lib.IconType;
20920
- 'software-download': _react_icons_all_files_lib.IconType;
20921
- 'software-upload': _react_icons_all_files_lib.IconType;
20922
- 'sort-az': _react_icons_all_files_lib.IconType;
20923
- 'sort-za': _react_icons_all_files_lib.IconType;
20924
- 'space-between-v': _react_icons_all_files_lib.IconType;
20925
- 'space-between': _react_icons_all_files_lib.IconType;
20926
- 'spinner-alt': _react_icons_all_files_lib.IconType;
20927
- 'spinner-two-alt': _react_icons_all_files_lib.IconType;
20928
- 'spinner-two': _react_icons_all_files_lib.IconType;
20929
- spinner: _react_icons_all_files_lib.IconType;
20930
- stack: _react_icons_all_files_lib.IconType;
20931
- stopwatch: _react_icons_all_files_lib.IconType;
20932
- stories: _react_icons_all_files_lib.IconType;
20933
- style: _react_icons_all_files_lib.IconType;
20934
- sun: _react_icons_all_files_lib.IconType;
20935
- support: _react_icons_all_files_lib.IconType;
20936
- 'swap-vertical': _react_icons_all_files_lib.IconType;
20937
- swap: _react_icons_all_files_lib.IconType;
20938
- sweden: _react_icons_all_files_lib.IconType;
20939
- swiss: _react_icons_all_files_lib.IconType;
20940
- sync: _react_icons_all_files_lib.IconType;
20941
- tab: _react_icons_all_files_lib.IconType;
20942
- tag: _react_icons_all_files_lib.IconType;
20943
- 'tap-double': _react_icons_all_files_lib.IconType;
20944
- 'tap-single': _react_icons_all_files_lib.IconType;
20945
- template: _react_icons_all_files_lib.IconType;
20946
- tennis: _react_icons_all_files_lib.IconType;
20947
- terminal: _react_icons_all_files_lib.IconType;
20948
- terrain: _react_icons_all_files_lib.IconType;
20949
- thermometer: _react_icons_all_files_lib.IconType;
20950
- thermostat: _react_icons_all_files_lib.IconType;
20951
- tikcode: _react_icons_all_files_lib.IconType;
20952
- time: _react_icons_all_files_lib.IconType;
20953
- timelapse: _react_icons_all_files_lib.IconType;
20954
- timer: _react_icons_all_files_lib.IconType;
20955
- today: _react_icons_all_files_lib.IconType;
20956
- 'toggle-off': _react_icons_all_files_lib.IconType;
20957
- 'toggle-on': _react_icons_all_files_lib.IconType;
20958
- 'toggle-square-off': _react_icons_all_files_lib.IconType;
20959
- 'toggle-square': _react_icons_all_files_lib.IconType;
20960
- 'toolbar-bottom': _react_icons_all_files_lib.IconType;
20961
- 'toolbar-left': _react_icons_all_files_lib.IconType;
20962
- 'toolbar-right': _react_icons_all_files_lib.IconType;
20963
- 'toolbar-top': _react_icons_all_files_lib.IconType;
20964
- toolbox: _react_icons_all_files_lib.IconType;
20965
- touchpad: _react_icons_all_files_lib.IconType;
20966
- track: _react_icons_all_files_lib.IconType;
20967
- transcript: _react_icons_all_files_lib.IconType;
20968
- 'trash-empty': _react_icons_all_files_lib.IconType;
20969
- trash: _react_icons_all_files_lib.IconType;
20970
- tree: _react_icons_all_files_lib.IconType;
20971
- trees: _react_icons_all_files_lib.IconType;
20972
- 'trending-down': _react_icons_all_files_lib.IconType;
20973
- trending: _react_icons_all_files_lib.IconType;
20974
- trophy: _react_icons_all_files_lib.IconType;
20975
- tv: _react_icons_all_files_lib.IconType;
20976
- 'ui-kit': _react_icons_all_files_lib.IconType;
20977
- umbrella: _react_icons_all_files_lib.IconType;
20978
- unavailable: _react_icons_all_files_lib.IconType;
20979
- unblock: _react_icons_all_files_lib.IconType;
20980
- undo: _react_icons_all_files_lib.IconType;
20981
- unsplash: _react_icons_all_files_lib.IconType;
20982
- 'usb-c': _react_icons_all_files_lib.IconType;
20983
- usb: _react_icons_all_files_lib.IconType;
20984
- 'user-add': _react_icons_all_files_lib.IconType;
20985
- 'user-list': _react_icons_all_files_lib.IconType;
20986
- 'user-remove': _react_icons_all_files_lib.IconType;
20987
- user: _react_icons_all_files_lib.IconType;
20988
- 'view-cols': _react_icons_all_files_lib.IconType;
20989
- 'view-comfortable': _react_icons_all_files_lib.IconType;
20990
- 'view-day': _react_icons_all_files_lib.IconType;
20991
- 'view-grid': _react_icons_all_files_lib.IconType;
20992
- 'view-list': _react_icons_all_files_lib.IconType;
20993
- 'view-month': _react_icons_all_files_lib.IconType;
20994
- 'view-split': _react_icons_all_files_lib.IconType;
20995
- vinyl: _react_icons_all_files_lib.IconType;
20996
- 'voicemail-o': _react_icons_all_files_lib.IconType;
20997
- 'voicemail-r': _react_icons_all_files_lib.IconType;
20998
- voicemail: _react_icons_all_files_lib.IconType;
20999
- volume: _react_icons_all_files_lib.IconType;
21000
- webcam: _react_icons_all_files_lib.IconType;
21001
- website: _react_icons_all_files_lib.IconType;
21002
- 'work-alt': _react_icons_all_files_lib.IconType;
21003
- yinyang: _react_icons_all_files_lib.IconType;
21004
- 'zoom-in': _react_icons_all_files_lib.IconType;
21005
- 'zoom-out': _react_icons_all_files_lib.IconType;
20417
+ 'query-string': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20418
+ json: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20419
+ 'format-bold': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20420
+ 'format-code': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20421
+ 'format-strike': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20422
+ 'format-superscript': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20423
+ 'format-subscript': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20424
+ 'layout-list-numbered': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20425
+ 'clear-formatting': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20426
+ 'yes-no': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20427
+ 'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20428
+ 'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20429
+ 'magic-wand': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20430
+ 'list-view-short': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20431
+ 'list-view-long': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20432
+ 'filter-add': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20433
+ 'clipboard-copy': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20434
+ 'clipboard-paste': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20435
+ refresh: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20436
+ 'add-r': _react_icons_all_files.IconType;
20437
+ add: _react_icons_all_files.IconType;
20438
+ airplane: _react_icons_all_files.IconType;
20439
+ alarm: _react_icons_all_files.IconType;
20440
+ album: _react_icons_all_files.IconType;
20441
+ 'align-bottom': _react_icons_all_files.IconType;
20442
+ 'align-center': _react_icons_all_files.IconType;
20443
+ 'align-left': _react_icons_all_files.IconType;
20444
+ 'align-middle': _react_icons_all_files.IconType;
20445
+ 'align-right': _react_icons_all_files.IconType;
20446
+ 'align-top': _react_icons_all_files.IconType;
20447
+ anchor: _react_icons_all_files.IconType;
20448
+ 'apple-watch': _react_icons_all_files.IconType;
20449
+ 'arrange-back': _react_icons_all_files.IconType;
20450
+ 'arrange-front': _react_icons_all_files.IconType;
20451
+ 'arrow-align-h': _react_icons_all_files.IconType;
20452
+ 'arrow-align-v': _react_icons_all_files.IconType;
20453
+ 'arrow-bottom-left-o': _react_icons_all_files.IconType;
20454
+ 'arrow-bottom-left-r': _react_icons_all_files.IconType;
20455
+ 'arrow-bottom-left': _react_icons_all_files.IconType;
20456
+ 'arrow-bottom-right-o': _react_icons_all_files.IconType;
20457
+ 'arrow-bottom-right-r': _react_icons_all_files.IconType;
20458
+ 'arrow-bottom-right': _react_icons_all_files.IconType;
20459
+ 'arrow-down-o': _react_icons_all_files.IconType;
20460
+ 'arrow-down-r': _react_icons_all_files.IconType;
20461
+ 'arrow-down': _react_icons_all_files.IconType;
20462
+ 'arrow-left-o': _react_icons_all_files.IconType;
20463
+ 'arrow-left-r': _react_icons_all_files.IconType;
20464
+ 'arrow-left': _react_icons_all_files.IconType;
20465
+ 'arrow-long-down-c': _react_icons_all_files.IconType;
20466
+ 'arrow-long-down-e': _react_icons_all_files.IconType;
20467
+ 'arrow-long-down-l': _react_icons_all_files.IconType;
20468
+ 'arrow-long-down-r': _react_icons_all_files.IconType;
20469
+ 'arrow-long-down': _react_icons_all_files.IconType;
20470
+ 'arrow-long-left-c': _react_icons_all_files.IconType;
20471
+ 'arrow-long-left-e': _react_icons_all_files.IconType;
20472
+ 'arrow-long-left-l': _react_icons_all_files.IconType;
20473
+ 'arrow-long-left-r': _react_icons_all_files.IconType;
20474
+ 'arrow-long-left': _react_icons_all_files.IconType;
20475
+ 'arrow-long-right-c': _react_icons_all_files.IconType;
20476
+ 'arrow-long-right-e': _react_icons_all_files.IconType;
20477
+ 'arrow-long-right-l': _react_icons_all_files.IconType;
20478
+ 'arrow-long-right-r': _react_icons_all_files.IconType;
20479
+ 'arrow-long-right': _react_icons_all_files.IconType;
20480
+ 'arrow-long-up-c': _react_icons_all_files.IconType;
20481
+ 'arrow-long-up-e': _react_icons_all_files.IconType;
20482
+ 'arrow-long-up-l': _react_icons_all_files.IconType;
20483
+ 'arrow-long-up-r': _react_icons_all_files.IconType;
20484
+ 'arrow-long-up': _react_icons_all_files.IconType;
20485
+ 'arrow-right-o': _react_icons_all_files.IconType;
20486
+ 'arrow-right-r': _react_icons_all_files.IconType;
20487
+ 'arrow-right': _react_icons_all_files.IconType;
20488
+ 'arrow-top-left-o': _react_icons_all_files.IconType;
20489
+ 'arrow-top-left-r': _react_icons_all_files.IconType;
20490
+ 'arrow-top-left': _react_icons_all_files.IconType;
20491
+ 'arrow-top-right-o': _react_icons_all_files.IconType;
20492
+ 'arrow-top-right-r': _react_icons_all_files.IconType;
20493
+ 'arrow-top-right': _react_icons_all_files.IconType;
20494
+ 'arrow-up-o': _react_icons_all_files.IconType;
20495
+ 'arrow-up-r': _react_icons_all_files.IconType;
20496
+ 'arrow-up': _react_icons_all_files.IconType;
20497
+ 'arrows-breake-h': _react_icons_all_files.IconType;
20498
+ 'arrows-breake-v': _react_icons_all_files.IconType;
20499
+ 'arrows-exchange-alt-v': _react_icons_all_files.IconType;
20500
+ 'arrows-exchange-alt': _react_icons_all_files.IconType;
20501
+ 'arrows-exchange-v': _react_icons_all_files.IconType;
20502
+ 'arrows-exchange': _react_icons_all_files.IconType;
20503
+ 'arrows-expand-down-left': _react_icons_all_files.IconType;
20504
+ 'arrows-expand-down-right': _react_icons_all_files.IconType;
20505
+ 'arrows-expand-left-alt': _react_icons_all_files.IconType;
20506
+ 'arrows-expand-left': _react_icons_all_files.IconType;
20507
+ 'arrows-expand-right-alt': _react_icons_all_files.IconType;
20508
+ 'arrows-expand-right': _react_icons_all_files.IconType;
20509
+ 'arrows-expand-up-left': _react_icons_all_files.IconType;
20510
+ 'arrows-expand-up-right': _react_icons_all_files.IconType;
20511
+ 'arrows-h-alt': _react_icons_all_files.IconType;
20512
+ 'arrows-h': _react_icons_all_files.IconType;
20513
+ 'arrows-merge-alt-h': _react_icons_all_files.IconType;
20514
+ 'arrows-merge-alt-v': _react_icons_all_files.IconType;
20515
+ 'arrows-scroll-h': _react_icons_all_files.IconType;
20516
+ 'arrows-scroll-v': _react_icons_all_files.IconType;
20517
+ 'arrows-shrink-h': _react_icons_all_files.IconType;
20518
+ 'arrows-shrink-v': _react_icons_all_files.IconType;
20519
+ 'arrows-v-alt': _react_icons_all_files.IconType;
20520
+ 'arrows-v': _react_icons_all_files.IconType;
20521
+ assign: _react_icons_all_files.IconType;
20522
+ asterisk: _react_icons_all_files.IconType;
20523
+ attachment: _react_icons_all_files.IconType;
20524
+ attribution: _react_icons_all_files.IconType;
20525
+ awards: _react_icons_all_files.IconType;
20526
+ backspace: _react_icons_all_files.IconType;
20527
+ 'band-aid': _react_icons_all_files.IconType;
20528
+ 'battery-empty': _react_icons_all_files.IconType;
20529
+ 'battery-full': _react_icons_all_files.IconType;
20530
+ battery: _react_icons_all_files.IconType;
20531
+ bee: _react_icons_all_files.IconType;
20532
+ bell: _react_icons_all_files.IconType;
20533
+ bitbucket: _react_icons_all_files.IconType;
20534
+ block: _react_icons_all_files.IconType;
20535
+ board: _react_icons_all_files.IconType;
20536
+ bolt: _react_icons_all_files.IconType;
20537
+ bookmark: _react_icons_all_files.IconType;
20538
+ 'border-all': _react_icons_all_files.IconType;
20539
+ 'border-bottom': _react_icons_all_files.IconType;
20540
+ 'border-left': _react_icons_all_files.IconType;
20541
+ 'border-right': _react_icons_all_files.IconType;
20542
+ 'border-style-dashed': _react_icons_all_files.IconType;
20543
+ 'border-style-dotted': _react_icons_all_files.IconType;
20544
+ 'border-style-solid': _react_icons_all_files.IconType;
20545
+ bot: _react_icons_all_files.IconType;
20546
+ bowl: _react_icons_all_files.IconType;
20547
+ box: _react_icons_all_files.IconType;
20548
+ boy: _react_icons_all_files.IconType;
20549
+ briefcase: _react_icons_all_files.IconType;
20550
+ browse: _react_icons_all_files.IconType;
20551
+ browser: _react_icons_all_files.IconType;
20552
+ brush: _react_icons_all_files.IconType;
20553
+ bulb: _react_icons_all_files.IconType;
20554
+ 'c-plus-plus': _react_icons_all_files.IconType;
20555
+ calculator: _react_icons_all_files.IconType;
20556
+ 'calendar-dates': _react_icons_all_files.IconType;
20557
+ 'calendar-due': _react_icons_all_files.IconType;
20558
+ 'calendar-next': _react_icons_all_files.IconType;
20559
+ 'calendar-today': _react_icons_all_files.IconType;
20560
+ 'calendar-two': _react_icons_all_files.IconType;
20561
+ calendar: _react_icons_all_files.IconType;
20562
+ calibrate: _react_icons_all_files.IconType;
20563
+ camera: _react_icons_all_files.IconType;
20564
+ cap: _react_icons_all_files.IconType;
20565
+ captions: _react_icons_all_files.IconType;
20566
+ 'card-clubs': _react_icons_all_files.IconType;
20567
+ 'card-diamonds': _react_icons_all_files.IconType;
20568
+ 'card-hearts': _react_icons_all_files.IconType;
20569
+ 'card-spades': _react_icons_all_files.IconType;
20570
+ carousel: _react_icons_all_files.IconType;
20571
+ cast: _react_icons_all_files.IconType;
20572
+ chart: _react_icons_all_files.IconType;
20573
+ 'check-o': _react_icons_all_files.IconType;
20574
+ 'check-r': _react_icons_all_files.IconType;
20575
+ check: _react_icons_all_files.IconType;
20576
+ 'chevron-double-down-o': _react_icons_all_files.IconType;
20577
+ 'chevron-double-down-r': _react_icons_all_files.IconType;
20578
+ 'chevron-double-down': _react_icons_all_files.IconType;
20579
+ 'chevron-double-left-o': _react_icons_all_files.IconType;
20580
+ 'chevron-double-left-r': _react_icons_all_files.IconType;
20581
+ 'chevron-double-left': _react_icons_all_files.IconType;
20582
+ 'chevron-double-right-o': _react_icons_all_files.IconType;
20583
+ 'chevron-double-right-r': _react_icons_all_files.IconType;
20584
+ 'chevron-double-right': _react_icons_all_files.IconType;
20585
+ 'chevron-double-up-o': _react_icons_all_files.IconType;
20586
+ 'chevron-double-up-r': _react_icons_all_files.IconType;
20587
+ 'chevron-double-up': _react_icons_all_files.IconType;
20588
+ 'chevron-down-o': _react_icons_all_files.IconType;
20589
+ 'chevron-down-r': _react_icons_all_files.IconType;
20590
+ 'chevron-down': _react_icons_all_files.IconType;
20591
+ 'chevron-left-o': _react_icons_all_files.IconType;
20592
+ 'chevron-left-r': _react_icons_all_files.IconType;
20593
+ 'chevron-left': _react_icons_all_files.IconType;
20594
+ 'chevron-right-o': _react_icons_all_files.IconType;
20595
+ 'chevron-right-r': _react_icons_all_files.IconType;
20596
+ 'chevron-right': _react_icons_all_files.IconType;
20597
+ 'chevron-up-o': _react_icons_all_files.IconType;
20598
+ 'chevron-up-r': _react_icons_all_files.IconType;
20599
+ 'chevron-up': _react_icons_all_files.IconType;
20600
+ 'clapper-board': _react_icons_all_files.IconType;
20601
+ clipboard: _react_icons_all_files.IconType;
20602
+ 'close-o': _react_icons_all_files.IconType;
20603
+ 'close-r': _react_icons_all_files.IconType;
20604
+ close: _react_icons_all_files.IconType;
20605
+ cloud: _react_icons_all_files.IconType;
20606
+ 'code-slash': _react_icons_all_files.IconType;
20607
+ code: _react_icons_all_files.IconType;
20608
+ coffee: _react_icons_all_files.IconType;
20609
+ collage: _react_icons_all_files.IconType;
20610
+ 'color-bucket': _react_icons_all_files.IconType;
20611
+ 'color-picker': _react_icons_all_files.IconType;
20612
+ comment: _react_icons_all_files.IconType;
20613
+ community: _react_icons_all_files.IconType;
20614
+ components: _react_icons_all_files.IconType;
20615
+ 'compress-left': _react_icons_all_files.IconType;
20616
+ 'compress-right': _react_icons_all_files.IconType;
20617
+ 'compress-v': _react_icons_all_files.IconType;
20618
+ compress: _react_icons_all_files.IconType;
20619
+ controller: _react_icons_all_files.IconType;
20620
+ copy: _react_icons_all_files.IconType;
20621
+ 'copy-all': _react_icons_all_files.IconType;
20622
+ copyright: _react_icons_all_files.IconType;
20623
+ 'corner-double-down-left': _react_icons_all_files.IconType;
20624
+ 'corner-double-down-right': _react_icons_all_files.IconType;
20625
+ 'corner-double-left-down': _react_icons_all_files.IconType;
20626
+ 'corner-double-left-up': _react_icons_all_files.IconType;
20627
+ 'corner-double-right-down': _react_icons_all_files.IconType;
20628
+ 'corner-double-right-up': _react_icons_all_files.IconType;
20629
+ 'corner-double-up-left': _react_icons_all_files.IconType;
20630
+ 'corner-double-up-right': _react_icons_all_files.IconType;
20631
+ 'corner-down-left': _react_icons_all_files.IconType;
20632
+ 'corner-down-right': _react_icons_all_files.IconType;
20633
+ 'corner-left-down': _react_icons_all_files.IconType;
20634
+ 'corner-left-up': _react_icons_all_files.IconType;
20635
+ 'corner-right-down': _react_icons_all_files.IconType;
20636
+ 'corner-right-up': _react_icons_all_files.IconType;
20637
+ 'corner-up-left': _react_icons_all_files.IconType;
20638
+ 'corner-up-right': _react_icons_all_files.IconType;
20639
+ 'credit-card': _react_icons_all_files.IconType;
20640
+ crop: _react_icons_all_files.IconType;
20641
+ cross: _react_icons_all_files.IconType;
20642
+ crown: _react_icons_all_files.IconType;
20643
+ danger: _react_icons_all_files.IconType;
20644
+ 'dark-mode': _react_icons_all_files.IconType;
20645
+ data: _react_icons_all_files.IconType;
20646
+ database: _react_icons_all_files.IconType;
20647
+ debug: _react_icons_all_files.IconType;
20648
+ desktop: _react_icons_all_files.IconType;
20649
+ 'details-less': _react_icons_all_files.IconType;
20650
+ 'details-more': _react_icons_all_files.IconType;
20651
+ dialpad: _react_icons_all_files.IconType;
20652
+ 'dice-1': _react_icons_all_files.IconType;
20653
+ 'dice-2': _react_icons_all_files.IconType;
20654
+ 'dice-3': _react_icons_all_files.IconType;
20655
+ 'dice-4': _react_icons_all_files.IconType;
20656
+ 'dice-5': _react_icons_all_files.IconType;
20657
+ 'dice-6': _react_icons_all_files.IconType;
20658
+ disc: _react_icons_all_files.IconType;
20659
+ 'display-flex': _react_icons_all_files.IconType;
20660
+ 'display-fullwidth': _react_icons_all_files.IconType;
20661
+ 'display-grid': _react_icons_all_files.IconType;
20662
+ 'display-spacing': _react_icons_all_files.IconType;
20663
+ 'distribute-horizontal': _react_icons_all_files.IconType;
20664
+ 'distribute-vertical': _react_icons_all_files.IconType;
20665
+ 'dock-bottom': _react_icons_all_files.IconType;
20666
+ 'dock-left': _react_icons_all_files.IconType;
20667
+ 'dock-right': _react_icons_all_files.IconType;
20668
+ 'dock-window': _react_icons_all_files.IconType;
20669
+ dollar: _react_icons_all_files.IconType;
20670
+ drive: _react_icons_all_files.IconType;
20671
+ 'drop-invert': _react_icons_all_files.IconType;
20672
+ 'drop-opacity': _react_icons_all_files.IconType;
20673
+ drop: _react_icons_all_files.IconType;
20674
+ duplicate: _react_icons_all_files.IconType;
20675
+ 'edit-black-point': _react_icons_all_files.IconType;
20676
+ 'edit-contrast': _react_icons_all_files.IconType;
20677
+ 'edit-exposure': _react_icons_all_files.IconType;
20678
+ 'edit-fade': _react_icons_all_files.IconType;
20679
+ 'edit-flip-h': _react_icons_all_files.IconType;
20680
+ 'edit-flip-v': _react_icons_all_files.IconType;
20681
+ 'edit-highlight': _react_icons_all_files.IconType;
20682
+ 'edit-markup': _react_icons_all_files.IconType;
20683
+ 'edit-mask': _react_icons_all_files.IconType;
20684
+ 'edit-noise': _react_icons_all_files.IconType;
20685
+ 'edit-shadows': _react_icons_all_files.IconType;
20686
+ 'edit-straight': _react_icons_all_files.IconType;
20687
+ 'edit-unmask': _react_icons_all_files.IconType;
20688
+ eject: _react_icons_all_files.IconType;
20689
+ enter: _react_icons_all_files.IconType;
20690
+ erase: _react_icons_all_files.IconType;
20691
+ ereader: _react_icons_all_files.IconType;
20692
+ ericsson: _react_icons_all_files.IconType;
20693
+ ethernet: _react_icons_all_files.IconType;
20694
+ euro: _react_icons_all_files.IconType;
20695
+ expand: _react_icons_all_files.IconType;
20696
+ export: _react_icons_all_files.IconType;
20697
+ 'extension-add': _react_icons_all_files.IconType;
20698
+ 'extension-alt': _react_icons_all_files.IconType;
20699
+ 'extension-remove': _react_icons_all_files.IconType;
20700
+ extension: _react_icons_all_files.IconType;
20701
+ external: _react_icons_all_files.IconType;
20702
+ 'eye-alt': _react_icons_all_files.IconType;
20703
+ eye: _react_icons_all_files.IconType;
20704
+ feed: _react_icons_all_files.IconType;
20705
+ 'file-add': _react_icons_all_files.IconType;
20706
+ 'file-document': _react_icons_all_files.IconType;
20707
+ 'file-remove': _react_icons_all_files.IconType;
20708
+ file: _react_icons_all_files.IconType;
20709
+ film: _react_icons_all_files.IconType;
20710
+ filters: _react_icons_all_files.IconType;
20711
+ 'flag-alt': _react_icons_all_files.IconType;
20712
+ flag: _react_icons_all_files.IconType;
20713
+ 'folder-add': _react_icons_all_files.IconType;
20714
+ 'folder-remove': _react_icons_all_files.IconType;
20715
+ folder: _react_icons_all_files.IconType;
20716
+ 'font-height': _react_icons_all_files.IconType;
20717
+ 'font-spacing': _react_icons_all_files.IconType;
20718
+ 'format-center': _react_icons_all_files.IconType;
20719
+ 'format-color': _react_icons_all_files.IconType;
20720
+ 'format-heading': _react_icons_all_files.IconType;
20721
+ 'format-indent-decrease': _react_icons_all_files.IconType;
20722
+ 'format-indent-increase': _react_icons_all_files.IconType;
20723
+ 'format-italic': _react_icons_all_files.IconType;
20724
+ 'format-justify': _react_icons_all_files.IconType;
20725
+ 'format-left': _react_icons_all_files.IconType;
20726
+ 'format-line-height': _react_icons_all_files.IconType;
20727
+ 'format-right': _react_icons_all_files.IconType;
20728
+ 'format-separator': _react_icons_all_files.IconType;
20729
+ 'format-slash': _react_icons_all_files.IconType;
20730
+ 'format-text': _react_icons_all_files.IconType;
20731
+ 'format-underline': _react_icons_all_files.IconType;
20732
+ 'format-uppercase': _react_icons_all_files.IconType;
20733
+ games: _react_icons_all_files.IconType;
20734
+ 'gender-female': _react_icons_all_files.IconType;
20735
+ 'gender-male': _react_icons_all_files.IconType;
20736
+ 'ghost-character': _react_icons_all_files.IconType;
20737
+ gift: _react_icons_all_files.IconType;
20738
+ girl: _react_icons_all_files.IconType;
20739
+ 'git-branch': _react_icons_all_files.IconType;
20740
+ 'git-commit': _react_icons_all_files.IconType;
20741
+ 'git-fork': _react_icons_all_files.IconType;
20742
+ 'git-pull': _react_icons_all_files.IconType;
20743
+ 'glass-alt': _react_icons_all_files.IconType;
20744
+ glass: _react_icons_all_files.IconType;
20745
+ 'globe-alt': _react_icons_all_files.IconType;
20746
+ globe: _react_icons_all_files.IconType;
20747
+ gym: _react_icons_all_files.IconType;
20748
+ hashtag: _react_icons_all_files.IconType;
20749
+ headset: _react_icons_all_files.IconType;
20750
+ heart: _react_icons_all_files.IconType;
20751
+ 'home-alt': _react_icons_all_files.IconType;
20752
+ 'home-screen': _react_icons_all_files.IconType;
20753
+ home: _react_icons_all_files.IconType;
20754
+ icecream: _react_icons_all_files.IconType;
20755
+ image: _react_icons_all_files.IconType;
20756
+ import: _react_icons_all_files.IconType;
20757
+ inbox: _react_icons_all_files.IconType;
20758
+ infinity: _react_icons_all_files.IconType;
20759
+ info: _react_icons_all_files.IconType;
20760
+ inpicture: _react_icons_all_files.IconType;
20761
+ 'insert-after-o': _react_icons_all_files.IconType;
20762
+ 'insert-after-r': _react_icons_all_files.IconType;
20763
+ 'insert-after': _react_icons_all_files.IconType;
20764
+ 'insert-before-o': _react_icons_all_files.IconType;
20765
+ 'insert-before-r': _react_icons_all_files.IconType;
20766
+ 'insert-before': _react_icons_all_files.IconType;
20767
+ insights: _react_icons_all_files.IconType;
20768
+ internal: _react_icons_all_files.IconType;
20769
+ key: _react_icons_all_files.IconType;
20770
+ keyboard: _react_icons_all_files.IconType;
20771
+ keyhole: _react_icons_all_files.IconType;
20772
+ laptop: _react_icons_all_files.IconType;
20773
+ 'layout-grid-small': _react_icons_all_files.IconType;
20774
+ 'layout-grid': _react_icons_all_files.IconType;
20775
+ 'layout-list': _react_icons_all_files.IconType;
20776
+ 'layout-pin': _react_icons_all_files.IconType;
20777
+ link: _react_icons_all_files.IconType;
20778
+ 'list-tree': _react_icons_all_files.IconType;
20779
+ list: _react_icons_all_files.IconType;
20780
+ 'live-photo': _react_icons_all_files.IconType;
20781
+ 'loadbar-alt': _react_icons_all_files.IconType;
20782
+ 'loadbar-doc': _react_icons_all_files.IconType;
20783
+ 'loadbar-sound': _react_icons_all_files.IconType;
20784
+ loadbar: _react_icons_all_files.IconType;
20785
+ 'lock-unlock': _react_icons_all_files.IconType;
20786
+ lock: _react_icons_all_files.IconType;
20787
+ 'log-in': _react_icons_all_files.IconType;
20788
+ 'log-off': _react_icons_all_files.IconType;
20789
+ 'log-out': _react_icons_all_files.IconType;
20790
+ loupe: _react_icons_all_files.IconType;
20791
+ magnet: _react_icons_all_files.IconType;
20792
+ 'mail-forward': _react_icons_all_files.IconType;
20793
+ 'mail-open': _react_icons_all_files.IconType;
20794
+ 'mail-reply': _react_icons_all_files.IconType;
20795
+ mail: _react_icons_all_files.IconType;
20796
+ 'math-divide': _react_icons_all_files.IconType;
20797
+ 'math-equal': _react_icons_all_files.IconType;
20798
+ 'math-minus': _react_icons_all_files.IconType;
20799
+ 'math-percent': _react_icons_all_files.IconType;
20800
+ 'math-plus': _react_icons_all_files.IconType;
20801
+ 'maximize-alt': _react_icons_all_files.IconType;
20802
+ maximize: _react_icons_all_files.IconType;
20803
+ 'media-live': _react_icons_all_files.IconType;
20804
+ 'media-podcast': _react_icons_all_files.IconType;
20805
+ 'menu-boxed': _react_icons_all_files.IconType;
20806
+ 'menu-cake': _react_icons_all_files.IconType;
20807
+ 'menu-cheese': _react_icons_all_files.IconType;
20808
+ 'menu-grid-o': _react_icons_all_files.IconType;
20809
+ 'menu-grid-r': _react_icons_all_files.IconType;
20810
+ 'menu-hotdog': _react_icons_all_files.IconType;
20811
+ 'menu-left-alt': _react_icons_all_files.IconType;
20812
+ 'menu-left': _react_icons_all_files.IconType;
20813
+ 'menu-motion': _react_icons_all_files.IconType;
20814
+ 'menu-oreos': _react_icons_all_files.IconType;
20815
+ 'menu-right-alt': _react_icons_all_files.IconType;
20816
+ 'menu-right': _react_icons_all_files.IconType;
20817
+ 'menu-round': _react_icons_all_files.IconType;
20818
+ menu: _react_icons_all_files.IconType;
20819
+ 'merge-horizontal': _react_icons_all_files.IconType;
20820
+ 'merge-vertical': _react_icons_all_files.IconType;
20821
+ mic: _react_icons_all_files.IconType;
20822
+ 'mini-player': _react_icons_all_files.IconType;
20823
+ 'minimize-alt': _react_icons_all_files.IconType;
20824
+ minimize: _react_icons_all_files.IconType;
20825
+ modem: _react_icons_all_files.IconType;
20826
+ moon: _react_icons_all_files.IconType;
20827
+ 'more-alt': _react_icons_all_files.IconType;
20828
+ 'more-o': _react_icons_all_files.IconType;
20829
+ 'more-r': _react_icons_all_files.IconType;
20830
+ 'more-vertical-alt': _react_icons_all_files.IconType;
20831
+ 'more-vertical-o': _react_icons_all_files.IconType;
20832
+ 'more-vertical-r': _react_icons_all_files.IconType;
20833
+ 'more-vertical': _react_icons_all_files.IconType;
20834
+ more: _react_icons_all_files.IconType;
20835
+ mouse: _react_icons_all_files.IconType;
20836
+ 'move-down': _react_icons_all_files.IconType;
20837
+ 'move-left': _react_icons_all_files.IconType;
20838
+ 'move-right': _react_icons_all_files.IconType;
20839
+ 'move-task': _react_icons_all_files.IconType;
20840
+ 'move-up': _react_icons_all_files.IconType;
20841
+ 'music-note': _react_icons_all_files.IconType;
20842
+ 'music-speaker': _react_icons_all_files.IconType;
20843
+ music: _react_icons_all_files.IconType;
20844
+ nametag: _react_icons_all_files.IconType;
20845
+ notes: _react_icons_all_files.IconType;
20846
+ notifications: _react_icons_all_files.IconType;
20847
+ options: _react_icons_all_files.IconType;
20848
+ organisation: _react_icons_all_files.IconType;
20849
+ password: _react_icons_all_files.IconType;
20850
+ 'path-back': _react_icons_all_files.IconType;
20851
+ 'path-crop': _react_icons_all_files.IconType;
20852
+ 'path-divide': _react_icons_all_files.IconType;
20853
+ 'path-exclude': _react_icons_all_files.IconType;
20854
+ 'path-front': _react_icons_all_files.IconType;
20855
+ 'path-intersect': _react_icons_all_files.IconType;
20856
+ 'path-outline': _react_icons_all_files.IconType;
20857
+ 'path-trim': _react_icons_all_files.IconType;
20858
+ 'path-unite': _react_icons_all_files.IconType;
20859
+ pen: _react_icons_all_files.IconType;
20860
+ 'pentagon-bottom-left': _react_icons_all_files.IconType;
20861
+ 'pentagon-bottom-right': _react_icons_all_files.IconType;
20862
+ 'pentagon-down': _react_icons_all_files.IconType;
20863
+ 'pentagon-left': _react_icons_all_files.IconType;
20864
+ 'pentagon-right': _react_icons_all_files.IconType;
20865
+ 'pentagon-top-left': _react_icons_all_files.IconType;
20866
+ 'pentagon-top-right': _react_icons_all_files.IconType;
20867
+ 'pentagon-up': _react_icons_all_files.IconType;
20868
+ performance: _react_icons_all_files.IconType;
20869
+ phone: _react_icons_all_files.IconType;
20870
+ photoscan: _react_icons_all_files.IconType;
20871
+ piano: _react_icons_all_files.IconType;
20872
+ pill: _react_icons_all_files.IconType;
20873
+ 'pin-alt': _react_icons_all_files.IconType;
20874
+ 'pin-bottom': _react_icons_all_files.IconType;
20875
+ 'pin-top': _react_icons_all_files.IconType;
20876
+ pin: _react_icons_all_files.IconType;
20877
+ 'play-backwards': _react_icons_all_files.IconType;
20878
+ 'play-button-o': _react_icons_all_files.IconType;
20879
+ 'play-button-r': _react_icons_all_files.IconType;
20880
+ 'play-button': _react_icons_all_files.IconType;
20881
+ 'play-forwards': _react_icons_all_files.IconType;
20882
+ 'play-list-add': _react_icons_all_files.IconType;
20883
+ 'play-list-check': _react_icons_all_files.IconType;
20884
+ 'play-list-remove': _react_icons_all_files.IconType;
20885
+ 'play-list-search': _react_icons_all_files.IconType;
20886
+ 'play-list': _react_icons_all_files.IconType;
20887
+ 'play-pause-o': _react_icons_all_files.IconType;
20888
+ 'play-pause-r': _react_icons_all_files.IconType;
20889
+ 'play-pause': _react_icons_all_files.IconType;
20890
+ 'play-stop-o': _react_icons_all_files.IconType;
20891
+ 'play-stop-r': _react_icons_all_files.IconType;
20892
+ 'play-stop': _react_icons_all_files.IconType;
20893
+ 'play-track-next-o': _react_icons_all_files.IconType;
20894
+ 'play-track-next-r': _react_icons_all_files.IconType;
20895
+ 'play-track-next': _react_icons_all_files.IconType;
20896
+ 'play-track-prev-o': _react_icons_all_files.IconType;
20897
+ 'play-track-prev-r': _react_icons_all_files.IconType;
20898
+ 'play-track-prev': _react_icons_all_files.IconType;
20899
+ plug: _react_icons_all_files.IconType;
20900
+ polaroid: _react_icons_all_files.IconType;
20901
+ poll: _react_icons_all_files.IconType;
20902
+ presentation: _react_icons_all_files.IconType;
20903
+ printer: _react_icons_all_files.IconType;
20904
+ profile: _react_icons_all_files.IconType;
20905
+ 'pull-clear': _react_icons_all_files.IconType;
20906
+ 'push-chevron-down-o': _react_icons_all_files.IconType;
20907
+ 'push-chevron-down-r': _react_icons_all_files.IconType;
20908
+ 'push-chevron-down': _react_icons_all_files.IconType;
20909
+ 'push-chevron-left-o': _react_icons_all_files.IconType;
20910
+ 'push-chevron-left-r': _react_icons_all_files.IconType;
20911
+ 'push-chevron-left': _react_icons_all_files.IconType;
20912
+ 'push-chevron-right-o': _react_icons_all_files.IconType;
20913
+ 'push-chevron-right-r': _react_icons_all_files.IconType;
20914
+ 'push-chevron-right': _react_icons_all_files.IconType;
20915
+ 'push-chevron-up-o': _react_icons_all_files.IconType;
20916
+ 'push-chevron-up-r': _react_icons_all_files.IconType;
20917
+ 'push-chevron-up': _react_icons_all_files.IconType;
20918
+ 'push-down': _react_icons_all_files.IconType;
20919
+ 'push-left': _react_icons_all_files.IconType;
20920
+ 'push-right': _react_icons_all_files.IconType;
20921
+ 'push-up': _react_icons_all_files.IconType;
20922
+ qr: _react_icons_all_files.IconType;
20923
+ 'quote-o': _react_icons_all_files.IconType;
20924
+ quote: _react_icons_all_files.IconType;
20925
+ 'radio-check': _react_icons_all_files.IconType;
20926
+ 'radio-checked': _react_icons_all_files.IconType;
20927
+ ratio: _react_icons_all_files.IconType;
20928
+ read: _react_icons_all_files.IconType;
20929
+ readme: _react_icons_all_files.IconType;
20930
+ record: _react_icons_all_files.IconType;
20931
+ redo: _react_icons_all_files.IconType;
20932
+ remote: _react_icons_all_files.IconType;
20933
+ 'remove-r': _react_icons_all_files.IconType;
20934
+ remove: _react_icons_all_files.IconType;
20935
+ rename: _react_icons_all_files.IconType;
20936
+ reorder: _react_icons_all_files.IconType;
20937
+ repeat: _react_icons_all_files.IconType;
20938
+ ring: _react_icons_all_files.IconType;
20939
+ 'row-first': _react_icons_all_files.IconType;
20940
+ 'row-last': _react_icons_all_files.IconType;
20941
+ ruler: _react_icons_all_files.IconType;
20942
+ 'sand-clock': _react_icons_all_files.IconType;
20943
+ scan: _react_icons_all_files.IconType;
20944
+ 'screen-mirror': _react_icons_all_files.IconType;
20945
+ 'screen-shot': _react_icons_all_files.IconType;
20946
+ 'screen-wide': _react_icons_all_files.IconType;
20947
+ screen: _react_icons_all_files.IconType;
20948
+ 'scroll-h': _react_icons_all_files.IconType;
20949
+ 'scroll-v': _react_icons_all_files.IconType;
20950
+ 'search-found': _react_icons_all_files.IconType;
20951
+ 'search-loading': _react_icons_all_files.IconType;
20952
+ search: _react_icons_all_files.IconType;
20953
+ 'select-o': _react_icons_all_files.IconType;
20954
+ 'select-r': _react_icons_all_files.IconType;
20955
+ select: _react_icons_all_files.IconType;
20956
+ server: _react_icons_all_files.IconType;
20957
+ 'shape-circle': _react_icons_all_files.IconType;
20958
+ 'shape-half-circle': _react_icons_all_files.IconType;
20959
+ 'shape-hexagon': _react_icons_all_files.IconType;
20960
+ 'shape-rhombus': _react_icons_all_files.IconType;
20961
+ 'shape-square': _react_icons_all_files.IconType;
20962
+ 'shape-triangle': _react_icons_all_files.IconType;
20963
+ 'shape-zigzag': _react_icons_all_files.IconType;
20964
+ share: _react_icons_all_files.IconType;
20965
+ shield: _react_icons_all_files.IconType;
20966
+ 'shopping-bag': _react_icons_all_files.IconType;
20967
+ 'shopping-cart': _react_icons_all_files.IconType;
20968
+ shortcut: _react_icons_all_files.IconType;
20969
+ 'sidebar-open': _react_icons_all_files.IconType;
20970
+ 'sidebar-right': _react_icons_all_files.IconType;
20971
+ sidebar: _react_icons_all_files.IconType;
20972
+ signal: _react_icons_all_files.IconType;
20973
+ size: _react_icons_all_files.IconType;
20974
+ sleep: _react_icons_all_files.IconType;
20975
+ 'smart-home-boiler': _react_icons_all_files.IconType;
20976
+ 'smart-home-cooker': _react_icons_all_files.IconType;
20977
+ 'smart-home-heat': _react_icons_all_files.IconType;
20978
+ 'smart-home-light': _react_icons_all_files.IconType;
20979
+ 'smart-home-refrigerator': _react_icons_all_files.IconType;
20980
+ 'smart-home-wash-machine': _react_icons_all_files.IconType;
20981
+ 'smartphone-chip': _react_icons_all_files.IconType;
20982
+ 'smartphone-ram': _react_icons_all_files.IconType;
20983
+ 'smartphone-shake': _react_icons_all_files.IconType;
20984
+ smartphone: _react_icons_all_files.IconType;
20985
+ 'smile-mouth-open': _react_icons_all_files.IconType;
20986
+ 'smile-neutral': _react_icons_all_files.IconType;
20987
+ 'smile-no-mouth': _react_icons_all_files.IconType;
20988
+ 'smile-none': _react_icons_all_files.IconType;
20989
+ 'smile-sad': _react_icons_all_files.IconType;
20990
+ 'smile-upside': _react_icons_all_files.IconType;
20991
+ smile: _react_icons_all_files.IconType;
20992
+ 'software-download': _react_icons_all_files.IconType;
20993
+ 'software-upload': _react_icons_all_files.IconType;
20994
+ 'sort-az': _react_icons_all_files.IconType;
20995
+ 'sort-za': _react_icons_all_files.IconType;
20996
+ 'space-between-v': _react_icons_all_files.IconType;
20997
+ 'space-between': _react_icons_all_files.IconType;
20998
+ 'spinner-alt': _react_icons_all_files.IconType;
20999
+ 'spinner-two-alt': _react_icons_all_files.IconType;
21000
+ 'spinner-two': _react_icons_all_files.IconType;
21001
+ spinner: _react_icons_all_files.IconType;
21002
+ stack: _react_icons_all_files.IconType;
21003
+ stopwatch: _react_icons_all_files.IconType;
21004
+ stories: _react_icons_all_files.IconType;
21005
+ style: _react_icons_all_files.IconType;
21006
+ sun: _react_icons_all_files.IconType;
21007
+ support: _react_icons_all_files.IconType;
21008
+ 'swap-vertical': _react_icons_all_files.IconType;
21009
+ swap: _react_icons_all_files.IconType;
21010
+ sweden: _react_icons_all_files.IconType;
21011
+ swiss: _react_icons_all_files.IconType;
21012
+ sync: _react_icons_all_files.IconType;
21013
+ tab: _react_icons_all_files.IconType;
21014
+ tag: _react_icons_all_files.IconType;
21015
+ 'tap-double': _react_icons_all_files.IconType;
21016
+ 'tap-single': _react_icons_all_files.IconType;
21017
+ template: _react_icons_all_files.IconType;
21018
+ tennis: _react_icons_all_files.IconType;
21019
+ terminal: _react_icons_all_files.IconType;
21020
+ terrain: _react_icons_all_files.IconType;
21021
+ thermometer: _react_icons_all_files.IconType;
21022
+ thermostat: _react_icons_all_files.IconType;
21023
+ tikcode: _react_icons_all_files.IconType;
21024
+ time: _react_icons_all_files.IconType;
21025
+ timelapse: _react_icons_all_files.IconType;
21026
+ timer: _react_icons_all_files.IconType;
21027
+ today: _react_icons_all_files.IconType;
21028
+ 'toggle-off': _react_icons_all_files.IconType;
21029
+ 'toggle-on': _react_icons_all_files.IconType;
21030
+ 'toggle-square-off': _react_icons_all_files.IconType;
21031
+ 'toggle-square': _react_icons_all_files.IconType;
21032
+ 'toolbar-bottom': _react_icons_all_files.IconType;
21033
+ 'toolbar-left': _react_icons_all_files.IconType;
21034
+ 'toolbar-right': _react_icons_all_files.IconType;
21035
+ 'toolbar-top': _react_icons_all_files.IconType;
21036
+ toolbox: _react_icons_all_files.IconType;
21037
+ touchpad: _react_icons_all_files.IconType;
21038
+ track: _react_icons_all_files.IconType;
21039
+ transcript: _react_icons_all_files.IconType;
21040
+ 'trash-empty': _react_icons_all_files.IconType;
21041
+ trash: _react_icons_all_files.IconType;
21042
+ tree: _react_icons_all_files.IconType;
21043
+ trees: _react_icons_all_files.IconType;
21044
+ 'trending-down': _react_icons_all_files.IconType;
21045
+ trending: _react_icons_all_files.IconType;
21046
+ trophy: _react_icons_all_files.IconType;
21047
+ tv: _react_icons_all_files.IconType;
21048
+ 'ui-kit': _react_icons_all_files.IconType;
21049
+ umbrella: _react_icons_all_files.IconType;
21050
+ unavailable: _react_icons_all_files.IconType;
21051
+ unblock: _react_icons_all_files.IconType;
21052
+ undo: _react_icons_all_files.IconType;
21053
+ unsplash: _react_icons_all_files.IconType;
21054
+ 'usb-c': _react_icons_all_files.IconType;
21055
+ usb: _react_icons_all_files.IconType;
21056
+ 'user-add': _react_icons_all_files.IconType;
21057
+ 'user-list': _react_icons_all_files.IconType;
21058
+ 'user-remove': _react_icons_all_files.IconType;
21059
+ user: _react_icons_all_files.IconType;
21060
+ 'view-cols': _react_icons_all_files.IconType;
21061
+ 'view-comfortable': _react_icons_all_files.IconType;
21062
+ 'view-day': _react_icons_all_files.IconType;
21063
+ 'view-grid': _react_icons_all_files.IconType;
21064
+ 'view-list': _react_icons_all_files.IconType;
21065
+ 'view-month': _react_icons_all_files.IconType;
21066
+ 'view-split': _react_icons_all_files.IconType;
21067
+ vinyl: _react_icons_all_files.IconType;
21068
+ 'voicemail-o': _react_icons_all_files.IconType;
21069
+ 'voicemail-r': _react_icons_all_files.IconType;
21070
+ voicemail: _react_icons_all_files.IconType;
21071
+ volume: _react_icons_all_files.IconType;
21072
+ webcam: _react_icons_all_files.IconType;
21073
+ website: _react_icons_all_files.IconType;
21074
+ 'work-alt': _react_icons_all_files.IconType;
21075
+ yinyang: _react_icons_all_files.IconType;
21076
+ 'zoom-in': _react_icons_all_files.IconType;
21077
+ 'zoom-out': _react_icons_all_files.IconType;
21006
21078
  };
21007
21079
 
21008
21080
  /** A list of available icon names that can be used with the Uniform brand */
@@ -21011,7 +21083,7 @@ type IconName = keyof typeof allSupportedIcons;
21011
21083
  /** sets fill color of the svg icon
21012
21084
  * @default 'default'
21013
21085
  */
21014
- type IconColor = 'white' | 'action' | 'default' | 'red' | 'gray' | 'accent' | 'currentColor' | 'accent-dark' | 'accent-light';
21086
+ type IconColor = 'white' | 'action' | 'default' | 'red' | 'gray' | 'gray300' | 'accent' | 'currentColor' | 'accent-dark' | 'accent-light';
21015
21087
  /** sets the type of icon to use from the available list */
21016
21088
  type IconType = IconName | IconType$1;
21017
21089
  interface IconProps extends IconBaseProps {
@@ -21028,53 +21100,53 @@ interface IconProps extends IconBaseProps {
21028
21100
  */
21029
21101
  declare const Icon: React__default.MemoExoticComponent<({ icon, iconColor, size, ...otherProps }: IconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null>;
21030
21102
 
21031
- declare const rectangleRoundedIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21032
- declare const cardIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21033
- declare const imageTextIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21034
- declare const borderTopIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21035
- declare const fullWidthScreenIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21036
- declare const textInput: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21037
- declare const numberInput: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21038
- declare const canvasAlertIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21039
- declare const warningIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21040
- declare const infoFilledIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21041
- declare const settingsIcon: _react_icons_all_files_lib.IconType;
21103
+ declare const rectangleRoundedIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21104
+ declare const cardIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21105
+ declare const imageTextIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21106
+ declare const borderTopIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21107
+ declare const fullWidthScreenIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21108
+ declare const textInput: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21109
+ declare const numberInput: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21110
+ declare const canvasAlertIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21111
+ declare const warningIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21112
+ declare const infoFilledIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21113
+ declare const settingsIcon: IconType$2;
21042
21114
  declare const settings: (props: IconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21043
- declare const queryStringIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21044
- declare const structurePanelIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21045
- declare const jsonIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21046
- declare const yesNoIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21115
+ declare const queryStringIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21116
+ declare const structurePanelIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21117
+ declare const jsonIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21118
+ declare const yesNoIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21047
21119
  declare const customIcons: {
21048
- 'rectangle-rounded': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21049
- card: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21050
- 'image-text': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21051
- 'border-top': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21052
- 'full-width-screen': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21053
- 'text-input': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21054
- 'number-input': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21055
- 'canvas-alert': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21056
- warning: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21057
- 'info-filled': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21120
+ 'rectangle-rounded': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21121
+ card: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21122
+ 'image-text': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21123
+ 'border-top': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21124
+ 'full-width-screen': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21125
+ 'text-input': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21126
+ 'number-input': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21127
+ 'canvas-alert': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21128
+ warning: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21129
+ 'info-filled': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21058
21130
  settings: (props: IconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21059
- 'query-string': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21060
- json: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21061
- 'format-bold': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21062
- 'format-code': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21063
- 'format-strike': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21064
- 'format-superscript': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21065
- 'format-subscript': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21066
- 'layout-list-numbered': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21067
- 'clear-formatting': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21068
- 'yes-no': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21069
- 'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21070
- 'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21071
- 'magic-wand': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21072
- 'list-view-short': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21073
- 'list-view-long': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21074
- 'filter-add': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21075
- 'clipboard-copy': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21076
- 'clipboard-paste': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21077
- refresh: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21131
+ 'query-string': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21132
+ json: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21133
+ 'format-bold': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21134
+ 'format-code': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21135
+ 'format-strike': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21136
+ 'format-superscript': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21137
+ 'format-subscript': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21138
+ 'layout-list-numbered': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21139
+ 'clear-formatting': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21140
+ 'yes-no': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21141
+ 'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21142
+ 'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21143
+ 'magic-wand': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21144
+ 'list-view-short': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21145
+ 'list-view-long': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21146
+ 'filter-add': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21147
+ 'clipboard-copy': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21148
+ 'clipboard-paste': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21149
+ refresh: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21078
21150
  };
21079
21151
 
21080
21152
  type IconsMap = Record<string, IconType$1>;
@@ -21118,40 +21190,31 @@ interface ActionButtonsProps {
21118
21190
  /** sets additional Menu component styles */
21119
21191
  menuContainerCssClasses?: SerializedStyles;
21120
21192
  /** sets whether to use a React portal rendering or not.
21121
- * @default false
21193
+ * @deprecated This property does not work correctly. Use `portal` instead.
21122
21194
  */
21123
21195
  withoutPortal?: boolean;
21196
+ /** sets whether to use a React portal rendering or not. */
21197
+ portal?: boolean;
21124
21198
  /** (optional) sets the maximum height of the menu
21125
21199
  * setting a max menu height value will make the menu scrollable if the content exceeds the height
21126
21200
  * this is not compatible with nested menus that expand to the left or right of the menu
21127
21201
  */
21128
21202
  maxMenuHeight?: string;
21203
+ /**
21204
+ * Sets a tooltip on the button when hovered
21205
+ * Note that the tooltip will be shown whether disabled or not.
21206
+ */
21207
+ tooltip?: React$1.ReactNode;
21208
+ /**
21209
+ * Sets a shortcut for the button.
21210
+ * The shortcut's handler function will be automatically set to the onClick of the button,
21211
+ * and a tooltip will be added to the button that shows the keyboard shortcut.
21212
+ */
21213
+ shortcut?: ShortcutReference;
21129
21214
  }
21130
21215
  /** ButtonWithMenuProps combines the ActionButtonsProps with React HTMLButtonElement attributes */
21131
21216
  type ButtonWithMenuProps = ActionButtonsProps & React$1.ButtonHTMLAttributes<HTMLButtonElement>;
21132
- /**
21133
- * Uniform ButtonWithMenu Component
21134
- * @example
21135
- <ButtonWithMenu
21136
- disabled={isDisabled}
21137
- buttonText="Save and close"
21138
- onButtonClick={() => someFunction()}
21139
- placement="bottom-end"
21140
- >
21141
- <MenuItem
21142
- disabled={isDisabled}
21143
- onClick={() => someFunction()}
21144
- key="save"
21145
- className="flex gap-2 items-center"
21146
- data-testid="save-menu-item-button"
21147
- >
21148
- <span className="whitespace-nowrap" data-testid="save-menu-item">
21149
- Save
21150
- </span>
21151
- </MenuItem>
21152
- </ButtonWithMenu>
21153
- */
21154
- declare const ButtonWithMenu: ({ onButtonClick, buttonType, buttonText, icon, disabled, children, placement, size, menuContainerCssClasses, withoutPortal, maxMenuHeight, ...buttonProps }: ButtonWithMenuProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21217
+ declare const ButtonWithMenu: ({ onButtonClick, buttonType, buttonText, icon, disabled, children, placement, size, menuContainerCssClasses, withoutPortal, portal, maxMenuHeight, tooltip, shortcut, ...buttonProps }: ButtonWithMenuProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21155
21218
 
21156
21219
  /**
21157
21220
  * A string in the ISO 8601 date format: YYYY-MM-DD
@@ -22463,6 +22526,11 @@ type MenuItemProps = MenuItemProps$1 & {
22463
22526
  * Normally automatically managed.
22464
22527
  */
22465
22528
  active?: boolean;
22529
+ /**
22530
+ * Renders a keyboard shortcut for the menu item. The onClick of the menu will
22531
+ * be automatically set to invoke the shortcut's handler function.
22532
+ */
22533
+ shortcut?: ShortcutReference;
22466
22534
  };
22467
22535
  type ChildFunction = (menuItemProps: MenuItemProps$1) => React$1.ReactElement | null;
22468
22536
  /**
@@ -22477,6 +22545,19 @@ declare const MenuItem: React$1.FC<MenuItemProps>;
22477
22545
  * @example <MenuItemInner onClick={() => alert('menu item was clicked')} icon={<RedClose />}>Remove Link</MenuItem>
22478
22546
  */
22479
22547
  declare const MenuItemInner: React$1.FC<MenuItemProps>;
22548
+ /**
22549
+ * Renders an icon for a menu item. Optional micro wrapper around an Icon component
22550
+ * configured to match the menu item icon style.
22551
+ */
22552
+ declare function MenuItemIcon({ icon }: {
22553
+ icon: IconType;
22554
+ }): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22555
+ /**
22556
+ * Indents a menu item as if it had an icon when it does not
22557
+ * Use this to align menu items without icons with those that have icons
22558
+ * in a mixed menu. Intended to be passed as the `icon` prop to a MenuItem.
22559
+ */
22560
+ declare function MenuItemEmptyIcon(): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22480
22561
 
22481
22562
  declare const MenuItemSeparator: () => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22482
22563
 
@@ -23128,26 +23209,6 @@ type SegmentedControlProps<TValue extends string = string> = Omit<React__default
23128
23209
  */
23129
23210
  declare const SegmentedControl: <TValue extends string = string>({ name, options, value, onChange, noCheckmark, disabled, orientation, size, hideOptionText, iconSize, currentBackgroundColor, ...props }: SegmentedControlProps<TValue>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23130
23211
 
23131
- declare function ShortcutContext({ children }: {
23132
- children: React__default.ReactNode;
23133
- }): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23134
- declare function ShortcutRevealer({ shortcut, macShortcut, className, }: {
23135
- shortcut: string;
23136
- macShortcut?: string;
23137
- className?: SerializedStyles | string;
23138
- }): _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
23139
-
23140
- declare const isMacLike: boolean;
23141
- type UseShortcutOptions = {
23142
- shortcut: string | null;
23143
- macShortcut?: string | null;
23144
- handler: (event: KeyboardEvent) => void;
23145
- doNotPreventDefault?: boolean;
23146
- activeWhenEditing?: boolean;
23147
- };
23148
- declare function macifyShortcut(shortcut: string | null): string | null;
23149
- declare function useShortcut({ handler, shortcut, macShortcut, doNotPreventDefault, activeWhenEditing, }: UseShortcutOptions): React$1.MutableRefObject<react_hotkeys_hook_dist_types.RefType<HTMLElement>>;
23150
-
23151
23212
  type SkeletonProps = React__default.PropsWithChildren<React__default.HTMLAttributes<HTMLDivElement>> & {
23152
23213
  width?: string;
23153
23214
  height?: string;
@@ -23414,19 +23475,6 @@ type ToastContainerProps = {
23414
23475
  */
23415
23476
  declare const ToastContainer: ({ limit }: ToastContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23416
23477
 
23417
- type TooltipProps = TooltipOptions & {
23418
- /** Content of tooltip popover */
23419
- title: string | React__default.ReactElement;
23420
- /** Optional ability to specify alternative placement. By default - bottom center */
23421
- placement?: TooltipInitialState['placement'];
23422
- /** Optional ability to control visibility of Tooltip manually, useful for showing tooltip on click instead of on hover */
23423
- visible?: TooltipInitialState['visible'];
23424
- children: JSX.Element;
23425
- /** If the tooltip should not be rendered inside a portal */
23426
- withoutPortal?: boolean;
23427
- };
23428
- declare function Tooltip({ children, title, placement, visible, withoutPortal, ...props }: TooltipProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23429
-
23430
23478
  /** Available heading weights e.g. 1 - 6 */
23431
23479
  type LevelProps = 1 | 2 | 3 | 4 | 5 | 6;
23432
23480
  type HeadingProps = {
@@ -23571,4 +23619,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
23571
23619
  };
23572
23620
  declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23573
23621
 
23574
- export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AnimationFile, type AnimationFileProps, type ArrowPositionProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, type BadgeSizeProps, type BadgeThemeProps, type BadgeThemeStyleProps, Banner, type BannerProps, type BannerType, BetaDecorator, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps$1 as ButtonSizeProps, type ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, Calendar, type CalendarProps, Callout, type CalloutProps, type CalloutType, Caption, type CaptionProps, Card, CardContainer, type CardContainerBgColorProps, type CardContainerProps, type CardProps, CardTitle, type CardTitleProps, CheckboxWithInfo, type CheckboxWithInforProps, type ChildFunction, Chip, type ChipProps, type ChipTheme, type ComboBoxGroupBase, ConnectToDataElementButton, type ConnectToDataElementButtonProps, Container, type ContainerProps, Counter, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, FieldMessage, type FieldMessageProps, Fieldset, type FieldsetProps, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, InlineAlert, type InlineAlertProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationHeaderSection, type IntegrationHeaderSectionProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, Label, LabelLeadingIcon, type LabelProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, MediaCard, type MediaCardProps, Menu, MenuButton, type MenuButtonProp, MenuGroup, type MenuGroupProps, MenuItem, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, MenuThreeDots, type MenuThreeDotsProps, Modal, ModalDialog, type ModalDialogProps, type ModalProps, MultilineChip, type MultilineChipProps, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, type ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterMultiSelect, ParameterMultiSelectInner, type ParameterMultiSelectOption, type ParameterMultiSelectProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, type RhythmProps, type RichTextParamValue, RichTextToolbarIcon, type ScrollableItemProps, ScrollableList, type ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, type ScrollableListItemProps, type ScrollableListProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, type SerializedLinkNode, ShortcutContext, ShortcutRevealer, Skeleton, type SkeletonProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, SuccessMessage, type SuccessMessageProps, Switch, type SwitchProps, TAKEOVER_STACK_ID, TabButton, TabButtonGroup, type TabButtonProps, TabContent, type TabContentProps, Table, TableBody, type TableBodyProps, TableCellData, type TableCellDataProps, TableCellHead, type TableCellHeadProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, TakeoverDrawerRenderer, type TextAlignProps, Textarea, type TextareaProps, Theme, type ThemeProps, Tile, TileContainer, type TileContainerProps, type TileProps, TileText, type TileTitleProps, ToastContainer, type ToastContainerProps, Tooltip, type TooltipProps, TwoColumnLayout, type TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, type UniformLogoProps, type UseShortcutOptions, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, addPathSegmentToPathname, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getDrawerAttributes, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spin, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, uniformComponentIcon, uniformComponentPatternIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, useShortcut, warningIcon, yesNoIcon };
23622
+ export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AnimationFile, type AnimationFileProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, type BadgeSizeProps, type BadgeThemeProps, type BadgeThemeStyleProps, Banner, type BannerProps, type BannerType, BetaDecorator, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps$1 as ButtonSizeProps, type ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, Calendar, type CalendarProps, Callout, type CalloutProps, type CalloutType, Caption, type CaptionProps, Card, CardContainer, type CardContainerBgColorProps, type CardContainerProps, type CardProps, CardTitle, type CardTitleProps, CheckboxWithInfo, type CheckboxWithInforProps, type ChildFunction, Chip, type ChipProps, type ChipTheme, type ComboBoxGroupBase, ConnectToDataElementButton, type ConnectToDataElementButtonProps, Container, type ContainerProps, Counter, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, FieldMessage, type FieldMessageProps, Fieldset, type FieldsetProps, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationHeaderSection, type IntegrationHeaderSectionProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, Label, LabelLeadingIcon, type LabelProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, MediaCard, type MediaCardProps, Menu, MenuButton, type MenuButtonProp, MenuGroup, type MenuGroupProps, MenuItem, MenuItemEmptyIcon, MenuItemIcon, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, MenuThreeDots, type MenuThreeDotsProps, Modal, ModalDialog, type ModalDialogProps, type ModalProps, MultilineChip, type MultilineChipProps, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, type ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterMultiSelect, ParameterMultiSelectInner, type ParameterMultiSelectOption, type ParameterMultiSelectProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, type RhythmProps, type RichTextParamValue, RichTextToolbarIcon, type ScrollableItemProps, ScrollableList, type ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, type ScrollableListItemProps, type ScrollableListProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, type SerializedLinkNode, ShortcutContext, type ShortcutReference, ShortcutRevealer, Skeleton, type SkeletonProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, SuccessMessage, type SuccessMessageProps, Switch, type SwitchProps, TAKEOVER_STACK_ID, TabButton, TabButtonGroup, type TabButtonProps, TabContent, type TabContentProps, Table, TableBody, type TableBodyProps, TableCellData, type TableCellDataProps, TableCellHead, type TableCellHeadProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, TakeoverDrawerRenderer, type TextAlignProps, Textarea, type TextareaProps, Theme, type ThemeProps, Tile, TileContainer, type TileContainerProps, type TileProps, TileText, type TileTitleProps, ToastContainer, type ToastContainerProps, Tooltip, type TooltipProps, TwoColumnLayout, type TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, type UniformLogoProps, type UseShortcutOptions, type UseShortcutResult, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, addPathSegmentToPathname, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getDrawerAttributes, getFormattedShortcut, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spin, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, uniformComponentIcon, uniformComponentPatternIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, useShortcut, warningIcon, yesNoIcon };