@aws-amplify/ui-react 2.0.1-next.4 → 2.0.1-next.5

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.ts CHANGED
@@ -379,6 +379,16 @@ declare const extendTheming: (...allOverrideTokens: DeepPartial<Theme>[]) => {
379
379
  borderRadius: string;
380
380
  };
381
381
  };
382
+ phonenumberfield: {
383
+ minWidth: string;
384
+ whiteSpace: string;
385
+ small: {
386
+ minWidth: string;
387
+ };
388
+ large: {
389
+ minWidth: string;
390
+ };
391
+ };
382
392
  placeholder: {
383
393
  borderRadius: string;
384
394
  transitionDuration: string;
@@ -1231,6 +1241,16 @@ declare const useTheming: () => {
1231
1241
  borderRadius: string;
1232
1242
  };
1233
1243
  };
1244
+ phonenumberfield: {
1245
+ minWidth: string;
1246
+ whiteSpace: string;
1247
+ small: {
1248
+ minWidth: string;
1249
+ };
1250
+ large: {
1251
+ minWidth: string;
1252
+ };
1253
+ };
1234
1254
  placeholder: {
1235
1255
  borderRadius: string;
1236
1256
  transitionDuration: string;
@@ -1746,7 +1766,7 @@ declare namespace Authenticator {
1746
1766
  var SignIn: typeof SignIn;
1747
1767
  var SignUp: typeof SignUp;
1748
1768
  }
1749
- declare function withAuthenticator(Component: any): () => JSX.Element;
1769
+ declare function withAuthenticator(Component: any, props?: Omit<AuthenticatorProps, 'children'>): () => JSX.Element;
1750
1770
 
1751
1771
  declare const index$1_AmplifyProvider: typeof AmplifyProvider;
1752
1772
  declare const index$1_Authenticator: typeof Authenticator;
@@ -1939,28 +1959,6 @@ interface VisuallyHiddenProps extends BaseComponentProps {
1939
1959
  as?: ViewAsHTMLElementTypes;
1940
1960
  }
1941
1961
 
1942
- declare type TextVariation = 'primary' | 'secondary' | 'tertiary' | 'error' | 'warning' | 'info' | 'success';
1943
- interface TextProps extends BaseComponentProps, BaseStyleProps {
1944
- /**
1945
- * HTML allowed tags
1946
- */
1947
- as?: 'p' | 'span' | 'strong' | 'em';
1948
- /**
1949
- * This should be the primary way to handle different styles of text. Lower-level
1950
- * text styling attributes like color can be set directly, that should be more of an
1951
- * escape hatch.
1952
- */
1953
- variation?: TextVariation;
1954
- /**
1955
- * This attribute will be used to indicate if the text component should truncate text
1956
- * that exceeds the width of the text element. Truncated text will render an ellipsis.
1957
- */
1958
- isTruncated?: boolean;
1959
- }
1960
-
1961
- interface CardProps extends BaseComponentProps, BaseStyleProps {
1962
- }
1963
-
1964
1962
  interface ViewBox {
1965
1963
  minX?: number;
1966
1964
  minY?: number;
@@ -1996,6 +1994,25 @@ interface IconProps extends BaseComponentProps, BaseStyleProps, AriaProps {
1996
1994
  size?: IconSize;
1997
1995
  }
1998
1996
 
1997
+ declare type TextVariation = 'primary' | 'secondary' | 'tertiary' | 'error' | 'warning' | 'info' | 'success';
1998
+ interface TextProps extends BaseComponentProps, BaseStyleProps {
1999
+ /**
2000
+ * HTML allowed tags
2001
+ */
2002
+ as?: 'p' | 'span' | 'strong' | 'em';
2003
+ /**
2004
+ * This should be the primary way to handle different styles of text. Lower-level
2005
+ * text styling attributes like color can be set directly, that should be more of an
2006
+ * escape hatch.
2007
+ */
2008
+ variation?: TextVariation;
2009
+ /**
2010
+ * This attribute will be used to indicate if the text component should truncate text
2011
+ * that exceeds the width of the text element. Truncated text will render an ellipsis.
2012
+ */
2013
+ isTruncated?: boolean;
2014
+ }
2015
+
1999
2016
  declare type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
2000
2017
  interface HeadingProps extends TextProps {
2001
2018
  level?: HeadingLevel;
@@ -2088,6 +2105,9 @@ interface ButtonProps extends BaseComponentProps, AriaProps {
2088
2105
  variation?: ButtonVariation;
2089
2106
  }
2090
2107
 
2108
+ interface CardProps extends BaseComponentProps, BaseStyleProps {
2109
+ }
2110
+
2091
2111
  declare type CollectionType = 'list' | 'grid' | 'table';
2092
2112
  interface CollectionTypeMapInterface {
2093
2113
  [key: string]: CollectionType;
@@ -2413,6 +2433,38 @@ interface ShowPasswordButtonProps extends Pick<ButtonProps, 'onClick' | 'size'>
2413
2433
  fieldType: PasswordFieldType;
2414
2434
  }
2415
2435
 
2436
+ declare type SelectSize = 'small' | 'large';
2437
+ declare type SelectVariation = 'quiet';
2438
+ interface SelectProps extends AriaProps, BaseComponentProps, BaseStyleProps {
2439
+ autoComplete?: string;
2440
+ name?: string;
2441
+ defaultValue?: string;
2442
+ value?: string;
2443
+ size?: SelectSize;
2444
+ variation?: SelectVariation;
2445
+ icon?: React$1.ReactElement;
2446
+ iconColor?: string;
2447
+ placeholder?: string;
2448
+ hasError?: boolean;
2449
+ isDisabled?: boolean;
2450
+ isRequired?: boolean;
2451
+ onChange?: React$1.ChangeEventHandler<HTMLSelectElement>;
2452
+ }
2453
+
2454
+ interface SelectFieldProps extends FieldProps, FlexStyleProps, SelectProps {
2455
+ }
2456
+
2457
+ interface PhoneNumberFieldProps extends TextFieldProps {
2458
+ countryCodeLabel?: string;
2459
+ countryCodeName?: string;
2460
+ defaultCountryCode: string;
2461
+ onCountryCodeChange?: React$1.ChangeEventHandler<HTMLSelectElement>;
2462
+ type?: 'tel';
2463
+ }
2464
+ interface CountryCodeSelectProps extends SelectFieldProps {
2465
+ defaultValue: string;
2466
+ }
2467
+
2416
2468
  declare type PlaceholderSize = 'small' | 'large';
2417
2469
  interface PlaceholderProps extends BaseComponentProps {
2418
2470
  /**
@@ -2487,27 +2539,6 @@ interface SearchFieldProps extends TextFieldProps {
2487
2539
  interface SearchFieldButtonProps extends Partial<FieldGroupIconButtonProps> {
2488
2540
  }
2489
2541
 
2490
- declare type SelectSize = 'small' | 'large';
2491
- declare type SelectVariation = 'quiet';
2492
- interface SelectProps extends AriaProps, BaseComponentProps, BaseStyleProps {
2493
- autoComplete?: string;
2494
- name?: string;
2495
- defaultValue?: string;
2496
- value?: string;
2497
- size?: SelectSize;
2498
- variation?: SelectVariation;
2499
- icon?: React$1.ReactElement;
2500
- iconColor?: string;
2501
- placeholder?: string;
2502
- hasError?: boolean;
2503
- isDisabled?: boolean;
2504
- isRequired?: boolean;
2505
- onChange?: React$1.ChangeEventHandler<HTMLSelectElement>;
2506
- }
2507
-
2508
- interface SelectFieldProps extends FieldProps, FlexStyleProps, SelectProps {
2509
- }
2510
-
2511
2542
  declare type labelPositions = 'start' | 'end' | 'top' | 'bottom';
2512
2543
  interface SwitchFieldProps extends InputProps, FieldProps, BaseStyleProps {
2513
2544
  /**
@@ -6312,6 +6343,7 @@ declare enum ComponentClassNames {
6312
6343
  Badge = "amplify-badge",
6313
6344
  Button = "amplify-button",
6314
6345
  Card = "amplify-card",
6346
+ CountryCodeSelect = "amplify-countrycodeselect",
6315
6347
  Divider = "amplify-divider",
6316
6348
  Field = "amplify-field",
6317
6349
  FieldDescription = "amplify-field__description",
@@ -6338,6 +6370,7 @@ declare enum ComponentClassNames {
6338
6370
  Link = "amplify-link",
6339
6371
  Pagination = "amplify-pagination",
6340
6372
  PasswordField = "amplify-passwordfield",
6373
+ PhoneNumberField = "amplify-phonenumberfield",
6341
6374
  Placeholder = "amplify-placeholder",
6342
6375
  Radio = "amplify-radio",
6343
6376
  RadioButton = "amplify-radio__button",
@@ -6389,6 +6422,9 @@ declare type EscapeHatchProps = {
6389
6422
  };
6390
6423
 
6391
6424
  declare const SharedText: {
6425
+ CountryCodeSelect: {
6426
+ ariaLabel: string;
6427
+ };
6392
6428
  ShowPasswordButton: {
6393
6429
  ariaLabel: {
6394
6430
  showPassword: string;
@@ -8294,6 +8330,7 @@ type index_ButtonSize = ButtonSize;
8294
8330
  type index_ButtonTypes = ButtonTypes;
8295
8331
  type index_ButtonVariation = ButtonVariation;
8296
8332
  type index_ButtonProps = ButtonProps;
8333
+ type index_CardProps = CardProps;
8297
8334
  type index_CollectionType = CollectionType;
8298
8335
  type index_CollectionTypeMapInterface = CollectionTypeMapInterface;
8299
8336
  declare const index_CollectionTypeMap: typeof CollectionTypeMap;
@@ -8336,6 +8373,8 @@ type index_PaginationItemProps = PaginationItemProps;
8336
8373
  type index_PasswordFieldProps = PasswordFieldProps;
8337
8374
  type index_PasswordFieldType = PasswordFieldType;
8338
8375
  type index_ShowPasswordButtonProps = ShowPasswordButtonProps;
8376
+ type index_PhoneNumberFieldProps = PhoneNumberFieldProps;
8377
+ type index_CountryCodeSelectProps = CountryCodeSelectProps;
8339
8378
  type index_PlaceholderSize = PlaceholderSize;
8340
8379
  type index_PlaceholderProps = PlaceholderProps;
8341
8380
  type index_RadioProps = RadioProps;
@@ -8359,6 +8398,8 @@ type index_SwitchFieldProps = SwitchFieldProps;
8359
8398
  type index_TabsGrow = TabsGrow;
8360
8399
  type index_TabsProps = TabsProps;
8361
8400
  type index_TabItemProps = TabItemProps;
8401
+ type index_TextVariation = TextVariation;
8402
+ type index_TextProps = TextProps;
8362
8403
  type index_TextFieldType = TextFieldType;
8363
8404
  type index_TextFieldProps = TextFieldProps;
8364
8405
  type index_ViewAsHTMLElementTypes = ViewAsHTMLElementTypes;
@@ -10242,6 +10283,7 @@ declare namespace index {
10242
10283
  index_ButtonTypes as ButtonTypes,
10243
10284
  index_ButtonVariation as ButtonVariation,
10244
10285
  index_ButtonProps as ButtonProps,
10286
+ index_CardProps as CardProps,
10245
10287
  index_CollectionType as CollectionType,
10246
10288
  index_CollectionTypeMapInterface as CollectionTypeMapInterface,
10247
10289
  index_CollectionTypeMap as CollectionTypeMap,
@@ -10284,6 +10326,8 @@ declare namespace index {
10284
10326
  index_PasswordFieldProps as PasswordFieldProps,
10285
10327
  index_PasswordFieldType as PasswordFieldType,
10286
10328
  index_ShowPasswordButtonProps as ShowPasswordButtonProps,
10329
+ index_PhoneNumberFieldProps as PhoneNumberFieldProps,
10330
+ index_CountryCodeSelectProps as CountryCodeSelectProps,
10287
10331
  index_PlaceholderSize as PlaceholderSize,
10288
10332
  index_PlaceholderProps as PlaceholderProps,
10289
10333
  index_RadioProps as RadioProps,
@@ -10307,6 +10351,8 @@ declare namespace index {
10307
10351
  index_TabsGrow as TabsGrow,
10308
10352
  index_TabsProps as TabsProps,
10309
10353
  index_TabItemProps as TabItemProps,
10354
+ index_TextVariation as TextVariation,
10355
+ index_TextProps as TextProps,
10310
10356
  index_TextFieldType as TextFieldType,
10311
10357
  index_TextFieldProps as TextFieldProps,
10312
10358
  index_ViewAsHTMLElementTypes as ViewAsHTMLElementTypes,
@@ -12188,6 +12234,9 @@ declare function useAmplify(namespace: any): {
12188
12234
  };
12189
12235
  ComponentClassNames: typeof ComponentClassNames;
12190
12236
  SharedText: {
12237
+ CountryCodeSelect: {
12238
+ ariaLabel: string;
12239
+ };
12191
12240
  ShowPasswordButton: {
12192
12241
  ariaLabel: {
12193
12242
  showPassword: string;
@@ -12574,6 +12623,16 @@ declare function useAmplify(namespace: any): {
12574
12623
  borderRadius: string;
12575
12624
  };
12576
12625
  };
12626
+ phonenumberfield: {
12627
+ minWidth: string;
12628
+ whiteSpace: string;
12629
+ small: {
12630
+ minWidth: string;
12631
+ };
12632
+ large: {
12633
+ minWidth: string;
12634
+ };
12635
+ };
12577
12636
  placeholder: {
12578
12637
  borderRadius: string;
12579
12638
  transitionDuration: string;
@@ -13070,4 +13129,4 @@ declare function useAuthenticator(): [xstate.State<_aws_amplify_ui.AuthContext,
13070
13129
  context: _aws_amplify_ui.AuthContext;
13071
13130
  }>];
13072
13131
 
13073
- export { Alert, AlertProps, AlertVariation, AllStyleProps, AmplifyProvider, AriaProps, Authenticator, Badge, BadgeProps, BadgeSize, BadgeVariation, BaseComponentProps, BaseStyleProps, Box, Button, ButtonProps, ButtonSize, ButtonTypes, ButtonVariation, CSSLayoutStyleProps, Card, Collection, CollectionBaseProps, CollectionProps, CollectionType, CollectionTypeMap, CollectionTypeMapInterface, ComponentClassNames, ComponentPropToStyleProp, ComponentPropsToStylePropsMap, ComponentPropsToStylePropsMapKeys, DeepPartial, Divider, DividerOptions, DividerOrientation, DividerProps, DividerSize, ErrorText, EscapeHatchProps, FieldClearButtonProps, FieldDescriptionProps, FieldErrorMessageProps, FieldGroup, FieldGroupIcon, FieldGroupIconButton, FieldGroupIconButtonProps, FieldGroupIconProps, FieldGroupOptions, FieldProps, FieldVariations, Fieldset, Flex, FlexProps, FlexStyleProps, Footer, Form, Grid, GridContainerStyleProps, GridItemStyleProps, GridProps, Header, Heading, HeadingLevel, HeadingProps, Icon, Icon10k, Icon10mp, Icon11mp, Icon12mp, Icon13mp, Icon14mp, Icon15mp, Icon16mp, Icon17mp, Icon18mp, Icon19mp, Icon1k, Icon1kPlus, Icon1xMobiledata, Icon20mp, Icon21mp, Icon22mp, Icon23mp, Icon24mp, Icon2k, Icon2kPlus, Icon2mp, Icon30fps, Icon30fpsSelect, Icon360, Icon3dRotation, Icon3gMobiledata, Icon3k, Icon3kPlus, Icon3mp, Icon3p, Icon4gMobiledata, Icon4gPlusMobiledata, Icon4k, Icon4kPlus, Icon4mp, Icon5g, Icon5k, Icon5kPlus, Icon5mp, Icon60fps, Icon60fpsSelect, Icon6FtApart, Icon6k, Icon6kPlus, Icon6mp, Icon7k, Icon7kPlus, Icon7mp, Icon8k, Icon8kPlus, Icon8mp, Icon9k, Icon9kPlus, Icon9mp, IconAcUnit, IconAccessAlarm, IconAccessAlarms, IconAccessTime, IconAccessTimeFilled, IconAccessibility, IconAccessibilityNew, IconAccessible, IconAccessibleForward, IconAccountBalance, IconAccountBalanceWallet, IconAccountBox, IconAccountCircle, IconAccountTree, IconAdUnits, IconAdb, IconAdd, IconAddAPhoto, IconAddAlarm, IconAddAlert, IconAddBox, IconAddBusiness, IconAddCall, IconAddChart, IconAddCircle, IconAddCircleOutline, IconAddComment, IconAddIcCall, IconAddLink, IconAddLocation, IconAddLocationAlt, IconAddModerator, IconAddPhotoAlternate, IconAddReaction, IconAddRoad, IconAddShoppingCart, IconAddTask, IconAddToDrive, IconAddToHomeScreen, IconAddToPhotos, IconAddToQueue, IconAdjust, IconAdminPanelSettings, IconAdsClick, IconAgriculture, IconAir, IconAirlineSeatFlat, IconAirlineSeatFlatAngled, IconAirlineSeatIndividualSuite, IconAirlineSeatLegroomExtra, IconAirlineSeatLegroomNormal, IconAirlineSeatLegroomReduced, IconAirlineSeatReclineExtra, IconAirlineSeatReclineNormal, IconAirplaneTicket, IconAirplanemodeActive, IconAirplanemodeInactive, IconAirplay, IconAirportShuttle, IconAlarm, IconAlarmAdd, IconAlarmOff, IconAlarmOn, IconAlbum, IconAlignHorizontalCenter, IconAlignHorizontalLeft, IconAlignHorizontalRight, IconAlignVerticalBottom, IconAlignVerticalCenter, IconAlignVerticalTop, IconAllInbox, IconAllInclusive, IconAllOut, IconAltRoute, IconAlternateEmail, IconAmpStories, IconAnalytics, IconAnchor, IconAndroid, IconAnimation, IconAnnouncement, IconAod, IconApartment, IconApi, IconAppBlocking, IconAppRegistration, IconAppSettingsAlt, IconApproval, IconApps, IconArchitecture, IconArchive, IconAreaChart, IconArrowBack, IconArrowBackIos, IconArrowBackIosNew, IconArrowCircleDown, IconArrowCircleUp, IconArrowDownward, IconArrowDropDown, IconArrowDropDownCircle, IconArrowDropUp, IconArrowForward, IconArrowForwardIos, IconArrowLeft, IconArrowRight, IconArrowRightAlt, IconArrowUpward, IconArtTrack, IconArticle, IconAspectRatio, IconAssessment, IconAssignment, IconAssignmentInd, IconAssignmentLate, IconAssignmentReturn, IconAssignmentReturned, IconAssignmentTurnedIn, IconAssistant, IconAssistantDirection, IconAssistantNavigation, IconAssistantPhoto, IconAtm, IconAttachEmail, IconAttachFile, IconAttachMoney, IconAttachment, IconAttractions, IconAttribution, IconAudiotrack, IconAutoAwesome, IconAutoAwesomeMosaic, IconAutoAwesomeMotion, IconAutoDelete, IconAutoFixHigh, IconAutoFixNormal, IconAutoFixOff, IconAutoGraph, IconAutoStories, IconAutofpsSelect, IconAutorenew, IconAvTimer, IconBabyChangingStation, IconBackHand, IconBackpack, IconBackspace, IconBackup, IconBackupTable, IconBadge, IconBakeryDining, IconBalcony, IconBallot, IconBarChart, IconBatchPrediction, IconBathroom, IconBathtub, IconBatteryAlert, IconBatteryChargingFull, IconBatteryFull, IconBatterySaver, IconBatteryStd, IconBatteryUnknown, IconBeachAccess, IconBed, IconBedroomBaby, IconBedroomChild, IconBedroomParent, IconBedtime, IconBeenhere, IconBento, IconBikeScooter, IconBiotech, IconBlender, IconBlock, IconBlockFlipped, IconBloodtype, IconBluetooth, IconBluetoothAudio, IconBluetoothConnected, IconBluetoothDisabled, IconBluetoothDrive, IconBluetoothSearching, IconBlurCircular, IconBlurLinear, IconBlurOff, IconBlurOn, IconBolt, IconBook, IconBookOnline, IconBookmark, IconBookmarkAdd, IconBookmarkAdded, IconBookmarkBorder, IconBookmarkRemove, IconBookmarks, IconBorderAll, IconBorderBottom, IconBorderClear, IconBorderColor, IconBorderHorizontal, IconBorderInner, IconBorderLeft, IconBorderOuter, IconBorderRight, IconBorderStyle, IconBorderTop, IconBorderVertical, IconBrandingWatermark, IconBreakfastDining, IconBrightnessAuto, IconBrightnessHigh, IconBrightnessLow, IconBrightnessMedium, IconBrightness_1, IconBrightness_2, IconBrightness_3, IconBrightness_4, IconBrightness_5, IconBrightness_6, IconBrightness_7, IconBrokenImage, IconBrowserNotSupported, IconBrunchDining, IconBrush, IconBubbleChart, IconBugReport, IconBuild, IconBuildCircle, IconBungalow, IconBurstMode, IconBusAlert, IconBusiness, IconBusinessCenter, IconCabin, IconCable, IconCached, IconCake, IconCalculate, IconCalendarToday, IconCalendarViewDay, IconCalendarViewMonth, IconCalendarViewWeek, IconCall, IconCallEnd, IconCallMade, IconCallMerge, IconCallMissed, IconCallMissedOutgoing, IconCallReceived, IconCallSplit, IconCallToAction, IconCamera, IconCameraAlt, IconCameraEnhance, IconCameraFront, IconCameraIndoor, IconCameraOutdoor, IconCameraRear, IconCameraRoll, IconCameraswitch, IconCampaign, IconCancel, IconCancelPresentation, IconCancelScheduleSend, IconCarRental, IconCarRepair, IconCardGiftcard, IconCardMembership, IconCardTravel, IconCarpenter, IconCases, IconCasino, IconCast, IconCastConnected, IconCastForEducation, IconCatchingPokemon, IconCategory, IconCelebration, IconCellWifi, IconCenterFocusStrong, IconCenterFocusWeak, IconChair, IconChairAlt, IconChalet, IconChangeCircle, IconChangeHistory, IconChargingStation, IconChat, IconChatBubble, IconChatBubbleOutline, IconCheck, IconCheckBox, IconCheckBoxOutlineBlank, IconCheckCircle, IconCheckCircleOutline, IconChecklist, IconChecklistRtl, IconCheckroom, IconChevronLeft, IconChevronRight, IconChildCare, IconChildFriendly, IconChromeReaderMode, IconCircle, IconCircleNotifications, IconClass, IconCleanHands, IconCleaningServices, IconClear, IconClearAll, IconClose, IconCloseFullscreen, IconClosedCaption, IconClosedCaptionDisabled, IconClosedCaptionOff, IconCloud, IconCloudCircle, IconCloudDone, IconCloudDownload, IconCloudOff, IconCloudQueue, IconCloudUpload, IconCode, IconCodeOff, IconCoffee, IconCoffeeMaker, IconCollections, IconCollectionsBookmark, IconColorLens, IconColorize, IconComment, IconCommentBank, IconCommute, IconCompare, IconCompareArrows, IconCompassCalibration, IconCompost, IconCompress, IconComputer, IconConfirmationNumber, IconConnectWithoutContact, IconConnectedTv, IconConstruction, IconContactMail, IconContactPage, IconContactPhone, IconContactSupport, IconContactless, IconContacts, IconContentCopy, IconContentCut, IconContentPaste, IconContentPasteOff, IconControlCamera, IconControlPoint, IconControlPointDuplicate, IconCopyAll, IconCopyright, IconCoronavirus, IconCorporateFare, IconCottage, IconCountertops, IconCreate, IconCreateNewFolder, IconCreditCard, IconCreditCardOff, IconCreditScore, IconCrib, IconCrop, IconCropDin, IconCropFree, IconCropLandscape, IconCropOriginal, IconCropPortrait, IconCropRotate, IconCropSquare, IconCrop_16_9, IconCrop_3_2, IconCrop_5_4, IconCrop_7_5, IconCrueltyFree, IconDangerous, IconDarkMode, IconDashboard, IconDashboardCustomize, IconDataExploration, IconDataSaverOff, IconDataSaverOn, IconDataUsage, IconDateRange, IconDeck, IconDehaze, IconDelete, IconDeleteForever, IconDeleteOutline, IconDeleteSweep, IconDeliveryDining, IconDepartureBoard, IconDescription, IconDesignServices, IconDesktopAccessDisabled, IconDesktopMac, IconDesktopWindows, IconDetails, IconDeveloperBoard, IconDeveloperBoardOff, IconDeveloperMode, IconDeviceHub, IconDeviceThermostat, IconDeviceUnknown, IconDevices, IconDevicesOther, IconDialerSip, IconDialpad, IconDining, IconDinnerDining, IconDirections, IconDirectionsBike, IconDirectionsBoat, IconDirectionsBoatFilled, IconDirectionsBus, IconDirectionsBusFilled, IconDirectionsCar, IconDirectionsCarFilled, IconDirectionsOff, IconDirectionsRailway, IconDirectionsRailwayFilled, IconDirectionsRun, IconDirectionsSubway, IconDirectionsSubwayFilled, IconDirectionsTransit, IconDirectionsTransitFilled, IconDirectionsWalk, IconDirtyLens, IconDisabledByDefault, IconDisabledVisible, IconDiscFull, IconDns, IconDoDisturb, IconDoDisturbAlt, IconDoDisturbOff, IconDoDisturbOn, IconDoNotDisturb, IconDoNotDisturbAlt, IconDoNotDisturbOff, IconDoNotDisturbOn, IconDoNotDisturbOnTotalSilence, IconDoNotStep, IconDoNotTouch, IconDock, IconDocumentScanner, IconDomain, IconDomainDisabled, IconDomainVerification, IconDone, IconDoneAll, IconDoneOutline, IconDonutLarge, IconDonutSmall, IconDoorBack, IconDoorFront, IconDoorSliding, IconDoorbell, IconDoubleArrow, IconDownhillSkiing, IconDownload, IconDownloadDone, IconDownloadForOffline, IconDownloading, IconDrafts, IconDragHandle, IconDragIndicator, IconDraw, IconDriveEta, IconDriveFileMove, IconDriveFileMoveOutline, IconDriveFileMoveRtl, IconDriveFileRenameOutline, IconDriveFolderUpload, IconDry, IconDryCleaning, IconDuo, IconDvr, IconDynamicFeed, IconDynamicForm, IconEMobiledata, IconEarbuds, IconEarbudsBattery, IconEast, IconEco, IconEdgesensorHigh, IconEdgesensorLow, IconEdit, IconEditAttributes, IconEditCalendar, IconEditLocation, IconEditLocationAlt, IconEditNote, IconEditNotifications, IconEditOff, IconEditRoad, IconEject, IconElderly, IconElectricBike, IconElectricCar, IconElectricMoped, IconElectricRickshaw, IconElectricScooter, IconElectricalServices, IconElevator, IconEmail, IconEmergency, IconEmojiEmotions, IconEmojiEvents, IconEmojiFlags, IconEmojiFoodBeverage, IconEmojiNature, IconEmojiObjects, IconEmojiPeople, IconEmojiSymbols, IconEmojiTransportation, IconEngineering, IconEnhancedEncryption, IconEqualizer, IconError, IconErrorOutline, IconEscalator, IconEscalatorWarning, IconEuro, IconEuroSymbol, IconEvStation, IconEvent, IconEventAvailable, IconEventBusy, IconEventNote, IconEventSeat, IconExitToApp, IconExpand, IconExpandLess, IconExpandMore, IconExplicit, IconExplore, IconExploreOff, IconExposure, IconExposureNeg_1, IconExposureNeg_2, IconExposurePlus_1, IconExposurePlus_2, IconExposureZero, IconExtension, IconExtensionOff, IconFace, IconFaceRetouchingNatural, IconFaceRetouchingOff, IconFacebook, IconFactCheck, IconFamilyRestroom, IconFastForward, IconFastRewind, IconFastfood, IconFavorite, IconFavoriteBorder, IconFeaturedPlayList, IconFeaturedVideo, IconFeed, IconFeedback, IconFemale, IconFence, IconFestival, IconFiberDvr, IconFiberManualRecord, IconFiberNew, IconFiberPin, IconFiberSmartRecord, IconFileCopy, IconFileDownload, IconFileDownloadDone, IconFileDownloadOff, IconFilePresent, IconFileUpload, IconFilter, IconFilterAlt, IconFilterBAndW, IconFilterCenterFocus, IconFilterDrama, IconFilterFrames, IconFilterHdr, IconFilterList, IconFilterListAlt, IconFilterNone, IconFilterTiltShift, IconFilterVintage, IconFilter_1, IconFilter_2, IconFilter_3, IconFilter_4, IconFilter_5, IconFilter_6, IconFilter_7, IconFilter_8, IconFilter_9, IconFilter_9Plus, IconFindInPage, IconFindReplace, IconFingerprint, IconFireExtinguisher, IconFireplace, IconFirstPage, IconFitScreen, IconFitnessCenter, IconFlag, IconFlaky, IconFlare, IconFlashAuto, IconFlashOff, IconFlashOn, IconFlashlightOff, IconFlashlightOn, IconFlatware, IconFlight, IconFlightLand, IconFlightTakeoff, IconFlip, IconFlipCameraAndroid, IconFlipCameraIos, IconFlipToBack, IconFlipToFront, IconFlourescent, IconFlutterDash, IconFmdBad, IconFmdGood, IconFolder, IconFolderOpen, IconFolderShared, IconFolderSpecial, IconFollowTheSigns, IconFontDownload, IconFontDownloadOff, IconFoodBank, IconFormatAlignCenter, IconFormatAlignJustify, IconFormatAlignLeft, IconFormatAlignRight, IconFormatBold, IconFormatClear, IconFormatColorFill, IconFormatColorReset, IconFormatColorText, IconFormatIndentDecrease, IconFormatIndentIncrease, IconFormatItalic, IconFormatLineSpacing, IconFormatListBulleted, IconFormatListNumbered, IconFormatListNumberedRtl, IconFormatPaint, IconFormatQuote, IconFormatShapes, IconFormatSize, IconFormatStrikethrough, IconFormatTextdirectionLToR, IconFormatTextdirectionRToL, IconFormatUnderlined, IconForum, IconForward, IconForwardToInbox, IconForward_10, IconForward_30, IconForward_5, IconFoundation, IconFreeBreakfast, IconFreeCancellation, IconFrontHand, IconFullscreen, IconFullscreenExit, IconFunctions, IconGMobiledata, IconGTranslate, IconGamepad, IconGames, IconGarage, IconGavel, IconGeneratingTokens, IconGesture, IconGetApp, IconGif, IconGite, IconGolfCourse, IconGppBad, IconGppGood, IconGppMaybe, IconGpsFixed, IconGpsNotFixed, IconGpsOff, IconGrade, IconGradient, IconGrading, IconGrain, IconGraphicEq, IconGrass, IconGridGoldenratio, IconGridOff, IconGridOn, IconGridView, IconGrid_3x3, IconGrid_4x4, IconGroup, IconGroupAdd, IconGroupOff, IconGroupWork, IconGroups, IconHMobiledata, IconHPlusMobiledata, IconHail, IconHandyman, IconHardware, IconHd, IconHdrAuto, IconHdrAutoSelect, IconHdrEnhancedSelect, IconHdrOff, IconHdrOffSelect, IconHdrOn, IconHdrOnSelect, IconHdrPlus, IconHdrStrong, IconHdrWeak, IconHeadphones, IconHeadphonesBattery, IconHeadset, IconHeadsetMic, IconHeadsetOff, IconHealing, IconHealthAndSafety, IconHearing, IconHearingDisabled, IconHeight, IconHelp, IconHelpCenter, IconHelpOutline, IconHevc, IconHideImage, IconHideSource, IconHighQuality, IconHighlight, IconHighlightAlt, IconHighlightOff, IconHiking, IconHistory, IconHistoryEdu, IconHistoryToggleOff, IconHolidayVillage, IconHome, IconHomeFilled, IconHomeMax, IconHomeMini, IconHomeRepairService, IconHomeWork, IconHorizontalDistribute, IconHorizontalRule, IconHorizontalSplit, IconHotTub, IconHotel, IconHotelClass, IconHourglassBottom, IconHourglassDisabled, IconHourglassEmpty, IconHourglassFull, IconHourglassTop, IconHouse, IconHouseSiding, IconHouseboat, IconHowToReg, IconHowToVote, IconHttp, IconHttps, IconHvac, IconIceSkating, IconIcecream, IconImage, IconImageAspectRatio, IconImageNotSupported, IconImageSearch, IconImagesearchRoller, IconImportContacts, IconImportExport, IconImportantDevices, IconInbox, IconIncompleteCircle, IconIndeterminateCheckBox, IconInfo, IconInfoOutline, IconInput, IconInsertChart, IconInsertChartOutlined, IconInsertComment, IconInsertDriveFile, IconInsertEmoticon, IconInsertInvitation, IconInsertLink, IconInsertPhoto, IconInsights, IconIntegrationInstructions, IconInventory, IconInventory_2, IconInvertColors, IconInvertColorsOff, IconIosShare, IconIron, IconIso, IconKayaking, IconKeyboard, IconKeyboardAlt, IconKeyboardArrowDown, IconKeyboardArrowLeft, IconKeyboardArrowRight, IconKeyboardArrowUp, IconKeyboardBackspace, IconKeyboardCapslock, IconKeyboardHide, IconKeyboardReturn, IconKeyboardTab, IconKeyboardVoice, IconKingBed, IconKitchen, IconKitesurfing, IconLabel, IconLabelImportant, IconLabelImportantOutline, IconLabelOff, IconLabelOutline, IconLandscape, IconLanguage, IconLaptop, IconLaptopChromebook, IconLaptopMac, IconLaptopWindows, IconLastPage, IconLaunch, IconLayers, IconLayersClear, IconLeaderboard, IconLeakAdd, IconLeakRemove, IconLegendToggle, IconLens, IconLensBlur, IconLibraryAdd, IconLibraryAddCheck, IconLibraryBooks, IconLibraryMusic, IconLight, IconLightMode, IconLightbulb, IconLightbulbOutline, IconLineStyle, IconLineWeight, IconLinearScale, IconLink, IconLinkOff, IconLinkedCamera, IconLiquor, IconList, IconListAlt, IconLiveHelp, IconLiveTv, IconLiving, IconLocalActivity, IconLocalAirport, IconLocalAtm, IconLocalBar, IconLocalCafe, IconLocalCarWash, IconLocalConvenienceStore, IconLocalDining, IconLocalDrink, IconLocalFireDepartment, IconLocalFlorist, IconLocalGasStation, IconLocalGroceryStore, IconLocalHospital, IconLocalHotel, IconLocalLaundryService, IconLocalLibrary, IconLocalMall, IconLocalMovies, IconLocalOffer, IconLocalParking, IconLocalPharmacy, IconLocalPhone, IconLocalPizza, IconLocalPlay, IconLocalPolice, IconLocalPostOffice, IconLocalPrintshop, IconLocalSee, IconLocalShipping, IconLocalTaxi, IconLocationCity, IconLocationDisabled, IconLocationOff, IconLocationOn, IconLocationPin, IconLocationSearching, IconLock, IconLockClock, IconLockOpen, IconLockOutline, IconLogin, IconLogout, IconLooks, IconLooksOne, IconLooksTwo, IconLooks_3, IconLooks_4, IconLooks_5, IconLooks_6, IconLoop, IconLoupe, IconLowPriority, IconLoyalty, IconLteMobiledata, IconLtePlusMobiledata, IconLuggage, IconLunchDining, IconMail, IconMailOutline, IconMale, IconManageAccounts, IconManageSearch, IconMap, IconMapsHomeWork, IconMapsUgc, IconMargin, IconMarkAsUnread, IconMarkChatRead, IconMarkChatUnread, IconMarkEmailRead, IconMarkEmailUnread, IconMarkunread, IconMarkunreadMailbox, IconMasks, IconMaximize, IconMediaBluetoothOff, IconMediaBluetoothOn, IconMediation, IconMedicalServices, IconMedication, IconMeetingRoom, IconMemory, IconMenu, IconMenuBook, IconMenuOpen, IconMergeType, IconMessage, IconMic, IconMicExternalOff, IconMicExternalOn, IconMicNone, IconMicOff, IconMicrowave, IconMilitaryTech, IconMinimize, IconMiscellaneousServices, IconMissedVideoCall, IconMms, IconMobileFriendly, IconMobileOff, IconMobileScreenShare, IconMobiledataOff, IconMode, IconModeComment, IconModeEdit, IconModeEditOutline, IconModeNight, IconModeStandby, IconModelTraining, IconMonetizationOn, IconMoney, IconMoneyOff, IconMoneyOffCsred, IconMonitor, IconMonitorWeight, IconMonochromePhotos, IconMood, IconMoodBad, IconMoped, IconMore, IconMoreHoriz, IconMoreTime, IconMoreVert, IconMotionPhotosAuto, IconMotionPhotosOff, IconMotionPhotosOn, IconMotionPhotosPause, IconMotionPhotosPaused, IconMouse, IconMoveToInbox, IconMovie, IconMovieCreation, IconMovieFilter, IconMoving, IconMp, IconMultilineChart, IconMultipleStop, IconMuseum, IconMusicNote, IconMusicOff, IconMusicVideo, IconMyLocation, IconNat, IconNature, IconNaturePeople, IconNavigateBefore, IconNavigateNext, IconNavigation, IconNearMe, IconNearMeDisabled, IconNearbyError, IconNearbyOff, IconNetworkCell, IconNetworkCheck, IconNetworkLocked, IconNetworkWifi, IconNewLabel, IconNewReleases, IconNextPlan, IconNextWeek, IconNfc, IconNightShelter, IconNightlife, IconNightlight, IconNightlightRound, IconNightsStay, IconNoAccounts, IconNoBackpack, IconNoCell, IconNoDrinks, IconNoEncryption, IconNoEncryptionGmailerrorred, IconNoFlash, IconNoFood, IconNoLuggage, IconNoMeals, IconNoMealsOuline, IconNoMeetingRoom, IconNoPhotography, IconNoSim, IconNoStroller, IconNoTransfer, IconNordicWalking, IconNorth, IconNorthEast, IconNorthWest, IconNotAccessible, IconNotInterested, IconNotListedLocation, IconNotStarted, IconNote, IconNoteAdd, IconNoteAlt, IconNotes, IconNotificationAdd, IconNotificationImportant, IconNotifications, IconNotificationsActive, IconNotificationsNone, IconNotificationsOff, IconNotificationsPaused, IconOfflineBolt, IconOfflinePin, IconOfflineShare, IconOndemandVideo, IconOnlinePrediction, IconOpacity, IconOpenInBrowser, IconOpenInFull, IconOpenInNew, IconOpenInNewOff, IconOpenWith, IconOtherHouses, IconOutbond, IconOutbound, IconOutbox, IconOutdoorGrill, IconOutgoingMail, IconOutlet, IconOutlinedFlag, IconPadding, IconPages, IconPageview, IconPaid, IconPalette, IconPanTool, IconPanorama, IconPanoramaFishEye, IconPanoramaHorizontal, IconPanoramaHorizontalSelect, IconPanoramaPhotosphere, IconPanoramaPhotosphereSelect, IconPanoramaVertical, IconPanoramaVerticalSelect, IconPanoramaWideAngle, IconPanoramaWideAngleSelect, IconParagliding, IconPark, IconPartyMode, IconPassword, IconPattern, IconPause, IconPauseCircle, IconPauseCircleFilled, IconPauseCircleOutline, IconPausePresentation, IconPayment, IconPayments, IconPedalBike, IconPending, IconPendingActions, IconPeople, IconPeopleAlt, IconPeopleOutline, IconPermCameraMic, IconPermContactCalendar, IconPermDataSetting, IconPermDeviceInformation, IconPermIdentity, IconPermMedia, IconPermPhoneMsg, IconPermScanWifi, IconPerson, IconPersonAdd, IconPersonAddAlt, IconPersonAddAlt_1, IconPersonAddDisabled, IconPersonOff, IconPersonOutline, IconPersonPin, IconPersonPinCircle, IconPersonRemove, IconPersonRemoveAlt_1, IconPersonSearch, IconPersonalInjury, IconPersonalVideo, IconPestControl, IconPestControlRodent, IconPets, IconPhone, IconPhoneAndroid, IconPhoneBluetoothSpeaker, IconPhoneCallback, IconPhoneDisabled, IconPhoneEnabled, IconPhoneForwarded, IconPhoneInTalk, IconPhoneIphone, IconPhoneLocked, IconPhoneMissed, IconPhonePaused, IconPhonelink, IconPhonelinkErase, IconPhonelinkLock, IconPhonelinkOff, IconPhonelinkRing, IconPhonelinkSetup, IconPhoto, IconPhotoAlbum, IconPhotoCamera, IconPhotoCameraBack, IconPhotoCameraFront, IconPhotoFilter, IconPhotoLibrary, IconPhotoSizeSelectActual, IconPhotoSizeSelectLarge, IconPhotoSizeSelectSmall, IconPiano, IconPianoOff, IconPictureAsPdf, IconPictureInPicture, IconPictureInPictureAlt, IconPieChart, IconPieChartOutline, IconPieChartOutlined, IconPin, IconPinDrop, IconPinEnd, IconPinInvoke, IconPivotTableChart, IconPlace, IconPlagiarism, IconPlayArrow, IconPlayCircle, IconPlayCircleFilled, IconPlayCircleOutline, IconPlayDisabled, IconPlayForWork, IconPlayLesson, IconPlaylistAdd, IconPlaylistAddCheck, IconPlaylistPlay, IconPlumbing, IconPlusOne, IconPodcasts, IconPointOfSale, IconPolicy, IconPoll, IconPolymer, IconPool, IconPortableWifiOff, IconPortrait, IconPostAdd, IconPower, IconPowerInput, IconPowerOff, IconPowerSettingsNew, IconPrecisionManufacturing, IconPregnantWoman, IconPresentToAll, IconPreview, IconPriceChange, IconPriceCheck, IconPrint, IconPrintDisabled, IconPriorityHigh, IconPrivacyTip, IconPrivateConnectivity, IconProductionQuantityLimits, IconProps, IconPsychology, IconPublic, IconPublicOff, IconPublish, IconPublishedWithChanges, IconPushPin, IconQrCode, IconQrCodeScanner, IconQrCode_2, IconQueryBuilder, IconQueryStats, IconQuestionAnswer, IconQueue, IconQueueMusic, IconQueuePlayNext, IconQuickreply, IconQuiz, IconRMobiledata, IconRadar, IconRadio, IconRadioButtonChecked, IconRadioButtonUnchecked, IconRailwayAlert, IconRamenDining, IconRateReview, IconRawOff, IconRawOn, IconReadMore, IconRealEstateAgent, IconReceipt, IconReceiptLong, IconRecentActors, IconRecommend, IconRecordVoiceOver, IconRecycling, IconRedeem, IconRedo, IconReduceCapacity, IconRefresh, IconRememberMe, IconRemove, IconRemoveCircle, IconRemoveCircleOutline, IconRemoveDone, IconRemoveFromQueue, IconRemoveModerator, IconRemoveRedEye, IconRemoveShoppingCart, IconReorder, IconRepeat, IconRepeatOn, IconRepeatOne, IconRepeatOneOn, IconReplay, IconReplayCircleFilled, IconReplay_10, IconReplay_30, IconReplay_5, IconReply, IconReplyAll, IconReport, IconReportGmailerrorred, IconReportOff, IconReportProblem, IconRequestPage, IconRequestQuote, IconResetTv, IconRestartAlt, IconRestaurant, IconRestaurantMenu, IconRestore, IconRestoreFromTrash, IconRestorePage, IconReviews, IconRiceBowl, IconRingVolume, IconRoofing, IconRoom, IconRoomPreferences, IconRoomService, IconRotateLeft, IconRotateRight, IconRotate_90DegreesCcw, IconRoundedCorner, IconRouter, IconRowing, IconRssFeed, IconRsvp, IconRtt, IconRule, IconRuleFolder, IconRunCircle, IconRunningWithErrors, IconRvHookup, IconSafetyDivider, IconSailing, IconSanitizer, IconSatellite, IconSave, IconSaveAlt, IconSavedSearch, IconSavings, IconScanner, IconScatterPlot, IconSchedule, IconScheduleSend, IconSchema, IconSchool, IconScience, IconScore, IconScreenLockLandscape, IconScreenLockPortrait, IconScreenLockRotation, IconScreenRotation, IconScreenSearchDesktop, IconScreenShare, IconScreenshot, IconSd, IconSdCard, IconSdCardAlert, IconSdStorage, IconSearch, IconSearchOff, IconSecurity, IconSecurityUpdate, IconSecurityUpdateGood, IconSecurityUpdateWarning, IconSegment, IconSelectAll, IconSelfImprovement, IconSell, IconSend, IconSendAndArchive, IconSendToMobile, IconSensorDoor, IconSensorWindow, IconSensors, IconSensorsOff, IconSentimentDissatisfied, IconSentimentNeutral, IconSentimentSatisfied, IconSentimentSatisfiedAlt, IconSentimentVeryDissatisfied, IconSentimentVerySatisfied, IconSetMeal, IconSettings, IconSettingsAccessibility, IconSettingsApplications, IconSettingsBackupRestore, IconSettingsBluetooth, IconSettingsBrightness, IconSettingsCell, IconSettingsEthernet, IconSettingsInputAntenna, IconSettingsInputComponent, IconSettingsInputComposite, IconSettingsInputHdmi, IconSettingsInputSvideo, IconSettingsOverscan, IconSettingsPhone, IconSettingsPower, IconSettingsRemote, IconSettingsSuggest, IconSettingsSystemDaydream, IconSettingsVoice, IconShare, IconShareLocation, IconShield, IconShop, IconShopTwo, IconShop_2, IconShoppingBag, IconShoppingBasket, IconShoppingCart, IconShortText, IconShortcut, IconShowChart, IconShower, IconShuffle, IconShuffleOn, IconShutterSpeed, IconSick, IconSignalCellularAlt, IconSignalCellularConnectedNoInternet_0Bar, IconSignalCellularConnectedNoInternet_4Bar, IconSignalCellularNoSim, IconSignalCellularNodata, IconSignalCellularNull, IconSignalCellularOff, IconSignalCellular_0Bar, IconSignalCellular_4Bar, IconSignalWifiBad, IconSignalWifiConnectedNoInternet_4, IconSignalWifiOff, IconSignalWifiStatusbarConnectedNoInternet_4, IconSignalWifiStatusbarNull, IconSignalWifiStatusbar_4Bar, IconSignalWifi_0Bar, IconSignalWifi_4Bar, IconSignalWifi_4BarLock, IconSimCard, IconSimCardAlert, IconSimCardDownload, IconSingleBed, IconSip, IconSize, IconSkateboarding, IconSkipNext, IconSkipPrevious, IconSledding, IconSlideshow, IconSlowMotionVideo, IconSmartButton, IconSmartDisplay, IconSmartScreen, IconSmartToy, IconSmartphone, IconSmokeFree, IconSmokingRooms, IconSms, IconSmsFailed, IconSnippetFolder, IconSnooze, IconSnowboarding, IconSnowmobile, IconSnowshoeing, IconSoap, IconSocialDistance, IconSort, IconSortByAlpha, IconSource, IconSouth, IconSouthEast, IconSouthWest, IconSpa, IconSpaceBar, IconSpaceDashboard, IconSpeaker, IconSpeakerGroup, IconSpeakerNotes, IconSpeakerNotesOff, IconSpeakerPhone, IconSpeed, IconSpellcheck, IconSplitscreen, IconSports, IconSportsBar, IconSportsBaseball, IconSportsBasketball, IconSportsCricket, IconSportsEsports, IconSportsFootball, IconSportsGolf, IconSportsHandball, IconSportsHockey, IconSportsKabaddi, IconSportsMma, IconSportsMotorsports, IconSportsRugby, IconSportsScore, IconSportsSoccer, IconSportsTennis, IconSportsVolleyball, IconSquareFoot, IconStackedBarChart, IconStackedLineChart, IconStairs, IconStar, IconStarBorder, IconStarBorderPurple500, IconStarHalf, IconStarOutline, IconStarPurple500, IconStarRate, IconStars, IconStayCurrentLandscape, IconStayCurrentPortrait, IconStayPrimaryLandscape, IconStayPrimaryPortrait, IconStickyNote_2, IconStop, IconStopCircle, IconStopScreenShare, IconStorage, IconStore, IconStoreMallDirectory, IconStorefront, IconStorm, IconStraighten, IconStream, IconStreetview, IconStrikethroughS, IconStroller, IconStyle, IconSubdirectoryArrowLeft, IconSubdirectoryArrowRight, IconSubject, IconSubscript, IconSubscriptions, IconSubtitles, IconSubtitlesOff, IconSubway, IconSummarize, IconSuperscript, IconSupervisedUserCircle, IconSupervisorAccount, IconSupport, IconSupportAgent, IconSurfing, IconSurroundSound, IconSwapCalls, IconSwapHoriz, IconSwapHorizontalCircle, IconSwapVert, IconSwapVerticalCircle, IconSwipe, IconSwitchAccount, IconSwitchCamera, IconSwitchLeft, IconSwitchRight, IconSwitchVideo, IconSync, IconSyncAlt, IconSyncDisabled, IconSyncProblem, IconSystemSecurityUpdate, IconSystemSecurityUpdateGood, IconSystemSecurityUpdateWarning, IconSystemUpdate, IconSystemUpdateAlt, IconTab, IconTabUnselected, IconTableChart, IconTableRows, IconTableView, IconTablet, IconTabletAndroid, IconTabletMac, IconTag, IconTagFaces, IconTakeoutDining, IconTapAndPlay, IconTapas, IconTask, IconTaskAlt, IconTaxiAlert, IconTerrain, IconTextFields, IconTextFormat, IconTextRotateUp, IconTextRotateVertical, IconTextRotationAngledown, IconTextRotationAngleup, IconTextRotationDown, IconTextRotationNone, IconTextSnippet, IconTextsms, IconTexture, IconTheaterComedy, IconTheaters, IconThermostat, IconThermostatAuto, IconThumbDown, IconThumbDownAlt, IconThumbDownOffAlt, IconThumbUp, IconThumbUpAlt, IconThumbUpOffAlt, IconThumbsUpDown, IconTimeToLeave, IconTimelapse, IconTimeline, IconTimer, IconTimerOff, IconTimer_10, IconTimer_10Select, IconTimer_3, IconTimer_3Select, IconTipsAndUpdates, IconTitle, IconToc, IconToday, IconToggleOff, IconToggleOn, IconToll, IconTonality, IconTopic, IconTouchApp, IconTour, IconToys, IconTrackChanges, IconTraffic, IconTrain, IconTram, IconTransferWithinAStation, IconTransform, IconTransgender, IconTransitEnterexit, IconTranslate, IconTravelExplore, IconTrendingDown, IconTrendingFlat, IconTrendingUp, IconTripOrigin, IconTry, IconTty, IconTune, IconTungsten, IconTurnedIn, IconTurnedInNot, IconTv, IconTvOff, IconTwoWheeler, IconUmbrella, IconUnarchive, IconUndo, IconUnfoldLess, IconUnfoldMore, IconUnpublished, IconUnsubscribe, IconUpcoming, IconUpdate, IconUpdateDisabled, IconUpgrade, IconUpload, IconUploadFile, IconUsb, IconUsbOff, IconVerified, IconVerifiedUser, IconVerticalAlignBottom, IconVerticalAlignCenter, IconVerticalAlignTop, IconVerticalDistribute, IconVerticalSplit, IconVibration, IconVideoCall, IconVideoCameraBack, IconVideoCameraFront, IconVideoLabel, IconVideoLibrary, IconVideoSettings, IconVideoStable, IconVideocam, IconVideocamOff, IconVideogameAsset, IconVideogameAssetOff, IconViewAgenda, IconViewArray, IconViewCarousel, IconViewColumn, IconViewComfy, IconViewCompact, IconViewDay, IconViewHeadline, IconViewInAr, IconViewList, IconViewModule, IconViewQuilt, IconViewSidebar, IconViewStream, IconViewWeek, IconVignette, IconVilla, IconVisibility, IconVisibilityOff, IconVoiceChat, IconVoiceOverOff, IconVoicemail, IconVolumeDown, IconVolumeDownAlt, IconVolumeMute, IconVolumeOff, IconVolumeUp, IconVolunteerActivism, IconVpnKey, IconVpnLock, IconVrpano, IconWallpaper, IconWarning, IconWarningAmber, IconWash, IconWatch, IconWatchLater, IconWater, IconWaterDamage, IconWaterDrop, IconWaterfallChart, IconWaves, IconWavingHand, IconWbAuto, IconWbCloudy, IconWbIncandescent, IconWbIridescent, IconWbShade, IconWbSunny, IconWbTwighlight, IconWbTwilight, IconWc, IconWeb, IconWebAsset, IconWebAssetOff, IconWebStories, IconWeekend, IconWest, IconWhatshot, IconWheelchairPickup, IconWhereToVote, IconWidgets, IconWifi, IconWifiCalling, IconWifiCalling_3, IconWifiLock, IconWifiOff, IconWifiProtectedSetup, IconWifiTethering, IconWifiTetheringErrorRounded, IconWifiTetheringOff, IconWindow, IconWineBar, IconWork, IconWorkOff, IconWorkOutline, IconWorkspaces, IconWorkspacesFilled, IconWorkspacesOutline, IconWrapText, IconWrongLocation, IconWysiwyg, IconYard, IconYoutubeSearchedFor, IconZoomIn, IconZoomOut, IconZoomOutMap, Image, ImageOptions, ImageProps, ImageStyleProps, Input, InputMode, InputProps, Label, LabelProps, Link, LinkOptions, LinkProps, ListCollectionProps, Main, Pagination, PaginationCallbackType, PaginationItemProps, PaginationItemType, PaginationProps, PasswordField, PasswordFieldProps, PasswordFieldType, Placeholder, PlaceholderProps, PlaceholderSize, Radio, RadioGroupField, RadioGroupFieldProps, RadioProps, Rating, RatingOptions, RatingProps, RatingSize, ResponsiveObject, ResponsiveStyle, SearchField, SearchFieldButtonProps, SearchFieldProps, SelectField, SelectFieldProps, SharedText, ShowPasswordButtonProps, Sizes, Spacer, SwitchField, SwitchFieldProps, TabItem, TabItemProps, Tabs, TabsGrow, TabsProps, Text, TextField, TextFieldProps, TextFieldType, Theme, Tokens, UsePaginationProps, UsePaginationResult, View, ViewAsHTMLElementTypes, ViewBox, ViewProps, VisuallyHidden, Wrapper, index$1 as components, defaultCSSVariables, extendTheming, findChildOverrides, getOverrideProps, labelPositions, index as primitives, useAmplify, useAuthenticator, usePagination, useSearchField, useTheming, withAuthenticator };
13132
+ export { Alert, AlertProps, AlertVariation, AllStyleProps, AmplifyProvider, AriaProps, Authenticator, Badge, BadgeProps, BadgeSize, BadgeVariation, BaseComponentProps, BaseStyleProps, Box, Button, ButtonProps, ButtonSize, ButtonTypes, ButtonVariation, CSSLayoutStyleProps, Card, CardProps, Collection, CollectionBaseProps, CollectionProps, CollectionType, CollectionTypeMap, CollectionTypeMapInterface, ComponentClassNames, ComponentPropToStyleProp, ComponentPropsToStylePropsMap, ComponentPropsToStylePropsMapKeys, CountryCodeSelectProps, DeepPartial, Divider, DividerOptions, DividerOrientation, DividerProps, DividerSize, ErrorText, EscapeHatchProps, FieldClearButtonProps, FieldDescriptionProps, FieldErrorMessageProps, FieldGroup, FieldGroupIcon, FieldGroupIconButton, FieldGroupIconButtonProps, FieldGroupIconProps, FieldGroupOptions, FieldProps, FieldVariations, Fieldset, Flex, FlexProps, FlexStyleProps, Footer, Form, Grid, GridContainerStyleProps, GridItemStyleProps, GridProps, Header, Heading, HeadingLevel, HeadingProps, Icon, Icon10k, Icon10mp, Icon11mp, Icon12mp, Icon13mp, Icon14mp, Icon15mp, Icon16mp, Icon17mp, Icon18mp, Icon19mp, Icon1k, Icon1kPlus, Icon1xMobiledata, Icon20mp, Icon21mp, Icon22mp, Icon23mp, Icon24mp, Icon2k, Icon2kPlus, Icon2mp, Icon30fps, Icon30fpsSelect, Icon360, Icon3dRotation, Icon3gMobiledata, Icon3k, Icon3kPlus, Icon3mp, Icon3p, Icon4gMobiledata, Icon4gPlusMobiledata, Icon4k, Icon4kPlus, Icon4mp, Icon5g, Icon5k, Icon5kPlus, Icon5mp, Icon60fps, Icon60fpsSelect, Icon6FtApart, Icon6k, Icon6kPlus, Icon6mp, Icon7k, Icon7kPlus, Icon7mp, Icon8k, Icon8kPlus, Icon8mp, Icon9k, Icon9kPlus, Icon9mp, IconAcUnit, IconAccessAlarm, IconAccessAlarms, IconAccessTime, IconAccessTimeFilled, IconAccessibility, IconAccessibilityNew, IconAccessible, IconAccessibleForward, IconAccountBalance, IconAccountBalanceWallet, IconAccountBox, IconAccountCircle, IconAccountTree, IconAdUnits, IconAdb, IconAdd, IconAddAPhoto, IconAddAlarm, IconAddAlert, IconAddBox, IconAddBusiness, IconAddCall, IconAddChart, IconAddCircle, IconAddCircleOutline, IconAddComment, IconAddIcCall, IconAddLink, IconAddLocation, IconAddLocationAlt, IconAddModerator, IconAddPhotoAlternate, IconAddReaction, IconAddRoad, IconAddShoppingCart, IconAddTask, IconAddToDrive, IconAddToHomeScreen, IconAddToPhotos, IconAddToQueue, IconAdjust, IconAdminPanelSettings, IconAdsClick, IconAgriculture, IconAir, IconAirlineSeatFlat, IconAirlineSeatFlatAngled, IconAirlineSeatIndividualSuite, IconAirlineSeatLegroomExtra, IconAirlineSeatLegroomNormal, IconAirlineSeatLegroomReduced, IconAirlineSeatReclineExtra, IconAirlineSeatReclineNormal, IconAirplaneTicket, IconAirplanemodeActive, IconAirplanemodeInactive, IconAirplay, IconAirportShuttle, IconAlarm, IconAlarmAdd, IconAlarmOff, IconAlarmOn, IconAlbum, IconAlignHorizontalCenter, IconAlignHorizontalLeft, IconAlignHorizontalRight, IconAlignVerticalBottom, IconAlignVerticalCenter, IconAlignVerticalTop, IconAllInbox, IconAllInclusive, IconAllOut, IconAltRoute, IconAlternateEmail, IconAmpStories, IconAnalytics, IconAnchor, IconAndroid, IconAnimation, IconAnnouncement, IconAod, IconApartment, IconApi, IconAppBlocking, IconAppRegistration, IconAppSettingsAlt, IconApproval, IconApps, IconArchitecture, IconArchive, IconAreaChart, IconArrowBack, IconArrowBackIos, IconArrowBackIosNew, IconArrowCircleDown, IconArrowCircleUp, IconArrowDownward, IconArrowDropDown, IconArrowDropDownCircle, IconArrowDropUp, IconArrowForward, IconArrowForwardIos, IconArrowLeft, IconArrowRight, IconArrowRightAlt, IconArrowUpward, IconArtTrack, IconArticle, IconAspectRatio, IconAssessment, IconAssignment, IconAssignmentInd, IconAssignmentLate, IconAssignmentReturn, IconAssignmentReturned, IconAssignmentTurnedIn, IconAssistant, IconAssistantDirection, IconAssistantNavigation, IconAssistantPhoto, IconAtm, IconAttachEmail, IconAttachFile, IconAttachMoney, IconAttachment, IconAttractions, IconAttribution, IconAudiotrack, IconAutoAwesome, IconAutoAwesomeMosaic, IconAutoAwesomeMotion, IconAutoDelete, IconAutoFixHigh, IconAutoFixNormal, IconAutoFixOff, IconAutoGraph, IconAutoStories, IconAutofpsSelect, IconAutorenew, IconAvTimer, IconBabyChangingStation, IconBackHand, IconBackpack, IconBackspace, IconBackup, IconBackupTable, IconBadge, IconBakeryDining, IconBalcony, IconBallot, IconBarChart, IconBatchPrediction, IconBathroom, IconBathtub, IconBatteryAlert, IconBatteryChargingFull, IconBatteryFull, IconBatterySaver, IconBatteryStd, IconBatteryUnknown, IconBeachAccess, IconBed, IconBedroomBaby, IconBedroomChild, IconBedroomParent, IconBedtime, IconBeenhere, IconBento, IconBikeScooter, IconBiotech, IconBlender, IconBlock, IconBlockFlipped, IconBloodtype, IconBluetooth, IconBluetoothAudio, IconBluetoothConnected, IconBluetoothDisabled, IconBluetoothDrive, IconBluetoothSearching, IconBlurCircular, IconBlurLinear, IconBlurOff, IconBlurOn, IconBolt, IconBook, IconBookOnline, IconBookmark, IconBookmarkAdd, IconBookmarkAdded, IconBookmarkBorder, IconBookmarkRemove, IconBookmarks, IconBorderAll, IconBorderBottom, IconBorderClear, IconBorderColor, IconBorderHorizontal, IconBorderInner, IconBorderLeft, IconBorderOuter, IconBorderRight, IconBorderStyle, IconBorderTop, IconBorderVertical, IconBrandingWatermark, IconBreakfastDining, IconBrightnessAuto, IconBrightnessHigh, IconBrightnessLow, IconBrightnessMedium, IconBrightness_1, IconBrightness_2, IconBrightness_3, IconBrightness_4, IconBrightness_5, IconBrightness_6, IconBrightness_7, IconBrokenImage, IconBrowserNotSupported, IconBrunchDining, IconBrush, IconBubbleChart, IconBugReport, IconBuild, IconBuildCircle, IconBungalow, IconBurstMode, IconBusAlert, IconBusiness, IconBusinessCenter, IconCabin, IconCable, IconCached, IconCake, IconCalculate, IconCalendarToday, IconCalendarViewDay, IconCalendarViewMonth, IconCalendarViewWeek, IconCall, IconCallEnd, IconCallMade, IconCallMerge, IconCallMissed, IconCallMissedOutgoing, IconCallReceived, IconCallSplit, IconCallToAction, IconCamera, IconCameraAlt, IconCameraEnhance, IconCameraFront, IconCameraIndoor, IconCameraOutdoor, IconCameraRear, IconCameraRoll, IconCameraswitch, IconCampaign, IconCancel, IconCancelPresentation, IconCancelScheduleSend, IconCarRental, IconCarRepair, IconCardGiftcard, IconCardMembership, IconCardTravel, IconCarpenter, IconCases, IconCasino, IconCast, IconCastConnected, IconCastForEducation, IconCatchingPokemon, IconCategory, IconCelebration, IconCellWifi, IconCenterFocusStrong, IconCenterFocusWeak, IconChair, IconChairAlt, IconChalet, IconChangeCircle, IconChangeHistory, IconChargingStation, IconChat, IconChatBubble, IconChatBubbleOutline, IconCheck, IconCheckBox, IconCheckBoxOutlineBlank, IconCheckCircle, IconCheckCircleOutline, IconChecklist, IconChecklistRtl, IconCheckroom, IconChevronLeft, IconChevronRight, IconChildCare, IconChildFriendly, IconChromeReaderMode, IconCircle, IconCircleNotifications, IconClass, IconCleanHands, IconCleaningServices, IconClear, IconClearAll, IconClose, IconCloseFullscreen, IconClosedCaption, IconClosedCaptionDisabled, IconClosedCaptionOff, IconCloud, IconCloudCircle, IconCloudDone, IconCloudDownload, IconCloudOff, IconCloudQueue, IconCloudUpload, IconCode, IconCodeOff, IconCoffee, IconCoffeeMaker, IconCollections, IconCollectionsBookmark, IconColorLens, IconColorize, IconComment, IconCommentBank, IconCommute, IconCompare, IconCompareArrows, IconCompassCalibration, IconCompost, IconCompress, IconComputer, IconConfirmationNumber, IconConnectWithoutContact, IconConnectedTv, IconConstruction, IconContactMail, IconContactPage, IconContactPhone, IconContactSupport, IconContactless, IconContacts, IconContentCopy, IconContentCut, IconContentPaste, IconContentPasteOff, IconControlCamera, IconControlPoint, IconControlPointDuplicate, IconCopyAll, IconCopyright, IconCoronavirus, IconCorporateFare, IconCottage, IconCountertops, IconCreate, IconCreateNewFolder, IconCreditCard, IconCreditCardOff, IconCreditScore, IconCrib, IconCrop, IconCropDin, IconCropFree, IconCropLandscape, IconCropOriginal, IconCropPortrait, IconCropRotate, IconCropSquare, IconCrop_16_9, IconCrop_3_2, IconCrop_5_4, IconCrop_7_5, IconCrueltyFree, IconDangerous, IconDarkMode, IconDashboard, IconDashboardCustomize, IconDataExploration, IconDataSaverOff, IconDataSaverOn, IconDataUsage, IconDateRange, IconDeck, IconDehaze, IconDelete, IconDeleteForever, IconDeleteOutline, IconDeleteSweep, IconDeliveryDining, IconDepartureBoard, IconDescription, IconDesignServices, IconDesktopAccessDisabled, IconDesktopMac, IconDesktopWindows, IconDetails, IconDeveloperBoard, IconDeveloperBoardOff, IconDeveloperMode, IconDeviceHub, IconDeviceThermostat, IconDeviceUnknown, IconDevices, IconDevicesOther, IconDialerSip, IconDialpad, IconDining, IconDinnerDining, IconDirections, IconDirectionsBike, IconDirectionsBoat, IconDirectionsBoatFilled, IconDirectionsBus, IconDirectionsBusFilled, IconDirectionsCar, IconDirectionsCarFilled, IconDirectionsOff, IconDirectionsRailway, IconDirectionsRailwayFilled, IconDirectionsRun, IconDirectionsSubway, IconDirectionsSubwayFilled, IconDirectionsTransit, IconDirectionsTransitFilled, IconDirectionsWalk, IconDirtyLens, IconDisabledByDefault, IconDisabledVisible, IconDiscFull, IconDns, IconDoDisturb, IconDoDisturbAlt, IconDoDisturbOff, IconDoDisturbOn, IconDoNotDisturb, IconDoNotDisturbAlt, IconDoNotDisturbOff, IconDoNotDisturbOn, IconDoNotDisturbOnTotalSilence, IconDoNotStep, IconDoNotTouch, IconDock, IconDocumentScanner, IconDomain, IconDomainDisabled, IconDomainVerification, IconDone, IconDoneAll, IconDoneOutline, IconDonutLarge, IconDonutSmall, IconDoorBack, IconDoorFront, IconDoorSliding, IconDoorbell, IconDoubleArrow, IconDownhillSkiing, IconDownload, IconDownloadDone, IconDownloadForOffline, IconDownloading, IconDrafts, IconDragHandle, IconDragIndicator, IconDraw, IconDriveEta, IconDriveFileMove, IconDriveFileMoveOutline, IconDriveFileMoveRtl, IconDriveFileRenameOutline, IconDriveFolderUpload, IconDry, IconDryCleaning, IconDuo, IconDvr, IconDynamicFeed, IconDynamicForm, IconEMobiledata, IconEarbuds, IconEarbudsBattery, IconEast, IconEco, IconEdgesensorHigh, IconEdgesensorLow, IconEdit, IconEditAttributes, IconEditCalendar, IconEditLocation, IconEditLocationAlt, IconEditNote, IconEditNotifications, IconEditOff, IconEditRoad, IconEject, IconElderly, IconElectricBike, IconElectricCar, IconElectricMoped, IconElectricRickshaw, IconElectricScooter, IconElectricalServices, IconElevator, IconEmail, IconEmergency, IconEmojiEmotions, IconEmojiEvents, IconEmojiFlags, IconEmojiFoodBeverage, IconEmojiNature, IconEmojiObjects, IconEmojiPeople, IconEmojiSymbols, IconEmojiTransportation, IconEngineering, IconEnhancedEncryption, IconEqualizer, IconError, IconErrorOutline, IconEscalator, IconEscalatorWarning, IconEuro, IconEuroSymbol, IconEvStation, IconEvent, IconEventAvailable, IconEventBusy, IconEventNote, IconEventSeat, IconExitToApp, IconExpand, IconExpandLess, IconExpandMore, IconExplicit, IconExplore, IconExploreOff, IconExposure, IconExposureNeg_1, IconExposureNeg_2, IconExposurePlus_1, IconExposurePlus_2, IconExposureZero, IconExtension, IconExtensionOff, IconFace, IconFaceRetouchingNatural, IconFaceRetouchingOff, IconFacebook, IconFactCheck, IconFamilyRestroom, IconFastForward, IconFastRewind, IconFastfood, IconFavorite, IconFavoriteBorder, IconFeaturedPlayList, IconFeaturedVideo, IconFeed, IconFeedback, IconFemale, IconFence, IconFestival, IconFiberDvr, IconFiberManualRecord, IconFiberNew, IconFiberPin, IconFiberSmartRecord, IconFileCopy, IconFileDownload, IconFileDownloadDone, IconFileDownloadOff, IconFilePresent, IconFileUpload, IconFilter, IconFilterAlt, IconFilterBAndW, IconFilterCenterFocus, IconFilterDrama, IconFilterFrames, IconFilterHdr, IconFilterList, IconFilterListAlt, IconFilterNone, IconFilterTiltShift, IconFilterVintage, IconFilter_1, IconFilter_2, IconFilter_3, IconFilter_4, IconFilter_5, IconFilter_6, IconFilter_7, IconFilter_8, IconFilter_9, IconFilter_9Plus, IconFindInPage, IconFindReplace, IconFingerprint, IconFireExtinguisher, IconFireplace, IconFirstPage, IconFitScreen, IconFitnessCenter, IconFlag, IconFlaky, IconFlare, IconFlashAuto, IconFlashOff, IconFlashOn, IconFlashlightOff, IconFlashlightOn, IconFlatware, IconFlight, IconFlightLand, IconFlightTakeoff, IconFlip, IconFlipCameraAndroid, IconFlipCameraIos, IconFlipToBack, IconFlipToFront, IconFlourescent, IconFlutterDash, IconFmdBad, IconFmdGood, IconFolder, IconFolderOpen, IconFolderShared, IconFolderSpecial, IconFollowTheSigns, IconFontDownload, IconFontDownloadOff, IconFoodBank, IconFormatAlignCenter, IconFormatAlignJustify, IconFormatAlignLeft, IconFormatAlignRight, IconFormatBold, IconFormatClear, IconFormatColorFill, IconFormatColorReset, IconFormatColorText, IconFormatIndentDecrease, IconFormatIndentIncrease, IconFormatItalic, IconFormatLineSpacing, IconFormatListBulleted, IconFormatListNumbered, IconFormatListNumberedRtl, IconFormatPaint, IconFormatQuote, IconFormatShapes, IconFormatSize, IconFormatStrikethrough, IconFormatTextdirectionLToR, IconFormatTextdirectionRToL, IconFormatUnderlined, IconForum, IconForward, IconForwardToInbox, IconForward_10, IconForward_30, IconForward_5, IconFoundation, IconFreeBreakfast, IconFreeCancellation, IconFrontHand, IconFullscreen, IconFullscreenExit, IconFunctions, IconGMobiledata, IconGTranslate, IconGamepad, IconGames, IconGarage, IconGavel, IconGeneratingTokens, IconGesture, IconGetApp, IconGif, IconGite, IconGolfCourse, IconGppBad, IconGppGood, IconGppMaybe, IconGpsFixed, IconGpsNotFixed, IconGpsOff, IconGrade, IconGradient, IconGrading, IconGrain, IconGraphicEq, IconGrass, IconGridGoldenratio, IconGridOff, IconGridOn, IconGridView, IconGrid_3x3, IconGrid_4x4, IconGroup, IconGroupAdd, IconGroupOff, IconGroupWork, IconGroups, IconHMobiledata, IconHPlusMobiledata, IconHail, IconHandyman, IconHardware, IconHd, IconHdrAuto, IconHdrAutoSelect, IconHdrEnhancedSelect, IconHdrOff, IconHdrOffSelect, IconHdrOn, IconHdrOnSelect, IconHdrPlus, IconHdrStrong, IconHdrWeak, IconHeadphones, IconHeadphonesBattery, IconHeadset, IconHeadsetMic, IconHeadsetOff, IconHealing, IconHealthAndSafety, IconHearing, IconHearingDisabled, IconHeight, IconHelp, IconHelpCenter, IconHelpOutline, IconHevc, IconHideImage, IconHideSource, IconHighQuality, IconHighlight, IconHighlightAlt, IconHighlightOff, IconHiking, IconHistory, IconHistoryEdu, IconHistoryToggleOff, IconHolidayVillage, IconHome, IconHomeFilled, IconHomeMax, IconHomeMini, IconHomeRepairService, IconHomeWork, IconHorizontalDistribute, IconHorizontalRule, IconHorizontalSplit, IconHotTub, IconHotel, IconHotelClass, IconHourglassBottom, IconHourglassDisabled, IconHourglassEmpty, IconHourglassFull, IconHourglassTop, IconHouse, IconHouseSiding, IconHouseboat, IconHowToReg, IconHowToVote, IconHttp, IconHttps, IconHvac, IconIceSkating, IconIcecream, IconImage, IconImageAspectRatio, IconImageNotSupported, IconImageSearch, IconImagesearchRoller, IconImportContacts, IconImportExport, IconImportantDevices, IconInbox, IconIncompleteCircle, IconIndeterminateCheckBox, IconInfo, IconInfoOutline, IconInput, IconInsertChart, IconInsertChartOutlined, IconInsertComment, IconInsertDriveFile, IconInsertEmoticon, IconInsertInvitation, IconInsertLink, IconInsertPhoto, IconInsights, IconIntegrationInstructions, IconInventory, IconInventory_2, IconInvertColors, IconInvertColorsOff, IconIosShare, IconIron, IconIso, IconKayaking, IconKeyboard, IconKeyboardAlt, IconKeyboardArrowDown, IconKeyboardArrowLeft, IconKeyboardArrowRight, IconKeyboardArrowUp, IconKeyboardBackspace, IconKeyboardCapslock, IconKeyboardHide, IconKeyboardReturn, IconKeyboardTab, IconKeyboardVoice, IconKingBed, IconKitchen, IconKitesurfing, IconLabel, IconLabelImportant, IconLabelImportantOutline, IconLabelOff, IconLabelOutline, IconLandscape, IconLanguage, IconLaptop, IconLaptopChromebook, IconLaptopMac, IconLaptopWindows, IconLastPage, IconLaunch, IconLayers, IconLayersClear, IconLeaderboard, IconLeakAdd, IconLeakRemove, IconLegendToggle, IconLens, IconLensBlur, IconLibraryAdd, IconLibraryAddCheck, IconLibraryBooks, IconLibraryMusic, IconLight, IconLightMode, IconLightbulb, IconLightbulbOutline, IconLineStyle, IconLineWeight, IconLinearScale, IconLink, IconLinkOff, IconLinkedCamera, IconLiquor, IconList, IconListAlt, IconLiveHelp, IconLiveTv, IconLiving, IconLocalActivity, IconLocalAirport, IconLocalAtm, IconLocalBar, IconLocalCafe, IconLocalCarWash, IconLocalConvenienceStore, IconLocalDining, IconLocalDrink, IconLocalFireDepartment, IconLocalFlorist, IconLocalGasStation, IconLocalGroceryStore, IconLocalHospital, IconLocalHotel, IconLocalLaundryService, IconLocalLibrary, IconLocalMall, IconLocalMovies, IconLocalOffer, IconLocalParking, IconLocalPharmacy, IconLocalPhone, IconLocalPizza, IconLocalPlay, IconLocalPolice, IconLocalPostOffice, IconLocalPrintshop, IconLocalSee, IconLocalShipping, IconLocalTaxi, IconLocationCity, IconLocationDisabled, IconLocationOff, IconLocationOn, IconLocationPin, IconLocationSearching, IconLock, IconLockClock, IconLockOpen, IconLockOutline, IconLogin, IconLogout, IconLooks, IconLooksOne, IconLooksTwo, IconLooks_3, IconLooks_4, IconLooks_5, IconLooks_6, IconLoop, IconLoupe, IconLowPriority, IconLoyalty, IconLteMobiledata, IconLtePlusMobiledata, IconLuggage, IconLunchDining, IconMail, IconMailOutline, IconMale, IconManageAccounts, IconManageSearch, IconMap, IconMapsHomeWork, IconMapsUgc, IconMargin, IconMarkAsUnread, IconMarkChatRead, IconMarkChatUnread, IconMarkEmailRead, IconMarkEmailUnread, IconMarkunread, IconMarkunreadMailbox, IconMasks, IconMaximize, IconMediaBluetoothOff, IconMediaBluetoothOn, IconMediation, IconMedicalServices, IconMedication, IconMeetingRoom, IconMemory, IconMenu, IconMenuBook, IconMenuOpen, IconMergeType, IconMessage, IconMic, IconMicExternalOff, IconMicExternalOn, IconMicNone, IconMicOff, IconMicrowave, IconMilitaryTech, IconMinimize, IconMiscellaneousServices, IconMissedVideoCall, IconMms, IconMobileFriendly, IconMobileOff, IconMobileScreenShare, IconMobiledataOff, IconMode, IconModeComment, IconModeEdit, IconModeEditOutline, IconModeNight, IconModeStandby, IconModelTraining, IconMonetizationOn, IconMoney, IconMoneyOff, IconMoneyOffCsred, IconMonitor, IconMonitorWeight, IconMonochromePhotos, IconMood, IconMoodBad, IconMoped, IconMore, IconMoreHoriz, IconMoreTime, IconMoreVert, IconMotionPhotosAuto, IconMotionPhotosOff, IconMotionPhotosOn, IconMotionPhotosPause, IconMotionPhotosPaused, IconMouse, IconMoveToInbox, IconMovie, IconMovieCreation, IconMovieFilter, IconMoving, IconMp, IconMultilineChart, IconMultipleStop, IconMuseum, IconMusicNote, IconMusicOff, IconMusicVideo, IconMyLocation, IconNat, IconNature, IconNaturePeople, IconNavigateBefore, IconNavigateNext, IconNavigation, IconNearMe, IconNearMeDisabled, IconNearbyError, IconNearbyOff, IconNetworkCell, IconNetworkCheck, IconNetworkLocked, IconNetworkWifi, IconNewLabel, IconNewReleases, IconNextPlan, IconNextWeek, IconNfc, IconNightShelter, IconNightlife, IconNightlight, IconNightlightRound, IconNightsStay, IconNoAccounts, IconNoBackpack, IconNoCell, IconNoDrinks, IconNoEncryption, IconNoEncryptionGmailerrorred, IconNoFlash, IconNoFood, IconNoLuggage, IconNoMeals, IconNoMealsOuline, IconNoMeetingRoom, IconNoPhotography, IconNoSim, IconNoStroller, IconNoTransfer, IconNordicWalking, IconNorth, IconNorthEast, IconNorthWest, IconNotAccessible, IconNotInterested, IconNotListedLocation, IconNotStarted, IconNote, IconNoteAdd, IconNoteAlt, IconNotes, IconNotificationAdd, IconNotificationImportant, IconNotifications, IconNotificationsActive, IconNotificationsNone, IconNotificationsOff, IconNotificationsPaused, IconOfflineBolt, IconOfflinePin, IconOfflineShare, IconOndemandVideo, IconOnlinePrediction, IconOpacity, IconOpenInBrowser, IconOpenInFull, IconOpenInNew, IconOpenInNewOff, IconOpenWith, IconOtherHouses, IconOutbond, IconOutbound, IconOutbox, IconOutdoorGrill, IconOutgoingMail, IconOutlet, IconOutlinedFlag, IconPadding, IconPages, IconPageview, IconPaid, IconPalette, IconPanTool, IconPanorama, IconPanoramaFishEye, IconPanoramaHorizontal, IconPanoramaHorizontalSelect, IconPanoramaPhotosphere, IconPanoramaPhotosphereSelect, IconPanoramaVertical, IconPanoramaVerticalSelect, IconPanoramaWideAngle, IconPanoramaWideAngleSelect, IconParagliding, IconPark, IconPartyMode, IconPassword, IconPattern, IconPause, IconPauseCircle, IconPauseCircleFilled, IconPauseCircleOutline, IconPausePresentation, IconPayment, IconPayments, IconPedalBike, IconPending, IconPendingActions, IconPeople, IconPeopleAlt, IconPeopleOutline, IconPermCameraMic, IconPermContactCalendar, IconPermDataSetting, IconPermDeviceInformation, IconPermIdentity, IconPermMedia, IconPermPhoneMsg, IconPermScanWifi, IconPerson, IconPersonAdd, IconPersonAddAlt, IconPersonAddAlt_1, IconPersonAddDisabled, IconPersonOff, IconPersonOutline, IconPersonPin, IconPersonPinCircle, IconPersonRemove, IconPersonRemoveAlt_1, IconPersonSearch, IconPersonalInjury, IconPersonalVideo, IconPestControl, IconPestControlRodent, IconPets, IconPhone, IconPhoneAndroid, IconPhoneBluetoothSpeaker, IconPhoneCallback, IconPhoneDisabled, IconPhoneEnabled, IconPhoneForwarded, IconPhoneInTalk, IconPhoneIphone, IconPhoneLocked, IconPhoneMissed, IconPhonePaused, IconPhonelink, IconPhonelinkErase, IconPhonelinkLock, IconPhonelinkOff, IconPhonelinkRing, IconPhonelinkSetup, IconPhoto, IconPhotoAlbum, IconPhotoCamera, IconPhotoCameraBack, IconPhotoCameraFront, IconPhotoFilter, IconPhotoLibrary, IconPhotoSizeSelectActual, IconPhotoSizeSelectLarge, IconPhotoSizeSelectSmall, IconPiano, IconPianoOff, IconPictureAsPdf, IconPictureInPicture, IconPictureInPictureAlt, IconPieChart, IconPieChartOutline, IconPieChartOutlined, IconPin, IconPinDrop, IconPinEnd, IconPinInvoke, IconPivotTableChart, IconPlace, IconPlagiarism, IconPlayArrow, IconPlayCircle, IconPlayCircleFilled, IconPlayCircleOutline, IconPlayDisabled, IconPlayForWork, IconPlayLesson, IconPlaylistAdd, IconPlaylistAddCheck, IconPlaylistPlay, IconPlumbing, IconPlusOne, IconPodcasts, IconPointOfSale, IconPolicy, IconPoll, IconPolymer, IconPool, IconPortableWifiOff, IconPortrait, IconPostAdd, IconPower, IconPowerInput, IconPowerOff, IconPowerSettingsNew, IconPrecisionManufacturing, IconPregnantWoman, IconPresentToAll, IconPreview, IconPriceChange, IconPriceCheck, IconPrint, IconPrintDisabled, IconPriorityHigh, IconPrivacyTip, IconPrivateConnectivity, IconProductionQuantityLimits, IconProps, IconPsychology, IconPublic, IconPublicOff, IconPublish, IconPublishedWithChanges, IconPushPin, IconQrCode, IconQrCodeScanner, IconQrCode_2, IconQueryBuilder, IconQueryStats, IconQuestionAnswer, IconQueue, IconQueueMusic, IconQueuePlayNext, IconQuickreply, IconQuiz, IconRMobiledata, IconRadar, IconRadio, IconRadioButtonChecked, IconRadioButtonUnchecked, IconRailwayAlert, IconRamenDining, IconRateReview, IconRawOff, IconRawOn, IconReadMore, IconRealEstateAgent, IconReceipt, IconReceiptLong, IconRecentActors, IconRecommend, IconRecordVoiceOver, IconRecycling, IconRedeem, IconRedo, IconReduceCapacity, IconRefresh, IconRememberMe, IconRemove, IconRemoveCircle, IconRemoveCircleOutline, IconRemoveDone, IconRemoveFromQueue, IconRemoveModerator, IconRemoveRedEye, IconRemoveShoppingCart, IconReorder, IconRepeat, IconRepeatOn, IconRepeatOne, IconRepeatOneOn, IconReplay, IconReplayCircleFilled, IconReplay_10, IconReplay_30, IconReplay_5, IconReply, IconReplyAll, IconReport, IconReportGmailerrorred, IconReportOff, IconReportProblem, IconRequestPage, IconRequestQuote, IconResetTv, IconRestartAlt, IconRestaurant, IconRestaurantMenu, IconRestore, IconRestoreFromTrash, IconRestorePage, IconReviews, IconRiceBowl, IconRingVolume, IconRoofing, IconRoom, IconRoomPreferences, IconRoomService, IconRotateLeft, IconRotateRight, IconRotate_90DegreesCcw, IconRoundedCorner, IconRouter, IconRowing, IconRssFeed, IconRsvp, IconRtt, IconRule, IconRuleFolder, IconRunCircle, IconRunningWithErrors, IconRvHookup, IconSafetyDivider, IconSailing, IconSanitizer, IconSatellite, IconSave, IconSaveAlt, IconSavedSearch, IconSavings, IconScanner, IconScatterPlot, IconSchedule, IconScheduleSend, IconSchema, IconSchool, IconScience, IconScore, IconScreenLockLandscape, IconScreenLockPortrait, IconScreenLockRotation, IconScreenRotation, IconScreenSearchDesktop, IconScreenShare, IconScreenshot, IconSd, IconSdCard, IconSdCardAlert, IconSdStorage, IconSearch, IconSearchOff, IconSecurity, IconSecurityUpdate, IconSecurityUpdateGood, IconSecurityUpdateWarning, IconSegment, IconSelectAll, IconSelfImprovement, IconSell, IconSend, IconSendAndArchive, IconSendToMobile, IconSensorDoor, IconSensorWindow, IconSensors, IconSensorsOff, IconSentimentDissatisfied, IconSentimentNeutral, IconSentimentSatisfied, IconSentimentSatisfiedAlt, IconSentimentVeryDissatisfied, IconSentimentVerySatisfied, IconSetMeal, IconSettings, IconSettingsAccessibility, IconSettingsApplications, IconSettingsBackupRestore, IconSettingsBluetooth, IconSettingsBrightness, IconSettingsCell, IconSettingsEthernet, IconSettingsInputAntenna, IconSettingsInputComponent, IconSettingsInputComposite, IconSettingsInputHdmi, IconSettingsInputSvideo, IconSettingsOverscan, IconSettingsPhone, IconSettingsPower, IconSettingsRemote, IconSettingsSuggest, IconSettingsSystemDaydream, IconSettingsVoice, IconShare, IconShareLocation, IconShield, IconShop, IconShopTwo, IconShop_2, IconShoppingBag, IconShoppingBasket, IconShoppingCart, IconShortText, IconShortcut, IconShowChart, IconShower, IconShuffle, IconShuffleOn, IconShutterSpeed, IconSick, IconSignalCellularAlt, IconSignalCellularConnectedNoInternet_0Bar, IconSignalCellularConnectedNoInternet_4Bar, IconSignalCellularNoSim, IconSignalCellularNodata, IconSignalCellularNull, IconSignalCellularOff, IconSignalCellular_0Bar, IconSignalCellular_4Bar, IconSignalWifiBad, IconSignalWifiConnectedNoInternet_4, IconSignalWifiOff, IconSignalWifiStatusbarConnectedNoInternet_4, IconSignalWifiStatusbarNull, IconSignalWifiStatusbar_4Bar, IconSignalWifi_0Bar, IconSignalWifi_4Bar, IconSignalWifi_4BarLock, IconSimCard, IconSimCardAlert, IconSimCardDownload, IconSingleBed, IconSip, IconSize, IconSkateboarding, IconSkipNext, IconSkipPrevious, IconSledding, IconSlideshow, IconSlowMotionVideo, IconSmartButton, IconSmartDisplay, IconSmartScreen, IconSmartToy, IconSmartphone, IconSmokeFree, IconSmokingRooms, IconSms, IconSmsFailed, IconSnippetFolder, IconSnooze, IconSnowboarding, IconSnowmobile, IconSnowshoeing, IconSoap, IconSocialDistance, IconSort, IconSortByAlpha, IconSource, IconSouth, IconSouthEast, IconSouthWest, IconSpa, IconSpaceBar, IconSpaceDashboard, IconSpeaker, IconSpeakerGroup, IconSpeakerNotes, IconSpeakerNotesOff, IconSpeakerPhone, IconSpeed, IconSpellcheck, IconSplitscreen, IconSports, IconSportsBar, IconSportsBaseball, IconSportsBasketball, IconSportsCricket, IconSportsEsports, IconSportsFootball, IconSportsGolf, IconSportsHandball, IconSportsHockey, IconSportsKabaddi, IconSportsMma, IconSportsMotorsports, IconSportsRugby, IconSportsScore, IconSportsSoccer, IconSportsTennis, IconSportsVolleyball, IconSquareFoot, IconStackedBarChart, IconStackedLineChart, IconStairs, IconStar, IconStarBorder, IconStarBorderPurple500, IconStarHalf, IconStarOutline, IconStarPurple500, IconStarRate, IconStars, IconStayCurrentLandscape, IconStayCurrentPortrait, IconStayPrimaryLandscape, IconStayPrimaryPortrait, IconStickyNote_2, IconStop, IconStopCircle, IconStopScreenShare, IconStorage, IconStore, IconStoreMallDirectory, IconStorefront, IconStorm, IconStraighten, IconStream, IconStreetview, IconStrikethroughS, IconStroller, IconStyle, IconSubdirectoryArrowLeft, IconSubdirectoryArrowRight, IconSubject, IconSubscript, IconSubscriptions, IconSubtitles, IconSubtitlesOff, IconSubway, IconSummarize, IconSuperscript, IconSupervisedUserCircle, IconSupervisorAccount, IconSupport, IconSupportAgent, IconSurfing, IconSurroundSound, IconSwapCalls, IconSwapHoriz, IconSwapHorizontalCircle, IconSwapVert, IconSwapVerticalCircle, IconSwipe, IconSwitchAccount, IconSwitchCamera, IconSwitchLeft, IconSwitchRight, IconSwitchVideo, IconSync, IconSyncAlt, IconSyncDisabled, IconSyncProblem, IconSystemSecurityUpdate, IconSystemSecurityUpdateGood, IconSystemSecurityUpdateWarning, IconSystemUpdate, IconSystemUpdateAlt, IconTab, IconTabUnselected, IconTableChart, IconTableRows, IconTableView, IconTablet, IconTabletAndroid, IconTabletMac, IconTag, IconTagFaces, IconTakeoutDining, IconTapAndPlay, IconTapas, IconTask, IconTaskAlt, IconTaxiAlert, IconTerrain, IconTextFields, IconTextFormat, IconTextRotateUp, IconTextRotateVertical, IconTextRotationAngledown, IconTextRotationAngleup, IconTextRotationDown, IconTextRotationNone, IconTextSnippet, IconTextsms, IconTexture, IconTheaterComedy, IconTheaters, IconThermostat, IconThermostatAuto, IconThumbDown, IconThumbDownAlt, IconThumbDownOffAlt, IconThumbUp, IconThumbUpAlt, IconThumbUpOffAlt, IconThumbsUpDown, IconTimeToLeave, IconTimelapse, IconTimeline, IconTimer, IconTimerOff, IconTimer_10, IconTimer_10Select, IconTimer_3, IconTimer_3Select, IconTipsAndUpdates, IconTitle, IconToc, IconToday, IconToggleOff, IconToggleOn, IconToll, IconTonality, IconTopic, IconTouchApp, IconTour, IconToys, IconTrackChanges, IconTraffic, IconTrain, IconTram, IconTransferWithinAStation, IconTransform, IconTransgender, IconTransitEnterexit, IconTranslate, IconTravelExplore, IconTrendingDown, IconTrendingFlat, IconTrendingUp, IconTripOrigin, IconTry, IconTty, IconTune, IconTungsten, IconTurnedIn, IconTurnedInNot, IconTv, IconTvOff, IconTwoWheeler, IconUmbrella, IconUnarchive, IconUndo, IconUnfoldLess, IconUnfoldMore, IconUnpublished, IconUnsubscribe, IconUpcoming, IconUpdate, IconUpdateDisabled, IconUpgrade, IconUpload, IconUploadFile, IconUsb, IconUsbOff, IconVerified, IconVerifiedUser, IconVerticalAlignBottom, IconVerticalAlignCenter, IconVerticalAlignTop, IconVerticalDistribute, IconVerticalSplit, IconVibration, IconVideoCall, IconVideoCameraBack, IconVideoCameraFront, IconVideoLabel, IconVideoLibrary, IconVideoSettings, IconVideoStable, IconVideocam, IconVideocamOff, IconVideogameAsset, IconVideogameAssetOff, IconViewAgenda, IconViewArray, IconViewCarousel, IconViewColumn, IconViewComfy, IconViewCompact, IconViewDay, IconViewHeadline, IconViewInAr, IconViewList, IconViewModule, IconViewQuilt, IconViewSidebar, IconViewStream, IconViewWeek, IconVignette, IconVilla, IconVisibility, IconVisibilityOff, IconVoiceChat, IconVoiceOverOff, IconVoicemail, IconVolumeDown, IconVolumeDownAlt, IconVolumeMute, IconVolumeOff, IconVolumeUp, IconVolunteerActivism, IconVpnKey, IconVpnLock, IconVrpano, IconWallpaper, IconWarning, IconWarningAmber, IconWash, IconWatch, IconWatchLater, IconWater, IconWaterDamage, IconWaterDrop, IconWaterfallChart, IconWaves, IconWavingHand, IconWbAuto, IconWbCloudy, IconWbIncandescent, IconWbIridescent, IconWbShade, IconWbSunny, IconWbTwighlight, IconWbTwilight, IconWc, IconWeb, IconWebAsset, IconWebAssetOff, IconWebStories, IconWeekend, IconWest, IconWhatshot, IconWheelchairPickup, IconWhereToVote, IconWidgets, IconWifi, IconWifiCalling, IconWifiCalling_3, IconWifiLock, IconWifiOff, IconWifiProtectedSetup, IconWifiTethering, IconWifiTetheringErrorRounded, IconWifiTetheringOff, IconWindow, IconWineBar, IconWork, IconWorkOff, IconWorkOutline, IconWorkspaces, IconWorkspacesFilled, IconWorkspacesOutline, IconWrapText, IconWrongLocation, IconWysiwyg, IconYard, IconYoutubeSearchedFor, IconZoomIn, IconZoomOut, IconZoomOutMap, Image, ImageOptions, ImageProps, ImageStyleProps, Input, InputMode, InputProps, Label, LabelProps, Link, LinkOptions, LinkProps, ListCollectionProps, Main, Pagination, PaginationCallbackType, PaginationItemProps, PaginationItemType, PaginationProps, PasswordField, PasswordFieldProps, PasswordFieldType, PhoneNumberFieldProps, Placeholder, PlaceholderProps, PlaceholderSize, Radio, RadioGroupField, RadioGroupFieldProps, RadioProps, Rating, RatingOptions, RatingProps, RatingSize, ResponsiveObject, ResponsiveStyle, SearchField, SearchFieldButtonProps, SearchFieldProps, SelectField, SelectFieldProps, SharedText, ShowPasswordButtonProps, Sizes, Spacer, SwitchField, SwitchFieldProps, TabItem, TabItemProps, Tabs, TabsGrow, TabsProps, Text, TextField, TextFieldProps, TextFieldType, TextProps, TextVariation, Theme, Tokens, UsePaginationProps, UsePaginationResult, View, ViewAsHTMLElementTypes, ViewBox, ViewProps, VisuallyHidden, Wrapper, index$1 as components, defaultCSSVariables, extendTheming, findChildOverrides, getOverrideProps, labelPositions, index as primitives, useAmplify, useAuthenticator, usePagination, useSearchField, useTheming, withAuthenticator };