@razorpay/blade 8.8.4 → 8.9.0
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/build/components/index.d.ts +839 -55
- package/build/components/index.native.d.ts +115 -14
- package/build/components/index.native.js +341 -322
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +1629 -3677
- package/build/components/index.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +1 -1
- package/build/css/bankingThemeDarkMobile.css +1 -1
- package/build/css/bankingThemeLightDesktop.css +1 -1
- package/build/css/bankingThemeLightMobile.css +1 -1
- package/build/css/paymentThemeDarkDesktop.css +1 -1
- package/build/css/paymentThemeDarkMobile.css +1 -1
- package/build/css/paymentThemeLightDesktop.css +1 -1
- package/build/css/paymentThemeLightMobile.css +1 -1
- package/build/tokens/index.d.ts +6 -0
- package/build/tokens/index.native.d.ts +6 -0
- package/build/tokens/index.native.js +1 -1
- package/build/tokens/index.native.js.map +1 -1
- package/build/tokens/index.web.js +9 -0
- package/build/tokens/index.web.js.map +1 -1
- package/build/utils/index.d.ts +2 -0
- package/build/utils/index.native.d.ts +2 -0
- package/build/utils/index.native.js +1 -1
- package/build/utils/index.native.js.map +1 -1
- package/build/utils/index.web.js +2 -0
- package/build/utils/index.web.js.map +1 -1
- package/package.json +7 -4
|
@@ -2,9 +2,10 @@
|
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
3
|
import React__default, { ReactChild, ReactElement, ReactNode, SyntheticEvent, KeyboardEvent } from 'react';
|
|
4
4
|
import * as react_native from 'react-native';
|
|
5
|
-
import { AccessibilityRole, ViewStyle, ImageSourcePropType, View, GestureResponderEvent } from 'react-native';
|
|
5
|
+
import { AccessibilityRole, ViewStyle, ImageSourcePropType, View, GestureResponderEvent, PressableProps } from 'react-native';
|
|
6
6
|
import { CSSObject } from 'styled-components';
|
|
7
7
|
import { ReactDOMAttributes } from '@use-gesture/react/dist/declarations/src/types';
|
|
8
|
+
import { UseFloatingOptions } from '@floating-ui/react';
|
|
8
9
|
|
|
9
10
|
type BorderRadius = Readonly<{
|
|
10
11
|
/** none: 0(px/rem/pt) */
|
|
@@ -1300,6 +1301,32 @@ type MarginProps$1 = MakeObjectResponsive$1<{
|
|
|
1300
1301
|
marginLeft: SpacingValueType$1;
|
|
1301
1302
|
}>;
|
|
1302
1303
|
|
|
1304
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
1305
|
+
|
|
1306
|
+
|
|
1307
|
+
type BladeCommonEvents$1 = {
|
|
1308
|
+
onBlur?: Platform.Select<{
|
|
1309
|
+
native: undefined | ((event: any) => void);
|
|
1310
|
+
web: React.FocusEventHandler;
|
|
1311
|
+
}>;
|
|
1312
|
+
onFocus?: Platform.Select<{
|
|
1313
|
+
native: undefined | ((event: any) => void);
|
|
1314
|
+
web: React.FocusEventHandler;
|
|
1315
|
+
}>;
|
|
1316
|
+
onMouseLeave?: Platform.Select<{ web: React.MouseEventHandler; native: undefined }>;
|
|
1317
|
+
onMouseMove?: Platform.Select<{ web: React.MouseEventHandler; native: undefined }>;
|
|
1318
|
+
onPointerDown?: Platform.Select<{ web: React.PointerEventHandler; native: undefined }>;
|
|
1319
|
+
onPointerEnter?: Platform.Select<{ web: React.PointerEventHandler; native: undefined }>;
|
|
1320
|
+
onTouchStart?: Platform.Select<{
|
|
1321
|
+
native: undefined | ((event: any) => void);
|
|
1322
|
+
web: React.TouchEventHandler;
|
|
1323
|
+
}>;
|
|
1324
|
+
onTouchEnd?: Platform.Select<{
|
|
1325
|
+
native: undefined | ((event: any) => void);
|
|
1326
|
+
web: React.TouchEventHandler;
|
|
1327
|
+
}>;
|
|
1328
|
+
};
|
|
1329
|
+
|
|
1303
1330
|
type FlexboxProps$1 = MakeObjectResponsive$1<
|
|
1304
1331
|
{
|
|
1305
1332
|
/**
|
|
@@ -2276,6 +2303,7 @@ declare type BoxCallbackProps = Omit<Platform.Select<{
|
|
|
2276
2303
|
}>, '__brand__'>;
|
|
2277
2304
|
declare type BoxProps = Partial<PaddingProps & MarginProps & LayoutProps & FlexboxProps & PositionProps & GridProps & BoxCallbackProps & BoxVisualProps & {
|
|
2278
2305
|
children?: React.ReactNode | React.ReactNode[];
|
|
2306
|
+
tabIndex?: number;
|
|
2279
2307
|
} & TestID>;
|
|
2280
2308
|
declare type BoxRefType = Platform.Select<{
|
|
2281
2309
|
web: Omit<HTMLElement, 'style'>;
|
|
@@ -2582,6 +2610,7 @@ declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps
|
|
|
2582
2610
|
as: "header" | "main" | "label" | "aside" | "div" | "footer" | "nav" | "section" | "span";
|
|
2583
2611
|
} & {
|
|
2584
2612
|
children?: React__default.ReactNode | React__default.ReactNode[];
|
|
2613
|
+
tabIndex?: number | undefined;
|
|
2585
2614
|
} & TestID> & React__default.RefAttributes<BoxRefType>>;
|
|
2586
2615
|
|
|
2587
2616
|
declare const ComponentIds: {
|
|
@@ -2651,7 +2680,9 @@ declare const CardBody: ({ children, testID }: CardBodyProps) => React__default.
|
|
|
2651
2680
|
|
|
2652
2681
|
|
|
2653
2682
|
type BladeElementRef = Platform.Select<{
|
|
2654
|
-
web:
|
|
2683
|
+
web:
|
|
2684
|
+
| Pick<HTMLElement, 'focus' | 'scrollIntoView' | 'getBoundingClientRect'>
|
|
2685
|
+
| Pick<View, 'focus'>;
|
|
2655
2686
|
native: React.MutableRefObject<any>;
|
|
2656
2687
|
}>;
|
|
2657
2688
|
|
|
@@ -2665,6 +2696,10 @@ declare type BaseLinkCommonProps = {
|
|
|
2665
2696
|
native: (event: GestureResponderEvent) => void;
|
|
2666
2697
|
web: (event: React__default.FocusEvent<HTMLButtonElement>) => void;
|
|
2667
2698
|
}>;
|
|
2699
|
+
onMouseLeave?: Platform.Select<{
|
|
2700
|
+
native: (event: GestureResponderEvent) => void;
|
|
2701
|
+
web: (event: React__default.MouseEvent<HTMLButtonElement>) => void;
|
|
2702
|
+
}>;
|
|
2668
2703
|
onKeyDown?: Platform.Select<{
|
|
2669
2704
|
native: (event: GestureResponderEvent) => void;
|
|
2670
2705
|
web: (event: React__default.KeyboardEvent<HTMLButtonElement>) => void;
|
|
@@ -2689,7 +2724,7 @@ declare type BaseLinkCommonProps = {
|
|
|
2689
2724
|
* The title of the link which is displayed as a tooltip. This is a web only prop and has no effect on react-native.
|
|
2690
2725
|
*/
|
|
2691
2726
|
htmlTitle?: string;
|
|
2692
|
-
} & TestID & StyledPropsBlade
|
|
2727
|
+
} & TestID & StyledPropsBlade & Omit<BladeCommonEvents$1, 'onBlur' | 'onMouseLeave'>;
|
|
2693
2728
|
declare type BaseLinkWithoutIconProps = BaseLinkCommonProps & {
|
|
2694
2729
|
icon?: undefined;
|
|
2695
2730
|
children: StringChildrenType;
|
|
@@ -2730,7 +2765,7 @@ declare type LinkCommonProps = {
|
|
|
2730
2765
|
* @default medium
|
|
2731
2766
|
*/
|
|
2732
2767
|
size?: BaseLinkProps['size'];
|
|
2733
|
-
} & TestID & StyledPropsBlade & Platform.Select<{
|
|
2768
|
+
} & TestID & StyledPropsBlade & BladeCommonEvents$1 & Platform.Select<{
|
|
2734
2769
|
native: {
|
|
2735
2770
|
/**
|
|
2736
2771
|
* Defines how far your touch can start away from the link
|
|
@@ -2781,7 +2816,7 @@ declare type LinkButtonVariantProps = LinkPropsWithOrWithoutIcon & {
|
|
|
2781
2816
|
rel?: undefined;
|
|
2782
2817
|
};
|
|
2783
2818
|
declare type LinkProps = LinkAnchorVariantProps | LinkButtonVariantProps;
|
|
2784
|
-
declare const Link:
|
|
2819
|
+
declare const Link: React__default.ForwardRefExoticComponent<LinkProps & React__default.RefAttributes<BladeElementRef>>;
|
|
2785
2820
|
|
|
2786
2821
|
declare type BaseButtonCommonProps = {
|
|
2787
2822
|
href?: BaseLinkProps['href'];
|
|
@@ -2791,10 +2826,6 @@ declare type BaseButtonCommonProps = {
|
|
|
2791
2826
|
iconPosition?: 'left' | 'right';
|
|
2792
2827
|
isDisabled?: boolean;
|
|
2793
2828
|
isFullWidth?: boolean;
|
|
2794
|
-
onBlur?: Platform.Select<{
|
|
2795
|
-
native: (event: GestureResponderEvent) => void;
|
|
2796
|
-
web: (event: React__default.FocusEvent<HTMLButtonElement>) => void;
|
|
2797
|
-
}>;
|
|
2798
2829
|
onKeyDown?: Platform.Select<{
|
|
2799
2830
|
native: (event: GestureResponderEvent) => void;
|
|
2800
2831
|
web: (event: React__default.KeyboardEvent<HTMLButtonElement>) => void;
|
|
@@ -2809,7 +2840,7 @@ declare type BaseButtonCommonProps = {
|
|
|
2809
2840
|
variant?: 'primary' | 'secondary' | 'tertiary';
|
|
2810
2841
|
contrast?: 'low' | 'high';
|
|
2811
2842
|
intent?: 'positive' | 'negative' | 'notice' | 'information' | 'neutral';
|
|
2812
|
-
} & TestID & StyledPropsBlade;
|
|
2843
|
+
} & TestID & StyledPropsBlade & BladeCommonEvents$1;
|
|
2813
2844
|
declare type BaseButtonWithoutIconProps = BaseButtonCommonProps & {
|
|
2814
2845
|
icon?: undefined;
|
|
2815
2846
|
children: StringChildrenType;
|
|
@@ -2849,7 +2880,7 @@ declare type ButtonCommonProps = {
|
|
|
2849
2880
|
native: (event: GestureResponderEvent) => void;
|
|
2850
2881
|
web: (event: React__default.MouseEvent<HTMLButtonElement>) => void;
|
|
2851
2882
|
}>;
|
|
2852
|
-
} & TestID & StyledPropsBlade;
|
|
2883
|
+
} & TestID & StyledPropsBlade & BladeCommonEvents$1;
|
|
2853
2884
|
declare type ButtonWithoutIconProps = ButtonCommonProps & {
|
|
2854
2885
|
icon?: undefined;
|
|
2855
2886
|
children: StringChildrenType;
|
|
@@ -3064,8 +3095,30 @@ declare type IconButtonProps = {
|
|
|
3064
3095
|
* Sets aria-label to help users know what the action does, eg 'Dismiss alert'
|
|
3065
3096
|
*/
|
|
3066
3097
|
accessibilityLabel: string;
|
|
3067
|
-
};
|
|
3068
|
-
declare const IconButton: React__default.ForwardRefExoticComponent<
|
|
3098
|
+
} & BladeCommonEvents$1;
|
|
3099
|
+
declare const IconButton: React__default.ForwardRefExoticComponent<{
|
|
3100
|
+
/**
|
|
3101
|
+
* Icon component to be rendered, eg. `CloseIcon`
|
|
3102
|
+
*/
|
|
3103
|
+
icon: IconComponent$1;
|
|
3104
|
+
onClick: () => void;
|
|
3105
|
+
/**
|
|
3106
|
+
* Icon size
|
|
3107
|
+
*
|
|
3108
|
+
* @default 'medium'
|
|
3109
|
+
*/
|
|
3110
|
+
size?: "medium" | "large" | undefined;
|
|
3111
|
+
/**
|
|
3112
|
+
* Icon contrast
|
|
3113
|
+
*
|
|
3114
|
+
* @default 'low'
|
|
3115
|
+
*/
|
|
3116
|
+
contrast?: "low" | "high" | undefined;
|
|
3117
|
+
/**
|
|
3118
|
+
* Sets aria-label to help users know what the action does, eg 'Dismiss alert'
|
|
3119
|
+
*/
|
|
3120
|
+
accessibilityLabel: string;
|
|
3121
|
+
} & BladeCommonEvents$1 & React__default.RefAttributes<BladeElementRef>>;
|
|
3069
3122
|
|
|
3070
3123
|
declare type OnChange$1 = ({ isChecked, event, value, }: {
|
|
3071
3124
|
isChecked: boolean;
|
|
@@ -6179,4 +6232,52 @@ declare const BottomSheetFooter: ({ children }: BottomSheetFooterProps) => React
|
|
|
6179
6232
|
|
|
6180
6233
|
declare const BottomSheet: ({ children, snapPoints, isOpen, onDismiss, initialFocusRef, }: BottomSheetProps) => React__default.ReactElement;
|
|
6181
6234
|
|
|
6182
|
-
|
|
6235
|
+
declare type TooltipProps = {
|
|
6236
|
+
content: string;
|
|
6237
|
+
placement?: Exclude<UseFloatingOptions['placement'], 'left-end' | 'left-start' | 'right-end' | 'right-start'>;
|
|
6238
|
+
children: React.ReactElement;
|
|
6239
|
+
onOpenChange?: ({ isOpen }: {
|
|
6240
|
+
isOpen: boolean;
|
|
6241
|
+
}) => void;
|
|
6242
|
+
};
|
|
6243
|
+
|
|
6244
|
+
declare const Tooltip: ({ content, children, placement, onOpenChange, }: TooltipProps) => React__default.ReactElement;
|
|
6245
|
+
|
|
6246
|
+
declare const TooltipInteractiveWrapper: React__default.ForwardRefExoticComponent<PressableProps & React__default.RefAttributes<View>>;
|
|
6247
|
+
|
|
6248
|
+
declare type BladeCommonEvents = {
|
|
6249
|
+
onBlur?: Platform.Select<{
|
|
6250
|
+
native: undefined | ((event: any) => void);
|
|
6251
|
+
web: React.FocusEventHandler;
|
|
6252
|
+
}>;
|
|
6253
|
+
onFocus?: Platform.Select<{
|
|
6254
|
+
native: undefined | ((event: any) => void);
|
|
6255
|
+
web: React.FocusEventHandler;
|
|
6256
|
+
}>;
|
|
6257
|
+
onMouseLeave?: Platform.Select<{
|
|
6258
|
+
web: React.MouseEventHandler;
|
|
6259
|
+
native: undefined;
|
|
6260
|
+
}>;
|
|
6261
|
+
onMouseMove?: Platform.Select<{
|
|
6262
|
+
web: React.MouseEventHandler;
|
|
6263
|
+
native: undefined;
|
|
6264
|
+
}>;
|
|
6265
|
+
onPointerDown?: Platform.Select<{
|
|
6266
|
+
web: React.PointerEventHandler;
|
|
6267
|
+
native: undefined;
|
|
6268
|
+
}>;
|
|
6269
|
+
onPointerEnter?: Platform.Select<{
|
|
6270
|
+
web: React.PointerEventHandler;
|
|
6271
|
+
native: undefined;
|
|
6272
|
+
}>;
|
|
6273
|
+
onTouchStart?: Platform.Select<{
|
|
6274
|
+
native: undefined | ((event: any) => void);
|
|
6275
|
+
web: React.TouchEventHandler;
|
|
6276
|
+
}>;
|
|
6277
|
+
onTouchEnd?: Platform.Select<{
|
|
6278
|
+
native: undefined | ((event: any) => void);
|
|
6279
|
+
web: React.TouchEventHandler;
|
|
6280
|
+
}>;
|
|
6281
|
+
};
|
|
6282
|
+
|
|
6283
|
+
export { ActionList, ActionListFooter, ActionListFooterIcon, ActionListFooterProps, ActionListHeader, ActionListHeaderIcon, ActionListHeaderProps, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, ActionListSectionDivider, ActionListSectionProps, ActivityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertTriangleIcon as AlertOctagonIcon, AlertOnlyIcon, AlertProps, AlertTriangleIcon$1 as AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AmountProps, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, Attachment as AttachmentIcon, AwardIcon, Badge, BadgeProps, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetFooter, BottomSheetFooterProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetProps, Box, BoxIcon, BoxProps, BoxRefType, BriefcaseIcon, BulkPayoutsIcon, Button, ButtonProps, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterAction, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CardProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownLink, DropdownOverlay, DropdownOverlayProps, DropdownProps, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadingProps, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, IconButtonProps, IconComponent, IconProps, IconSize, ImageIcon, InboxIcon, Indicator, IndicatorProps, InfoIcon, InstagramIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkButtonVariantProps, LinkIcon, LinkProps, List, ListIcon, ListItem, ListItemCode, ListItemCodeProps, ListItemLink, ListItemLinkProps, ListItemProps, ListProps, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, MenuDotsIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, Modal, ModalBody, ModalBodyProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OTPInputProps, OctagonIcon, OffersIcon, PackageIcon, PaperclipIcon, PasswordInput, PasswordInputProps, PauseCircleIcon, PauseIcon, PaymentButtonsIcon, PaymentLinksIcon, PaymentPagesIcon, PercentIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneOffIcon, PhoneOutgoingIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProgressBar, ProgressBarProps, ProgressBarVariant, QRCodeIcon, Radio, RadioGroup, RadioGroupProps, RadioIcon, RadioProps, RazorpayIcon, RazorpayXIcon, RefreshIcon, RepeatIcon, ReportsIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RoutesIcon, RupeeIcon, RupeesIcon, SaveIcon, ScissorsIcon, SearchIcon, SelectInput, SelectInputProps, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabletIcon, TagIcon, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, Tooltip, TooltipInteractiveWrapper, TooltipProps, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VisuallyHidden, VisuallyHiddenProps, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getTextProps, screenReaderStyles, useActionListContext, useTheme };
|