@razorpay/blade 6.6.3 → 7.0.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.
@@ -128,12 +128,12 @@ type FontWeight = {
128
128
  type FontSize = {
129
129
  /** desktop: 9(px/rem/pt)
130
130
  *
131
- * mobile: 10(px/rem/pt)
131
+ * mobile: 9(px/rem/pt)
132
132
  */
133
133
  10: number;
134
134
  /** desktop: 10(px/rem/pt)
135
135
  *
136
- * mobile: 11(px/rem/pt)
136
+ * mobile: 10(px/rem/pt)
137
137
  */
138
138
  25: number;
139
139
  /** desktop: 11(px/rem/pt)
@@ -148,32 +148,32 @@ type FontSize = {
148
148
  75: number;
149
149
  /** desktop: 14(px/rem/pt)
150
150
  *
151
- * mobile: 15(px/rem/pt)
151
+ * mobile: 14(px/rem/pt)
152
152
  */
153
153
  100: number;
154
154
  /** desktop: 16(px/rem/pt)
155
155
  *
156
- * mobile: 17(px/rem/pt)
156
+ * mobile: 16(px/rem/pt)
157
157
  */
158
158
  200: number;
159
159
  /** desktop: 18(px/rem/pt)
160
160
  *
161
- * mobile: 18(px/rem/pt)
161
+ * mobile: 16(px/rem/pt)
162
162
  */
163
163
  300: number;
164
164
  /** desktop: 20(px/rem/pt)
165
165
  *
166
- * mobile: 20(px/rem/pt)
166
+ * mobile: 18(px/rem/pt)
167
167
  */
168
168
  400: number;
169
169
  /** desktop: 22(px/rem/pt)
170
170
  *
171
- * mobile: 22(px/rem/pt)
171
+ * mobile: 20(px/rem/pt)
172
172
  */
173
173
  500: number;
174
- /** desktop: 25(px/rem/pt)
174
+ /** desktop: 24(px/rem/pt)
175
175
  *
176
- * mobile: 22(px/rem/pt)
176
+ * mobile: 20(px/rem/pt)
177
177
  */
178
178
  600: number;
179
179
  /** desktop: 28(px/rem/pt)
@@ -188,12 +188,12 @@ type FontSize = {
188
188
  800: number;
189
189
  /** desktop: 36(px/rem/pt)
190
190
  *
191
- * mobile: 29(px/rem/pt)
191
+ * mobile: 32(px/rem/pt)
192
192
  */
193
193
  900: number;
194
194
  /** desktop: 40(px/rem/pt)
195
195
  *
196
- * mobile: 29(px/rem/pt)
196
+ * mobile: 32(px/rem/pt)
197
197
  */
198
198
  1000: number;
199
199
  };
@@ -205,51 +205,66 @@ type Typography = {
205
205
  weight: FontWeight;
206
206
  };
207
207
  lineHeights: {
208
+ /** desktop: 0(px/rem/pt)
209
+ *
210
+ * mobile: 0(px/rem/pt)
211
+ */
212
+ 0: number;
213
+ /** desktop: 14(px/rem/pt)
214
+ *
215
+ * mobile: 14(px/rem/pt)
216
+ */
217
+ 25: number;
208
218
  /** desktop: 16(px/rem/pt)
209
219
  *
210
220
  * mobile: 16(px/rem/pt)
211
221
  */
212
- s: number;
213
- /** desktop: 16(px/rem/pt)
222
+ 50: number;
223
+ /** desktop: 18(px/rem/pt)
214
224
  *
215
225
  * mobile: 18(px/rem/pt)
216
226
  */
217
- m: number;
227
+ 75: number;
218
228
  /** desktop: 20(px/rem/pt)
219
229
  *
220
- * mobile: 24(px/rem/pt)
230
+ * mobile: 20(px/rem/pt)
221
231
  */
222
- l: number;
232
+ 100: number;
223
233
  /** desktop: 24(px/rem/pt)
224
234
  *
225
- * mobile: 28(px/rem/pt)
235
+ * mobile: 20(px/rem/pt)
226
236
  */
227
- xl: number;
237
+ 200: number;
228
238
  /** desktop: 24(px/rem/pt)
229
239
  *
230
240
  * mobile: 24(px/rem/pt)
231
241
  */
232
- '2xl': number;
242
+ 300: number;
233
243
  /** desktop: 28(px/rem/pt)
244
+ *
245
+ * mobile: 24(px/rem/pt)
246
+ */
247
+ 400: number;
248
+ /** desktop: 32(px/rem/pt)
234
249
  *
235
250
  * mobile: 28(px/rem/pt)
236
251
  */
237
- '3xl': number;
252
+ 500: number;
238
253
  /** desktop: 40(px/rem/pt)
239
254
  *
240
255
  * mobile: 32(px/rem/pt)
241
256
  */
242
- '4xl': number;
243
- /** desktop: 42(px/rem/pt)
257
+ 600: number;
258
+ /** desktop: 40(px/rem/pt)
244
259
  *
245
- * mobile: 30(px/rem/pt)
260
+ * mobile: 40(px/rem/pt)
246
261
  */
247
- '5xl': number;
248
- /** desktop: 60(px/rem/pt)
262
+ 700: number;
263
+ /** desktop: 48(px/rem/pt)
249
264
  *
250
265
  * mobile: 40(px/rem/pt)
251
266
  */
252
- '6xl': number;
267
+ 800: number;
253
268
  };
254
269
  // letterSpacings: {};
255
270
  };
@@ -2281,7 +2296,7 @@ declare type LinkCommonProps = {
2281
2296
  *
2282
2297
  * @default medium
2283
2298
  */
2284
- size?: 'small' | 'medium';
2299
+ size?: 'small' | 'medium' | 'large';
2285
2300
  } & TestID$1 & StyledPropsBlade & Platform.Select<{
2286
2301
  native: {
2287
2302
  /**
@@ -2416,7 +2431,7 @@ type TextVariant$1 = 'body' | 'caption';
2416
2431
 
2417
2432
  type TextBodyVariant$1 = TextCommonProps$1 & {
2418
2433
  variant?: Extract<TextVariant$1, 'body'>;
2419
- size?: 'xsmall' | 'small' | 'medium';
2434
+ size?: 'xsmall' | 'small' | 'medium' | 'large';
2420
2435
  };
2421
2436
 
2422
2437
  type TextCaptionVariant$1 = TextCommonProps$1 & {
@@ -4095,7 +4110,7 @@ declare type ListItemLinkProps = Exclude<LinkProps, 'size' | 'variant' | 'isDisa
4095
4110
  declare const ListItemLink: ({ accessibilityLabel, children, href, icon, iconPosition, onClick, rel, target, testID, }: ListItemLinkProps) => React.ReactElement;
4096
4111
 
4097
4112
  declare type TitleProps = {
4098
- size?: 'small' | 'medium' | 'large';
4113
+ size?: 'small' | 'medium' | 'large' | 'xlarge';
4099
4114
  contrast?: ColorContrastTypes;
4100
4115
  type?: TextTypes;
4101
4116
  children: StringChildrenType;
@@ -4183,7 +4198,7 @@ declare type TextCommonProps = {
4183
4198
  declare type TextVariant = 'body' | 'caption';
4184
4199
  declare type TextBodyVariant = TextCommonProps & {
4185
4200
  variant?: Extract<TextVariant, 'body'>;
4186
- size?: 'xsmall' | 'small' | 'medium';
4201
+ size?: 'xsmall' | 'small' | 'medium' | 'large';
4187
4202
  };
4188
4203
  declare type TextCaptionVariant = TextCommonProps & {
4189
4204
  variant?: Extract<TextVariant, 'caption'>;
@@ -4199,9 +4214,13 @@ declare type TextProps<T> = T extends {
4199
4214
  declare type TextForwardedAs = {
4200
4215
  forwardedAs?: BaseTextProps['as'];
4201
4216
  };
4217
+ declare type GetTextPropsReturn = Omit<BaseTextProps, 'children'> & TextForwardedAs;
4218
+ declare type GetTextProps<T extends {
4219
+ variant: TextVariant;
4220
+ }> = Pick<TextProps<T>, 'type' | 'variant' | 'weight' | 'size' | 'contrast' | 'testID' | 'textAlign'>;
4202
4221
  declare const getTextProps: <T extends {
4203
4222
  variant: TextVariant;
4204
- }>({ variant, type, weight, size, contrast, testID, textAlign, }: Pick<TextProps<T>, "testID" | "textAlign" | "size" | "weight" | "type" | "variant" | "contrast">) => Omit<BaseTextProps, 'children'> & TextForwardedAs;
4223
+ }>({ variant, type, weight, size, contrast, testID, textAlign, }: GetTextProps<T>) => GetTextPropsReturn;
4205
4224
  declare const Text: <T extends {
4206
4225
  variant: TextVariant;
4207
4226
  }>({ variant, weight, size, type, contrast, truncateAfterLines, children, color, testID, textAlign, ...styledProps }: TextProps<T>) => ReactElement;
@@ -4214,6 +4233,7 @@ declare type CodeProps = {
4214
4233
  * @default small
4215
4234
  */
4216
4235
  size?: 'small' | 'medium';
4236
+ weight?: 'regular' | 'bold';
4217
4237
  } & TestID$1 & StyledPropsBlade;
4218
4238
  /**
4219
4239
  * Code component can be used for displaying token, variable names, or inlined code snippets.
@@ -4241,7 +4261,7 @@ declare type CodeProps = {
4241
4261
  * </BaseBox>
4242
4262
  * ```
4243
4263
  */
4244
- declare const Code: ({ children, size, testID, ...styledProps }: CodeProps) => JSX.Element;
4264
+ declare const Code: ({ children, size, weight, testID, ...styledProps }: CodeProps) => JSX.Element;
4245
4265
 
4246
4266
  declare type ListItemCodeProps = Exclude<CodeProps, 'size'>;
4247
4267
  declare const ListItemCode: ({ children, testID }: ListItemCodeProps) => React.ReactElement;
@@ -4547,6 +4567,52 @@ declare const VisuallyHidden: ({ children, testID }: VisuallyHiddenProps) => JSX
4547
4567
  */
4548
4568
  declare const screenReaderStyles: CSSObject;
4549
4569
 
4570
+ declare type Currency = 'INR' | 'MYR';
4571
+ declare type AmountProps = {
4572
+ /**
4573
+ * The value to be rendered within the component.
4574
+ *
4575
+ */
4576
+ value: number;
4577
+ /**
4578
+ * Sets the intent of the amount.
4579
+ *
4580
+ * @default undefined
4581
+ */
4582
+ intent?: Exclude<Feedback, 'neutral'>;
4583
+ /**
4584
+ * Sets the size of the amount.
4585
+ *
4586
+ * @default 'body-medium'
4587
+ */
4588
+ size?: 'body-medium-bold' | 'body-small' | 'body-small-bold' | 'body-medium' | 'body-medium-bold' | 'heading-small' | 'heading-small-bold' | 'heading-large' | 'heading-large-bold' | 'title-small' | 'title-medium';
4589
+ /**
4590
+ * Indicates what the suffix of amount should be
4591
+ *
4592
+ * @default 'decimals'
4593
+ */
4594
+ suffix?: 'decimals' | 'none' | 'humanize';
4595
+ /**
4596
+ * Makes the prefix symbol and decimal digits small and faded
4597
+ *
4598
+ * @default true
4599
+ */
4600
+ isAffixSubtle?: true | false;
4601
+ /**
4602
+ * Prefix to be shown before the amount value. The prefix can be either a currency symbol or a currency code.
4603
+ *
4604
+ * @default 'currency-symbol'
4605
+ */
4606
+ prefix?: 'currency-symbol' | 'currency-code';
4607
+ /**
4608
+ * The currency of the amount.
4609
+ *
4610
+ * @default 'INR'
4611
+ * */
4612
+ currency?: Currency;
4613
+ } & TestID$1 & StyledPropsBlade;
4614
+ declare const Amount: ({ value, suffix, size, isAffixSubtle, intent, prefix, testID, currency, ...styledProps }: AmountProps) => ReactElement;
4615
+
4550
4616
  declare type TestID = {
4551
4617
  testID?: string;
4552
4618
  };
@@ -4618,4 +4684,4 @@ declare const BaseBox: styled_components.StyledComponent<typeof View, styled_com
4618
4684
  id?: string | undefined;
4619
4685
  }>, never>;
4620
4686
 
4621
- 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, 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, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, Box, BoxIcon, BoxProps, 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, 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, BaseBox as InternalDontUsePleaseWillBeRemovedSoonBaseBox, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, 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, 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, TabletIcon, TagIcon, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, 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, useTheme };
4687
+ 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, BladeProvider, BladeProviderProps, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, Box, BoxIcon, BoxProps, 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, 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, BaseBox as InternalDontUsePleaseWillBeRemovedSoonBaseBox, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, 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, 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, TabletIcon, TagIcon, TargetIcon, Text, TextArea, TextAreaProps, TextInput, TextInputProps, TextProps, TextVariant, Theme, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, TitleProps, ToggleLeftIcon, ToggleRightIcon, 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, useTheme };