@razorpay/blade 10.10.0 → 10.12.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.
@@ -726,6 +726,37 @@ declare type ActionListProps = {
726
726
  */
727
727
  surfaceLevel?: Exclude<SurfaceLevels, 1>;
728
728
  } & TestID;
729
+ /**
730
+ * ### ActionList
731
+ *
732
+ * List of multiple actionable items. Can be used as menu items inside `Dropdown`,
733
+ * `BottomSheet` and as selectable items when combined with `SelectInput`
734
+ *
735
+ * #### Usage
736
+ *
737
+ * ```jsx
738
+ * <Dropdown>
739
+ * <SelectInput label="Select Action" />
740
+ * <DropdownOverlay>
741
+ * <DropdownHeader title="Header Title" />
742
+ * <ActionList>
743
+ * <ActionListItem
744
+ * title="Home"
745
+ * value="home"
746
+ * leading={<ActionListItemIcon icon={HomeIcon} />}
747
+ * />
748
+ * <ActionListItem
749
+ * title="Pricing"
750
+ * value="pricing"
751
+ * leading={<ActionListItemAsset src="https://flagcdn.com/w20/in.png" alt="India Flag" />}
752
+ * />
753
+ * </ActionList>
754
+ * <DropdownFooter><Button>Apply</Button></DropdownFooter>
755
+ * </DropdownOverlay>
756
+ * </Dropdown>
757
+ * ```
758
+ *
759
+ */
729
760
  declare const ActionList: React__default.MemoExoticComponent<({ children, surfaceLevel, testID, }: ActionListProps) => React__default.ReactElement>;
730
761
 
731
762
  /**
@@ -1948,6 +1979,45 @@ declare type IconProps = {
1948
1979
  } & StyledPropsBlade;
1949
1980
  declare type IconComponent = React.ComponentType<IconProps>;
1950
1981
 
1982
+ declare type BadgeProps = {
1983
+ /**
1984
+ * Sets the label for the badge.
1985
+ *
1986
+ */
1987
+ children: StringChildrenType;
1988
+ /**
1989
+ * Sets the variant of the badge.
1990
+ *
1991
+ * @default 'neutral'
1992
+ */
1993
+ variant?: Feedback | 'blue';
1994
+ /**
1995
+ * Sets the contrast of the badge.
1996
+ *
1997
+ * @default 'low'
1998
+ */
1999
+ contrast?: 'low' | 'high';
2000
+ /**
2001
+ * Sets the size of the badge.
2002
+ *
2003
+ * @default 'medium'
2004
+ */
2005
+ size?: 'small' | 'medium' | 'large';
2006
+ /**
2007
+ * Icon to be displayed in the badge.
2008
+ * Accepts a component of type `IconComponent` from Blade.
2009
+ *
2010
+ */
2011
+ icon?: IconComponent;
2012
+ /**
2013
+ * Sets the fontWeight of the label.
2014
+ *
2015
+ * @default 'regular'
2016
+ */
2017
+ fontWeight?: 'regular' | 'bold';
2018
+ } & TestID & StyledPropsBlade;
2019
+ declare const Badge: ({ children, contrast, fontWeight, icon, size, variant, testID, ...styledProps }: BadgeProps) => ReactElement;
2020
+
1951
2021
  declare type ActionListItemProps = {
1952
2022
  title: string;
1953
2023
  description?: string;
@@ -1981,6 +2051,13 @@ declare type ActionListItemProps = {
1981
2051
  * Valid elements - `<ActionListItemText />`, `<ActionListItemIcon />`
1982
2052
  */
1983
2053
  trailing?: React__default.ReactNode;
2054
+ /**
2055
+ * Item that goes immediately next to the title.
2056
+ *
2057
+ * Valid elements - `<ActionListItemBadge />`, `<ActionListItemBadgeGroup />`
2058
+ *
2059
+ */
2060
+ titleSuffix?: React__default.ReactElement;
1984
2061
  isDisabled?: boolean;
1985
2062
  intent?: Extract<Feedback, 'negative'>;
1986
2063
  /**
@@ -2012,6 +2089,10 @@ declare const ActionListSection: ({ title, children, testID, _hideDivider, }: Ac
2012
2089
  declare const ActionListItemIcon: ({ icon }: {
2013
2090
  icon: IconComponent;
2014
2091
  }) => React__default.ReactElement;
2092
+ declare const ActionListItemBadgeGroup: ({ children, }: {
2093
+ children: React__default.ReactElement[] | React__default.ReactElement;
2094
+ }) => React__default.ReactElement;
2095
+ declare const ActionListItemBadge: (props: BadgeProps) => React__default.ReactElement;
2015
2096
  declare const ActionListItemText: ({ children, }: {
2016
2097
  children: StringChildrenType;
2017
2098
  }) => React__default.ReactElement;
@@ -2104,45 +2185,6 @@ declare type AlertProps = {
2104
2185
  } & TestID & StyledPropsBlade;
2105
2186
  declare const Alert: ({ description, title, isDismissible, onDismiss, contrast, isFullWidth, intent, actions, testID, ...styledProps }: AlertProps) => ReactElement | null;
2106
2187
 
2107
- declare type BadgeProps = {
2108
- /**
2109
- * Sets the label for the badge.
2110
- *
2111
- */
2112
- children: StringChildrenType;
2113
- /**
2114
- * Sets the variant of the badge.
2115
- *
2116
- * @default 'neutral'
2117
- */
2118
- variant?: Feedback | 'blue';
2119
- /**
2120
- * Sets the contrast of the badge.
2121
- *
2122
- * @default 'low'
2123
- */
2124
- contrast?: 'low' | 'high';
2125
- /**
2126
- * Sets the size of the badge.
2127
- *
2128
- * @default 'medium'
2129
- */
2130
- size?: 'small' | 'medium' | 'large';
2131
- /**
2132
- * Icon to be displayed in the badge.
2133
- * Accepts a component of type `IconComponent` from Blade.
2134
- *
2135
- */
2136
- icon?: IconComponent;
2137
- /**
2138
- * Sets the fontWeight of the label.
2139
- *
2140
- * @default 'regular'
2141
- */
2142
- fontWeight?: 'regular' | 'bold';
2143
- } & TestID & StyledPropsBlade;
2144
- declare const Badge: ({ children, contrast, fontWeight, icon, size, variant, testID, ...styledProps }: BadgeProps) => ReactElement;
2145
-
2146
2188
  declare const Box: React__default.ForwardRefExoticComponent<Partial<PaddingProps & MarginProps & {
2147
2189
  width: SpacingValueType | {
2148
2190
  readonly base?: SpacingValueType | undefined;
@@ -4283,12 +4325,42 @@ declare type DividerProps = {
4283
4325
  declare const Divider: ({ orientation, dividerStyle, variant, thickness, contrast, height, width, testID, ...styledProps }: DividerProps) => React__default.ReactElement;
4284
4326
 
4285
4327
  declare type DropdownProps = {
4328
+ /**
4329
+ * Control open / close state of the Dropdown component
4330
+ *
4331
+ * This can be used to close the dropdown when button in the footer of dropdown is clicked
4332
+ */
4333
+ isOpen?: boolean;
4334
+ /**
4335
+ * Callback when open state of the dropdown changes
4336
+ */
4337
+ onOpenChange?: (isOpen: boolean) => void;
4286
4338
  selectionType?: 'single' | 'multiple';
4339
+ /**
4340
+ * ## Deprecated ⚠️
4341
+ *
4342
+ * Use `onOpenChange` instead for knowing when dropdown gets dismissed.
4343
+ *
4344
+ * ### Migration
4345
+ * ```diff
4346
+ * <Dropdown
4347
+ * - onDismiss={() => console.log('dismissed')}
4348
+ * + onOpenChange={(isOpen) => {
4349
+ * + if (!isOpen) {
4350
+ * + console.log('dismissed');
4351
+ * + }
4352
+ * + }}
4353
+ * />
4354
+ *
4355
+ * ```
4356
+ *
4357
+ * @deprecated
4358
+ */
4287
4359
  onDismiss?: () => void;
4288
- children: React.ReactNode[];
4360
+ children: React__default.ReactNode[];
4289
4361
  } & TestID & StyledPropsBlade;
4290
4362
  declare type DropdownOverlayProps = {
4291
- children: React.ReactElement[] | React.ReactElement;
4363
+ children: React__default.ReactElement[] | React__default.ReactElement;
4292
4364
  /**
4293
4365
  * Sets the z-index of the DropdownOverlay
4294
4366
  *
@@ -4297,7 +4369,7 @@ declare type DropdownOverlayProps = {
4297
4369
  zIndex?: number;
4298
4370
  } & TestID;
4299
4371
 
4300
- declare const Dropdown: ({ children, selectionType, onDismiss, testID, ...styledProps }: DropdownProps) => React__default.ReactElement;
4372
+ declare const Dropdown: ({ children, isOpen, onOpenChange, selectionType, onDismiss, testID, ...styledProps }: DropdownProps) => React__default.ReactElement;
4301
4373
 
4302
4374
  declare const DropdownOverlay: ({ children, testID }: DropdownOverlayProps) => React__default.ReactElement;
4303
4375
 
@@ -4899,21 +4971,7 @@ declare type OTPInputPropsWithLabel = {
4899
4971
  accessibilityLabel?: string;
4900
4972
  };
4901
4973
  declare type OTPInputProps = (OTPInputPropsWithA11yLabel | OTPInputPropsWithLabel) & OTPInputCommonProps;
4902
- /**
4903
- * OTPInput component can be used for accepting OTPs sent to users for authentication/verification purposes.
4904
- *
4905
- * ## Usage
4906
- *
4907
- * ```tsx
4908
- * <OTPInput
4909
- * label="Enter OTP"
4910
- * name="otpInput"
4911
- * onChange={({ name, value }): void => console.log({ name, value })}
4912
- * onOTPFilled={({ name, value }): void => console.log({ name, value })}
4913
- * />
4914
- * ```
4915
- */
4916
- declare const OTPInput: ({ autoFocus, errorText, helpText, isDisabled, keyboardReturnKeyType, keyboardType, label, accessibilityLabel, labelPosition, name, onChange, onFocus, onBlur, onOTPFilled, otpLength, placeholder, successText, validationState, value, isMasked, autoCompleteSuggestionType, testID, ...styledProps }: OTPInputProps) => React__default.ReactElement;
4974
+ declare const OTPInput: React__default.ForwardRefExoticComponent<OTPInputProps & React__default.RefAttributes<HTMLInputElement[]>>;
4917
4975
 
4918
4976
  /**
4919
4977
  * ### SelectInput
@@ -6711,4 +6769,4 @@ declare const Popover: ({ content, children, placement, onOpenChange, zIndex, ti
6711
6769
 
6712
6770
  declare const PopoverInteractiveWrapper: React__default.ForwardRefExoticComponent<PressableProps & React__default.RefAttributes<View>>;
6713
6771
 
6714
- export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, 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, AutoComplete, AutoCompleteProps, AwardIcon, Badge, BadgeProps, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetBodyProps, 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, Carousel, CarouselItem, CarouselProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, Chip, ChipGroup, ChipGroupProps, ChipProps, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, Display, DisplayProps, Divider, DividerProps, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, 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, ListItemText, ListItemTextProps, 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, OTPInputCommonProps, 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, Popover, PopoverInteractiveWrapper, PopoverProps, PopoverTriggerProps, 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, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabletIcon, Tag, TagIcon, TagProps, 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 };
6772
+ export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList, ActionListItem, ActionListItemAsset, ActionListItemAssetProps, ActionListItemBadge, ActionListItemBadgeGroup, ActionListItemIcon, ActionListItemProps, ActionListItemText, ActionListProps, ActionListSection, 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, AutoComplete, AutoCompleteProps, AwardIcon, Badge, BadgeProps, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeCommonEvents, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetBodyProps, 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, Carousel, CarouselItem, CarouselProps, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, Chip, ChipGroup, ChipGroupProps, ChipProps, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodeProps, CodepenIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleBodyProps, CollapsibleButton, CollapsibleButtonProps, CollapsibleLink, CollapsibleLinkProps, CollapsibleProps, CommandIcon, CompassIcon, ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CounterProps, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, Display, DisplayProps, Divider, DividerProps, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, 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, ListItemText, ListItemTextProps, 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, OTPInputCommonProps, 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, Popover, PopoverInteractiveWrapper, PopoverProps, PopoverTriggerProps, 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, Skeleton, SkeletonProps, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SpinnerProps, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, SwitchProps, TabletIcon, Tag, TagIcon, TagProps, 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 };