@razorpay/blade 6.0.5 → 6.1.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.
@@ -2514,6 +2514,241 @@ declare type IndicatorWithA11yLabel = {
2514
2514
  declare type IndicatorProps = IndicatorCommonProps & (IndicatorWithA11yLabel | IndicatorWithoutA11yLabel);
2515
2515
  declare const Indicator: ({ accessibilityLabel, children, size, intent, }: IndicatorProps) => ReactElement;
2516
2516
 
2517
+ declare type ListItemProps = {
2518
+ /**
2519
+ * Children to be rendered for ListItem. This can be a text, ListItemLink or another List.
2520
+ *
2521
+ */
2522
+ children: React__default.ReactNode;
2523
+ /**
2524
+ * Icon to be rendered for a ListItem's bullet.
2525
+ *
2526
+ */
2527
+ icon?: IconComponent;
2528
+ /**
2529
+ * This is a private prop to be used only for internal logic purposes.
2530
+ *
2531
+ */
2532
+ _itemNumber?: undefined;
2533
+ };
2534
+ declare const ListItem: {
2535
+ ({ children, icon, _itemNumber }: ListItemProps): React__default.ReactElement;
2536
+ componentId: string;
2537
+ };
2538
+
2539
+ declare type ListCommonProps = {
2540
+ /**
2541
+ * ListItem to be rendered for the List.
2542
+ *
2543
+ */
2544
+ children: React__default.ReactElement<ListItemProps> | React__default.ReactElement<ListItemProps>[];
2545
+ /**
2546
+ * Sets the variant to be rendered for the List.
2547
+ *
2548
+ * @default 'unordered'
2549
+ */
2550
+ variant?: 'unordered' | 'ordered' | 'ordered-filled';
2551
+ /**
2552
+ * Sets the size for the List.
2553
+ *
2554
+ * @default 'medium'
2555
+ */
2556
+ size?: 'small' | 'medium';
2557
+ };
2558
+ declare type ListWithIconProps = ListCommonProps & {
2559
+ variant?: 'unordered';
2560
+ icon?: IconComponent;
2561
+ };
2562
+ declare type ListWithoutIconProps = ListCommonProps & {
2563
+ variant?: 'ordered' | 'ordered-filled';
2564
+ icon?: undefined;
2565
+ };
2566
+ declare type ListProps = ListWithIconProps | ListWithoutIconProps;
2567
+ /**
2568
+ * List Component is used to display a set of related items that are composed of text/links. Each list item begins with a bullet or a number.
2569
+ *
2570
+ * ## Usage
2571
+ *
2572
+ * ```tsx
2573
+ * <List
2574
+ * variant='unordered'
2575
+ * size='medium'
2576
+ * >
2577
+ * <ListItem>
2578
+ * Item 1
2579
+ * <List>
2580
+ * <ListItem>Item 1.1</ListItem>
2581
+ * </List>
2582
+ * </ListItem>
2583
+ * <ListItem>Item 2</ListItem>
2584
+ * <List />
2585
+ * ```
2586
+ */
2587
+ declare const List: {
2588
+ ({ variant, size, children, icon }: ListProps): React__default.ReactElement;
2589
+ componentId: string;
2590
+ };
2591
+
2592
+ declare type ListItemLinkProps = Exclude<LinkProps, 'size' | 'variant' | 'isDisabled'>;
2593
+ declare const ListItemLink: {
2594
+ ({ accessibilityLabel, children, href, icon, iconPosition, onClick, rel, target, }: ListItemLinkProps): React.ReactElement;
2595
+ componentId: string;
2596
+ };
2597
+
2598
+ declare type TitleProps = {
2599
+ size?: 'small' | 'medium' | 'large';
2600
+ contrast?: ColorContrastTypes;
2601
+ type?: TextTypes;
2602
+ children: string;
2603
+ };
2604
+ declare const Title: ({ size, type, contrast, children, }: TitleProps) => ReactElement;
2605
+
2606
+ declare type HeadingVariant = 'regular' | 'subheading';
2607
+ declare type HeadingSize = 'small' | 'medium' | 'large';
2608
+ declare type HeadingCommonProps = {
2609
+ type?: TextTypes;
2610
+ contrast?: ColorContrastTypes;
2611
+ children: string;
2612
+ };
2613
+ declare type HeadingNormalVariant = HeadingCommonProps & {
2614
+ variant?: Exclude<HeadingVariant, 'subheading'>;
2615
+ /**
2616
+ *
2617
+ * @default small
2618
+ */
2619
+ size?: HeadingSize;
2620
+ weight?: keyof Theme$1['typography']['fonts']['weight'];
2621
+ };
2622
+ declare type HeadingSubHeadingVariant = HeadingCommonProps & {
2623
+ variant?: Extract<HeadingVariant, 'subheading'>;
2624
+ /**
2625
+ * `size` cannot be used with variant="subheading". Either change to variant="regular" or remove size prop
2626
+ */
2627
+ size?: undefined;
2628
+ weight?: keyof Pick<Theme$1['typography']['fonts']['weight'], 'bold'>;
2629
+ };
2630
+ /**
2631
+ * Conditionally changing props based on variant.
2632
+ * Overloads or union gives wrong intellisense.
2633
+ */
2634
+ declare type HeadingProps<T> = T extends {
2635
+ variant: infer Variant;
2636
+ } ? Variant extends Exclude<HeadingVariant, 'subheading'> ? HeadingNormalVariant : Variant extends 'subheading' ? HeadingSubHeadingVariant : T : T;
2637
+ declare const Heading: <T extends {
2638
+ variant: HeadingVariant;
2639
+ }>({ variant, size, type, weight, contrast, children, }: HeadingProps<T>) => ReactElement;
2640
+
2641
+ declare type FeedbackColors = `feedback.text.${DotNotationColorStringToken<Theme$1['colors']['feedback']['text']>}`;
2642
+ declare type FeedbackActionColors = `feedback.${Feedback}.action.text.${DotNotationColorStringToken<Theme$1['colors']['feedback'][Feedback]['action']['text']>}`;
2643
+ declare type SurfaceColors = `surface.text.${DotNotationColorStringToken<Theme$1['colors']['surface']['text']>}`;
2644
+ declare type ActionColors = `action.text.${DotNotationColorStringToken<Theme$1['colors']['action']['text']>}`;
2645
+ declare type BadgeTextColors = `badge.text.${DotNotationColorStringToken<Theme$1['colors']['badge']['text']>}`;
2646
+ declare type BaseTextProps = {
2647
+ id?: string;
2648
+ color?: ActionColors | FeedbackColors | SurfaceColors | FeedbackActionColors | BadgeTextColors;
2649
+ fontFamily?: keyof Theme$1['typography']['fonts']['family'];
2650
+ fontSize?: keyof Theme$1['typography']['fonts']['size'];
2651
+ fontWeight?: keyof Theme$1['typography']['fonts']['weight'];
2652
+ fontStyle?: 'italic' | 'normal';
2653
+ textDecorationLine?: 'line-through' | 'none' | 'underline';
2654
+ lineHeight?: keyof Theme$1['typography']['lineHeights'];
2655
+ /**
2656
+ * Web only
2657
+ */
2658
+ as?: 'code' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span';
2659
+ textAlign?: 'center' | 'justify' | 'left' | 'right';
2660
+ truncateAfterLines?: number;
2661
+ className?: string;
2662
+ style?: React.CSSProperties;
2663
+ children: React.ReactNode;
2664
+ accessibilityProps?: Partial<AccessibilityProps>;
2665
+ /**
2666
+ * React Native only
2667
+ */
2668
+ numberOfLines?: number;
2669
+ componentName?: 'text' | 'title' | 'heading' | 'code';
2670
+ };
2671
+
2672
+ declare type TextCommonProps = {
2673
+ type?: TextTypes;
2674
+ contrast?: ColorContrastTypes;
2675
+ truncateAfterLines?: number;
2676
+ children: React.ReactNode;
2677
+ weight?: keyof Theme$1['typography']['fonts']['weight'];
2678
+ /**
2679
+ * **For Internal use only**: Sets the color of the Text component
2680
+ */
2681
+ color?: BaseTextProps['color'];
2682
+ };
2683
+ declare type TextVariant = 'body' | 'caption';
2684
+ declare type TextBodyVariant = TextCommonProps & {
2685
+ variant?: Extract<TextVariant, 'body'>;
2686
+ size?: 'xsmall' | 'small' | 'medium';
2687
+ };
2688
+ declare type TextCaptionVariant = TextCommonProps & {
2689
+ variant?: Extract<TextVariant, 'caption'>;
2690
+ size?: 'medium';
2691
+ };
2692
+ /**
2693
+ * Conditionally changing props based on variant.
2694
+ * Overloads or union gives wrong intellisense.
2695
+ */
2696
+ declare type TextProps<T> = T extends {
2697
+ variant: infer Variant;
2698
+ } ? Variant extends 'caption' ? TextCaptionVariant : Variant extends 'body' ? TextBodyVariant : T : T;
2699
+ declare type TextForwardedAs = {
2700
+ forwardedAs?: BaseTextProps['as'];
2701
+ };
2702
+ declare const getTextProps: <T extends {
2703
+ variant: TextVariant;
2704
+ }>({ variant, type, weight, size, contrast, }: Pick<TextProps<T>, "size" | "variant" | "type" | "weight" | "contrast">) => Omit<BaseTextProps, 'children'> & TextForwardedAs;
2705
+ declare const Text: <T extends {
2706
+ variant: TextVariant;
2707
+ }>({ variant, weight, size, type, contrast, truncateAfterLines, children, color, }: TextProps<T>) => ReactElement;
2708
+
2709
+ declare type CodeProps = {
2710
+ children: string;
2711
+ /**
2712
+ * Decides the fontSize and padding of Code
2713
+ *
2714
+ * @default small
2715
+ */
2716
+ size?: 'small' | 'medium';
2717
+ };
2718
+ /**
2719
+ * Code component can be used for displaying token, variable names, or inlined code snippets.
2720
+ *
2721
+ * ## Usage
2722
+ *
2723
+ * ### In Web
2724
+ * In web, you can use it inside `Text` component or individually. The component is set to display `inline-block`
2725
+ *
2726
+ * ```tsx
2727
+ * <Text>
2728
+ * Lorem ipsum <Code>SENTRY_TOKEN</Code> normal text
2729
+ * </Text>
2730
+ * ```
2731
+ *
2732
+ * ### In React Native
2733
+ *
2734
+ * In React Native, you would have to align it using flex to make sure the Code and the surrounding text is correctly aligned
2735
+ *
2736
+ * ```tsx
2737
+ * <Box flexWrap="wrap" flexDirection="row" alignItems="flex-start">
2738
+ * <Text>Lorem ipsum </Text>
2739
+ * <Code>SENTRY_TOKEN</Code>
2740
+ * <Text> normal text</Text>
2741
+ * </Box>
2742
+ * ```
2743
+ */
2744
+ declare const Code: ({ children, size }: CodeProps) => JSX.Element;
2745
+
2746
+ declare type ListItemCodeProps = Exclude<CodeProps, 'size'>;
2747
+ declare const ListItemCode: {
2748
+ ({ children }: ListItemCodeProps): React.ReactElement;
2749
+ componentId: string;
2750
+ };
2751
+
2517
2752
  declare type Assertiveness = AriaAttributes['liveRegion'];
2518
2753
 
2519
2754
  declare function announce(message: string, _assertiveness?: Assertiveness): void;
@@ -2744,154 +2979,6 @@ declare type SkipNavLinkProps = {
2744
2979
  declare const SkipNavLink: (_props: SkipNavLinkProps) => never;
2745
2980
  declare const SkipNavContent: (_props: SkipNavLinkProps) => never;
2746
2981
 
2747
- declare type TitleProps = {
2748
- size?: 'small' | 'medium' | 'large';
2749
- contrast?: ColorContrastTypes;
2750
- type?: TextTypes;
2751
- children: string;
2752
- };
2753
- declare const Title: ({ size, type, contrast, children, }: TitleProps) => ReactElement;
2754
-
2755
- declare type HeadingVariant = 'regular' | 'subheading';
2756
- declare type HeadingSize = 'small' | 'medium' | 'large';
2757
- declare type HeadingCommonProps = {
2758
- type?: TextTypes;
2759
- contrast?: ColorContrastTypes;
2760
- children: string;
2761
- };
2762
- declare type HeadingNormalVariant = HeadingCommonProps & {
2763
- variant?: Exclude<HeadingVariant, 'subheading'>;
2764
- /**
2765
- *
2766
- * @default small
2767
- */
2768
- size?: HeadingSize;
2769
- weight?: keyof Theme$1['typography']['fonts']['weight'];
2770
- };
2771
- declare type HeadingSubHeadingVariant = HeadingCommonProps & {
2772
- variant?: Extract<HeadingVariant, 'subheading'>;
2773
- /**
2774
- * `size` cannot be used with variant="subheading". Either change to variant="regular" or remove size prop
2775
- */
2776
- size?: undefined;
2777
- weight?: keyof Pick<Theme$1['typography']['fonts']['weight'], 'bold'>;
2778
- };
2779
- /**
2780
- * Conditionally changing props based on variant.
2781
- * Overloads or union gives wrong intellisense.
2782
- */
2783
- declare type HeadingProps<T> = T extends {
2784
- variant: infer Variant;
2785
- } ? Variant extends Exclude<HeadingVariant, 'subheading'> ? HeadingNormalVariant : Variant extends 'subheading' ? HeadingSubHeadingVariant : T : T;
2786
- declare const Heading: <T extends {
2787
- variant: HeadingVariant;
2788
- }>({ variant, size, type, weight, contrast, children, }: HeadingProps<T>) => ReactElement;
2789
-
2790
- declare type FeedbackColors = `feedback.text.${DotNotationColorStringToken<Theme$1['colors']['feedback']['text']>}`;
2791
- declare type FeedbackActionColors = `feedback.${Feedback}.action.text.${DotNotationColorStringToken<Theme$1['colors']['feedback'][Feedback]['action']['text']>}`;
2792
- declare type SurfaceColors = `surface.text.${DotNotationColorStringToken<Theme$1['colors']['surface']['text']>}`;
2793
- declare type ActionColors = `action.text.${DotNotationColorStringToken<Theme$1['colors']['action']['text']>}`;
2794
- declare type BadgeTextColors = `badge.text.${DotNotationColorStringToken<Theme$1['colors']['badge']['text']>}`;
2795
- declare type BaseTextProps = {
2796
- id?: string;
2797
- color?: ActionColors | FeedbackColors | SurfaceColors | FeedbackActionColors | BadgeTextColors;
2798
- fontFamily?: keyof Theme$1['typography']['fonts']['family'];
2799
- fontSize?: keyof Theme$1['typography']['fonts']['size'];
2800
- fontWeight?: keyof Theme$1['typography']['fonts']['weight'];
2801
- fontStyle?: 'italic' | 'normal';
2802
- textDecorationLine?: 'line-through' | 'none' | 'underline';
2803
- lineHeight?: keyof Theme$1['typography']['lineHeights'];
2804
- /**
2805
- * Web only
2806
- */
2807
- as?: 'code' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span';
2808
- textAlign?: 'center' | 'justify' | 'left' | 'right';
2809
- truncateAfterLines?: number;
2810
- className?: string;
2811
- style?: React.CSSProperties;
2812
- children: React.ReactNode;
2813
- accessibilityProps?: Partial<AccessibilityProps>;
2814
- /**
2815
- * React Native only
2816
- */
2817
- numberOfLines?: number;
2818
- componentName?: 'text' | 'title' | 'heading' | 'code';
2819
- };
2820
-
2821
- declare type TextCommonProps = {
2822
- type?: TextTypes;
2823
- contrast?: ColorContrastTypes;
2824
- truncateAfterLines?: number;
2825
- children: React.ReactNode;
2826
- weight?: keyof Theme$1['typography']['fonts']['weight'];
2827
- /**
2828
- * **For Internal use only**: Sets the color of the Text component
2829
- */
2830
- color?: BaseTextProps['color'];
2831
- };
2832
- declare type TextVariant = 'body' | 'caption';
2833
- declare type TextBodyVariant = TextCommonProps & {
2834
- variant?: Extract<TextVariant, 'body'>;
2835
- size?: 'xsmall' | 'small' | 'medium';
2836
- };
2837
- declare type TextCaptionVariant = TextCommonProps & {
2838
- variant?: Extract<TextVariant, 'caption'>;
2839
- size?: 'medium';
2840
- };
2841
- /**
2842
- * Conditionally changing props based on variant.
2843
- * Overloads or union gives wrong intellisense.
2844
- */
2845
- declare type TextProps<T> = T extends {
2846
- variant: infer Variant;
2847
- } ? Variant extends 'caption' ? TextCaptionVariant : Variant extends 'body' ? TextBodyVariant : T : T;
2848
- declare type TextForwardedAs = {
2849
- forwardedAs?: BaseTextProps['as'];
2850
- };
2851
- declare const getTextProps: <T extends {
2852
- variant: TextVariant;
2853
- }>({ variant, type, weight, size, contrast, }: Pick<TextProps<T>, "size" | "variant" | "type" | "weight" | "contrast">) => Omit<BaseTextProps, 'children'> & TextForwardedAs;
2854
- declare const Text: <T extends {
2855
- variant: TextVariant;
2856
- }>({ variant, weight, size, type, contrast, truncateAfterLines, children, color, }: TextProps<T>) => ReactElement;
2857
-
2858
- declare type CodeProps = {
2859
- children: string;
2860
- /**
2861
- * Decides the fontSize and padding of Code
2862
- *
2863
- * @default small
2864
- */
2865
- size?: 'small' | 'medium';
2866
- };
2867
- /**
2868
- * Code component can be used for displaying token, variable names, or inlined code snippets.
2869
- *
2870
- * ## Usage
2871
- *
2872
- * ### In Web
2873
- * In web, you can use it inside `Text` component or individually. The component is set to display `inline-block`
2874
- *
2875
- * ```tsx
2876
- * <Text>
2877
- * Lorem ipsum <Code>SENTRY_TOKEN</Code> normal text
2878
- * </Text>
2879
- * ```
2880
- *
2881
- * ### In React Native
2882
- *
2883
- * In React Native, you would have to align it using flex to make sure the Code and the surrounding text is correctly aligned
2884
- *
2885
- * ```tsx
2886
- * <Box flexWrap="wrap" flexDirection="row" alignItems="flex-start">
2887
- * <Text>Lorem ipsum </Text>
2888
- * <Code>SENTRY_TOKEN</Code>
2889
- * <Text> normal text</Text>
2890
- * </Box>
2891
- * ```
2892
- */
2893
- declare const Code: ({ children, size }: CodeProps) => JSX.Element;
2894
-
2895
2982
  declare type VisuallyHiddenProps = {
2896
2983
  children: React.ReactNode;
2897
2984
  };
@@ -2900,4 +2987,4 @@ declare const VisuallyHidden: ({ children }: VisuallyHiddenProps) => JSX.Element
2900
2987
 
2901
2988
  declare const screenReaderStyles: CSSObject;
2902
2989
 
2903
- export { 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, BoxIcon, BriefcaseIcon, 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, 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, LinkIcon, LinkProps, ListIcon, 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, 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 };
2990
+ export { 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, BoxIcon, BriefcaseIcon, 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, 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, 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, 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 };