@razorpay/blade 10.4.4 → 10.6.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 +73 -15
- package/build/components/index.development.web.js +237 -137
- package/build/components/index.development.web.js.map +1 -1
- package/build/components/index.native.d.ts +73 -15
- package/build/components/index.native.js +17 -13
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.production.web.js +237 -137
- package/build/components/index.production.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +9 -1
- package/build/css/bankingThemeDarkMobile.css +9 -1
- package/build/css/bankingThemeLightDesktop.css +9 -1
- package/build/css/bankingThemeLightMobile.css +9 -1
- package/build/css/paymentThemeDarkDesktop.css +9 -1
- package/build/css/paymentThemeDarkMobile.css +9 -1
- package/build/css/paymentThemeLightDesktop.css +9 -1
- package/build/css/paymentThemeLightMobile.css +9 -1
- package/build/tokens/index.d.ts +80 -0
- package/build/tokens/index.development.web.js +20 -4
- package/build/tokens/index.development.web.js.map +1 -1
- package/build/tokens/index.native.d.ts +80 -0
- package/build/tokens/index.native.js +1 -1
- package/build/tokens/index.native.js.map +1 -1
- package/build/tokens/index.production.web.js +20 -4
- package/build/tokens/index.production.web.js.map +1 -1
- package/build/utils/index.d.ts +40 -0
- package/build/utils/index.native.d.ts +40 -0
- package/package.json +1 -1
|
@@ -201,6 +201,26 @@ type FontSize = {
|
|
|
201
201
|
* mobile: 32(px/rem/pt)
|
|
202
202
|
*/
|
|
203
203
|
1000: number;
|
|
204
|
+
/** desktop: 48(px/rem/pt)
|
|
205
|
+
*
|
|
206
|
+
* mobile: 40(px/rem/pt)
|
|
207
|
+
*/
|
|
208
|
+
1100: number;
|
|
209
|
+
/** desktop: 56(px/rem/pt)
|
|
210
|
+
*
|
|
211
|
+
* mobile: 48(px/rem/pt)
|
|
212
|
+
*/
|
|
213
|
+
1200: number;
|
|
214
|
+
/** desktop: 64(px/rem/pt)
|
|
215
|
+
*
|
|
216
|
+
* mobile: 56(px/rem/pt)
|
|
217
|
+
*/
|
|
218
|
+
1300: number;
|
|
219
|
+
/** desktop: 88(px/rem/pt)
|
|
220
|
+
*
|
|
221
|
+
* mobile: 64(px/rem/pt)
|
|
222
|
+
*/
|
|
223
|
+
1600: number;
|
|
204
224
|
};
|
|
205
225
|
|
|
206
226
|
type Typography = {
|
|
@@ -270,6 +290,26 @@ type Typography = {
|
|
|
270
290
|
* mobile: 40(px/rem/pt)
|
|
271
291
|
*/
|
|
272
292
|
800: number;
|
|
293
|
+
/** desktop: 56(px/rem/pt)
|
|
294
|
+
*
|
|
295
|
+
* mobile: 48(px/rem/pt)
|
|
296
|
+
*/
|
|
297
|
+
900: number;
|
|
298
|
+
/** desktop: 64(px/rem/pt)
|
|
299
|
+
*
|
|
300
|
+
* mobile: 56(px/rem/pt)
|
|
301
|
+
*/
|
|
302
|
+
1000: number;
|
|
303
|
+
/** desktop: 72(px/rem/pt)
|
|
304
|
+
*
|
|
305
|
+
* mobile: 64(px/rem/pt)
|
|
306
|
+
*/
|
|
307
|
+
1100: number;
|
|
308
|
+
/** desktop: 104(px/rem/pt)
|
|
309
|
+
*
|
|
310
|
+
* mobile: 72(px/rem/pt)
|
|
311
|
+
*/
|
|
312
|
+
1500: number;
|
|
273
313
|
};
|
|
274
314
|
// letterSpacings: {};
|
|
275
315
|
};
|
|
@@ -3434,7 +3474,7 @@ type BaseTextProps$1 = {
|
|
|
3434
3474
|
* React Native only
|
|
3435
3475
|
*/
|
|
3436
3476
|
numberOfLines?: number;
|
|
3437
|
-
componentName?: 'base-text' | 'text' | 'title' | 'heading' | 'code';
|
|
3477
|
+
componentName?: 'base-text' | 'text' | 'title' | 'heading' | 'code' | 'display';
|
|
3438
3478
|
} & TestID$1 &
|
|
3439
3479
|
StyledPropsBlade$1;
|
|
3440
3480
|
|
|
@@ -3699,9 +3739,9 @@ declare const Counter: ({ value, max, intent, variant, contrast, size, testID, .
|
|
|
3699
3739
|
/* eslint-disable @typescript-eslint/no-unnecessary-type-assertion */
|
|
3700
3740
|
|
|
3701
3741
|
|
|
3702
|
-
declare const validAsValues$
|
|
3742
|
+
declare const validAsValues$4 = ['p', 'span', 'div', 'abbr', 'figcaption', 'cite', 'q'] as const;
|
|
3703
3743
|
type TextCommonProps$1 = {
|
|
3704
|
-
as?: typeof validAsValues$
|
|
3744
|
+
as?: typeof validAsValues$4[number];
|
|
3705
3745
|
type?: TextTypes;
|
|
3706
3746
|
contrast?: ColorContrastTypes;
|
|
3707
3747
|
truncateAfterLines?: number;
|
|
@@ -3710,7 +3750,7 @@ type TextCommonProps$1 = {
|
|
|
3710
3750
|
/**
|
|
3711
3751
|
* Overrides the color of the Text component.
|
|
3712
3752
|
*
|
|
3713
|
-
* **Note** This takes priority over `type` and `
|
|
3753
|
+
* **Note** This takes priority over `type` and `contrast` prop to decide color of text
|
|
3714
3754
|
*/
|
|
3715
3755
|
color?: BaseTextProps$1['color'];
|
|
3716
3756
|
textAlign?: BaseTextProps$1['textAlign'];
|
|
@@ -6264,17 +6304,17 @@ declare type BaseTextProps = {
|
|
|
6264
6304
|
* React Native only
|
|
6265
6305
|
*/
|
|
6266
6306
|
numberOfLines?: number;
|
|
6267
|
-
componentName?: 'base-text' | 'text' | 'title' | 'heading' | 'code';
|
|
6307
|
+
componentName?: 'base-text' | 'text' | 'title' | 'heading' | 'code' | 'display';
|
|
6268
6308
|
} & TestID$1 & StyledPropsBlade$1;
|
|
6269
6309
|
declare type BaseTextSizes = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
|
|
6270
6310
|
|
|
6271
|
-
declare const validAsValues$
|
|
6311
|
+
declare const validAsValues$3: readonly ["span", "h1", "h2", "h3", "h4", "h5", "h6"];
|
|
6272
6312
|
declare type TitleProps = {
|
|
6273
|
-
as?: typeof validAsValues$
|
|
6313
|
+
as?: typeof validAsValues$3[number];
|
|
6274
6314
|
/**
|
|
6275
6315
|
* Overrides the color of the Title component.
|
|
6276
6316
|
*
|
|
6277
|
-
* **Note** This takes priority over `type` and `
|
|
6317
|
+
* **Note** This takes priority over `type` and `contrast` prop to decide color of title
|
|
6278
6318
|
*/
|
|
6279
6319
|
color?: BaseTextProps['color'];
|
|
6280
6320
|
size?: Extract<BaseTextSizes, 'small' | 'medium' | 'large' | 'xlarge'>;
|
|
@@ -6287,13 +6327,13 @@ declare type TitleProps = {
|
|
|
6287
6327
|
declare const Title: ({ as, size, type, contrast, color, children, testID, textAlign, textDecorationLine, ...styledProps }: TitleProps) => ReactElement;
|
|
6288
6328
|
|
|
6289
6329
|
declare type HeadingVariant = 'regular' | 'subheading';
|
|
6290
|
-
declare const validAsValues$
|
|
6330
|
+
declare const validAsValues$2: readonly ["span", "h1", "h2", "h3", "h4", "h5", "h6"];
|
|
6291
6331
|
declare type HeadingCommonProps = {
|
|
6292
|
-
as?: typeof validAsValues$
|
|
6332
|
+
as?: typeof validAsValues$2[number];
|
|
6293
6333
|
/**
|
|
6294
6334
|
* Overrides the color of the Heading component.
|
|
6295
6335
|
*
|
|
6296
|
-
* **Note** This takes priority over `type` and `
|
|
6336
|
+
* **Note** This takes priority over `type` and `contrast` prop to decide color of heading
|
|
6297
6337
|
*/
|
|
6298
6338
|
color?: BaseTextProps['color'];
|
|
6299
6339
|
type?: TextTypes;
|
|
@@ -6330,9 +6370,9 @@ declare const Heading: <T extends {
|
|
|
6330
6370
|
variant: HeadingVariant;
|
|
6331
6371
|
}>({ as, variant, size, type, weight, contrast, color, children, testID, textAlign, textDecorationLine, ...styledProps }: HeadingProps<T>) => ReactElement;
|
|
6332
6372
|
|
|
6333
|
-
declare const validAsValues: readonly ["p", "span", "div", "abbr", "figcaption", "cite", "q"];
|
|
6373
|
+
declare const validAsValues$1: readonly ["p", "span", "div", "abbr", "figcaption", "cite", "q"];
|
|
6334
6374
|
declare type TextCommonProps = {
|
|
6335
|
-
as?: typeof validAsValues[number];
|
|
6375
|
+
as?: typeof validAsValues$1[number];
|
|
6336
6376
|
type?: TextTypes;
|
|
6337
6377
|
contrast?: ColorContrastTypes;
|
|
6338
6378
|
truncateAfterLines?: number;
|
|
@@ -6341,7 +6381,7 @@ declare type TextCommonProps = {
|
|
|
6341
6381
|
/**
|
|
6342
6382
|
* Overrides the color of the Text component.
|
|
6343
6383
|
*
|
|
6344
|
-
* **Note** This takes priority over `type` and `
|
|
6384
|
+
* **Note** This takes priority over `type` and `contrast` prop to decide color of text
|
|
6345
6385
|
*/
|
|
6346
6386
|
color?: BaseTextProps['color'];
|
|
6347
6387
|
textAlign?: BaseTextProps['textAlign'];
|
|
@@ -6442,6 +6482,24 @@ declare type CodeProps = CodeHighlightedProps | CodeNonHighlightedProps;
|
|
|
6442
6482
|
*/
|
|
6443
6483
|
declare const Code: ({ children, size, weight, isHighlighted, color, testID, ...styledProps }: CodeProps) => React__default.ReactElement;
|
|
6444
6484
|
|
|
6485
|
+
declare const validAsValues: readonly ["span", "h1", "h2", "h3", "h4", "h5", "h6"];
|
|
6486
|
+
declare type DisplayProps = {
|
|
6487
|
+
as?: typeof validAsValues[number];
|
|
6488
|
+
/**
|
|
6489
|
+
* Overrides the color of the Display component.
|
|
6490
|
+
*
|
|
6491
|
+
* **Note** This takes priority over `type` and `contrast` prop to decide color of title
|
|
6492
|
+
*/
|
|
6493
|
+
color?: BaseTextProps['color'];
|
|
6494
|
+
size?: Extract<BaseTextSizes, 'small' | 'medium' | 'large' | 'xlarge'>;
|
|
6495
|
+
contrast?: ColorContrastTypes;
|
|
6496
|
+
type?: TextTypes;
|
|
6497
|
+
children: React.ReactNode;
|
|
6498
|
+
textAlign?: BaseTextProps['textAlign'];
|
|
6499
|
+
textDecorationLine?: BaseTextProps['textDecorationLine'];
|
|
6500
|
+
} & TestID$1 & StyledPropsBlade$1;
|
|
6501
|
+
declare const Display: ({ as, size, type, contrast, color, children, testID, textAlign, textDecorationLine, ...styledProps }: DisplayProps) => ReactElement;
|
|
6502
|
+
|
|
6445
6503
|
declare type ListItemCodeProps = Exclude<CodeProps, 'size'>;
|
|
6446
6504
|
declare const ListItemCode: ({ children, testID }: ListItemCodeProps) => React.ReactElement;
|
|
6447
6505
|
|
|
@@ -8761,4 +8819,4 @@ declare const TooltipInteractiveWrapper: styled_components.StyledComponent<"div"
|
|
|
8761
8819
|
tabIndex: -1;
|
|
8762
8820
|
}, "tabIndex" | "data-testid" | "data-blade-component">;
|
|
8763
8821
|
|
|
8764
|
-
export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList, 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, 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, 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 };
|
|
8822
|
+
export { Accordion, AccordionItem, AccordionItemProps, AccordionProps, ActionList, 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, 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 };
|