@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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,100 @@
1
1
  # @razorpay/blade
2
2
 
3
+ ## 7.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 5248ea66: feat(Typography): streamline typography scale
8
+
9
+ > **Warning**
10
+ >
11
+ > Breaking Change!
12
+ > This is a breaking change for typography components and lineHeight scale
13
+ >
14
+ > We have written codemod to ease this process so please follow the [migration guide thoroughly](#breaking-changes)
15
+
16
+ ### Component Changes:
17
+
18
+ - Title:
19
+ - Added `xlarge` size
20
+ - Text:
21
+ - Added `large` size
22
+ - Link:
23
+ - Added `large` size
24
+ - Code:
25
+ - Added `weight=bold`
26
+
27
+ ### Breaking Changes:
28
+
29
+ - Title:
30
+ - Replace all `large` size variants to `xlarge`
31
+
32
+ ```diff
33
+ - <Title size="large">hello world</Title>
34
+ + <Title size="xlarge">hello world</Title>
35
+ ```
36
+
37
+ ***
38
+
39
+ ### Line-height scale changes
40
+
41
+ New scale has been changed to use numbered values for more flexibility, to read more about the changes [check this doc](https://docs.google.com/document/d/16j8dIKuQF9GjDgkhkZwnokVGNeoK7R-7zzIXHCgvveA/edit).
42
+
43
+ #### **Migration guide:**
44
+
45
+ Replace old named tokens to corresponding numbered values:
46
+
47
+ For example:
48
+
49
+ ```diff
50
+ - theme.typography.lineHeights.s
51
+ + theme.typography.lineHeights[50]
52
+ ```
53
+
54
+ **Old vs New mappings:**
55
+
56
+ | old | new |
57
+ | --- | --- |
58
+ | s | 50 |
59
+ | m | 50 |
60
+ | l | 100 |
61
+ | xl | 200 |
62
+ | 2xl | 300 |
63
+ | 3xl | 400 |
64
+ | 4xl | 600 |
65
+ | 5xl | 700 |
66
+ | 6xl | 800 |
67
+
68
+ #### **Migrate with Codemod:**
69
+
70
+ To change all instances of `theme.typography.lineHeights` to the new scale automatically use this codemod:
71
+
72
+ **Step1:** Install this version of blade
73
+
74
+ **Step2:** Run the codemod with the following command
75
+
76
+ > Checkout [jscodeshift docs](https://github.com/facebook/jscodeshift) for further cli usage help.
77
+
78
+ ```sh
79
+ npx jscodeshift ./YOUR_DIR --extensions=tsx,ts,jsx,js -t ./node_modules/@razorpay/blade/codemods/migrate-typography/transformers/migrate-typography.ts --ignore-pattern="**/node_modules/**"
80
+ ```
81
+
82
+ > **Note**
83
+ >
84
+ > This codemod will cover 80% of the usecases, but it might miss certain edge cases, it is advised to thoroughly test & check the code to ensure nothing is missed.
85
+
86
+ ## 6.7.0
87
+
88
+ ### Minor Changes
89
+
90
+ - 0c8e5f1b: feat: add `Amount` component
91
+
92
+ ### Usage
93
+
94
+ ```tsx
95
+ <Amount value={10000} />
96
+ ```
97
+
3
98
  ## 6.6.3
4
99
 
5
100
  ### Patch Changes
@@ -127,12 +127,12 @@ type FontWeight = {
127
127
  type FontSize = {
128
128
  /** desktop: 9(px/rem/pt)
129
129
  *
130
- * mobile: 10(px/rem/pt)
130
+ * mobile: 9(px/rem/pt)
131
131
  */
132
132
  10: number;
133
133
  /** desktop: 10(px/rem/pt)
134
134
  *
135
- * mobile: 11(px/rem/pt)
135
+ * mobile: 10(px/rem/pt)
136
136
  */
137
137
  25: number;
138
138
  /** desktop: 11(px/rem/pt)
@@ -147,32 +147,32 @@ type FontSize = {
147
147
  75: number;
148
148
  /** desktop: 14(px/rem/pt)
149
149
  *
150
- * mobile: 15(px/rem/pt)
150
+ * mobile: 14(px/rem/pt)
151
151
  */
152
152
  100: number;
153
153
  /** desktop: 16(px/rem/pt)
154
154
  *
155
- * mobile: 17(px/rem/pt)
155
+ * mobile: 16(px/rem/pt)
156
156
  */
157
157
  200: number;
158
158
  /** desktop: 18(px/rem/pt)
159
159
  *
160
- * mobile: 18(px/rem/pt)
160
+ * mobile: 16(px/rem/pt)
161
161
  */
162
162
  300: number;
163
163
  /** desktop: 20(px/rem/pt)
164
164
  *
165
- * mobile: 20(px/rem/pt)
165
+ * mobile: 18(px/rem/pt)
166
166
  */
167
167
  400: number;
168
168
  /** desktop: 22(px/rem/pt)
169
169
  *
170
- * mobile: 22(px/rem/pt)
170
+ * mobile: 20(px/rem/pt)
171
171
  */
172
172
  500: number;
173
- /** desktop: 25(px/rem/pt)
173
+ /** desktop: 24(px/rem/pt)
174
174
  *
175
- * mobile: 22(px/rem/pt)
175
+ * mobile: 20(px/rem/pt)
176
176
  */
177
177
  600: number;
178
178
  /** desktop: 28(px/rem/pt)
@@ -187,12 +187,12 @@ type FontSize = {
187
187
  800: number;
188
188
  /** desktop: 36(px/rem/pt)
189
189
  *
190
- * mobile: 29(px/rem/pt)
190
+ * mobile: 32(px/rem/pt)
191
191
  */
192
192
  900: number;
193
193
  /** desktop: 40(px/rem/pt)
194
194
  *
195
- * mobile: 29(px/rem/pt)
195
+ * mobile: 32(px/rem/pt)
196
196
  */
197
197
  1000: number;
198
198
  };
@@ -204,51 +204,66 @@ type Typography = {
204
204
  weight: FontWeight;
205
205
  };
206
206
  lineHeights: {
207
+ /** desktop: 0(px/rem/pt)
208
+ *
209
+ * mobile: 0(px/rem/pt)
210
+ */
211
+ 0: number;
212
+ /** desktop: 14(px/rem/pt)
213
+ *
214
+ * mobile: 14(px/rem/pt)
215
+ */
216
+ 25: number;
207
217
  /** desktop: 16(px/rem/pt)
208
218
  *
209
219
  * mobile: 16(px/rem/pt)
210
220
  */
211
- s: number;
212
- /** desktop: 16(px/rem/pt)
221
+ 50: number;
222
+ /** desktop: 18(px/rem/pt)
213
223
  *
214
224
  * mobile: 18(px/rem/pt)
215
225
  */
216
- m: number;
226
+ 75: number;
217
227
  /** desktop: 20(px/rem/pt)
218
228
  *
219
- * mobile: 24(px/rem/pt)
229
+ * mobile: 20(px/rem/pt)
220
230
  */
221
- l: number;
231
+ 100: number;
222
232
  /** desktop: 24(px/rem/pt)
223
233
  *
224
- * mobile: 28(px/rem/pt)
234
+ * mobile: 20(px/rem/pt)
225
235
  */
226
- xl: number;
236
+ 200: number;
227
237
  /** desktop: 24(px/rem/pt)
228
238
  *
229
239
  * mobile: 24(px/rem/pt)
230
240
  */
231
- '2xl': number;
241
+ 300: number;
232
242
  /** desktop: 28(px/rem/pt)
243
+ *
244
+ * mobile: 24(px/rem/pt)
245
+ */
246
+ 400: number;
247
+ /** desktop: 32(px/rem/pt)
233
248
  *
234
249
  * mobile: 28(px/rem/pt)
235
250
  */
236
- '3xl': number;
251
+ 500: number;
237
252
  /** desktop: 40(px/rem/pt)
238
253
  *
239
254
  * mobile: 32(px/rem/pt)
240
255
  */
241
- '4xl': number;
242
- /** desktop: 42(px/rem/pt)
256
+ 600: number;
257
+ /** desktop: 40(px/rem/pt)
243
258
  *
244
- * mobile: 30(px/rem/pt)
259
+ * mobile: 40(px/rem/pt)
245
260
  */
246
- '5xl': number;
247
- /** desktop: 60(px/rem/pt)
261
+ 700: number;
262
+ /** desktop: 48(px/rem/pt)
248
263
  *
249
264
  * mobile: 40(px/rem/pt)
250
265
  */
251
- '6xl': number;
266
+ 800: number;
252
267
  };
253
268
  // letterSpacings: {};
254
269
  };
@@ -2278,7 +2293,7 @@ declare type LinkCommonProps = {
2278
2293
  *
2279
2294
  * @default medium
2280
2295
  */
2281
- size?: 'small' | 'medium';
2296
+ size?: 'small' | 'medium' | 'large';
2282
2297
  } & TestID$1 & StyledPropsBlade & Platform$1.Select<{
2283
2298
  native: {
2284
2299
  /**
@@ -2413,7 +2428,7 @@ type TextVariant$1 = 'body' | 'caption';
2413
2428
 
2414
2429
  type TextBodyVariant$1 = TextCommonProps$1 & {
2415
2430
  variant?: Extract<TextVariant$1, 'body'>;
2416
- size?: 'xsmall' | 'small' | 'medium';
2431
+ size?: 'xsmall' | 'small' | 'medium' | 'large';
2417
2432
  };
2418
2433
 
2419
2434
  type TextCaptionVariant$1 = TextCommonProps$1 & {
@@ -4299,7 +4314,7 @@ declare type ListItemLinkProps = Exclude<LinkProps, 'size' | 'variant' | 'isDisa
4299
4314
  declare const ListItemLink: ({ accessibilityLabel, children, href, icon, iconPosition, onClick, rel, target, testID, }: ListItemLinkProps) => React.ReactElement;
4300
4315
 
4301
4316
  declare type TitleProps = {
4302
- size?: 'small' | 'medium' | 'large';
4317
+ size?: 'small' | 'medium' | 'large' | 'xlarge';
4303
4318
  contrast?: ColorContrastTypes;
4304
4319
  type?: TextTypes;
4305
4320
  children: StringChildrenType;
@@ -4387,7 +4402,7 @@ declare type TextCommonProps = {
4387
4402
  declare type TextVariant = 'body' | 'caption';
4388
4403
  declare type TextBodyVariant = TextCommonProps & {
4389
4404
  variant?: Extract<TextVariant, 'body'>;
4390
- size?: 'xsmall' | 'small' | 'medium';
4405
+ size?: 'xsmall' | 'small' | 'medium' | 'large';
4391
4406
  };
4392
4407
  declare type TextCaptionVariant = TextCommonProps & {
4393
4408
  variant?: Extract<TextVariant, 'caption'>;
@@ -4403,9 +4418,13 @@ declare type TextProps<T> = T extends {
4403
4418
  declare type TextForwardedAs = {
4404
4419
  forwardedAs?: BaseTextProps['as'];
4405
4420
  };
4421
+ declare type GetTextPropsReturn = Omit<BaseTextProps, 'children'> & TextForwardedAs;
4422
+ declare type GetTextProps<T extends {
4423
+ variant: TextVariant;
4424
+ }> = Pick<TextProps<T>, 'type' | 'variant' | 'weight' | 'size' | 'contrast' | 'testID' | 'textAlign'>;
4406
4425
  declare const getTextProps: <T extends {
4407
4426
  variant: TextVariant;
4408
- }>({ variant, type, weight, size, contrast, testID, textAlign, }: Pick<TextProps<T>, "testID" | "textAlign" | "size" | "weight" | "type" | "variant" | "contrast">) => Omit<BaseTextProps, 'children'> & TextForwardedAs;
4427
+ }>({ variant, type, weight, size, contrast, testID, textAlign, }: GetTextProps<T>) => GetTextPropsReturn;
4409
4428
  declare const Text: <T extends {
4410
4429
  variant: TextVariant;
4411
4430
  }>({ variant, weight, size, type, contrast, truncateAfterLines, children, color, testID, textAlign, ...styledProps }: TextProps<T>) => ReactElement;
@@ -4418,6 +4437,7 @@ declare type CodeProps = {
4418
4437
  * @default small
4419
4438
  */
4420
4439
  size?: 'small' | 'medium';
4440
+ weight?: 'regular' | 'bold';
4421
4441
  } & TestID$1 & StyledPropsBlade;
4422
4442
  /**
4423
4443
  * Code component can be used for displaying token, variable names, or inlined code snippets.
@@ -4445,7 +4465,7 @@ declare type CodeProps = {
4445
4465
  * </BaseBox>
4446
4466
  * ```
4447
4467
  */
4448
- declare const Code: ({ children, size, testID, ...styledProps }: CodeProps) => JSX.Element;
4468
+ declare const Code: ({ children, size, weight, testID, ...styledProps }: CodeProps) => JSX.Element;
4449
4469
 
4450
4470
  declare type ListItemCodeProps = Exclude<CodeProps, 'size'>;
4451
4471
  declare const ListItemCode: ({ children, testID }: ListItemCodeProps) => React.ReactElement;
@@ -4808,6 +4828,52 @@ declare const VisuallyHidden: ({ children, testID }: VisuallyHiddenProps) => JSX
4808
4828
  */
4809
4829
  declare const screenReaderStyles: CSSObject;
4810
4830
 
4831
+ declare type Currency = 'INR' | 'MYR';
4832
+ declare type AmountProps = {
4833
+ /**
4834
+ * The value to be rendered within the component.
4835
+ *
4836
+ */
4837
+ value: number;
4838
+ /**
4839
+ * Sets the intent of the amount.
4840
+ *
4841
+ * @default undefined
4842
+ */
4843
+ intent?: Exclude<Feedback, 'neutral'>;
4844
+ /**
4845
+ * Sets the size of the amount.
4846
+ *
4847
+ * @default 'body-medium'
4848
+ */
4849
+ 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';
4850
+ /**
4851
+ * Indicates what the suffix of amount should be
4852
+ *
4853
+ * @default 'decimals'
4854
+ */
4855
+ suffix?: 'decimals' | 'none' | 'humanize';
4856
+ /**
4857
+ * Makes the prefix symbol and decimal digits small and faded
4858
+ *
4859
+ * @default true
4860
+ */
4861
+ isAffixSubtle?: true | false;
4862
+ /**
4863
+ * Prefix to be shown before the amount value. The prefix can be either a currency symbol or a currency code.
4864
+ *
4865
+ * @default 'currency-symbol'
4866
+ */
4867
+ prefix?: 'currency-symbol' | 'currency-code';
4868
+ /**
4869
+ * The currency of the amount.
4870
+ *
4871
+ * @default 'INR'
4872
+ * */
4873
+ currency?: Currency;
4874
+ } & TestID$1 & StyledPropsBlade;
4875
+ declare const Amount: ({ value, suffix, size, isAffixSubtle, intent, prefix, testID, currency, ...styledProps }: AmountProps) => ReactElement;
4876
+
4811
4877
  declare type TestID = {
4812
4878
  testID?: string;
4813
4879
  };
@@ -4924,4 +4990,4 @@ declare const BaseBox: styled_components.StyledComponent<"div", styled_component
4924
4990
  id?: string | undefined;
4925
4991
  }>, never>;
4926
4992
 
4927
- 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 };
4993
+ 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 };