@razorpay/blade 10.9.2 → 10.11.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
 
@@ -6590,6 +6662,10 @@ declare type CollapsibleBodyProps = {
6590
6662
  declare const CollapsibleBody: ({ children, testID, _width }: CollapsibleBodyProps) => ReactElement;
6591
6663
 
6592
6664
  declare type TooltipProps = {
6665
+ /**
6666
+ * Tooltip title
6667
+ */
6668
+ title?: string;
6593
6669
  /**
6594
6670
  * Tooltip content
6595
6671
  */
@@ -6611,8 +6687,100 @@ declare type TooltipProps = {
6611
6687
  zIndex?: number;
6612
6688
  };
6613
6689
 
6614
- declare const Tooltip: ({ content, children, placement, onOpenChange, zIndex, }: TooltipProps) => React__default.ReactElement;
6690
+ declare const Tooltip: ({ title, content, children, placement, onOpenChange, zIndex, }: TooltipProps) => React__default.ReactElement;
6615
6691
 
6616
6692
  declare const TooltipInteractiveWrapper: React__default.ForwardRefExoticComponent<PressableProps & React__default.RefAttributes<View>>;
6617
6693
 
6618
- 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, 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 };
6694
+ declare type PopoverProps = {
6695
+ /**
6696
+ * Popover title
6697
+ */
6698
+ title?: string;
6699
+ /**
6700
+ * Leading content placed before the title
6701
+ *
6702
+ * Can be any blade icon or asset.
6703
+ */
6704
+ titleLeading?: React__default.ReactNode;
6705
+ /**
6706
+ * Footer content
6707
+ */
6708
+ footer?: React__default.ReactNode;
6709
+ /**
6710
+ * Popover content
6711
+ */
6712
+ content: React__default.ReactElement;
6713
+ /**
6714
+ * Placement of Popover
6715
+ *
6716
+ * @default "top"
6717
+ */
6718
+ placement?: UseFloatingOptions['placement'];
6719
+ /**
6720
+ * Popover trigger
6721
+ */
6722
+ children: React__default.ReactElement;
6723
+ /**
6724
+ * Open state of Popover
6725
+ * If set to true makes the popover controlled
6726
+ */
6727
+ isOpen?: boolean;
6728
+ /**
6729
+ * Uncontrolled state of the popover
6730
+ */
6731
+ defaultIsOpen?: boolean;
6732
+ /**
6733
+ * Called when popover open state is changed, this can be used to detect when popover opens or closed
6734
+ */
6735
+ onOpenChange?: ({ isOpen }: {
6736
+ isOpen: boolean;
6737
+ }) => void;
6738
+ /**
6739
+ * Sets the z-index of the Popover
6740
+ * @default 1000
6741
+ */
6742
+ zIndex?: number;
6743
+ /**
6744
+ * The ref of the element that should receive focus when the popover opens.
6745
+ *
6746
+ * @default PopoverCloseButton
6747
+ */
6748
+ initialFocusRef?: React__default.RefObject<any>;
6749
+ };
6750
+ /**
6751
+ * PopoverTriggerProps
6752
+ *
6753
+ * This can be useful when working with Custom Trigger Components
6754
+ */
6755
+ declare type PopoverTriggerProps = {
6756
+ onMouseDown?: Platform.Select<{
6757
+ web: React__default.MouseEventHandler;
6758
+ native: undefined;
6759
+ }>;
6760
+ onPointerDown?: Platform.Select<{
6761
+ web: React__default.PointerEventHandler;
6762
+ native: undefined;
6763
+ }>;
6764
+ onKeyDown?: Platform.Select<{
6765
+ web: React__default.KeyboardEventHandler;
6766
+ native: undefined;
6767
+ }>;
6768
+ onKeyUp?: Platform.Select<{
6769
+ web: React__default.KeyboardEventHandler;
6770
+ native: undefined;
6771
+ }>;
6772
+ onClick?: Platform.Select<{
6773
+ web: React__default.MouseEventHandler;
6774
+ native: undefined;
6775
+ }>;
6776
+ onTouchEnd?: Platform.Select<{
6777
+ web: React__default.TouchEventHandler;
6778
+ native: (event: GestureResponderEvent) => void;
6779
+ }>;
6780
+ };
6781
+
6782
+ declare const Popover: ({ content, children, placement, onOpenChange, zIndex, title, titleLeading, footer, isOpen, defaultIsOpen, }: PopoverProps) => React__default.ReactElement;
6783
+
6784
+ declare const PopoverInteractiveWrapper: React__default.ForwardRefExoticComponent<PressableProps & React__default.RefAttributes<View>>;
6785
+
6786
+ 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, 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 };