@open-ui-kit/core 2.1.0 → 2.2.1
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/index.cjs.js +814 -44
- package/index.cjs.js.map +1 -1
- package/index.d.ts +1217 -1199
- package/index.esm.js +815 -46
- package/index.esm.js.map +1 -1
- package/index.umd.js +814 -44
- package/index.umd.js.map +1 -1
- package/package.json +12 -13
package/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Color, Theme as Theme$1, TypographyVariant, SxProps as SxProps$1 } from '@mui/material/styles';
|
|
2
|
-
import * as
|
|
3
|
-
import
|
|
4
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as react from 'react';
|
|
3
|
+
import react__default, { ReactNode, ComponentType, CSSProperties, MouseEvent, ReactElement, ComponentProps, HTMLAttributes, SyntheticEvent, ElementType } from 'react';
|
|
5
4
|
import * as _mui_material from '@mui/material';
|
|
6
5
|
import { AccordionProps as AccordionProps$1, AccordionSummaryProps, BoxProps, BackdropProps as BackdropProps$1, AvatarProps as AvatarProps$1, AvatarGroupProps as AvatarGroupProps$1, SxProps, Theme, AlertProps, BadgeProps as BadgeProps$1, TypographyProps, SvgIconProps, BreadcrumbsProps as BreadcrumbsProps$1, ButtonProps as ButtonProps$1, CardProps as CardProps$1, CardActionAreaProps as CardActionAreaProps$1, CardActionsProps as CardActionsProps$1, CardContentProps as CardContentProps$1, CardHeaderProps as CardHeaderProps$1, CheckboxProps as CheckboxProps$1, TooltipProps as TooltipProps$1, IconButtonProps, StackProps, TextFieldProps, Popper, PopoverProps as PopoverProps$1, DividerProps as DividerProps$1, DrawerProps, ListProps as ListProps$1, ListItemProps as ListItemProps$1, ListItemButtonProps as ListItemButtonProps$1, ListItemIconProps as ListItemIconProps$1, ListItemTextProps as ListItemTextProps$1, ListSubheaderProps as ListSubheaderProps$1, InputProps, IconProps as IconProps$1, CircularProgressProps, DialogProps as DialogProps$1, DialogActionsProps as DialogActionsProps$1, DialogContentProps as DialogContentProps$1, DialogContentTextProps as DialogContentTextProps$1, MenuProps as MenuProps$1, MenuItemProps as MenuItemProps$1, ButtonBaseProps, RadioProps, FormControlLabelProps, RadioGroupProps as RadioGroupProps$1, SelectProps as SelectProps$1, SkeletonProps as SkeletonProps$1, SliderProps as SliderProps$1, TabsProps as TabsProps$1, TabProps as TabProps$1, ChipProps, SwitchProps, PaginationProps as PaginationProps$1 } from '@mui/material';
|
|
7
6
|
export { Box, ButtonGroup, Container, Grid, IconButton, ListItemAvatar, Paper, PopoverOrigin, SelectChangeEvent, Stack, Typography, useTheme } from '@mui/material';
|
|
@@ -373,20 +372,20 @@ declare module "@mui/material/styles" {
|
|
|
373
372
|
xxl: true;
|
|
374
373
|
}
|
|
375
374
|
interface TypographyVariants {
|
|
376
|
-
captionMedium:
|
|
377
|
-
captionSemibold:
|
|
378
|
-
fontWeightSemiBold:
|
|
379
|
-
body1Semibold:
|
|
380
|
-
body2Semibold:
|
|
381
|
-
headingSubSection:
|
|
375
|
+
captionMedium: react__default.CSSProperties;
|
|
376
|
+
captionSemibold: react__default.CSSProperties;
|
|
377
|
+
fontWeightSemiBold: react__default.CSSProperties["fontWeight"];
|
|
378
|
+
body1Semibold: react__default.CSSProperties;
|
|
379
|
+
body2Semibold: react__default.CSSProperties;
|
|
380
|
+
headingSubSection: react__default.CSSProperties;
|
|
382
381
|
}
|
|
383
382
|
interface TypographyVariantsOptions {
|
|
384
|
-
captionMedium?:
|
|
385
|
-
captionSemibold?:
|
|
386
|
-
fontWeightSemiBold?:
|
|
387
|
-
body1Semibold?:
|
|
388
|
-
body2Semibold?:
|
|
389
|
-
headingSubSection?:
|
|
383
|
+
captionMedium?: react__default.CSSProperties;
|
|
384
|
+
captionSemibold?: react__default.CSSProperties;
|
|
385
|
+
fontWeightSemiBold?: react__default.CSSProperties["fontWeight"];
|
|
386
|
+
body1Semibold?: react__default.CSSProperties;
|
|
387
|
+
body2Semibold?: react__default.CSSProperties;
|
|
388
|
+
headingSubSection?: react__default.CSSProperties;
|
|
390
389
|
}
|
|
391
390
|
}
|
|
392
391
|
declare module "@mui/material/Button" {
|
|
@@ -430,7 +429,6 @@ declare module "@mui/material/Typography" {
|
|
|
430
429
|
headingSubSection: true;
|
|
431
430
|
}
|
|
432
431
|
}
|
|
433
|
-
//# sourceMappingURL=theme.d.ts.map
|
|
434
432
|
|
|
435
433
|
interface AccordionProps extends AccordionProps$1 {
|
|
436
434
|
/** Uses the filled container treatment shown in the contained accordion variants. */
|
|
@@ -467,7 +465,7 @@ interface AccordionProps extends AccordionProps$1 {
|
|
|
467
465
|
detailsContentBoxProps?: BoxProps;
|
|
468
466
|
}
|
|
469
467
|
|
|
470
|
-
declare const Accordion: ({ contained, size, arrowPosition, title, subTitle, titleStartIcon, titleEndIcon, titleSlot, subTitleStartIcon, subTitleEndIcon, subTitleSlot, action, endSlot, showDivider, accordionSummaryProps, detailsContentBoxProps, children, ...props }: AccordionProps) =>
|
|
468
|
+
declare const Accordion: ({ contained, size, arrowPosition, title, subTitle, titleStartIcon, titleEndIcon, titleSlot, subTitleStartIcon, subTitleEndIcon, subTitleSlot, action, endSlot, showDivider, accordionSummaryProps, detailsContentBoxProps, children, ...props }: AccordionProps) => react.JSX.Element;
|
|
471
469
|
|
|
472
470
|
declare const StyledAccordionSummary: ComponentType<AccordionSummaryProps & {
|
|
473
471
|
contained?: boolean;
|
|
@@ -505,7 +503,7 @@ interface ActivityTimelineProps extends Omit<TimelineProps, "children" | "ref">
|
|
|
505
503
|
steps: ActivityTimelineStep[];
|
|
506
504
|
}
|
|
507
505
|
|
|
508
|
-
declare const ActivityTimeline: ({ automaticProgress, size, steps, ...props }: ActivityTimelineProps) =>
|
|
506
|
+
declare const ActivityTimeline: ({ automaticProgress, size, steps, ...props }: ActivityTimelineProps) => react.JSX.Element;
|
|
509
507
|
|
|
510
508
|
interface AnchorLinkMenuItem {
|
|
511
509
|
/** Stable id passed to `selectedId` and `onSelect`. */
|
|
@@ -528,7 +526,7 @@ interface AnchorLinkMenuProps {
|
|
|
528
526
|
onSelect?: (id: string) => void;
|
|
529
527
|
}
|
|
530
528
|
|
|
531
|
-
declare const AnchorLinkMenu: ({ items, selectedId, title, variant, onSelect, }: AnchorLinkMenuProps) =>
|
|
529
|
+
declare const AnchorLinkMenu: ({ items, selectedId, title, variant, onSelect, }: AnchorLinkMenuProps) => react.JSX.Element;
|
|
532
530
|
|
|
533
531
|
interface BackdropProps extends BackdropProps$1 {
|
|
534
532
|
/** Controls whether the backdrop is mounted and visible. */
|
|
@@ -537,7 +535,7 @@ interface BackdropProps extends BackdropProps$1 {
|
|
|
537
535
|
invisible?: boolean;
|
|
538
536
|
}
|
|
539
537
|
|
|
540
|
-
declare const Backdrop: ({ sx, ...props }: BackdropProps) =>
|
|
538
|
+
declare const Backdrop: ({ sx, ...props }: BackdropProps) => react.JSX.Element;
|
|
541
539
|
|
|
542
540
|
interface AvatarProps extends Omit<AvatarProps$1, "children"> {
|
|
543
541
|
/** Controls the avatar diameter. Large is 40px and medium is 32px. */
|
|
@@ -558,9 +556,9 @@ interface AvatarGroupProps extends Omit<AvatarGroupProps$1, "children"> {
|
|
|
558
556
|
children: ReactNode;
|
|
559
557
|
}
|
|
560
558
|
|
|
561
|
-
declare const Avatar: ({ size, src, alt, initials, icon, ...props }: AvatarProps) =>
|
|
559
|
+
declare const Avatar: ({ size, src, alt, initials, icon, ...props }: AvatarProps) => react.JSX.Element;
|
|
562
560
|
|
|
563
|
-
declare const AvatarGroup: ({ size, children, ...props }: AvatarGroupProps) =>
|
|
561
|
+
declare const AvatarGroup: ({ size, children, ...props }: AvatarGroupProps) => react__default.JSX.Element;
|
|
564
562
|
|
|
565
563
|
interface ActionsDialogProps {
|
|
566
564
|
/** Controls whether the dialog is visible. */
|
|
@@ -589,7 +587,7 @@ interface ActionsDialogProps {
|
|
|
589
587
|
styleModal?: SxProps<Theme>;
|
|
590
588
|
}
|
|
591
589
|
|
|
592
|
-
declare const ActionsDialog: ({ open, confirmClicked, hideModal, mutationLoading, title, subTitle, includeDismissCheckbox, dismissCheckboxText, bodyText, closeClicked, commentSuggestions, styleModal, }: ActionsDialogProps) =>
|
|
590
|
+
declare const ActionsDialog: ({ open, confirmClicked, hideModal, mutationLoading, title, subTitle, includeDismissCheckbox, dismissCheckboxText, bodyText, closeClicked, commentSuggestions, styleModal, }: ActionsDialogProps) => react__default.JSX.Element;
|
|
593
591
|
|
|
594
592
|
type StatusBanner = "negative" | "warning" | "success" | "info" | "excellent";
|
|
595
593
|
interface BannerProps extends Omit<AlertProps, "variant" | "severity" | "children" | "iconMapping" | "action"> {
|
|
@@ -603,7 +601,7 @@ interface BannerProps extends Omit<AlertProps, "variant" | "severity" | "childre
|
|
|
603
601
|
showCloseButton?: boolean;
|
|
604
602
|
}
|
|
605
603
|
|
|
606
|
-
declare const Banner: ({ status, showCloseButton, text, icon, onClose, ...props }: BannerProps) =>
|
|
604
|
+
declare const Banner: ({ status, showCloseButton, text, icon, onClose, ...props }: BannerProps) => react__default.JSX.Element | null;
|
|
607
605
|
|
|
608
606
|
type BadgeType = "default" | "excellent" | "neutral" | "error" | "warning" | "info" | "success" | "inactive" | "moderate" | "severe";
|
|
609
607
|
interface BadgeProps {
|
|
@@ -619,7 +617,7 @@ interface BadgeProps {
|
|
|
619
617
|
styleContent?: TypographyProps["sx"];
|
|
620
618
|
}
|
|
621
619
|
|
|
622
|
-
declare const Badge: ({ type, content, styleBadge, notificationContent, styleContent, }: BadgeProps) =>
|
|
620
|
+
declare const Badge: ({ type, content, styleBadge, notificationContent, styleContent, }: BadgeProps) => react.JSX.Element;
|
|
623
621
|
|
|
624
622
|
declare enum Severity {
|
|
625
623
|
LOW = "LOW",
|
|
@@ -692,7 +690,7 @@ interface LinkProps extends Omit<LinkProps$1, "color" | "to"> {
|
|
|
692
690
|
sx?: SxProps<Theme>;
|
|
693
691
|
}
|
|
694
692
|
|
|
695
|
-
declare const Link$1: ({ Icon, children, color, customizeColor, disabled, ellipsis, fontStyle, href, iconPosition, linkType, openInNewTab, size, style, sx, onMouseDown, onMouseEnter, onMouseLeave, onMouseUp, ...props }: LinkProps) =>
|
|
693
|
+
declare const Link$1: ({ Icon, children, color, customizeColor, disabled, ellipsis, fontStyle, href, iconPosition, linkType, openInNewTab, size, style, sx, onMouseDown, onMouseEnter, onMouseLeave, onMouseUp, ...props }: LinkProps) => react.JSX.Element;
|
|
696
694
|
|
|
697
695
|
interface BreadcrumbItem {
|
|
698
696
|
/** Optional icon rendered beside the breadcrumb label. */
|
|
@@ -719,21 +717,21 @@ interface BreadcrumbsProps extends BreadcrumbsProps$1 {
|
|
|
719
717
|
maximumNumberOfVisibleBreadcrumbs?: number;
|
|
720
718
|
}
|
|
721
719
|
|
|
722
|
-
declare const Breadcrumbs: ({ iconPosition, items, size, sx, color, type, maximumNumberOfVisibleBreadcrumbs, separator, slotProps, ...props }: BreadcrumbsProps) =>
|
|
720
|
+
declare const Breadcrumbs: ({ iconPosition, items, size, sx, color, type, maximumNumberOfVisibleBreadcrumbs, separator, slotProps, ...props }: BreadcrumbsProps) => react.JSX.Element;
|
|
723
721
|
|
|
724
|
-
interface ButtonProps extends ButtonProps$1 {
|
|
722
|
+
interface ButtonProps extends Omit<ButtonProps$1, "ref"> {
|
|
725
723
|
/** Button label, icon, or composed content rendered inside the control. */
|
|
726
724
|
children?: ButtonProps$1["children"];
|
|
727
725
|
/** Visual style for the action: primary, secondary, outlined, or tertariary. */
|
|
728
726
|
variant?: ButtonProps$1["variant"];
|
|
729
|
-
/** Button scale. Large is 40px
|
|
727
|
+
/** Button scale. Large min height is 40px, medium is 32px, and small is 24px. Width grows with label text until constrained, then height grows. */
|
|
730
728
|
size?: ButtonProps$1["size"];
|
|
731
729
|
/** Use `negative` for irreversible or destructive actions. */
|
|
732
730
|
color?: ButtonProps$1["color"];
|
|
733
731
|
}
|
|
734
732
|
|
|
735
733
|
/** Open UI Kit button wrapper with tokenized variants, sizes, icon spacing, and states. */
|
|
736
|
-
declare const Button:
|
|
734
|
+
declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
|
|
737
735
|
|
|
738
736
|
interface CardProps extends CardProps$1 {
|
|
739
737
|
/** Applies the disabled card treatment and marks the grouped content unavailable. */
|
|
@@ -756,22 +754,20 @@ interface CardSubheaderProps extends TypographyProps {
|
|
|
756
754
|
children: ReactNode;
|
|
757
755
|
}
|
|
758
756
|
|
|
759
|
-
declare const CardDescription: ({ children, ...props }: CardDescriptionProps) =>
|
|
760
|
-
//# sourceMappingURL=card-description.d.ts.map
|
|
757
|
+
declare const CardDescription: ({ children, ...props }: CardDescriptionProps) => react.JSX.Element;
|
|
761
758
|
|
|
762
|
-
declare const CardSubheader: ({ children, ...props }: CardSubheaderProps) =>
|
|
763
|
-
//# sourceMappingURL=card-subheader.d.ts.map
|
|
759
|
+
declare const CardSubheader: ({ children, ...props }: CardSubheaderProps) => react.JSX.Element;
|
|
764
760
|
|
|
765
|
-
declare const Card: ({ disabled, sx, ...props }: CardProps) =>
|
|
766
|
-
declare const CardActionArea: ({ sx, ...props }: CardActionAreaProps) =>
|
|
767
|
-
declare const CardHeader: ({ sx, ...props }: CardHeaderProps) =>
|
|
768
|
-
declare const CardContent: ({ sx, ...props }: CardContentProps) =>
|
|
769
|
-
declare const CardActions: ({ sx, ...props }: CardActionsProps) =>
|
|
761
|
+
declare const Card: ({ disabled, sx, ...props }: CardProps) => react.JSX.Element;
|
|
762
|
+
declare const CardActionArea: ({ sx, ...props }: CardActionAreaProps) => react.JSX.Element;
|
|
763
|
+
declare const CardHeader: ({ sx, ...props }: CardHeaderProps) => react.JSX.Element;
|
|
764
|
+
declare const CardContent: ({ sx, ...props }: CardContentProps) => react.JSX.Element;
|
|
765
|
+
declare const CardActions: ({ sx, ...props }: CardActionsProps) => react.JSX.Element;
|
|
770
766
|
|
|
771
767
|
/** Checkbox input for unchecked, checked, mixed, and disabled selection states. */
|
|
772
768
|
type CheckboxProps = CheckboxProps$1;
|
|
773
769
|
|
|
774
|
-
declare const Checkbox$1: (props: CheckboxProps) =>
|
|
770
|
+
declare const Checkbox$1: (props: CheckboxProps) => react.JSX.Element;
|
|
775
771
|
|
|
776
772
|
declare enum TooltipSize {
|
|
777
773
|
Medium = "medium",
|
|
@@ -782,7 +778,7 @@ interface TooltipProps extends TooltipProps$1 {
|
|
|
782
778
|
size?: TooltipSize;
|
|
783
779
|
}
|
|
784
780
|
|
|
785
|
-
declare const Tooltip: ({ size, children, ...props }: TooltipProps) =>
|
|
781
|
+
declare const Tooltip: ({ size, children, ...props }: TooltipProps) => react.JSX.Element;
|
|
786
782
|
|
|
787
783
|
/** Absolute placement option when the copy action is positioned inside a relative container. */
|
|
788
784
|
type CopyButtonPosition = "left" | "right";
|
|
@@ -817,7 +813,7 @@ interface CopyButtonProps extends IconButtonProps, CopyButtonStylesProps {
|
|
|
817
813
|
copiedLabel?: string;
|
|
818
814
|
}
|
|
819
815
|
|
|
820
|
-
declare const CopyButton: ({ text, position, size, top, left, right, disableMargin, onCopy, copied, tooltipPlacement, copyLabel, copiedLabel, onClick, ...props }: CopyButtonProps) =>
|
|
816
|
+
declare const CopyButton: ({ text, position, size, top, left, right, disableMargin, onCopy, copied, tooltipPlacement, copyLabel, copiedLabel, onClick, ...props }: CopyButtonProps) => react.JSX.Element;
|
|
821
817
|
|
|
822
818
|
/** Supported density options for the code block container, header, and line numbers. */
|
|
823
819
|
type CodeBlockSize = "small" | "medium";
|
|
@@ -841,9 +837,9 @@ interface CodeBlockProps extends Omit<SyntaxHighlighterProps, "children"> {
|
|
|
841
837
|
size?: CodeBlockSize;
|
|
842
838
|
}
|
|
843
839
|
|
|
844
|
-
declare const CodeBlock: (props: CodeBlockProps) =>
|
|
840
|
+
declare const CodeBlock: (props: CodeBlockProps) => react__default.JSX.Element;
|
|
845
841
|
|
|
846
|
-
declare const InputField:
|
|
842
|
+
declare const InputField: react__default.ForwardRefExoticComponent<(Omit<_mui_material.FilledTextFieldProps & {
|
|
847
843
|
variant?: _mui_material.TextFieldProps["variant"];
|
|
848
844
|
size?: _mui_material.TextFieldProps["size"];
|
|
849
845
|
label?: _mui_material.TextFieldProps["label"];
|
|
@@ -864,7 +860,7 @@ declare const InputField: React__default.ForwardRefExoticComponent<(Omit<_mui_ma
|
|
|
864
860
|
helperText?: _mui_material.TextFieldProps["helperText"];
|
|
865
861
|
error?: _mui_material.TextFieldProps["error"];
|
|
866
862
|
slotProps?: _mui_material.TextFieldProps["slotProps"];
|
|
867
|
-
}, "ref">) &
|
|
863
|
+
}, "ref">) & react__default.RefAttributes<HTMLDivElement>>;
|
|
868
864
|
|
|
869
865
|
type InputFieldProps = TextFieldProps & {
|
|
870
866
|
/** Visual variant for the input. Defaults to `standard` for the Spark field style. */
|
|
@@ -925,17 +921,17 @@ type StaticDateTimePickerProps = StaticDateTimePickerProps$1<Dayjs>;
|
|
|
925
921
|
type StaticDatePickerProps = StaticDatePickerProps$1<Dayjs>;
|
|
926
922
|
type StaticTimePickerProps = StaticTimePickerProps$1<Dayjs>;
|
|
927
923
|
|
|
928
|
-
declare const DateTimePicker: ({ label, textFieldStyles, popperSlotProps, ...props }: DateTimePickerProps) =>
|
|
924
|
+
declare const DateTimePicker: ({ label, textFieldStyles, popperSlotProps, ...props }: DateTimePickerProps) => react.JSX.Element;
|
|
929
925
|
|
|
930
|
-
declare const DatePicker: ({ label, textFieldStyles, popperSlotProps, ...props }: DatePickerProps) =>
|
|
926
|
+
declare const DatePicker: ({ label, textFieldStyles, popperSlotProps, ...props }: DatePickerProps) => react.JSX.Element;
|
|
931
927
|
|
|
932
|
-
declare const TimePicker: ({ label, textFieldStyles, popperSlotProps, ...props }: TimePickerProps) =>
|
|
928
|
+
declare const TimePicker: ({ label, textFieldStyles, popperSlotProps, ...props }: TimePickerProps) => react.JSX.Element;
|
|
933
929
|
|
|
934
|
-
declare const StaticDateTimePicker: (props: StaticDateTimePickerProps) =>
|
|
930
|
+
declare const StaticDateTimePicker: (props: StaticDateTimePickerProps) => react.JSX.Element;
|
|
935
931
|
|
|
936
|
-
declare const StaticDatePicker: (props: StaticDatePickerProps) =>
|
|
932
|
+
declare const StaticDatePicker: (props: StaticDatePickerProps) => react.JSX.Element;
|
|
937
933
|
|
|
938
|
-
declare const DateRangePicker: ({ startDate, endDate, setStartDate, setEndDate, getPopoverVisibility, popoverProps, inputFieldProps, }: DateRangePickerProps) =>
|
|
934
|
+
declare const DateRangePicker: ({ startDate, endDate, setStartDate, setEndDate, getPopoverVisibility, popoverProps, inputFieldProps, }: DateRangePickerProps) => react__default.JSX.Element;
|
|
939
935
|
|
|
940
936
|
/** Visual weight of the divider line. */
|
|
941
937
|
type DividerVariant = DividerProps$1["variant"] | "bold";
|
|
@@ -946,7 +942,7 @@ interface DividerProps extends Omit<DividerProps$1, "variant"> {
|
|
|
946
942
|
variant?: DividerVariant;
|
|
947
943
|
}
|
|
948
944
|
|
|
949
|
-
declare const Divider: (props: DividerProps) =>
|
|
945
|
+
declare const Divider: (props: DividerProps) => react.JSX.Element;
|
|
950
946
|
|
|
951
947
|
interface SideDrawerFooterProps {
|
|
952
948
|
/** Footer page name used in the "Go to" action label. */
|
|
@@ -1015,10 +1011,10 @@ interface SideDrawerProps extends Omit<DrawerProps, "onClose">, SideDrawerHeader
|
|
|
1015
1011
|
paperProps?: SxProps<Theme>;
|
|
1016
1012
|
}
|
|
1017
1013
|
|
|
1018
|
-
declare const SideDrawer: ({ children, titleText, titleNode, open, isLoading, isError, isFavorite, severity, titleAction, copyURL, actionButtons, pageName, disablePrev, disableNext, hidePrev, hideNext, hideTitleAction, hideFooter, hideGotoPage, hideFavorite, hideCopyBtn, hideActionButtons, customDividerStyle, onPrev, onNext, onClose, onFavorite, onGotoPage, onTitleAction, onCopyLink, paperProps, ...props }: SideDrawerProps) =>
|
|
1014
|
+
declare const SideDrawer: ({ children, titleText, titleNode, open, isLoading, isError, isFavorite, severity, titleAction, copyURL, actionButtons, pageName, disablePrev, disableNext, hidePrev, hideNext, hideTitleAction, hideFooter, hideGotoPage, hideFavorite, hideCopyBtn, hideActionButtons, customDividerStyle, onPrev, onNext, onClose, onFavorite, onGotoPage, onTitleAction, onCopyLink, paperProps, ...props }: SideDrawerProps) => react.JSX.Element;
|
|
1019
1015
|
|
|
1020
1016
|
interface NestedMenuListboxProps {
|
|
1021
|
-
children?:
|
|
1017
|
+
children?: react__default.ReactNode[];
|
|
1022
1018
|
isIconAllowed?: boolean;
|
|
1023
1019
|
isSearchFieldEnabled?: boolean;
|
|
1024
1020
|
onSelectAllChange?: (isSelected: boolean) => void;
|
|
@@ -1028,7 +1024,7 @@ interface NestedMenuListboxProps {
|
|
|
1028
1024
|
setSearchText?: (text: string) => void;
|
|
1029
1025
|
virtualizationOverscanPx?: number;
|
|
1030
1026
|
}
|
|
1031
|
-
declare const NestedMenuListbox: ({ children, isIconAllowed, isSearchFieldEnabled, onSelectAllChange, searchPlaceholder, searchText, selectAllNode, setSearchText, virtualizationOverscanPx, }: NestedMenuListboxProps) =>
|
|
1027
|
+
declare const NestedMenuListbox: ({ children, isIconAllowed, isSearchFieldEnabled, onSelectAllChange, searchPlaceholder, searchText, selectAllNode, setSearchText, virtualizationOverscanPx, }: NestedMenuListboxProps) => react__default.JSX.Element;
|
|
1032
1028
|
|
|
1033
1029
|
interface FlattenSelectTreeArgs {
|
|
1034
1030
|
rootNode: AugmentedSelectNodeType[];
|
|
@@ -1210,8 +1206,8 @@ declare const useNestedMenu: ({ parentSelectOnly, selectAllIcon: SelectAllIcon,
|
|
|
1210
1206
|
searchTextDebounced: any;
|
|
1211
1207
|
selectAllNode: AugmentedSelectNodeType<unknown>;
|
|
1212
1208
|
selectedValues: SelectNodeType<unknown>[];
|
|
1213
|
-
setSearchText:
|
|
1214
|
-
setSelectedValues:
|
|
1209
|
+
setSearchText: react.Dispatch<react.SetStateAction<string>>;
|
|
1210
|
+
setSelectedValues: react.Dispatch<react.SetStateAction<SelectNodeType<unknown>[]>>;
|
|
1215
1211
|
toggleExpand: ({ selectNode, isExpanded, isRecursive, }: {
|
|
1216
1212
|
selectNode: AugmentedSelectNodeType | AugmentedSelectNodeType[];
|
|
1217
1213
|
isExpanded?: boolean | null;
|
|
@@ -1220,7 +1216,7 @@ declare const useNestedMenu: ({ parentSelectOnly, selectAllIcon: SelectAllIcon,
|
|
|
1220
1216
|
updateCheckbox: (selectNode: AugmentedSelectNodeType | AugmentedSelectNodeType[], isSelected: boolean) => void;
|
|
1221
1217
|
};
|
|
1222
1218
|
|
|
1223
|
-
declare const NestedMenu: ({ buttonContent, buttonSize, flattenedTreeOptions, id, isIconAllowed, isSearchFieldEnabled, onSelectAllChange, parentSelectOnly, searchText, selectAllNode, popOverPaperSx, buttonProps, setSearchText, toggleExpand, updateCheckbox, }: NestedMenuProps) =>
|
|
1219
|
+
declare const NestedMenu: ({ buttonContent, buttonSize, flattenedTreeOptions, id, isIconAllowed, isSearchFieldEnabled, onSelectAllChange, parentSelectOnly, searchText, selectAllNode, popOverPaperSx, buttonProps, setSearchText, toggleExpand, updateCheckbox, }: NestedMenuProps) => react.JSX.Element;
|
|
1224
1220
|
|
|
1225
1221
|
interface SelectNodeProps {
|
|
1226
1222
|
isExpanded?: boolean;
|
|
@@ -1239,7 +1235,7 @@ interface SelectNodeProps {
|
|
|
1239
1235
|
selectableLeavesCount?: number;
|
|
1240
1236
|
selectedLeavesCount?: number;
|
|
1241
1237
|
}
|
|
1242
|
-
declare const SelectNode: ({ isExpanded, isIconAllowed, isLeaf, isParentNode, isSelectAllNode, isSelectable, isSelected, nestLevel, nodeIcon, nodeLabel, onCheckboxClick, onExpand, parentSelectOnly, selectableLeavesCount, selectedLeavesCount, }: SelectNodeProps) =>
|
|
1238
|
+
declare const SelectNode: ({ isExpanded, isIconAllowed, isLeaf, isParentNode, isSelectAllNode, isSelectable, isSelected, nestLevel, nodeIcon, nodeLabel, onCheckboxClick, onExpand, parentSelectOnly, selectableLeavesCount, selectedLeavesCount, }: SelectNodeProps) => react.JSX.Element;
|
|
1243
1239
|
|
|
1244
1240
|
type ListProps = ListProps$1;
|
|
1245
1241
|
type ListItemProps = ListItemProps$1;
|
|
@@ -1248,12 +1244,12 @@ type ListItemTextProps = ListItemTextProps$1;
|
|
|
1248
1244
|
type ListItemIconProps = ListItemIconProps$1;
|
|
1249
1245
|
type ListSubheaderProps = ListSubheaderProps$1;
|
|
1250
1246
|
|
|
1251
|
-
declare const List$1: ({ disablePadding, ...props }: ListProps) =>
|
|
1252
|
-
declare const ListItem: ({ sx, ...props }: ListItemProps) =>
|
|
1253
|
-
declare const ListItemButton: ({ sx, ...props }: ListItemButtonProps) =>
|
|
1254
|
-
declare const ListItemIcon: ({ sx, ...props }: ListItemIconProps) =>
|
|
1255
|
-
declare const ListSubheader: ({ sx, ...props }: ListSubheaderProps) =>
|
|
1256
|
-
declare const ListItemText: ({ sx, ...props }: ListItemTextProps) =>
|
|
1247
|
+
declare const List$1: ({ disablePadding, ...props }: ListProps) => react.JSX.Element;
|
|
1248
|
+
declare const ListItem: ({ sx, ...props }: ListItemProps) => react.JSX.Element;
|
|
1249
|
+
declare const ListItemButton: ({ sx, ...props }: ListItemButtonProps) => react.JSX.Element;
|
|
1250
|
+
declare const ListItemIcon: ({ sx, ...props }: ListItemIconProps) => react.JSX.Element;
|
|
1251
|
+
declare const ListSubheader: ({ sx, ...props }: ListSubheaderProps) => react.JSX.Element;
|
|
1252
|
+
declare const ListItemText: ({ sx, ...props }: ListItemTextProps) => react.JSX.Element;
|
|
1257
1253
|
|
|
1258
1254
|
interface SelectNodeListItemProps {
|
|
1259
1255
|
isLeaf: boolean;
|
|
@@ -1264,7 +1260,7 @@ interface SelectNodeListItemProps {
|
|
|
1264
1260
|
selectNodeElement: ReactElement<ComponentProps<typeof SelectNode>>;
|
|
1265
1261
|
selectableLeavesCount?: number | null;
|
|
1266
1262
|
}
|
|
1267
|
-
declare const SelectNodeListItem: ({ isLeaf, isSelectable, listItemProps, onClick, onExpand, selectNodeElement, selectableLeavesCount, }: SelectNodeListItemProps) =>
|
|
1263
|
+
declare const SelectNodeListItem: ({ isLeaf, isSelectable, listItemProps, onClick, onExpand, selectNodeElement, selectableLeavesCount, }: SelectNodeListItemProps) => react.JSX.Element;
|
|
1268
1264
|
|
|
1269
1265
|
/** Visual illustration style for the empty-state message. */
|
|
1270
1266
|
type EmptyStateVariant = "info" | "positive" | "warning" | "negative";
|
|
@@ -1299,7 +1295,7 @@ interface EmptyStateProps {
|
|
|
1299
1295
|
containerProps?: StackProps;
|
|
1300
1296
|
}
|
|
1301
1297
|
|
|
1302
|
-
declare const EmptyState: ({ variant, direction, size, hideIllustration, title, description, actionCallback, actionTitle, actionButtonProps, secondaryActionCallback, secondaryActionTitle, secondaryActionButtonProps, containerProps, }: EmptyStateProps) =>
|
|
1298
|
+
declare const EmptyState: ({ variant, direction, size, hideIllustration, title, description, actionCallback, actionTitle, actionButtonProps, secondaryActionCallback, secondaryActionTitle, secondaryActionButtonProps, containerProps, }: EmptyStateProps) => react.JSX.Element;
|
|
1303
1299
|
|
|
1304
1300
|
type FloatingButtonVariant = "primary" | "secondary";
|
|
1305
1301
|
type FloatingButtonSize = "medium" | "small";
|
|
@@ -1310,7 +1306,7 @@ interface FloatingButtonProps extends Omit<ButtonProps, "variant" | "size"> {
|
|
|
1310
1306
|
size?: FloatingButtonSize;
|
|
1311
1307
|
}
|
|
1312
1308
|
|
|
1313
|
-
declare const FloatingButton: ({ variant, size, children, sx, ...props }: FloatingButtonProps) =>
|
|
1309
|
+
declare const FloatingButton: ({ variant, size, children, sx, ...props }: FloatingButtonProps) => react.JSX.Element;
|
|
1314
1310
|
|
|
1315
1311
|
interface SearchInputProps extends Omit<InputFieldProps, "inputProps"> {
|
|
1316
1312
|
/** MUI Input-level props merged into `slotProps.input` (e.g. `disableUnderline`, `componentsProps`). Note: consumer-supplied `startAdornment`/`endAdornment` here will be overridden by the built-in search and clear adornments. */
|
|
@@ -1323,7 +1319,7 @@ interface SearchInputProps extends Omit<InputFieldProps, "inputProps"> {
|
|
|
1323
1319
|
extendEndAdornment?: React.JSX.Element;
|
|
1324
1320
|
}
|
|
1325
1321
|
|
|
1326
|
-
declare const SearchInput: ({ inputProps, slotProps, onChangeCallback, onChange, extendEndAdornment, onClear, ...props }: SearchInputProps) =>
|
|
1322
|
+
declare const SearchInput: ({ inputProps, slotProps, onChangeCallback, onChange, extendEndAdornment, onClear, ...props }: SearchInputProps) => react__default.JSX.Element;
|
|
1327
1323
|
|
|
1328
1324
|
interface FilterOptionData {
|
|
1329
1325
|
/** Raw option value shown in the filter menu or formatted with `valueFormatter`. */
|
|
@@ -1419,9 +1415,9 @@ interface FiltersDrawerProps {
|
|
|
1419
1415
|
handleClearAll: () => void;
|
|
1420
1416
|
}
|
|
1421
1417
|
|
|
1422
|
-
declare const FiltersBar: ({ filtersData: filters, assetsData, onSelectedChange, isLoading, onSearch, searchPlaceHolder, initialFavoriteValue, onFavorite, initialSearchValue, favoriteValue, onFiltersButtonClick, searchValue, inputProps, rightSideComponent, isFiltersButtonVisible, }: FiltersBarProps) =>
|
|
1418
|
+
declare const FiltersBar: ({ filtersData: filters, assetsData, onSelectedChange, isLoading, onSearch, searchPlaceHolder, initialFavoriteValue, onFavorite, initialSearchValue, favoriteValue, onFiltersButtonClick, searchValue, inputProps, rightSideComponent, isFiltersButtonVisible, }: FiltersBarProps) => react.JSX.Element;
|
|
1423
1419
|
|
|
1424
|
-
declare const FiltersDrawer: ({ isOpen, isLoading, filters, assetsData, onSelectedChange, handleClose, handleClearAll, }: FiltersDrawerProps) =>
|
|
1420
|
+
declare const FiltersDrawer: ({ isOpen, isLoading, filters, assetsData, onSelectedChange, handleClose, handleClearAll, }: FiltersDrawerProps) => react.JSX.Element;
|
|
1425
1421
|
|
|
1426
1422
|
interface FooterProps {
|
|
1427
1423
|
/** Custom left-side footer content for rich copyright, logo, or product messaging. */
|
|
@@ -1436,7 +1432,7 @@ interface FooterProps {
|
|
|
1436
1432
|
sx?: SxProps<Theme>;
|
|
1437
1433
|
}
|
|
1438
1434
|
|
|
1439
|
-
declare const Footer: ({ links, productNode, productLink, productName, sx, }: FooterProps) =>
|
|
1435
|
+
declare const Footer: ({ links, productNode, productLink, productName, sx, }: FooterProps) => react.JSX.Element;
|
|
1440
1436
|
|
|
1441
1437
|
interface GlobalSearchItem {
|
|
1442
1438
|
/** Stable result id returned to `onSelect`. */
|
|
@@ -1537,12 +1533,12 @@ interface HeaderProps {
|
|
|
1537
1533
|
useDivider?: boolean;
|
|
1538
1534
|
}
|
|
1539
1535
|
|
|
1540
|
-
declare const Header: ({ logo, title, globalSearchProps, searchProps, actions, userSection, position, useDivider, customSearchNode, sx, }: HeaderProps) =>
|
|
1536
|
+
declare const Header: ({ logo, title, globalSearchProps, searchProps, actions, userSection, position, useDivider, customSearchNode, sx, }: HeaderProps) => react.JSX.Element;
|
|
1541
1537
|
|
|
1542
|
-
declare const GlobalSearchInput: ({ placeholder, value, groups, onSearch, onSelect, onClear, width, }: GlobalSearchProps) =>
|
|
1538
|
+
declare const GlobalSearchInput: ({ placeholder, value, groups, onSearch, onSelect, onClear, width, }: GlobalSearchProps) => react.JSX.Element;
|
|
1543
1539
|
|
|
1544
1540
|
type IconProps = IconProps$1;
|
|
1545
|
-
declare const Icon:
|
|
1541
|
+
declare const Icon: react__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react__default.RefAttributes<HTMLSpanElement>>;
|
|
1546
1542
|
|
|
1547
1543
|
type IndicatorBadgeValue = 0 | 1 | 2 | 3 | 4;
|
|
1548
1544
|
interface IndicatorBadgeValueProps {
|
|
@@ -1584,7 +1580,7 @@ interface KeyValuePairsProps extends Omit<BoxProps, "children"> {
|
|
|
1584
1580
|
sx?: SxProps<Theme>;
|
|
1585
1581
|
}
|
|
1586
1582
|
|
|
1587
|
-
declare const KeyValuePairs: ({ items, layout, columns, keyWidth, pairGap, columnGap, rowGap, sx, ...props }: KeyValuePairsProps) =>
|
|
1583
|
+
declare const KeyValuePairs: ({ items, layout, columns, keyWidth, pairGap, columnGap, rowGap, sx, ...props }: KeyValuePairsProps) => react.JSX.Element;
|
|
1588
1584
|
|
|
1589
1585
|
type LoadingStatesSkeletonState = "loading" | "failure";
|
|
1590
1586
|
interface LoadingStatesProps extends Omit<BoxProps, "children"> {
|
|
@@ -1600,7 +1596,7 @@ interface LoadingStatesProps extends Omit<BoxProps, "children"> {
|
|
|
1600
1596
|
sx?: SxProps<Theme>;
|
|
1601
1597
|
}
|
|
1602
1598
|
|
|
1603
|
-
declare const LoadingStates: ({ spinnerSizes, showSpinner, showSkeleton, skeletonStates, sx, ...props }: LoadingStatesProps) =>
|
|
1599
|
+
declare const LoadingStates: ({ spinnerSizes, showSpinner, showSkeleton, skeletonStates, sx, ...props }: LoadingStatesProps) => react.JSX.Element;
|
|
1604
1600
|
|
|
1605
1601
|
interface SpinnerProps extends CircularProgressProps {
|
|
1606
1602
|
/** Diameter of the spinner in pixels. Defaults to 40. */
|
|
@@ -1614,7 +1610,7 @@ interface SpinnerProps extends CircularProgressProps {
|
|
|
1614
1610
|
}
|
|
1615
1611
|
|
|
1616
1612
|
/** Tokenized two-layer circular loading indicator. */
|
|
1617
|
-
declare const Spinner: ({ boxProps, size, sx, ...props }: SpinnerProps) =>
|
|
1613
|
+
declare const Spinner: ({ boxProps, size, sx, ...props }: SpinnerProps) => react.JSX.Element;
|
|
1618
1614
|
|
|
1619
1615
|
/** Controls which loading indicator is rendered. */
|
|
1620
1616
|
type LoadingVariant = "spinner" | "skeleton" | "custom";
|
|
@@ -1662,7 +1658,7 @@ interface LoadingErrorStateProps {
|
|
|
1662
1658
|
spinnerProps?: Partial<SpinnerProps>;
|
|
1663
1659
|
}
|
|
1664
1660
|
|
|
1665
|
-
declare const LoadingErrorState: ({ loading, error, data, skipEmptyCheck, children, loadingVariant, customLoadingContent, errorStateProps, emptyStateProps, spinnerProps, }: LoadingErrorStateProps) =>
|
|
1661
|
+
declare const LoadingErrorState: ({ loading, error, data, skipEmptyCheck, children, loadingVariant, customLoadingContent, errorStateProps, emptyStateProps, spinnerProps, }: LoadingErrorStateProps) => react.JSX.Element;
|
|
1666
1662
|
|
|
1667
1663
|
/** Props for the modal dialog surface. */
|
|
1668
1664
|
type DialogProps = DialogProps$1;
|
|
@@ -1677,17 +1673,17 @@ type DialogContentTextProps = DialogContentTextProps$1;
|
|
|
1677
1673
|
/** Props for the dialog action row, usually containing cancel and primary action buttons. */
|
|
1678
1674
|
type DialogActionsProps = DialogActionsProps$1;
|
|
1679
1675
|
|
|
1680
|
-
declare const DialogTitle: ({ children, ...props }: DialogTitleProps) =>
|
|
1676
|
+
declare const DialogTitle: ({ children, ...props }: DialogTitleProps) => react.JSX.Element;
|
|
1681
1677
|
|
|
1682
|
-
declare const DialogSubtitle: ({ children, ...props }: DialogSubtitleProps) =>
|
|
1678
|
+
declare const DialogSubtitle: ({ children, ...props }: DialogSubtitleProps) => react.JSX.Element;
|
|
1683
1679
|
|
|
1684
|
-
declare const Dialog: (props: DialogProps) =>
|
|
1680
|
+
declare const Dialog: (props: DialogProps) => react.JSX.Element;
|
|
1685
1681
|
|
|
1686
|
-
declare const DialogActions: (props: DialogActionsProps) =>
|
|
1682
|
+
declare const DialogActions: (props: DialogActionsProps) => react.JSX.Element;
|
|
1687
1683
|
|
|
1688
|
-
declare const DialogContent: (props: DialogContentProps) =>
|
|
1684
|
+
declare const DialogContent: (props: DialogContentProps) => react.JSX.Element;
|
|
1689
1685
|
|
|
1690
|
-
declare const DialogContentText: (props: DialogContentTextProps) =>
|
|
1686
|
+
declare const DialogContentText: (props: DialogContentTextProps) => react.JSX.Element;
|
|
1691
1687
|
|
|
1692
1688
|
type MenuItemSize = "large" | "medium" | "small";
|
|
1693
1689
|
interface MenuProps extends MenuProps$1 {
|
|
@@ -1711,9 +1707,9 @@ interface MenuItemProps extends MenuItemProps$1 {
|
|
|
1711
1707
|
destructive?: boolean;
|
|
1712
1708
|
}
|
|
1713
1709
|
|
|
1714
|
-
declare const Menu$1: ({ elevation, slotProps, width, ...props }: MenuProps) =>
|
|
1710
|
+
declare const Menu$1: ({ elevation, slotProps, width, ...props }: MenuProps) => react.JSX.Element;
|
|
1715
1711
|
|
|
1716
|
-
declare const MenuItem: ({ children, destructive, disabled, ellipsis, href, Icon, iconPosition, openInNewTab, size, sx, ...props }: MenuItemProps) =>
|
|
1712
|
+
declare const MenuItem: ({ children, destructive, disabled, ellipsis, href, Icon, iconPosition, openInNewTab, size, sx, ...props }: MenuItemProps) => react.JSX.Element;
|
|
1717
1713
|
|
|
1718
1714
|
declare const StyledMenuSubheader: ComponentType<ListSubheaderProps$1>;
|
|
1719
1715
|
|
|
@@ -1737,7 +1733,7 @@ interface MessageProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
|
|
|
1737
1733
|
sx?: SxProps<Theme>;
|
|
1738
1734
|
}
|
|
1739
1735
|
|
|
1740
|
-
declare const Message: ({ actionLabel, children, hideClose, onActionClick, onClose, sx, title, type, ...props }: MessageProps) =>
|
|
1736
|
+
declare const Message: ({ actionLabel, children, hideClose, onActionClick, onClose, sx, title, type, ...props }: MessageProps) => react.JSX.Element;
|
|
1741
1737
|
|
|
1742
1738
|
type NavigationItemState = "default" | "selected" | "disabled" | "open";
|
|
1743
1739
|
interface NavigationItemData {
|
|
@@ -1809,9 +1805,9 @@ interface NavigationSubNavigationProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
1809
1805
|
sx?: SxProps<Theme>;
|
|
1810
1806
|
}
|
|
1811
1807
|
|
|
1812
|
-
declare const Navigation: ({ compact, organizationDrawerTitle, organizationLabel, organizationSections, onCollapseClick, onItemSelect, onOrganizationClick, onSubNavigationClose, sections, selectedItemId, sx, ...props }: NavigationProps) =>
|
|
1813
|
-
declare const NavigationDrawer: ({ onClose, sections, sx, title, ...props }: NavigationDrawerProps) =>
|
|
1814
|
-
declare const NavigationSubNavigation: ({ headline, onClose, onItemSelect, sections, selectedItemId, sx, ...props }: NavigationSubNavigationProps) =>
|
|
1808
|
+
declare const Navigation: ({ compact, organizationDrawerTitle, organizationLabel, organizationSections, onCollapseClick, onItemSelect, onOrganizationClick, onSubNavigationClose, sections, selectedItemId, sx, ...props }: NavigationProps) => react.JSX.Element;
|
|
1809
|
+
declare const NavigationDrawer: ({ onClose, sections, sx, title, ...props }: NavigationDrawerProps) => react.JSX.Element;
|
|
1810
|
+
declare const NavigationSubNavigation: ({ headline, onClose, onItemSelect, sections, selectedItemId, sx, ...props }: NavigationSubNavigationProps) => react.JSX.Element;
|
|
1815
1811
|
|
|
1816
1812
|
interface OverflowTooltipProps extends Omit<TooltipProps, "title" | "children"> {
|
|
1817
1813
|
/** Content shown in the tooltip when the text overflows. */
|
|
@@ -1828,7 +1824,7 @@ interface OverflowTooltipProps extends Omit<TooltipProps, "title" | "children">
|
|
|
1828
1824
|
styleText?: CSSProperties;
|
|
1829
1825
|
}
|
|
1830
1826
|
|
|
1831
|
-
declare const OverflowTooltip: ({ value, children, ellipsisDirection, styleText, ...rest }: OverflowTooltipProps) =>
|
|
1827
|
+
declare const OverflowTooltip: ({ value, children, ellipsisDirection, styleText, ...rest }: OverflowTooltipProps) => react.JSX.Element;
|
|
1832
1828
|
|
|
1833
1829
|
interface PathDisplayProps {
|
|
1834
1830
|
/** Full path string, e.g. "Company / subgroup / leaf". Segments are split on "/". */
|
|
@@ -1844,7 +1840,7 @@ interface PathDisplayProps {
|
|
|
1844
1840
|
typographyProps?: TypographyProps;
|
|
1845
1841
|
}
|
|
1846
1842
|
|
|
1847
|
-
declare const PathDisplay: ({ path, numberOfLevels, tooltipProps, typographyProps, }: PathDisplayProps) =>
|
|
1843
|
+
declare const PathDisplay: ({ path, numberOfLevels, tooltipProps, typographyProps, }: PathDisplayProps) => react.JSX.Element | null;
|
|
1848
1844
|
|
|
1849
1845
|
type PickerSize = "small" | "medium" | "large";
|
|
1850
1846
|
type PickerDisplay = "vertical" | "horizontal";
|
|
@@ -1863,16 +1859,43 @@ interface PickerItemProps extends Omit<ButtonBaseProps, "children"> {
|
|
|
1863
1859
|
disabled?: boolean;
|
|
1864
1860
|
}
|
|
1865
1861
|
|
|
1866
|
-
declare const PickerItem: ({ icon, label, size, display, selected, disabled, sx, ...props }: PickerItemProps) =>
|
|
1862
|
+
declare const PickerItem: ({ icon, label, size, display, selected, disabled, sx, ...props }: PickerItemProps) => react.JSX.Element;
|
|
1867
1863
|
|
|
1868
1864
|
/** Popover content width. Use `large` for wider confirmation/content panels. */
|
|
1869
1865
|
type PopoverSize = "medium" | "large";
|
|
1866
|
+
/** Primary side of the anchor where the popover opens (MUI Tooltip / Popper convention). */
|
|
1867
|
+
declare enum PopoverPlacementSide {
|
|
1868
|
+
Top = "top",
|
|
1869
|
+
Bottom = "bottom",
|
|
1870
|
+
Left = "left",
|
|
1871
|
+
Right = "right"
|
|
1872
|
+
}
|
|
1873
|
+
/** Secondary alignment along the popover edge (MUI Tooltip / Popper convention). */
|
|
1874
|
+
declare enum PopoverPlacementAlign {
|
|
1875
|
+
Start = "start",
|
|
1876
|
+
End = "end",
|
|
1877
|
+
Center = "center"
|
|
1878
|
+
}
|
|
1870
1879
|
/**
|
|
1871
|
-
*
|
|
1872
|
-
*
|
|
1873
|
-
*
|
|
1880
|
+
* Popover placement relative to the anchor — same values as MUI Tooltip `placement`
|
|
1881
|
+
* (without `auto` variants). Enables the arrow and maps to `anchorOrigin` /
|
|
1882
|
+
* `transformOrigin` internally.
|
|
1874
1883
|
*/
|
|
1875
|
-
|
|
1884
|
+
declare enum PopoverPlacement {
|
|
1885
|
+
Top = "top",
|
|
1886
|
+
TopStart = "top-start",
|
|
1887
|
+
TopEnd = "top-end",
|
|
1888
|
+
Bottom = "bottom",
|
|
1889
|
+
BottomStart = "bottom-start",
|
|
1890
|
+
BottomEnd = "bottom-end",
|
|
1891
|
+
Left = "left",
|
|
1892
|
+
LeftStart = "left-start",
|
|
1893
|
+
LeftEnd = "left-end",
|
|
1894
|
+
Right = "right",
|
|
1895
|
+
RightStart = "right-start",
|
|
1896
|
+
RightEnd = "right-end"
|
|
1897
|
+
}
|
|
1898
|
+
declare const POPOVER_PLACEMENTS: readonly [PopoverPlacement.BottomStart, PopoverPlacement.Bottom, PopoverPlacement.BottomEnd, PopoverPlacement.TopStart, PopoverPlacement.Top, PopoverPlacement.TopEnd, PopoverPlacement.LeftStart, PopoverPlacement.Left, PopoverPlacement.LeftEnd, PopoverPlacement.RightStart, PopoverPlacement.Right, PopoverPlacement.RightEnd];
|
|
1876
1899
|
interface PopoverProps extends Omit<PopoverProps$1, "title"> {
|
|
1877
1900
|
/** Popover title rendered in bold above the body. */
|
|
1878
1901
|
title?: ReactNode;
|
|
@@ -1889,15 +1912,15 @@ interface PopoverProps extends Omit<PopoverProps$1, "title"> {
|
|
|
1889
1912
|
/** Content width. Defaults to the compact `medium` popover. */
|
|
1890
1913
|
size?: PopoverSize;
|
|
1891
1914
|
/**
|
|
1892
|
-
*
|
|
1915
|
+
* MUI Tooltip-style placement for the panel and its arrow.
|
|
1893
1916
|
* Omit for a plain panel with no arrow.
|
|
1894
1917
|
*/
|
|
1895
|
-
|
|
1918
|
+
placement?: PopoverPlacement;
|
|
1896
1919
|
/** Additional sx applied to the Paper element, merged after internal styles. */
|
|
1897
1920
|
paperSx?: SxProps<Theme>;
|
|
1898
1921
|
}
|
|
1899
1922
|
|
|
1900
|
-
declare const Popover: ({ title, body, actions, icon, showCloseButton, featureHighlight, size,
|
|
1923
|
+
declare const Popover: ({ title, body, actions, icon, showCloseButton, featureHighlight, size, placement, paperSx, onClose, children, anchorOrigin, transformOrigin, open, disableScrollLock, ...props }: PopoverProps) => react.JSX.Element;
|
|
1901
1924
|
|
|
1902
1925
|
interface RadioButtonProps extends RadioProps {
|
|
1903
1926
|
/** Optional content displayed beside the radio control via FormControlLabel. */
|
|
@@ -1908,8 +1931,8 @@ interface RadioButtonProps extends RadioProps {
|
|
|
1908
1931
|
/** Props for grouping RadioButton options into a single-choice set. */
|
|
1909
1932
|
type RadioGroupProps = RadioGroupProps$1;
|
|
1910
1933
|
|
|
1911
|
-
declare const RadioButton: ({ label, formControlLabelProps, disableRipple, icon, checkedIcon, sx, ...props }: RadioButtonProps) =>
|
|
1912
|
-
declare const RadioGroup: (props: RadioGroupProps) =>
|
|
1934
|
+
declare const RadioButton: ({ label, formControlLabelProps, disableRipple, icon, checkedIcon, sx, ...props }: RadioButtonProps) => react.JSX.Element;
|
|
1935
|
+
declare const RadioGroup: (props: RadioGroupProps) => react.JSX.Element;
|
|
1913
1936
|
|
|
1914
1937
|
type SelectProps<T = unknown> = SelectProps$1<T> & {
|
|
1915
1938
|
/** Shows a clear button for single-value selected states. */
|
|
@@ -1918,7 +1941,7 @@ type SelectProps<T = unknown> = SelectProps$1<T> & {
|
|
|
1918
1941
|
onClear?: () => void;
|
|
1919
1942
|
};
|
|
1920
1943
|
|
|
1921
|
-
declare const Select: <T = unknown>({ clearable, defaultValue, disabled, endAdornment, IconComponent, MenuProps, multiple, onChange, onClear, variant, sx, value: valueProp, ...props }: SelectProps<T>) =>
|
|
1944
|
+
declare const Select: <T = unknown>({ clearable, defaultValue, disabled, endAdornment, IconComponent, MenuProps, multiple, onChange, onClear, variant, sx, value: valueProp, ...props }: SelectProps<T>) => react__default.JSX.Element;
|
|
1922
1945
|
|
|
1923
1946
|
interface SkeletonProps extends SkeletonProps$1 {
|
|
1924
1947
|
/** Placeholder shape. Use text, circular, rectangular, or rounded to match the content being loaded. */
|
|
@@ -1934,7 +1957,7 @@ interface SkeletonProps extends SkeletonProps$1 {
|
|
|
1934
1957
|
}
|
|
1935
1958
|
|
|
1936
1959
|
/** Open UI Kit skeleton placeholder with tokenized loading colors and animation defaults. */
|
|
1937
|
-
declare const Skeleton: ({ animation, sx, ...props }: SkeletonProps) =>
|
|
1960
|
+
declare const Skeleton: ({ animation, sx, ...props }: SkeletonProps) => react.JSX.Element;
|
|
1938
1961
|
|
|
1939
1962
|
interface SeverityBarProps {
|
|
1940
1963
|
/**
|
|
@@ -2000,7 +2023,7 @@ declare const SeverityBadgeLabel: ({ label, scoreSystem, severity, containerStac
|
|
|
2000
2023
|
|
|
2001
2024
|
type SliderProps = SliderProps$1;
|
|
2002
2025
|
|
|
2003
|
-
declare const Slider: ({ sx, ...props }: SliderProps) =>
|
|
2026
|
+
declare const Slider: ({ sx, ...props }: SliderProps) => react.JSX.Element;
|
|
2004
2027
|
|
|
2005
2028
|
type StepperStepState = "completed" | "current" | "disabled" | "idle";
|
|
2006
2029
|
interface StepperStep {
|
|
@@ -2062,9 +2085,9 @@ interface StepperModalProps extends Omit<DialogProps, "children" | "PaperProps"
|
|
|
2062
2085
|
sx?: SxProps<Theme>;
|
|
2063
2086
|
}
|
|
2064
2087
|
|
|
2065
|
-
declare const StepperPanel: ({ steps, activeStep, onStepClick, collapsed, defaultCollapsed, onCollapseClick, onCollapsedChange, collapseButtonAriaLabel, children, footer, sx, }: StepperPanelProps) =>
|
|
2088
|
+
declare const StepperPanel: ({ steps, activeStep, onStepClick, collapsed, defaultCollapsed, onCollapseClick, onCollapsedChange, collapseButtonAriaLabel, children, footer, sx, }: StepperPanelProps) => react__default.JSX.Element;
|
|
2066
2089
|
|
|
2067
|
-
declare const StepperModal: ({ title, subtitle, steps, activeStep, description, children, footer, paperProps, sx, ...dialogProps }: StepperModalProps) =>
|
|
2090
|
+
declare const StepperModal: ({ title, subtitle, steps, activeStep, description, children, footer, paperProps, sx, ...dialogProps }: StepperModalProps) => react.JSX.Element;
|
|
2068
2091
|
|
|
2069
2092
|
interface ExportProps {
|
|
2070
2093
|
enableExport?: boolean;
|
|
@@ -2120,7 +2143,6 @@ interface TableRow {
|
|
|
2120
2143
|
interface HeaderTooltipMeta {
|
|
2121
2144
|
headerTooltip?: ReactNode;
|
|
2122
2145
|
}
|
|
2123
|
-
//# sourceMappingURL=index.d.ts.map
|
|
2124
2146
|
|
|
2125
2147
|
/**
|
|
2126
2148
|
* `Table` Component
|
|
@@ -2145,7 +2167,7 @@ interface HeaderTooltipMeta {
|
|
|
2145
2167
|
* <Table columns={myColumns} data={myData} isLoading={false} />
|
|
2146
2168
|
*/
|
|
2147
2169
|
declare const CreateTableInstance: <TData extends MRT_RowData>({ columns, data, initialState, title, titleExtension, isLoading, manualPagination, manualSorting, densityCompact, enableExpandAll, enableColumnPinning, enableExpanding, enableTopToolbar, topToolbarProps, onRowLinkClick, positionActionsColumn, initialPageIndex, rowCount, initialPageSize, rowsPerPageOptions, pageCount, emptyStateProps, ...props }: TableProps<TData>) => MRT_TableInstance<TData>;
|
|
2148
|
-
declare const Table$1: <TData extends MRT_RowData>({ columns, data, initialState, isLoading, manualPagination, manualSorting, densityCompact, enableExpandAll, enableExpanding, titleExtension, ...props }: TableProps<TData>) =>
|
|
2170
|
+
declare const Table$1: <TData extends MRT_RowData>({ columns, data, initialState, isLoading, manualPagination, manualSorting, densityCompact, enableExpandAll, enableExpanding, titleExtension, ...props }: TableProps<TData>) => react__default.JSX.Element;
|
|
2149
2171
|
|
|
2150
2172
|
type TabsType = "main" | "subTab" | "toggleTab";
|
|
2151
2173
|
interface TabsProps extends TabsProps$1 {
|
|
@@ -2161,9 +2183,9 @@ interface TabProps extends TabProps$1 {
|
|
|
2161
2183
|
type?: TabsType;
|
|
2162
2184
|
}
|
|
2163
2185
|
|
|
2164
|
-
declare const Tabs: ({ type, sx, children, boxProps, orientation, ...props }: TabsProps) =>
|
|
2186
|
+
declare const Tabs: ({ type, sx, children, boxProps, orientation, ...props }: TabsProps) => react__default.JSX.Element;
|
|
2165
2187
|
|
|
2166
|
-
declare const Tab: ({ loading, sx, type, label, ...props }: TabProps) =>
|
|
2188
|
+
declare const Tab: ({ loading, sx, type, label, ...props }: TabProps) => react.JSX.Element;
|
|
2167
2189
|
|
|
2168
2190
|
interface TagStatusStyle {
|
|
2169
2191
|
backgroundColor: string;
|
|
@@ -2219,7 +2241,7 @@ interface TagProps extends Omit<ChipProps, "size" | "children" | "label" | "colo
|
|
|
2219
2241
|
/**
|
|
2220
2242
|
* Tag labels categorized content with optional icon, avatar, status, and deletion affordances.
|
|
2221
2243
|
*/
|
|
2222
|
-
declare const Tag: ({ avatar, children, color, status, icon, onClick, size, sx, ...props }: TagProps) =>
|
|
2244
|
+
declare const Tag: ({ avatar, children, color, status, icon, onClick, size, sx, ...props }: TagProps) => react.JSX.Element;
|
|
2223
2245
|
|
|
2224
2246
|
declare const selectTagStyle: (theme: Theme) => {
|
|
2225
2247
|
Excellent: {
|
|
@@ -2339,16 +2361,15 @@ interface TagsProps {
|
|
|
2339
2361
|
size?: GeneralSize;
|
|
2340
2362
|
}
|
|
2341
2363
|
|
|
2342
|
-
declare const Tags: ({ customizeLabel, customizeTooltip, handleDelete, items, maxTooltipTags, shouldTruncate, showOnlyFirst, size, }: TagsProps) =>
|
|
2364
|
+
declare const Tags: ({ customizeLabel, customizeTooltip, handleDelete, items, maxTooltipTags, shouldTruncate, showOnlyFirst, size, }: TagsProps) => react.JSX.Element | null;
|
|
2343
2365
|
|
|
2344
2366
|
declare const LabelAndChildrenTooltipContent: ({ node }: {
|
|
2345
2367
|
node: SelectNodeType;
|
|
2346
|
-
}) =>
|
|
2347
|
-
//# sourceMappingURL=label-and-children-tooltip-content.d.ts.map
|
|
2368
|
+
}) => react.JSX.Element;
|
|
2348
2369
|
|
|
2349
2370
|
declare const RemainingTags: ({ tags, }: {
|
|
2350
2371
|
tags: AugmentedSelectNodeType[];
|
|
2351
|
-
}) =>
|
|
2372
|
+
}) => react.JSX.Element;
|
|
2352
2373
|
|
|
2353
2374
|
type ToastType = "default" | "info" | "success" | "warning" | "error";
|
|
2354
2375
|
interface ToastAction {
|
|
@@ -2373,14 +2394,14 @@ interface ToastProps extends Omit<AlertProps, "variant" | "severity" | "children
|
|
|
2373
2394
|
/** Optional single action rendered below the message. */
|
|
2374
2395
|
action?: ToastAction;
|
|
2375
2396
|
/** Custom action content rendered below the message when `action` is not provided. */
|
|
2376
|
-
customActions?:
|
|
2397
|
+
customActions?: react__default.ReactNode;
|
|
2377
2398
|
}
|
|
2378
|
-
type ToasterProps =
|
|
2399
|
+
type ToasterProps = react__default.ComponentProps<typeof Toaster$1>;
|
|
2379
2400
|
|
|
2380
|
-
declare const Toast: ({ type, showCloseButton, useNativeClose, title, description, action, id, customActions, ...props }: ToastProps) =>
|
|
2401
|
+
declare const Toast: ({ type, showCloseButton, useNativeClose, title, description, action, id, customActions, ...props }: ToastProps) => react__default.JSX.Element | null;
|
|
2381
2402
|
declare const toast: ({ ...props }: Omit<ToastProps, "id">) => string | number;
|
|
2382
2403
|
|
|
2383
|
-
declare const Toaster: ({ toastOptions, ...props }: ToasterProps) =>
|
|
2404
|
+
declare const Toaster: ({ toastOptions, ...props }: ToasterProps) => react.JSX.Element;
|
|
2384
2405
|
|
|
2385
2406
|
/**
|
|
2386
2407
|
* Props for the Toggle component. Extends MUI Switch props for controlled,
|
|
@@ -2388,7 +2409,7 @@ declare const Toaster: ({ toastOptions, ...props }: ToasterProps) => react_jsx_r
|
|
|
2388
2409
|
*/
|
|
2389
2410
|
type ToggleProps = SwitchProps;
|
|
2390
2411
|
|
|
2391
|
-
declare const Toggle: ({ sx, ...props }: ToggleProps) =>
|
|
2412
|
+
declare const Toggle: ({ sx, ...props }: ToggleProps) => react.JSX.Element;
|
|
2392
2413
|
|
|
2393
2414
|
type UploadFileStatus = "idle" | "uploading" | "error";
|
|
2394
2415
|
interface UploadFile {
|
|
@@ -2432,7 +2453,7 @@ interface UploadProps {
|
|
|
2432
2453
|
sx?: SxProps<Theme>;
|
|
2433
2454
|
}
|
|
2434
2455
|
|
|
2435
|
-
declare const Upload$1: ({ variant, size, label, hint, files, onFilesChange, onFileRemove, disabled, multiple, accept, children, sx, }: UploadProps) =>
|
|
2456
|
+
declare const Upload$1: ({ variant, size, label, hint, files, onFilesChange, onFileRemove, disabled, multiple, accept, children, sx, }: UploadProps) => react.JSX.Element;
|
|
2436
2457
|
|
|
2437
2458
|
type ViewSwitcherOptionObject = {
|
|
2438
2459
|
size?: ViewSwitcherSize | undefined;
|
|
@@ -2471,19 +2492,18 @@ interface ViewSwitcherProps {
|
|
|
2471
2492
|
value: string | undefined;
|
|
2472
2493
|
}
|
|
2473
2494
|
|
|
2474
|
-
declare const ViewSwitcher: ({ disabled, fullWidth, onChange, options, size, value, containerProps, sx, }: ViewSwitcherProps) =>
|
|
2495
|
+
declare const ViewSwitcher: ({ disabled, fullWidth, onChange, options, size, value, containerProps, sx, }: ViewSwitcherProps) => react.JSX.Element;
|
|
2475
2496
|
|
|
2476
2497
|
interface ScrollAreaProps extends BoxProps {
|
|
2477
2498
|
/** Content to render inside the scrollable viewport. */
|
|
2478
2499
|
children?: ReactNode;
|
|
2479
2500
|
}
|
|
2480
2501
|
|
|
2481
|
-
declare const ScrollArea:
|
|
2482
|
-
//# sourceMappingURL=scroll-area.d.ts.map
|
|
2502
|
+
declare const ScrollArea: react.ForwardRefExoticComponent<Omit<ScrollAreaProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
2483
2503
|
|
|
2484
2504
|
type PaginationProps = PaginationProps$1;
|
|
2485
2505
|
|
|
2486
|
-
declare const Pagination: (props: PaginationProps) =>
|
|
2506
|
+
declare const Pagination: (props: PaginationProps) => react.JSX.Element;
|
|
2487
2507
|
|
|
2488
2508
|
interface IWidgetProps {
|
|
2489
2509
|
/** Main content rendered inside the widget body. */
|
|
@@ -2520,7 +2540,7 @@ interface IWidgetProps {
|
|
|
2520
2540
|
dataRoseyUrn?: string;
|
|
2521
2541
|
}
|
|
2522
2542
|
|
|
2523
|
-
declare const Widget: ({ sx, label, headerChildren, headerLeftChildren, labelTooltip, titleTooltip, bodyElement, isLoading, isHorizontal, isEmpty, legendCustomComponent, tooltipProps, onLabelClick, dataRoseyUrn, }: IWidgetProps) =>
|
|
2543
|
+
declare const Widget: ({ sx, label, headerChildren, headerLeftChildren, labelTooltip, titleTooltip, bodyElement, isLoading, isHorizontal, isEmpty, legendCustomComponent, tooltipProps, onLabelClick, dataRoseyUrn, }: IWidgetProps) => react.JSX.Element;
|
|
2524
2544
|
|
|
2525
2545
|
interface DonutProps extends ChartProps {
|
|
2526
2546
|
/** Called with the selected slice data when a donut segment is clicked. */
|
|
@@ -2546,7 +2566,7 @@ interface GaugeChartProps extends ChartProps {
|
|
|
2546
2566
|
textTop?: string;
|
|
2547
2567
|
};
|
|
2548
2568
|
}
|
|
2549
|
-
declare const GaugeChart: ({ data, maxValue, customLabelComponent, styleProps, }: GaugeChartProps) =>
|
|
2569
|
+
declare const GaugeChart: ({ data, maxValue, customLabelComponent, styleProps, }: GaugeChartProps) => react.JSX.Element;
|
|
2550
2570
|
|
|
2551
2571
|
interface BarProps {
|
|
2552
2572
|
/** Data key to read from each item's `barData` object. */
|
|
@@ -2564,7 +2584,7 @@ interface BarGraphProps extends ChartProps {
|
|
|
2564
2584
|
/** Called when the Recharts graph receives a click event. */
|
|
2565
2585
|
handleClick?: CategoricalChartFunc;
|
|
2566
2586
|
}
|
|
2567
|
-
declare const BarGraph: ({ data, showLegend, showTooltip, bars, headers, customTooltip, handleClick, }: BarGraphProps) =>
|
|
2587
|
+
declare const BarGraph: ({ data, showLegend, showTooltip, bars, headers, customTooltip, handleClick, }: BarGraphProps) => react.JSX.Element;
|
|
2568
2588
|
|
|
2569
2589
|
interface ChartDataItem {
|
|
2570
2590
|
name: string;
|
|
@@ -2627,7 +2647,7 @@ interface BarChartProps extends ChartProps {
|
|
|
2627
2647
|
/** Called when a data bar is selected. Use it for drill-down interactions. */
|
|
2628
2648
|
handleClick?: (item: ChartDataItem) => void;
|
|
2629
2649
|
}
|
|
2630
|
-
declare const BarChart$1: ({ data, handleClick, showTooltip, customTooltip, }: BarChartProps) =>
|
|
2650
|
+
declare const BarChart$1: ({ data, handleClick, showTooltip, customTooltip, }: BarChartProps) => react.JSX.Element;
|
|
2631
2651
|
|
|
2632
2652
|
type IChartWidgetProps = ExtendedChartProps & Omit<IWidgetProps, "bodyElement"> & ConditionalPropsByType & {
|
|
2633
2653
|
/** Style overrides for the outer widget card. Consumer values are applied after chart-widget defaults. */
|
|
@@ -2637,13 +2657,13 @@ type IChartWidgetProps = ExtendedChartProps & Omit<IWidgetProps, "bodyElement">
|
|
|
2637
2657
|
/** Headline text rendered in the widget header. */
|
|
2638
2658
|
label: string;
|
|
2639
2659
|
};
|
|
2640
|
-
declare const ChartWidget: ({ data, type, label, labelTooltip, showTooltip, categories, isLoading, isEmpty, isHorizontal, customTooltip, titleTooltip, sx, chartCustomComponent, stackStyle, legendCustomComponent, tooltipProps, generalWidgetStyle, headerChildren, headerLeftChildren, onLabelClick, dataRoseyUrn, ...rest }: IChartWidgetProps) =>
|
|
2660
|
+
declare const ChartWidget: ({ data, type, label, labelTooltip, showTooltip, categories, isLoading, isEmpty, isHorizontal, customTooltip, titleTooltip, sx, chartCustomComponent, stackStyle, legendCustomComponent, tooltipProps, generalWidgetStyle, headerChildren, headerLeftChildren, onLabelClick, dataRoseyUrn, ...rest }: IChartWidgetProps) => react.JSX.Element;
|
|
2641
2661
|
|
|
2642
2662
|
interface HorizontalBarChartProps extends ChartProps {
|
|
2643
2663
|
/** Called with the selected item when a horizontal bar row is clicked or activated by keyboard. */
|
|
2644
2664
|
handleClick?: (item: ChartDataItem) => void;
|
|
2645
2665
|
}
|
|
2646
|
-
declare const HorizontalBarChart: ({ data, categories, handleClick, }: HorizontalBarChartProps) =>
|
|
2666
|
+
declare const HorizontalBarChart: ({ data, categories, handleClick, }: HorizontalBarChartProps) => react.JSX.Element;
|
|
2647
2667
|
|
|
2648
2668
|
interface LineChartTooltipProps extends TooltipProps$2<number, string> {
|
|
2649
2669
|
subject?: string;
|
|
@@ -2663,7 +2683,7 @@ interface LineChartProps extends ChartProps, Pick<LineChartTooltipProps, "valueF
|
|
|
2663
2683
|
/** Props forwarded to the Cartesian grid for dash and stroke overrides. */
|
|
2664
2684
|
gridProps?: CartesianGridProps;
|
|
2665
2685
|
}
|
|
2666
|
-
declare const LineChart: ({ data, categories, showTooltip, subject, xAxisProps, yAxisProps, customTooltip, valueFormatter, lineProps, gridProps, }: LineChartProps) =>
|
|
2686
|
+
declare const LineChart: ({ data, categories, showTooltip, subject, xAxisProps, yAxisProps, customTooltip, valueFormatter, lineProps, gridProps, }: LineChartProps) => react.JSX.Element;
|
|
2667
2687
|
|
|
2668
2688
|
type DataPoint = {
|
|
2669
2689
|
/** Label rendered around the radar axis and in the default tooltip. */
|
|
@@ -2722,7 +2742,7 @@ type SpiderChartProps = {
|
|
|
2722
2742
|
* Each variable is represented by an axis radiating from a common center point, and the values of the variables are plotted as data points along the corresponding axis.
|
|
2723
2743
|
* The range of values in a spider chart depends on the specific variables being represented.
|
|
2724
2744
|
*/
|
|
2725
|
-
declare const SpiderChart: ({ data, radars, tickBand, scale, outerRadius, labelOffsets, showTooltip, onTooltipClick, tooltipContent, customTooltip, }: SpiderChartProps) =>
|
|
2745
|
+
declare const SpiderChart: ({ data, radars, tickBand, scale, outerRadius, labelOffsets, showTooltip, onTooltipClick, tooltipContent, customTooltip, }: SpiderChartProps) => react.JSX.Element;
|
|
2726
2746
|
|
|
2727
2747
|
declare const ChartTypeComponents: {
|
|
2728
2748
|
[key: string]: ComponentType<ChartProps>;
|
|
@@ -2758,7 +2778,7 @@ interface BasePageProps {
|
|
|
2758
2778
|
useBreadcrumbs?: boolean;
|
|
2759
2779
|
}
|
|
2760
2780
|
|
|
2761
|
-
declare const BasePage: ({ children, containerProps, breadcrumbs, title, description, rightSideItems, subNav, tabsProps, useBreadcrumbs, }: BasePageProps) =>
|
|
2781
|
+
declare const BasePage: ({ children, containerProps, breadcrumbs, title, description, rightSideItems, subNav, tabsProps, useBreadcrumbs, }: BasePageProps) => react.JSX.Element;
|
|
2762
2782
|
|
|
2763
2783
|
interface LayoutProps {
|
|
2764
2784
|
/** Main page content rendered beside the optional side navigation. */
|
|
@@ -2773,7 +2793,7 @@ interface LayoutProps {
|
|
|
2773
2793
|
sideNav?: ReactNode;
|
|
2774
2794
|
}
|
|
2775
2795
|
|
|
2776
|
-
declare const Layout$1: ({ showHeader, showSideNav, headerProps, content, sideNav, }: LayoutProps) =>
|
|
2796
|
+
declare const Layout$1: ({ showHeader, showSideNav, headerProps, content, sideNav, }: LayoutProps) => react.JSX.Element;
|
|
2777
2797
|
|
|
2778
2798
|
interface PageTitleProps {
|
|
2779
2799
|
/** Main page heading rendered as the h1. */
|
|
@@ -2794,1971 +2814,1969 @@ interface PageTitleProps {
|
|
|
2794
2814
|
sx?: SxProps$1<Theme$1>;
|
|
2795
2815
|
}
|
|
2796
2816
|
|
|
2797
|
-
declare const PageTitle: ({ title, subtitle, image, icon, tag, breadcrumbs, actions, sx, }: PageTitleProps) =>
|
|
2817
|
+
declare const PageTitle: ({ title, subtitle, image, icon, tag, breadcrumbs, actions, sx, }: PageTitleProps) => react.JSX.Element;
|
|
2798
2818
|
|
|
2799
|
-
declare const AccountsSelected: (props: SvgIconProps) =>
|
|
2800
|
-
declare const AccountsUnSelected: (props: SvgIconProps) =>
|
|
2801
|
-
declare const AccountsDisabled: (props: SvgIconProps) =>
|
|
2819
|
+
declare const AccountsSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2820
|
+
declare const AccountsUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2821
|
+
declare const AccountsDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2802
2822
|
|
|
2803
|
-
declare const APIKeysSelected: (props: SvgIconProps) =>
|
|
2804
|
-
declare const APIKeysUnSelected: (props: SvgIconProps) =>
|
|
2805
|
-
declare const APIKeysDisabled: (props: SvgIconProps) =>
|
|
2823
|
+
declare const APIKeysSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2824
|
+
declare const APIKeysUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2825
|
+
declare const APIKeysDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2806
2826
|
|
|
2807
|
-
declare const APISecuritySelected: (props: SvgIconProps) =>
|
|
2808
|
-
declare const APISecurityUnSelected: (props: SvgIconProps) =>
|
|
2809
|
-
declare const APISecurityDisabled: (props: SvgIconProps) =>
|
|
2827
|
+
declare const APISecuritySelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2828
|
+
declare const APISecurityUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2829
|
+
declare const APISecurityDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2810
2830
|
|
|
2811
|
-
declare const AttackPathAnalysisSelected: (props: SvgIconProps) =>
|
|
2812
|
-
declare const AttackPathAnalysisUnSelected: (props: SvgIconProps) =>
|
|
2813
|
-
declare const AttackPathAnalysisDisabled: (props: SvgIconProps) =>
|
|
2831
|
+
declare const AttackPathAnalysisSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2832
|
+
declare const AttackPathAnalysisUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2833
|
+
declare const AttackPathAnalysisDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2814
2834
|
|
|
2815
|
-
declare const AuditLogSelected: (props: SvgIconProps) =>
|
|
2816
|
-
declare const AuditLogUnSelected: (props: SvgIconProps) =>
|
|
2817
|
-
declare const AuditLogDisabled: (props: SvgIconProps) =>
|
|
2835
|
+
declare const AuditLogSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2836
|
+
declare const AuditLogUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2837
|
+
declare const AuditLogDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2818
2838
|
|
|
2819
|
-
declare const CiCdSelected: (props: SvgIconProps) =>
|
|
2820
|
-
declare const CiCdUnSelected: (props: SvgIconProps) =>
|
|
2821
|
-
declare const CiCdDisabled: (props: SvgIconProps) =>
|
|
2839
|
+
declare const CiCdSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2840
|
+
declare const CiCdUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2841
|
+
declare const CiCdDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2822
2842
|
|
|
2823
|
-
declare const CIEMSelected: (props: SvgIconProps) =>
|
|
2824
|
-
declare const CIEMUnSelected: (props: SvgIconProps) =>
|
|
2825
|
-
declare const CIEMDisabled: (props: SvgIconProps) =>
|
|
2843
|
+
declare const CIEMSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2844
|
+
declare const CIEMUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2845
|
+
declare const CIEMDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2826
2846
|
|
|
2827
|
-
declare const CloudInventorySelected: (props: SvgIconProps) =>
|
|
2828
|
-
declare const CloudInventoryUnSelected: (props: SvgIconProps) =>
|
|
2829
|
-
declare const CloudInventoryDisabled: (props: SvgIconProps) =>
|
|
2847
|
+
declare const CloudInventorySelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2848
|
+
declare const CloudInventoryUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2849
|
+
declare const CloudInventoryDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2830
2850
|
|
|
2831
|
-
declare const CodeSecuritySelected: (props: SvgIconProps) =>
|
|
2832
|
-
declare const CodeSecurityUnSelected: (props: SvgIconProps) =>
|
|
2833
|
-
declare const CodeSecurityDisabled: (props: SvgIconProps) =>
|
|
2851
|
+
declare const CodeSecuritySelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2852
|
+
declare const CodeSecurityUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2853
|
+
declare const CodeSecurityDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2834
2854
|
|
|
2835
|
-
declare const ComplianceReportSelected: (props: SvgIconProps) =>
|
|
2836
|
-
declare const ComplianceReportUnSelected: (props: SvgIconProps) =>
|
|
2837
|
-
declare const ComplianceReportDisabled: (props: SvgIconProps) =>
|
|
2855
|
+
declare const ComplianceReportSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2856
|
+
declare const ComplianceReportUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2857
|
+
declare const ComplianceReportDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2838
2858
|
|
|
2839
|
-
declare const ComposeSelected: (props: SvgIconProps) =>
|
|
2840
|
-
declare const ComposeUnSelected: (props: SvgIconProps) =>
|
|
2841
|
-
declare const ComposeDisabled: (props: SvgIconProps) =>
|
|
2859
|
+
declare const ComposeSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2860
|
+
declare const ComposeUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2861
|
+
declare const ComposeDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2842
2862
|
|
|
2843
|
-
declare const DashboardSelected: (props: SvgIconProps) =>
|
|
2844
|
-
declare const DashboardUnSelected: (props: SvgIconProps) =>
|
|
2845
|
-
declare const DashboardDisabled: (props: SvgIconProps) =>
|
|
2863
|
+
declare const DashboardSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2864
|
+
declare const DashboardUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2865
|
+
declare const DashboardDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2846
2866
|
|
|
2847
|
-
declare const DataLakeSelected: (props: SvgIconProps) =>
|
|
2848
|
-
declare const DataLakeUnSelected: (props: SvgIconProps) =>
|
|
2849
|
-
declare const DataLakeDisabled: (props: SvgIconProps) =>
|
|
2867
|
+
declare const DataLakeSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2868
|
+
declare const DataLakeUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2869
|
+
declare const DataLakeDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2850
2870
|
|
|
2851
|
-
declare const DataSecuritySelected: (props: SvgIconProps) =>
|
|
2852
|
-
declare const DataSecurityUnSelected: (props: SvgIconProps) =>
|
|
2853
|
-
declare const DataSecurityDisabled: (props: SvgIconProps) =>
|
|
2871
|
+
declare const DataSecuritySelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2872
|
+
declare const DataSecurityUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2873
|
+
declare const DataSecurityDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2854
2874
|
|
|
2855
|
-
declare const DiscoryGraphSelected: (props: SvgIconProps) =>
|
|
2856
|
-
declare const DiscoryGraphUnSelected: (props: SvgIconProps) =>
|
|
2857
|
-
declare const DiscoryGraphDisabled: (props: SvgIconProps) =>
|
|
2875
|
+
declare const DiscoryGraphSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2876
|
+
declare const DiscoryGraphUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2877
|
+
declare const DiscoryGraphDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2858
2878
|
|
|
2859
|
-
declare const ExternalAttackSurfaceSelected: (props: SvgIconProps) =>
|
|
2860
|
-
declare const ExternalAttackSurfaceUnSelected: (props: SvgIconProps) =>
|
|
2861
|
-
declare const ExternalAttackSurfaceDisabled: (props: SvgIconProps) =>
|
|
2879
|
+
declare const ExternalAttackSurfaceSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2880
|
+
declare const ExternalAttackSurfaceUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2881
|
+
declare const ExternalAttackSurfaceDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2862
2882
|
|
|
2863
|
-
declare const FrameworksSelected: (props: SvgIconProps) =>
|
|
2864
|
-
declare const FrameworksUnSelected: (props: SvgIconProps) =>
|
|
2865
|
-
declare const FrameworksDisabled: (props: SvgIconProps) =>
|
|
2883
|
+
declare const FrameworksSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2884
|
+
declare const FrameworksUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2885
|
+
declare const FrameworksDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2866
2886
|
|
|
2867
|
-
declare const GlobalPoliciesSelected: (props: SvgIconProps) =>
|
|
2868
|
-
declare const GlobalPoliciesUnSelected: (props: SvgIconProps) =>
|
|
2869
|
-
declare const GlobalPoliciesDisabled: (props: SvgIconProps) =>
|
|
2887
|
+
declare const GlobalPoliciesSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2888
|
+
declare const GlobalPoliciesUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2889
|
+
declare const GlobalPoliciesDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2870
2890
|
|
|
2871
|
-
declare const IntegrationsSelected: (props: SvgIconProps) =>
|
|
2872
|
-
declare const IntegrationsUnSelected: (props: SvgIconProps) =>
|
|
2873
|
-
declare const IntegrationsDisabled: (props: SvgIconProps) =>
|
|
2891
|
+
declare const IntegrationsSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2892
|
+
declare const IntegrationsUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2893
|
+
declare const IntegrationsDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2874
2894
|
|
|
2875
|
-
declare const LLMSelected: (props: SvgIconProps) =>
|
|
2876
|
-
declare const LLMUnSelected: (props: SvgIconProps) =>
|
|
2877
|
-
declare const LLMDisabled: (props: SvgIconProps) =>
|
|
2895
|
+
declare const LLMSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2896
|
+
declare const LLMUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2897
|
+
declare const LLMDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2878
2898
|
|
|
2879
|
-
declare const LLMProtectionSelected: (props: SvgIconProps) =>
|
|
2880
|
-
declare const LLMProtectionUnSelected: (props: SvgIconProps) =>
|
|
2881
|
-
declare const LLMProtectionDisabled: (props: SvgIconProps) =>
|
|
2899
|
+
declare const LLMProtectionSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2900
|
+
declare const LLMProtectionUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2901
|
+
declare const LLMProtectionDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2882
2902
|
|
|
2883
|
-
declare const MaliciousEventsSelected: (props: SvgIconProps) =>
|
|
2884
|
-
declare const MaliciousEventsUnSelected: (props: SvgIconProps) =>
|
|
2885
|
-
declare const MaliciousEventsDisabled: (props: SvgIconProps) =>
|
|
2903
|
+
declare const MaliciousEventsSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2904
|
+
declare const MaliciousEventsUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2905
|
+
declare const MaliciousEventsDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2886
2906
|
|
|
2887
|
-
declare const NotificationsSelected: (props: SvgIconProps) =>
|
|
2888
|
-
declare const NotificationsUnSelected: (props: SvgIconProps) =>
|
|
2889
|
-
declare const NotificationsDisabled: (props: SvgIconProps) =>
|
|
2907
|
+
declare const NotificationsSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2908
|
+
declare const NotificationsUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2909
|
+
declare const NotificationsDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2890
2910
|
|
|
2891
|
-
declare const ObservabilitySelected: (props: SvgIconProps) =>
|
|
2892
|
-
declare const ObservabilityUnSelected: (props: SvgIconProps) =>
|
|
2893
|
-
declare const ObservabilityDisabled: (props: SvgIconProps) =>
|
|
2911
|
+
declare const ObservabilitySelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2912
|
+
declare const ObservabilityUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2913
|
+
declare const ObservabilityDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2894
2914
|
|
|
2895
|
-
declare const OverviewSelected: (props: SvgIconProps) =>
|
|
2896
|
-
declare const OverviewUnSelected: (props: SvgIconProps) =>
|
|
2897
|
-
declare const OverviewDisabled: (props: SvgIconProps) =>
|
|
2915
|
+
declare const OverviewSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2916
|
+
declare const OverviewUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2917
|
+
declare const OverviewDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2898
2918
|
|
|
2899
|
-
declare const PoliciesSelected: (props: SvgIconProps) =>
|
|
2900
|
-
declare const PoliciesUnSelected: (props: SvgIconProps) =>
|
|
2901
|
-
declare const PoliciesDisabled: (props: SvgIconProps) =>
|
|
2919
|
+
declare const PoliciesSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2920
|
+
declare const PoliciesUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2921
|
+
declare const PoliciesDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2902
2922
|
|
|
2903
|
-
declare const ProfileSelected: (props: SvgIconProps) =>
|
|
2904
|
-
declare const ProfileUnSelected: (props: SvgIconProps) =>
|
|
2905
|
-
declare const ProfileDisabled: (props: SvgIconProps) =>
|
|
2923
|
+
declare const ProfileSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2924
|
+
declare const ProfileUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2925
|
+
declare const ProfileDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2906
2926
|
|
|
2907
|
-
declare const RealtimeCDRSelected: (props: SvgIconProps) =>
|
|
2908
|
-
declare const RealtimeCDRUnSelected: (props: SvgIconProps) =>
|
|
2909
|
-
declare const RealtimeCDRDisabled: (props: SvgIconProps) =>
|
|
2927
|
+
declare const RealtimeCDRSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2928
|
+
declare const RealtimeCDRUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2929
|
+
declare const RealtimeCDRDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2910
2930
|
|
|
2911
|
-
declare const ReportsSelected: (props: SvgIconProps) =>
|
|
2912
|
-
declare const ReportsUnSelected: (props: SvgIconProps) =>
|
|
2913
|
-
declare const ReportsDisabled: (props: SvgIconProps) =>
|
|
2931
|
+
declare const ReportsSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2932
|
+
declare const ReportsUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2933
|
+
declare const ReportsDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2914
2934
|
|
|
2915
|
-
declare const RepositorySelected: (props: SvgIconProps) =>
|
|
2916
|
-
declare const RepositoryUnSelected: (props: SvgIconProps) =>
|
|
2917
|
-
declare const RepositoryDisabled: (props: SvgIconProps) =>
|
|
2935
|
+
declare const RepositorySelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2936
|
+
declare const RepositoryUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2937
|
+
declare const RepositoryDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2918
2938
|
|
|
2919
|
-
declare const RootCauseAnalysisSelected: (props: SvgIconProps) =>
|
|
2920
|
-
declare const RootCauseAnalysisUnSelected: (props: SvgIconProps) =>
|
|
2921
|
-
declare const RootCauseAnalysisDisabled: (props: SvgIconProps) =>
|
|
2939
|
+
declare const RootCauseAnalysisSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2940
|
+
declare const RootCauseAnalysisUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2941
|
+
declare const RootCauseAnalysisDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2922
2942
|
|
|
2923
|
-
declare const RuntimeEventsSelected: (props: SvgIconProps) =>
|
|
2924
|
-
declare const RuntimeEventsUnSelected: (props: SvgIconProps) =>
|
|
2925
|
-
declare const RuntimeEventsDisabled: (props: SvgIconProps) =>
|
|
2943
|
+
declare const RuntimeEventsSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2944
|
+
declare const RuntimeEventsUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2945
|
+
declare const RuntimeEventsDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2926
2946
|
|
|
2927
|
-
declare const ScanReportSelected: (props: SvgIconProps) =>
|
|
2928
|
-
declare const ScanReportUnSelected: (props: SvgIconProps) =>
|
|
2929
|
-
declare const ScanReportDisabled: (props: SvgIconProps) =>
|
|
2947
|
+
declare const ScanReportSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2948
|
+
declare const ScanReportUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2949
|
+
declare const ScanReportDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2930
2950
|
|
|
2931
|
-
declare const ScanReportsUnselected: (props: SvgIconProps) =>
|
|
2932
|
-
declare const ScanReportsSelected: (props: SvgIconProps) =>
|
|
2933
|
-
declare const ScanReportsDisabled: (props: SvgIconProps) =>
|
|
2951
|
+
declare const ScanReportsUnselected: (props: SvgIconProps) => react.JSX.Element;
|
|
2952
|
+
declare const ScanReportsSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2953
|
+
declare const ScanReportsDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2934
2954
|
|
|
2935
|
-
declare const ScannersSelected: (props: SvgIconProps) =>
|
|
2936
|
-
declare const ScannersUnSelected: (props: SvgIconProps) =>
|
|
2937
|
-
declare const ScannersDisabled: (props: SvgIconProps) =>
|
|
2955
|
+
declare const ScannersSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2956
|
+
declare const ScannersUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2957
|
+
declare const ScannersDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2938
2958
|
|
|
2939
|
-
declare const SecurityGraphSelected: (props: SvgIconProps) =>
|
|
2940
|
-
declare const SecurityGraphUnSelected: (props: SvgIconProps) =>
|
|
2941
|
-
declare const SecurityGraphDisabled: (props: SvgIconProps) =>
|
|
2959
|
+
declare const SecurityGraphSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2960
|
+
declare const SecurityGraphUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2961
|
+
declare const SecurityGraphDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2942
2962
|
|
|
2943
|
-
declare const SecurityPostureSelected: (props: SvgIconProps) =>
|
|
2944
|
-
declare const SecurityPostureUnSelected: (props: SvgIconProps) =>
|
|
2945
|
-
declare const SecurityPostureDisabled: (props: SvgIconProps) =>
|
|
2963
|
+
declare const SecurityPostureSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2964
|
+
declare const SecurityPostureUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2965
|
+
declare const SecurityPostureDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2946
2966
|
|
|
2947
|
-
declare const SettingSelected: (props: SvgIconProps) =>
|
|
2948
|
-
declare const SettingUnSelected: (props: SvgIconProps) =>
|
|
2949
|
-
declare const SettingDisabled: (props: SvgIconProps) =>
|
|
2967
|
+
declare const SettingSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2968
|
+
declare const SettingUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2969
|
+
declare const SettingDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2950
2970
|
|
|
2951
|
-
declare const SettingsNavigationUnselected: (props: SvgIconProps) =>
|
|
2952
|
-
declare const SettingsNavigationSelected: (props: SvgIconProps) =>
|
|
2953
|
-
declare const SettingsNavigationDisabled: (props: SvgIconProps) =>
|
|
2971
|
+
declare const SettingsNavigationUnselected: (props: SvgIconProps) => react.JSX.Element;
|
|
2972
|
+
declare const SettingsNavigationSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2973
|
+
declare const SettingsNavigationDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2954
2974
|
|
|
2955
|
-
declare const SoftwareSupplyChainSelected: (props: SvgIconProps) =>
|
|
2956
|
-
declare const SoftwareSupplyChainUnSelected: (props: SvgIconProps) =>
|
|
2957
|
-
declare const SoftwareSupplyChainDisabled: (props: SvgIconProps) =>
|
|
2975
|
+
declare const SoftwareSupplyChainSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2976
|
+
declare const SoftwareSupplyChainUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2977
|
+
declare const SoftwareSupplyChainDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2958
2978
|
|
|
2959
|
-
declare const UsersScopesSelected: (props: SvgIconProps) =>
|
|
2960
|
-
declare const UsersScopesUnSelected: (props: SvgIconProps) =>
|
|
2961
|
-
declare const UsersScopesDisabled: (props: SvgIconProps) =>
|
|
2979
|
+
declare const UsersScopesSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2980
|
+
declare const UsersScopesUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2981
|
+
declare const UsersScopesDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2962
2982
|
|
|
2963
|
-
declare const VulnerabilityManagementSelected: (props: SvgIconProps) =>
|
|
2964
|
-
declare const VulnerabilityManagementUnSelected: (props: SvgIconProps) =>
|
|
2965
|
-
declare const VulnerabilityManagementDisabled: (props: SvgIconProps) =>
|
|
2983
|
+
declare const VulnerabilityManagementSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2984
|
+
declare const VulnerabilityManagementUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
2985
|
+
declare const VulnerabilityManagementDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
2966
2986
|
|
|
2967
|
-
declare function ComplianceCis(props: SvgIconProps):
|
|
2987
|
+
declare function ComplianceCis(props: SvgIconProps): react.JSX.Element;
|
|
2968
2988
|
|
|
2969
|
-
declare function ComplianceGdpr(props: SvgIconProps):
|
|
2989
|
+
declare function ComplianceGdpr(props: SvgIconProps): react.JSX.Element;
|
|
2970
2990
|
|
|
2971
|
-
declare function ComplianceHipaa(props: SvgIconProps):
|
|
2991
|
+
declare function ComplianceHipaa(props: SvgIconProps): react.JSX.Element;
|
|
2972
2992
|
|
|
2973
|
-
declare function CompliancePci(props: SvgIconProps):
|
|
2993
|
+
declare function CompliancePci(props: SvgIconProps): react.JSX.Element;
|
|
2974
2994
|
|
|
2975
|
-
declare function ComplianceSoc2(props: SvgIconProps):
|
|
2995
|
+
declare function ComplianceSoc2(props: SvgIconProps): react.JSX.Element;
|
|
2976
2996
|
|
|
2977
|
-
declare function API(props: SvgIconProps):
|
|
2997
|
+
declare function API(props: SvgIconProps): react.JSX.Element;
|
|
2978
2998
|
|
|
2979
|
-
declare function APIOutline(props: SvgIconProps):
|
|
2999
|
+
declare function APIOutline(props: SvgIconProps): react.JSX.Element;
|
|
2980
3000
|
|
|
2981
|
-
declare function APIKey(props: SvgIconProps):
|
|
3001
|
+
declare function APIKey(props: SvgIconProps): react.JSX.Element;
|
|
2982
3002
|
|
|
2983
|
-
declare function AWSCategoryAnalytics(props: SvgIconProps):
|
|
3003
|
+
declare function AWSCategoryAnalytics(props: SvgIconProps): react.JSX.Element;
|
|
2984
3004
|
|
|
2985
|
-
declare function AWSCategoryCompute(props: SvgIconProps):
|
|
3005
|
+
declare function AWSCategoryCompute(props: SvgIconProps): react.JSX.Element;
|
|
2986
3006
|
|
|
2987
|
-
declare function AWSCategoryContainers(props: SvgIconProps):
|
|
3007
|
+
declare function AWSCategoryContainers(props: SvgIconProps): react.JSX.Element;
|
|
2988
3008
|
|
|
2989
|
-
declare function AWSCategoryDatabase(props: SvgIconProps):
|
|
3009
|
+
declare function AWSCategoryDatabase(props: SvgIconProps): react.JSX.Element;
|
|
2990
3010
|
|
|
2991
|
-
declare function AWSCategoryIdentitySecurity(props: SvgIconProps):
|
|
3011
|
+
declare function AWSCategoryIdentitySecurity(props: SvgIconProps): react.JSX.Element;
|
|
2992
3012
|
|
|
2993
|
-
declare function AWSCategoryIdentitySecurity1(props: SvgIconProps):
|
|
3013
|
+
declare function AWSCategoryIdentitySecurity1(props: SvgIconProps): react.JSX.Element;
|
|
2994
3014
|
|
|
2995
|
-
declare function AWSCategoryMachineLearning(props: SvgIconProps):
|
|
3015
|
+
declare function AWSCategoryMachineLearning(props: SvgIconProps): react.JSX.Element;
|
|
2996
3016
|
|
|
2997
|
-
declare function AWSCategoryManagementGovernance(props: SvgIconProps):
|
|
3017
|
+
declare function AWSCategoryManagementGovernance(props: SvgIconProps): react.JSX.Element;
|
|
2998
3018
|
|
|
2999
|
-
declare function AWSCategoryNetworking(props: SvgIconProps):
|
|
3019
|
+
declare function AWSCategoryNetworking(props: SvgIconProps): react.JSX.Element;
|
|
3000
3020
|
|
|
3001
|
-
declare function AWSCategoryNone(props: SvgIconProps):
|
|
3021
|
+
declare function AWSCategoryNone(props: SvgIconProps): react.JSX.Element;
|
|
3002
3022
|
|
|
3003
|
-
declare function AWSCategoryStorage(props: SvgIconProps):
|
|
3023
|
+
declare function AWSCategoryStorage(props: SvgIconProps): react.JSX.Element;
|
|
3004
3024
|
|
|
3005
|
-
declare function AWSCategoryUndefined(props: SvgIconProps):
|
|
3025
|
+
declare function AWSCategoryUndefined(props: SvgIconProps): react.JSX.Element;
|
|
3006
3026
|
|
|
3007
|
-
declare function AWSCategoryWebMobile(props: SvgIconProps):
|
|
3027
|
+
declare function AWSCategoryWebMobile(props: SvgIconProps): react.JSX.Element;
|
|
3008
3028
|
|
|
3009
|
-
declare function AWSCloudFormation(props: SvgIconProps):
|
|
3029
|
+
declare function AWSCloudFormation(props: SvgIconProps): react.JSX.Element;
|
|
3010
3030
|
|
|
3011
|
-
declare function AWSIcon(props: SvgIconProps):
|
|
3031
|
+
declare function AWSIcon(props: SvgIconProps): react.JSX.Element;
|
|
3012
3032
|
|
|
3013
|
-
declare function AWSServicesACM(props: SvgIconProps):
|
|
3033
|
+
declare function AWSServicesACM(props: SvgIconProps): react.JSX.Element;
|
|
3014
3034
|
|
|
3015
|
-
declare function AWSServicesAMI(props: SvgIconProps):
|
|
3035
|
+
declare function AWSServicesAMI(props: SvgIconProps): react.JSX.Element;
|
|
3016
3036
|
|
|
3017
|
-
declare function AWSServicesAPIGateway(props: SvgIconProps):
|
|
3037
|
+
declare function AWSServicesAPIGateway(props: SvgIconProps): react.JSX.Element;
|
|
3018
3038
|
|
|
3019
|
-
declare function AWSServicesAWSTransferFamily(props: SvgIconProps):
|
|
3039
|
+
declare function AWSServicesAWSTransferFamily(props: SvgIconProps): react.JSX.Element;
|
|
3020
3040
|
|
|
3021
|
-
declare function AWSServicesAWSTransferFamily1(props: SvgIconProps):
|
|
3041
|
+
declare function AWSServicesAWSTransferFamily1(props: SvgIconProps): react.JSX.Element;
|
|
3022
3042
|
|
|
3023
|
-
declare function AWSServicesAWSConfig(props: SvgIconProps):
|
|
3043
|
+
declare function AWSServicesAWSConfig(props: SvgIconProps): react.JSX.Element;
|
|
3024
3044
|
|
|
3025
|
-
declare function AWSServicesAmazonMemoryDBForRedis(props: SvgIconProps):
|
|
3045
|
+
declare function AWSServicesAmazonMemoryDBForRedis(props: SvgIconProps): react.JSX.Element;
|
|
3026
3046
|
|
|
3027
|
-
declare function AWSServicesAthena(props: SvgIconProps):
|
|
3047
|
+
declare function AWSServicesAthena(props: SvgIconProps): react.JSX.Element;
|
|
3028
3048
|
|
|
3029
|
-
declare function AWSServicesAutoScalingGroup(props: SvgIconProps):
|
|
3049
|
+
declare function AWSServicesAutoScalingGroup(props: SvgIconProps): react.JSX.Element;
|
|
3030
3050
|
|
|
3031
|
-
declare function AWSServicesAutoScalingGroup1(props: SvgIconProps):
|
|
3051
|
+
declare function AWSServicesAutoScalingGroup1(props: SvgIconProps): react.JSX.Element;
|
|
3032
3052
|
|
|
3033
|
-
declare function AWSServicesBackup(props: SvgIconProps):
|
|
3053
|
+
declare function AWSServicesBackup(props: SvgIconProps): react.JSX.Element;
|
|
3034
3054
|
|
|
3035
|
-
declare function AWSServicesCIS(props: SvgIconProps):
|
|
3055
|
+
declare function AWSServicesCIS(props: SvgIconProps): react.JSX.Element;
|
|
3036
3056
|
|
|
3037
|
-
declare function AWSServicesCertificateManager(props: SvgIconProps):
|
|
3057
|
+
declare function AWSServicesCertificateManager(props: SvgIconProps): react.JSX.Element;
|
|
3038
3058
|
|
|
3039
|
-
declare function AWSServicesClientVPN(props: SvgIconProps):
|
|
3059
|
+
declare function AWSServicesClientVPN(props: SvgIconProps): react.JSX.Element;
|
|
3040
3060
|
|
|
3041
|
-
declare function AWSServicesCloudFormationStackSet(props: SvgIconProps):
|
|
3061
|
+
declare function AWSServicesCloudFormationStackSet(props: SvgIconProps): react.JSX.Element;
|
|
3042
3062
|
|
|
3043
|
-
declare function AWSServicesCloudFormationStack(props: SvgIconProps):
|
|
3063
|
+
declare function AWSServicesCloudFormationStack(props: SvgIconProps): react.JSX.Element;
|
|
3044
3064
|
|
|
3045
|
-
declare function AWSServicesCloudFormation(props: SvgIconProps):
|
|
3065
|
+
declare function AWSServicesCloudFormation(props: SvgIconProps): react.JSX.Element;
|
|
3046
3066
|
|
|
3047
|
-
declare function AWSServicesCloudTrail(props: SvgIconProps):
|
|
3067
|
+
declare function AWSServicesCloudTrail(props: SvgIconProps): react.JSX.Element;
|
|
3048
3068
|
|
|
3049
|
-
declare function AWSServicesCloudWatch(props: SvgIconProps):
|
|
3069
|
+
declare function AWSServicesCloudWatch(props: SvgIconProps): react.JSX.Element;
|
|
3050
3070
|
|
|
3051
|
-
declare function AWSServicesCloudfront(props: SvgIconProps):
|
|
3071
|
+
declare function AWSServicesCloudfront(props: SvgIconProps): react.JSX.Element;
|
|
3052
3072
|
|
|
3053
|
-
declare function AWSServicesCognito(props: SvgIconProps):
|
|
3073
|
+
declare function AWSServicesCognito(props: SvgIconProps): react.JSX.Element;
|
|
3054
3074
|
|
|
3055
|
-
declare function AWSServicesCompliance(props: SvgIconProps):
|
|
3075
|
+
declare function AWSServicesCompliance(props: SvgIconProps): react.JSX.Element;
|
|
3056
3076
|
|
|
3057
|
-
declare function AWSServicesConfigRecorders(props: SvgIconProps):
|
|
3077
|
+
declare function AWSServicesConfigRecorders(props: SvgIconProps): react.JSX.Element;
|
|
3058
3078
|
|
|
3059
|
-
declare function AWSServicesConfigRules(props: SvgIconProps):
|
|
3079
|
+
declare function AWSServicesConfigRules(props: SvgIconProps): react.JSX.Element;
|
|
3060
3080
|
|
|
3061
|
-
declare function AWSServicesDB(props: SvgIconProps):
|
|
3081
|
+
declare function AWSServicesDB(props: SvgIconProps): react.JSX.Element;
|
|
3062
3082
|
|
|
3063
|
-
declare function AWSServicesDataPipeline(props: SvgIconProps):
|
|
3083
|
+
declare function AWSServicesDataPipeline(props: SvgIconProps): react.JSX.Element;
|
|
3064
3084
|
|
|
3065
|
-
declare function AWSServicesDatabaseMigration(props: SvgIconProps):
|
|
3085
|
+
declare function AWSServicesDatabaseMigration(props: SvgIconProps): react.JSX.Element;
|
|
3066
3086
|
|
|
3067
|
-
declare function AWSServicesDockerImage(props: SvgIconProps):
|
|
3087
|
+
declare function AWSServicesDockerImage(props: SvgIconProps): react.JSX.Element;
|
|
3068
3088
|
|
|
3069
|
-
declare function AWSServicesDynamoDB(props: SvgIconProps):
|
|
3089
|
+
declare function AWSServicesDynamoDB(props: SvgIconProps): react.JSX.Element;
|
|
3070
3090
|
|
|
3071
|
-
declare function AWSServicesEBS(props: SvgIconProps):
|
|
3091
|
+
declare function AWSServicesEBS(props: SvgIconProps): react.JSX.Element;
|
|
3072
3092
|
|
|
3073
|
-
declare function AWSServicesEC2Snapshot(props: SvgIconProps):
|
|
3093
|
+
declare function AWSServicesEC2Snapshot(props: SvgIconProps): react.JSX.Element;
|
|
3074
3094
|
|
|
3075
|
-
declare function AWSServicesEC2(props: SvgIconProps):
|
|
3095
|
+
declare function AWSServicesEC2(props: SvgIconProps): react.JSX.Element;
|
|
3076
3096
|
|
|
3077
|
-
declare function AWSServicesECSTaskDefinition(props: SvgIconProps):
|
|
3097
|
+
declare function AWSServicesECSTaskDefinition(props: SvgIconProps): react.JSX.Element;
|
|
3078
3098
|
|
|
3079
|
-
declare function AWSServicesECSTask(props: SvgIconProps):
|
|
3099
|
+
declare function AWSServicesECSTask(props: SvgIconProps): react.JSX.Element;
|
|
3080
3100
|
|
|
3081
|
-
declare function AWSServicesEFS(props: SvgIconProps):
|
|
3101
|
+
declare function AWSServicesEFS(props: SvgIconProps): react.JSX.Element;
|
|
3082
3102
|
|
|
3083
|
-
declare function AWSServicesEKSCluster(props: SvgIconProps):
|
|
3103
|
+
declare function AWSServicesEKSCluster(props: SvgIconProps): react.JSX.Element;
|
|
3084
3104
|
|
|
3085
|
-
declare function AWSServicesELBPolicy(props: SvgIconProps):
|
|
3105
|
+
declare function AWSServicesELBPolicy(props: SvgIconProps): react.JSX.Element;
|
|
3086
3106
|
|
|
3087
|
-
declare function AWSServicesELBv2Listener(props: SvgIconProps):
|
|
3107
|
+
declare function AWSServicesELBv2Listener(props: SvgIconProps): react.JSX.Element;
|
|
3088
3108
|
|
|
3089
|
-
declare function AWSServicesEMR(props: SvgIconProps):
|
|
3109
|
+
declare function AWSServicesEMR(props: SvgIconProps): react.JSX.Element;
|
|
3090
3110
|
|
|
3091
|
-
declare function AWSServicesEgressOnlyInterentGateway(props: SvgIconProps):
|
|
3111
|
+
declare function AWSServicesEgressOnlyInterentGateway(props: SvgIconProps): react.JSX.Element;
|
|
3092
3112
|
|
|
3093
|
-
declare function AWSServicesElastiCache(props: SvgIconProps):
|
|
3113
|
+
declare function AWSServicesElastiCache(props: SvgIconProps): react.JSX.Element;
|
|
3094
3114
|
|
|
3095
|
-
declare function AWSServicesElasticIP(props: SvgIconProps):
|
|
3115
|
+
declare function AWSServicesElasticIP(props: SvgIconProps): react.JSX.Element;
|
|
3096
3116
|
|
|
3097
|
-
declare function AWSServicesElasticIP1(props: SvgIconProps):
|
|
3117
|
+
declare function AWSServicesElasticIP1(props: SvgIconProps): react.JSX.Element;
|
|
3098
3118
|
|
|
3099
|
-
declare function AWSServicesElasticLoadBalancing(props: SvgIconProps):
|
|
3119
|
+
declare function AWSServicesElasticLoadBalancing(props: SvgIconProps): react.JSX.Element;
|
|
3100
3120
|
|
|
3101
|
-
declare function AWSServicesElasticNetworkInterface(props: SvgIconProps):
|
|
3121
|
+
declare function AWSServicesElasticNetworkInterface(props: SvgIconProps): react.JSX.Element;
|
|
3102
3122
|
|
|
3103
|
-
declare function AWSServicesElasticBeanstalk(props: SvgIconProps):
|
|
3123
|
+
declare function AWSServicesElasticBeanstalk(props: SvgIconProps): react.JSX.Element;
|
|
3104
3124
|
|
|
3105
|
-
declare function AWSServicesElasticContainerRegistryECR(props: SvgIconProps):
|
|
3125
|
+
declare function AWSServicesElasticContainerRegistryECR(props: SvgIconProps): react.JSX.Element;
|
|
3106
3126
|
|
|
3107
|
-
declare function AWSServicesElasticContainerServiceECS(props: SvgIconProps):
|
|
3127
|
+
declare function AWSServicesElasticContainerServiceECS(props: SvgIconProps): react.JSX.Element;
|
|
3108
3128
|
|
|
3109
|
-
declare function AWSServicesElasticKubernetesServiceEKS(props: SvgIconProps):
|
|
3129
|
+
declare function AWSServicesElasticKubernetesServiceEKS(props: SvgIconProps): react.JSX.Element;
|
|
3110
3130
|
|
|
3111
|
-
declare function AWSServicesElasticsearch(props: SvgIconProps):
|
|
3131
|
+
declare function AWSServicesElasticsearch(props: SvgIconProps): react.JSX.Element;
|
|
3112
3132
|
|
|
3113
|
-
declare function AWSServicesEventSourceMapping(props: SvgIconProps):
|
|
3133
|
+
declare function AWSServicesEventSourceMapping(props: SvgIconProps): react.JSX.Element;
|
|
3114
3134
|
|
|
3115
|
-
declare function AWSServicesGlobalAccelerator(props: SvgIconProps):
|
|
3135
|
+
declare function AWSServicesGlobalAccelerator(props: SvgIconProps): react.JSX.Element;
|
|
3116
3136
|
|
|
3117
|
-
declare function AWSServicesGlue(props: SvgIconProps):
|
|
3137
|
+
declare function AWSServicesGlue(props: SvgIconProps): react.JSX.Element;
|
|
3118
3138
|
|
|
3119
|
-
declare function AWSServicesGroup(props: SvgIconProps):
|
|
3139
|
+
declare function AWSServicesGroup(props: SvgIconProps): react.JSX.Element;
|
|
3120
3140
|
|
|
3121
|
-
declare function AWSServicesGuardDuty(props: SvgIconProps):
|
|
3141
|
+
declare function AWSServicesGuardDuty(props: SvgIconProps): react.JSX.Element;
|
|
3122
3142
|
|
|
3123
|
-
declare function AWSServicesIAMAccessKey(props: SvgIconProps):
|
|
3143
|
+
declare function AWSServicesIAMAccessKey(props: SvgIconProps): react.JSX.Element;
|
|
3124
3144
|
|
|
3125
|
-
declare function AWSServicesIAMAccount(props: SvgIconProps):
|
|
3145
|
+
declare function AWSServicesIAMAccount(props: SvgIconProps): react.JSX.Element;
|
|
3126
3146
|
|
|
3127
|
-
declare function AWSServicesIAMCredentialReport(props: SvgIconProps):
|
|
3147
|
+
declare function AWSServicesIAMCredentialReport(props: SvgIconProps): react.JSX.Element;
|
|
3128
3148
|
|
|
3129
|
-
declare function AWSServicesIAMOrganizationalPolicy(props: SvgIconProps):
|
|
3149
|
+
declare function AWSServicesIAMOrganizationalPolicy(props: SvgIconProps): react.JSX.Element;
|
|
3130
3150
|
|
|
3131
|
-
declare function AWSServicesIAMPasswordPolicy(props: SvgIconProps):
|
|
3151
|
+
declare function AWSServicesIAMPasswordPolicy(props: SvgIconProps): react.JSX.Element;
|
|
3132
3152
|
|
|
3133
|
-
declare function AWSServicesIAMVirtualMFADevices(props: SvgIconProps):
|
|
3153
|
+
declare function AWSServicesIAMVirtualMFADevices(props: SvgIconProps): react.JSX.Element;
|
|
3134
3154
|
|
|
3135
|
-
declare function AWSServicesImage(props: SvgIconProps):
|
|
3155
|
+
declare function AWSServicesImage(props: SvgIconProps): react.JSX.Element;
|
|
3136
3156
|
|
|
3137
|
-
declare function AWSServicesInspector(props: SvgIconProps):
|
|
3157
|
+
declare function AWSServicesInspector(props: SvgIconProps): react.JSX.Element;
|
|
3138
3158
|
|
|
3139
|
-
declare function AWSServicesInternetGateway(props: SvgIconProps):
|
|
3159
|
+
declare function AWSServicesInternetGateway(props: SvgIconProps): react.JSX.Element;
|
|
3140
3160
|
|
|
3141
|
-
declare function AWSServicesInternetGateway1(props: SvgIconProps):
|
|
3161
|
+
declare function AWSServicesInternetGateway1(props: SvgIconProps): react.JSX.Element;
|
|
3142
3162
|
|
|
3143
|
-
declare function AWSServicesKMSKey(props: SvgIconProps):
|
|
3163
|
+
declare function AWSServicesKMSKey(props: SvgIconProps): react.JSX.Element;
|
|
3144
3164
|
|
|
3145
|
-
declare function AWSServicesKeyPairs(props: SvgIconProps):
|
|
3165
|
+
declare function AWSServicesKeyPairs(props: SvgIconProps): react.JSX.Element;
|
|
3146
3166
|
|
|
3147
|
-
declare function AWSServicesKinesis(props: SvgIconProps):
|
|
3167
|
+
declare function AWSServicesKinesis(props: SvgIconProps): react.JSX.Element;
|
|
3148
3168
|
|
|
3149
|
-
declare function AWSServicesLambda(props: SvgIconProps):
|
|
3169
|
+
declare function AWSServicesLambda(props: SvgIconProps): react.JSX.Element;
|
|
3150
3170
|
|
|
3151
|
-
declare function AWSServicesLaunchTemplate(props: SvgIconProps):
|
|
3171
|
+
declare function AWSServicesLaunchTemplate(props: SvgIconProps): react.JSX.Element;
|
|
3152
3172
|
|
|
3153
|
-
declare function AWSServicesMFADevice(props: SvgIconProps):
|
|
3173
|
+
declare function AWSServicesMFADevice(props: SvgIconProps): react.JSX.Element;
|
|
3154
3174
|
|
|
3155
|
-
declare function AWSServicesMacie(props: SvgIconProps):
|
|
3175
|
+
declare function AWSServicesMacie(props: SvgIconProps): react.JSX.Element;
|
|
3156
3176
|
|
|
3157
|
-
declare function AWSServicesNATGateway(props: SvgIconProps):
|
|
3177
|
+
declare function AWSServicesNATGateway(props: SvgIconProps): react.JSX.Element;
|
|
3158
3178
|
|
|
3159
|
-
declare function AWSServicesNATGateway1(props: SvgIconProps):
|
|
3179
|
+
declare function AWSServicesNATGateway1(props: SvgIconProps): react.JSX.Element;
|
|
3160
3180
|
|
|
3161
|
-
declare function AWSServicesNeptune(props: SvgIconProps):
|
|
3181
|
+
declare function AWSServicesNeptune(props: SvgIconProps): react.JSX.Element;
|
|
3162
3182
|
|
|
3163
|
-
declare function AWSServicesNetworkACL(props: SvgIconProps):
|
|
3183
|
+
declare function AWSServicesNetworkACL(props: SvgIconProps): react.JSX.Element;
|
|
3164
3184
|
|
|
3165
|
-
declare function AWSServicesOrganizationalUnit(props: SvgIconProps):
|
|
3185
|
+
declare function AWSServicesOrganizationalUnit(props: SvgIconProps): react.JSX.Element;
|
|
3166
3186
|
|
|
3167
|
-
declare function AWSServicesPolicy(props: SvgIconProps):
|
|
3187
|
+
declare function AWSServicesPolicy(props: SvgIconProps): react.JSX.Element;
|
|
3168
3188
|
|
|
3169
|
-
declare function AWSServicesRDSCluster(props: SvgIconProps):
|
|
3189
|
+
declare function AWSServicesRDSCluster(props: SvgIconProps): react.JSX.Element;
|
|
3170
3190
|
|
|
3171
|
-
declare function AWSServicesRDSCluster1(props: SvgIconProps):
|
|
3191
|
+
declare function AWSServicesRDSCluster1(props: SvgIconProps): react.JSX.Element;
|
|
3172
3192
|
|
|
3173
|
-
declare function AWSServicesRDS(props: SvgIconProps):
|
|
3193
|
+
declare function AWSServicesRDS(props: SvgIconProps): react.JSX.Element;
|
|
3174
3194
|
|
|
3175
|
-
declare function AWSServicesRedshift(props: SvgIconProps):
|
|
3195
|
+
declare function AWSServicesRedshift(props: SvgIconProps): react.JSX.Element;
|
|
3176
3196
|
|
|
3177
|
-
declare function AWSServicesRole(props: SvgIconProps):
|
|
3197
|
+
declare function AWSServicesRole(props: SvgIconProps): react.JSX.Element;
|
|
3178
3198
|
|
|
3179
|
-
declare function AWSServicesRoute53RouteTable(props: SvgIconProps):
|
|
3199
|
+
declare function AWSServicesRoute53RouteTable(props: SvgIconProps): react.JSX.Element;
|
|
3180
3200
|
|
|
3181
|
-
declare function AWSServicesRoute53RouteTable1(props: SvgIconProps):
|
|
3201
|
+
declare function AWSServicesRoute53RouteTable1(props: SvgIconProps): react.JSX.Element;
|
|
3182
3202
|
|
|
3183
|
-
declare function AWSServicesRoute53(props: SvgIconProps):
|
|
3203
|
+
declare function AWSServicesRoute53(props: SvgIconProps): react.JSX.Element;
|
|
3184
3204
|
|
|
3185
|
-
declare function AWSServicesS3Bucket(props: SvgIconProps):
|
|
3205
|
+
declare function AWSServicesS3Bucket(props: SvgIconProps): react.JSX.Element;
|
|
3186
3206
|
|
|
3187
|
-
declare function AWSServicesSageMakerNotebook(props: SvgIconProps):
|
|
3207
|
+
declare function AWSServicesSageMakerNotebook(props: SvgIconProps): react.JSX.Element;
|
|
3188
3208
|
|
|
3189
|
-
declare function AWSServicesSageMaker(props: SvgIconProps):
|
|
3209
|
+
declare function AWSServicesSageMaker(props: SvgIconProps): react.JSX.Element;
|
|
3190
3210
|
|
|
3191
|
-
declare function AWSServicesSecretsManager(props: SvgIconProps):
|
|
3211
|
+
declare function AWSServicesSecretsManager(props: SvgIconProps): react.JSX.Element;
|
|
3192
3212
|
|
|
3193
|
-
declare function AWSServicesSecurityHub(props: SvgIconProps):
|
|
3213
|
+
declare function AWSServicesSecurityHub(props: SvgIconProps): react.JSX.Element;
|
|
3194
3214
|
|
|
3195
|
-
declare function AWSServicesSecurityHub1(props: SvgIconProps):
|
|
3215
|
+
declare function AWSServicesSecurityHub1(props: SvgIconProps): react.JSX.Element;
|
|
3196
3216
|
|
|
3197
|
-
declare function AWSServicesServerCertificate(props: SvgIconProps):
|
|
3217
|
+
declare function AWSServicesServerCertificate(props: SvgIconProps): react.JSX.Element;
|
|
3198
3218
|
|
|
3199
|
-
declare function AWSServicesSimpleNotificationService(props: SvgIconProps):
|
|
3219
|
+
declare function AWSServicesSimpleNotificationService(props: SvgIconProps): react.JSX.Element;
|
|
3200
3220
|
|
|
3201
|
-
declare function AWSServicesSimpleQueueServiceSQS(props: SvgIconProps):
|
|
3221
|
+
declare function AWSServicesSimpleQueueServiceSQS(props: SvgIconProps): react.JSX.Element;
|
|
3202
3222
|
|
|
3203
|
-
declare function AWSServicesSpotFleet(props: SvgIconProps):
|
|
3223
|
+
declare function AWSServicesSpotFleet(props: SvgIconProps): react.JSX.Element;
|
|
3204
3224
|
|
|
3205
|
-
declare function AWSServicesSpotInstance(props: SvgIconProps):
|
|
3225
|
+
declare function AWSServicesSpotInstance(props: SvgIconProps): react.JSX.Element;
|
|
3206
3226
|
|
|
3207
|
-
declare function AWSServicesSubnet(props: SvgIconProps):
|
|
3227
|
+
declare function AWSServicesSubnet(props: SvgIconProps): react.JSX.Element;
|
|
3208
3228
|
|
|
3209
|
-
declare function AWSServicesSystemsManager(props: SvgIconProps):
|
|
3229
|
+
declare function AWSServicesSystemsManager(props: SvgIconProps): react.JSX.Element;
|
|
3210
3230
|
|
|
3211
|
-
declare function AWSServicesSystemsManagerSSM(props: SvgIconProps):
|
|
3231
|
+
declare function AWSServicesSystemsManagerSSM(props: SvgIconProps): react.JSX.Element;
|
|
3212
3232
|
|
|
3213
|
-
declare function AWSServicesTargetGroup(props: SvgIconProps):
|
|
3233
|
+
declare function AWSServicesTargetGroup(props: SvgIconProps): react.JSX.Element;
|
|
3214
3234
|
|
|
3215
|
-
declare function AWSServicesTransitGateway(props: SvgIconProps):
|
|
3235
|
+
declare function AWSServicesTransitGateway(props: SvgIconProps): react.JSX.Element;
|
|
3216
3236
|
|
|
3217
|
-
declare function AWSServicesUnknownAsset(props: SvgIconProps):
|
|
3237
|
+
declare function AWSServicesUnknownAsset(props: SvgIconProps): react.JSX.Element;
|
|
3218
3238
|
|
|
3219
|
-
declare function AWSServicesUser(props: SvgIconProps):
|
|
3239
|
+
declare function AWSServicesUser(props: SvgIconProps): react.JSX.Element;
|
|
3220
3240
|
|
|
3221
|
-
declare function AWSServicesVElasticContainerService(props: SvgIconProps):
|
|
3241
|
+
declare function AWSServicesVElasticContainerService(props: SvgIconProps): react.JSX.Element;
|
|
3222
3242
|
|
|
3223
|
-
declare function AWSServicesVPCEndpoints(props: SvgIconProps):
|
|
3243
|
+
declare function AWSServicesVPCEndpoints(props: SvgIconProps): react.JSX.Element;
|
|
3224
3244
|
|
|
3225
|
-
declare function AWSServicesVPCFlowLogs(props: SvgIconProps):
|
|
3245
|
+
declare function AWSServicesVPCFlowLogs(props: SvgIconProps): react.JSX.Element;
|
|
3226
3246
|
|
|
3227
|
-
declare function AWSServicesVPCNetworkAccessAnalyzer(props: SvgIconProps):
|
|
3247
|
+
declare function AWSServicesVPCNetworkAccessAnalyzer(props: SvgIconProps): react.JSX.Element;
|
|
3228
3248
|
|
|
3229
|
-
declare function AWSServicesVPCPeeringConnection(props: SvgIconProps):
|
|
3249
|
+
declare function AWSServicesVPCPeeringConnection(props: SvgIconProps): react.JSX.Element;
|
|
3230
3250
|
|
|
3231
|
-
declare function AWSServicesVPCVPNGateway(props: SvgIconProps):
|
|
3251
|
+
declare function AWSServicesVPCVPNGateway(props: SvgIconProps): react.JSX.Element;
|
|
3232
3252
|
|
|
3233
|
-
declare function AWSServicesVirtualPrivateCloud(props: SvgIconProps):
|
|
3253
|
+
declare function AWSServicesVirtualPrivateCloud(props: SvgIconProps): react.JSX.Element;
|
|
3234
3254
|
|
|
3235
|
-
declare function AWSServicesWAF(props: SvgIconProps):
|
|
3255
|
+
declare function AWSServicesWAF(props: SvgIconProps): react.JSX.Element;
|
|
3236
3256
|
|
|
3237
|
-
declare function AWSServicesWAF2(props: SvgIconProps):
|
|
3257
|
+
declare function AWSServicesWAF2(props: SvgIconProps): react.JSX.Element;
|
|
3238
3258
|
|
|
3239
|
-
declare function AZUREIcon(props: SvgIconProps):
|
|
3259
|
+
declare function AZUREIcon(props: SvgIconProps): react.JSX.Element;
|
|
3240
3260
|
|
|
3241
|
-
declare const Add: (props: SvgIconProps) =>
|
|
3261
|
+
declare const Add: (props: SvgIconProps) => react.JSX.Element;
|
|
3242
3262
|
|
|
3243
|
-
declare function All(props: SvgIconProps):
|
|
3263
|
+
declare function All(props: SvgIconProps): react.JSX.Element;
|
|
3244
3264
|
|
|
3245
|
-
declare function AllClear(props: SvgIconProps):
|
|
3265
|
+
declare function AllClear(props: SvgIconProps): react.JSX.Element;
|
|
3246
3266
|
|
|
3247
|
-
declare function Ansible(props: SvgIconProps):
|
|
3267
|
+
declare function Ansible(props: SvgIconProps): react.JSX.Element;
|
|
3248
3268
|
|
|
3249
|
-
declare function Approved(props: SvgIconProps):
|
|
3269
|
+
declare function Approved(props: SvgIconProps): react.JSX.Element;
|
|
3250
3270
|
|
|
3251
|
-
declare function ArrowBackIOS(props: SvgIconProps):
|
|
3271
|
+
declare function ArrowBackIOS(props: SvgIconProps): react.JSX.Element;
|
|
3252
3272
|
|
|
3253
|
-
declare function ArrowDotted(props: SvgIconProps):
|
|
3273
|
+
declare function ArrowDotted(props: SvgIconProps): react.JSX.Element;
|
|
3254
3274
|
|
|
3255
|
-
declare function ArrowForwardIOS(props: SvgIconProps):
|
|
3275
|
+
declare function ArrowForwardIOS(props: SvgIconProps): react.JSX.Element;
|
|
3256
3276
|
|
|
3257
|
-
declare function ArrowForwardIcon(props: SvgIconProps):
|
|
3277
|
+
declare function ArrowForwardIcon(props: SvgIconProps): react.JSX.Element;
|
|
3258
3278
|
|
|
3259
|
-
declare function VulArrowUp(props: SvgIconProps):
|
|
3279
|
+
declare function VulArrowUp(props: SvgIconProps): react.JSX.Element;
|
|
3260
3280
|
|
|
3261
|
-
declare function AttackPath(props: SvgIconProps):
|
|
3281
|
+
declare function AttackPath(props: SvgIconProps): react.JSX.Element;
|
|
3262
3282
|
|
|
3263
|
-
declare function AttackPathIcon(props: SvgIconProps):
|
|
3283
|
+
declare function AttackPathIcon(props: SvgIconProps): react.JSX.Element;
|
|
3264
3284
|
|
|
3265
|
-
declare function AttackPathIconV2(props: SvgIconProps):
|
|
3285
|
+
declare function AttackPathIconV2(props: SvgIconProps): react.JSX.Element;
|
|
3266
3286
|
|
|
3267
|
-
declare function AzureCategoryAnalytics(props: SvgIconProps):
|
|
3287
|
+
declare function AzureCategoryAnalytics(props: SvgIconProps): react.JSX.Element;
|
|
3268
3288
|
|
|
3269
|
-
declare function AzureCategoryAzureActionGroup(props: SvgIconProps):
|
|
3289
|
+
declare function AzureCategoryAzureActionGroup(props: SvgIconProps): react.JSX.Element;
|
|
3270
3290
|
|
|
3271
|
-
declare function AzureCategoryCompute(props: SvgIconProps):
|
|
3291
|
+
declare function AzureCategoryCompute(props: SvgIconProps): react.JSX.Element;
|
|
3272
3292
|
|
|
3273
|
-
declare function AzureCategoryContainers(props: SvgIconProps):
|
|
3293
|
+
declare function AzureCategoryContainers(props: SvgIconProps): react.JSX.Element;
|
|
3274
3294
|
|
|
3275
|
-
declare function AzureCategoryDatabase(props: SvgIconProps):
|
|
3295
|
+
declare function AzureCategoryDatabase(props: SvgIconProps): react.JSX.Element;
|
|
3276
3296
|
|
|
3277
|
-
declare function AzureCategoryDatabase1(props: SvgIconProps):
|
|
3297
|
+
declare function AzureCategoryDatabase1(props: SvgIconProps): react.JSX.Element;
|
|
3278
3298
|
|
|
3279
|
-
declare function AzureCategoryIdentitySecurity(props: SvgIconProps):
|
|
3299
|
+
declare function AzureCategoryIdentitySecurity(props: SvgIconProps): react.JSX.Element;
|
|
3280
3300
|
|
|
3281
|
-
declare function AzureCategoryMachineLearning(props: SvgIconProps):
|
|
3301
|
+
declare function AzureCategoryMachineLearning(props: SvgIconProps): react.JSX.Element;
|
|
3282
3302
|
|
|
3283
|
-
declare function AzureCategoryManagementGovernance(props: SvgIconProps):
|
|
3303
|
+
declare function AzureCategoryManagementGovernance(props: SvgIconProps): react.JSX.Element;
|
|
3284
3304
|
|
|
3285
|
-
declare function AzureCategoryNetworking(props: SvgIconProps):
|
|
3305
|
+
declare function AzureCategoryNetworking(props: SvgIconProps): react.JSX.Element;
|
|
3286
3306
|
|
|
3287
|
-
declare function AzureCategoryNone(props: SvgIconProps):
|
|
3307
|
+
declare function AzureCategoryNone(props: SvgIconProps): react.JSX.Element;
|
|
3288
3308
|
|
|
3289
|
-
declare function AzureCategoryStorage(props: SvgIconProps):
|
|
3309
|
+
declare function AzureCategoryStorage(props: SvgIconProps): react.JSX.Element;
|
|
3290
3310
|
|
|
3291
|
-
declare function AzureCategoryWebMobile(props: SvgIconProps):
|
|
3311
|
+
declare function AzureCategoryWebMobile(props: SvgIconProps): react.JSX.Element;
|
|
3292
3312
|
|
|
3293
|
-
declare function AzureDevops(props: SvgIconProps):
|
|
3313
|
+
declare function AzureDevops(props: SvgIconProps): react.JSX.Element;
|
|
3294
3314
|
|
|
3295
|
-
declare function AzureGroupAsset(props: SvgIconProps):
|
|
3315
|
+
declare function AzureGroupAsset(props: SvgIconProps): react.JSX.Element;
|
|
3296
3316
|
|
|
3297
|
-
declare function AzureRepoAsset(props: SvgIconProps):
|
|
3317
|
+
declare function AzureRepoAsset(props: SvgIconProps): react.JSX.Element;
|
|
3298
3318
|
|
|
3299
|
-
declare function AzureResourceManager(props: SvgIconProps):
|
|
3319
|
+
declare function AzureResourceManager(props: SvgIconProps): react.JSX.Element;
|
|
3300
3320
|
|
|
3301
|
-
declare function AzureServicesADDomain(props: SvgIconProps):
|
|
3321
|
+
declare function AzureServicesADDomain(props: SvgIconProps): react.JSX.Element;
|
|
3302
3322
|
|
|
3303
|
-
declare function AzureServicesAzureADRole(props: SvgIconProps):
|
|
3323
|
+
declare function AzureServicesAzureADRole(props: SvgIconProps): react.JSX.Element;
|
|
3304
3324
|
|
|
3305
|
-
declare function AzureServicesAzureAD(props: SvgIconProps):
|
|
3325
|
+
declare function AzureServicesAzureAD(props: SvgIconProps): react.JSX.Element;
|
|
3306
3326
|
|
|
3307
|
-
declare function AzureServicesAzureAPIForFHIR(props: SvgIconProps):
|
|
3327
|
+
declare function AzureServicesAzureAPIForFHIR(props: SvgIconProps): react.JSX.Element;
|
|
3308
3328
|
|
|
3309
|
-
declare function AzureServicesAzureAdvancedThreatProtection(props: SvgIconProps):
|
|
3329
|
+
declare function AzureServicesAzureAdvancedThreatProtection(props: SvgIconProps): react.JSX.Element;
|
|
3310
3330
|
|
|
3311
|
-
declare function AzureServicesAzureApiManagement(props: SvgIconProps):
|
|
3331
|
+
declare function AzureServicesAzureApiManagement(props: SvgIconProps): react.JSX.Element;
|
|
3312
3332
|
|
|
3313
|
-
declare function AzureServicesAzureAppConfiguration(props: SvgIconProps):
|
|
3333
|
+
declare function AzureServicesAzureAppConfiguration(props: SvgIconProps): react.JSX.Element;
|
|
3314
3334
|
|
|
3315
|
-
declare function AzureServicesAzureAppService(props: SvgIconProps):
|
|
3335
|
+
declare function AzureServicesAzureAppService(props: SvgIconProps): react.JSX.Element;
|
|
3316
3336
|
|
|
3317
|
-
declare function AzureServicesAzureAttestation(props: SvgIconProps):
|
|
3337
|
+
declare function AzureServicesAzureAttestation(props: SvgIconProps): react.JSX.Element;
|
|
3318
3338
|
|
|
3319
|
-
declare function AzureServicesAzureAutomation(props: SvgIconProps):
|
|
3339
|
+
declare function AzureServicesAzureAutomation(props: SvgIconProps): react.JSX.Element;
|
|
3320
3340
|
|
|
3321
|
-
declare function AzureServicesAzureBackup(props: SvgIconProps):
|
|
3341
|
+
declare function AzureServicesAzureBackup(props: SvgIconProps): react.JSX.Element;
|
|
3322
3342
|
|
|
3323
|
-
declare function AzureServicesAzureBotService(props: SvgIconProps):
|
|
3343
|
+
declare function AzureServicesAzureBotService(props: SvgIconProps): react.JSX.Element;
|
|
3324
3344
|
|
|
3325
|
-
declare function AzureServicesAzureCognitiveSearch(props: SvgIconProps):
|
|
3345
|
+
declare function AzureServicesAzureCognitiveSearch(props: SvgIconProps): react.JSX.Element;
|
|
3326
3346
|
|
|
3327
|
-
declare function AzureServicesAzureContainerRegistry(props: SvgIconProps):
|
|
3347
|
+
declare function AzureServicesAzureContainerRegistry(props: SvgIconProps): react.JSX.Element;
|
|
3328
3348
|
|
|
3329
|
-
declare function AzureServicesAzureCosmosDB(props: SvgIconProps):
|
|
3349
|
+
declare function AzureServicesAzureCosmosDB(props: SvgIconProps): react.JSX.Element;
|
|
3330
3350
|
|
|
3331
|
-
declare function AzureServicesAzureDataFactory(props: SvgIconProps):
|
|
3351
|
+
declare function AzureServicesAzureDataFactory(props: SvgIconProps): react.JSX.Element;
|
|
3332
3352
|
|
|
3333
|
-
declare function AzureServicesAzureDataLake(props: SvgIconProps):
|
|
3353
|
+
declare function AzureServicesAzureDataLake(props: SvgIconProps): react.JSX.Element;
|
|
3334
3354
|
|
|
3335
|
-
declare function AzureServicesAzureDatabricks(props: SvgIconProps):
|
|
3355
|
+
declare function AzureServicesAzureDatabricks(props: SvgIconProps): react.JSX.Element;
|
|
3336
3356
|
|
|
3337
|
-
declare function AzureServicesAzureDigitalTwins(props: SvgIconProps):
|
|
3357
|
+
declare function AzureServicesAzureDigitalTwins(props: SvgIconProps): react.JSX.Element;
|
|
3338
3358
|
|
|
3339
|
-
declare function AzureServicesAzureEventGrid(props: SvgIconProps):
|
|
3359
|
+
declare function AzureServicesAzureEventGrid(props: SvgIconProps): react.JSX.Element;
|
|
3340
3360
|
|
|
3341
|
-
declare function AzureServicesAzureEventHub(props: SvgIconProps):
|
|
3361
|
+
declare function AzureServicesAzureEventHub(props: SvgIconProps): react.JSX.Element;
|
|
3342
3362
|
|
|
3343
|
-
declare function AzureServicesAzureFrontDoor(props: SvgIconProps):
|
|
3363
|
+
declare function AzureServicesAzureFrontDoor(props: SvgIconProps): react.JSX.Element;
|
|
3344
3364
|
|
|
3345
|
-
declare function AzureServicesAzureHDInsight(props: SvgIconProps):
|
|
3365
|
+
declare function AzureServicesAzureHDInsight(props: SvgIconProps): react.JSX.Element;
|
|
3346
3366
|
|
|
3347
|
-
declare function AzureServicesAzureIdentity(props: SvgIconProps):
|
|
3367
|
+
declare function AzureServicesAzureIdentity(props: SvgIconProps): react.JSX.Element;
|
|
3348
3368
|
|
|
3349
|
-
declare function AzureServicesAzureIoTHub(props: SvgIconProps):
|
|
3369
|
+
declare function AzureServicesAzureIoTHub(props: SvgIconProps): react.JSX.Element;
|
|
3350
3370
|
|
|
3351
|
-
declare function AzureServicesAzureKeyVault(props: SvgIconProps):
|
|
3371
|
+
declare function AzureServicesAzureKeyVault(props: SvgIconProps): react.JSX.Element;
|
|
3352
3372
|
|
|
3353
|
-
declare function AzureServicesAzureKubernetesService(props: SvgIconProps):
|
|
3373
|
+
declare function AzureServicesAzureKubernetesService(props: SvgIconProps): react.JSX.Element;
|
|
3354
3374
|
|
|
3355
|
-
declare function AzureServicesAzureMachineLearning(props: SvgIconProps):
|
|
3375
|
+
declare function AzureServicesAzureMachineLearning(props: SvgIconProps): react.JSX.Element;
|
|
3356
3376
|
|
|
3357
|
-
declare function AzureServicesAzureMonitor(props: SvgIconProps):
|
|
3377
|
+
declare function AzureServicesAzureMonitor(props: SvgIconProps): react.JSX.Element;
|
|
3358
3378
|
|
|
3359
|
-
declare function AzureServicesAzurePostgreSQL(props: SvgIconProps):
|
|
3379
|
+
declare function AzureServicesAzurePostgreSQL(props: SvgIconProps): react.JSX.Element;
|
|
3360
3380
|
|
|
3361
|
-
declare function AzureServicesAzureSQL(props: SvgIconProps):
|
|
3381
|
+
declare function AzureServicesAzureSQL(props: SvgIconProps): react.JSX.Element;
|
|
3362
3382
|
|
|
3363
|
-
declare function AzureServicesAzureSecurityCenter(props: SvgIconProps):
|
|
3383
|
+
declare function AzureServicesAzureSecurityCenter(props: SvgIconProps): react.JSX.Element;
|
|
3364
3384
|
|
|
3365
|
-
declare function AzureServicesAzureServiceBus(props: SvgIconProps):
|
|
3385
|
+
declare function AzureServicesAzureServiceBus(props: SvgIconProps): react.JSX.Element;
|
|
3366
3386
|
|
|
3367
|
-
declare function AzureServicesAzureSignalR(props: SvgIconProps):
|
|
3387
|
+
declare function AzureServicesAzureSignalR(props: SvgIconProps): react.JSX.Element;
|
|
3368
3388
|
|
|
3369
|
-
declare function AzureServicesAzureStack(props: SvgIconProps):
|
|
3389
|
+
declare function AzureServicesAzureStack(props: SvgIconProps): react.JSX.Element;
|
|
3370
3390
|
|
|
3371
|
-
declare function AzureServicesAzureStorage(props: SvgIconProps):
|
|
3391
|
+
declare function AzureServicesAzureStorage(props: SvgIconProps): react.JSX.Element;
|
|
3372
3392
|
|
|
3373
|
-
declare function AzureServicesAzureTrafficManager(props: SvgIconProps):
|
|
3393
|
+
declare function AzureServicesAzureTrafficManager(props: SvgIconProps): react.JSX.Element;
|
|
3374
3394
|
|
|
3375
|
-
declare function AzureServicesAzureWebApps(props: SvgIconProps):
|
|
3395
|
+
declare function AzureServicesAzureWebApps(props: SvgIconProps): react.JSX.Element;
|
|
3376
3396
|
|
|
3377
|
-
declare function AzureServicesCDNProfile(props: SvgIconProps):
|
|
3397
|
+
declare function AzureServicesCDNProfile(props: SvgIconProps): react.JSX.Element;
|
|
3378
3398
|
|
|
3379
|
-
declare function AzureServicesContainerInstances(props: SvgIconProps):
|
|
3399
|
+
declare function AzureServicesContainerInstances(props: SvgIconProps): react.JSX.Element;
|
|
3380
3400
|
|
|
3381
|
-
declare function AzureServicesDatabaseAccount(props: SvgIconProps):
|
|
3401
|
+
declare function AzureServicesDatabaseAccount(props: SvgIconProps): react.JSX.Element;
|
|
3382
3402
|
|
|
3383
|
-
declare function AzureServicesDefender(props: SvgIconProps):
|
|
3403
|
+
declare function AzureServicesDefender(props: SvgIconProps): react.JSX.Element;
|
|
3384
3404
|
|
|
3385
|
-
declare function AzureServicesDisks(props: SvgIconProps):
|
|
3405
|
+
declare function AzureServicesDisks(props: SvgIconProps): react.JSX.Element;
|
|
3386
3406
|
|
|
3387
|
-
declare function AzureServicesDockerImage(props: SvgIconProps):
|
|
3407
|
+
declare function AzureServicesDockerImage(props: SvgIconProps): react.JSX.Element;
|
|
3388
3408
|
|
|
3389
|
-
declare function AzureServicesGrafana(props: SvgIconProps):
|
|
3409
|
+
declare function AzureServicesGrafana(props: SvgIconProps): react.JSX.Element;
|
|
3390
3410
|
|
|
3391
|
-
declare function AzureServicesGroup(props: SvgIconProps):
|
|
3411
|
+
declare function AzureServicesGroup(props: SvgIconProps): react.JSX.Element;
|
|
3392
3412
|
|
|
3393
|
-
declare function AzureServicesLoadBalancers(props: SvgIconProps):
|
|
3413
|
+
declare function AzureServicesLoadBalancers(props: SvgIconProps): react.JSX.Element;
|
|
3394
3414
|
|
|
3395
|
-
declare function AzureServicesLogicApps(props: SvgIconProps):
|
|
3415
|
+
declare function AzureServicesLogicApps(props: SvgIconProps): react.JSX.Element;
|
|
3396
3416
|
|
|
3397
|
-
declare function AzureServicesMachineLearning(props: SvgIconProps):
|
|
3417
|
+
declare function AzureServicesMachineLearning(props: SvgIconProps): react.JSX.Element;
|
|
3398
3418
|
|
|
3399
|
-
declare function AzureServicesMicrosoftAzureFluidRelay(props: SvgIconProps):
|
|
3419
|
+
declare function AzureServicesMicrosoftAzureFluidRelay(props: SvgIconProps): react.JSX.Element;
|
|
3400
3420
|
|
|
3401
|
-
declare function AzureServicesMySQL(props: SvgIconProps):
|
|
3421
|
+
declare function AzureServicesMySQL(props: SvgIconProps): react.JSX.Element;
|
|
3402
3422
|
|
|
3403
|
-
declare function AzureServicesNetworkPolicy(props: SvgIconProps):
|
|
3423
|
+
declare function AzureServicesNetworkPolicy(props: SvgIconProps): react.JSX.Element;
|
|
3404
3424
|
|
|
3405
|
-
declare function AzureServicesNetworkSecurityGroups(props: SvgIconProps):
|
|
3425
|
+
declare function AzureServicesNetworkSecurityGroups(props: SvgIconProps): react.JSX.Element;
|
|
3406
3426
|
|
|
3407
|
-
declare function AzureServicesNetworkInterfaces(props: SvgIconProps):
|
|
3427
|
+
declare function AzureServicesNetworkInterfaces(props: SvgIconProps): react.JSX.Element;
|
|
3408
3428
|
|
|
3409
|
-
declare function AzureServicesPowerBI(props: SvgIconProps):
|
|
3429
|
+
declare function AzureServicesPowerBI(props: SvgIconProps): react.JSX.Element;
|
|
3410
3430
|
|
|
3411
|
-
declare function AzureServicesPublicIP(props: SvgIconProps):
|
|
3431
|
+
declare function AzureServicesPublicIP(props: SvgIconProps): react.JSX.Element;
|
|
3412
3432
|
|
|
3413
|
-
declare function AzureServicesResourceGroup(props: SvgIconProps):
|
|
3433
|
+
declare function AzureServicesResourceGroup(props: SvgIconProps): react.JSX.Element;
|
|
3414
3434
|
|
|
3415
|
-
declare function AzureServicesResources(props: SvgIconProps):
|
|
3435
|
+
declare function AzureServicesResources(props: SvgIconProps): react.JSX.Element;
|
|
3416
3436
|
|
|
3417
|
-
declare function AzureServicesRoleAssignment(props: SvgIconProps):
|
|
3437
|
+
declare function AzureServicesRoleAssignment(props: SvgIconProps): react.JSX.Element;
|
|
3418
3438
|
|
|
3419
|
-
declare function AzureServicesSQLDatabase(props: SvgIconProps):
|
|
3439
|
+
declare function AzureServicesSQLDatabase(props: SvgIconProps): react.JSX.Element;
|
|
3420
3440
|
|
|
3421
|
-
declare function AzureServicesSSHKeys(props: SvgIconProps):
|
|
3441
|
+
declare function AzureServicesSSHKeys(props: SvgIconProps): react.JSX.Element;
|
|
3422
3442
|
|
|
3423
|
-
declare function AzureServicesSecurityCenter(props: SvgIconProps):
|
|
3443
|
+
declare function AzureServicesSecurityCenter(props: SvgIconProps): react.JSX.Element;
|
|
3424
3444
|
|
|
3425
|
-
declare function AzureServicesServicePrincipal(props: SvgIconProps):
|
|
3445
|
+
declare function AzureServicesServicePrincipal(props: SvgIconProps): react.JSX.Element;
|
|
3426
3446
|
|
|
3427
|
-
declare function AzureServicesServiceFabric(props: SvgIconProps):
|
|
3447
|
+
declare function AzureServicesServiceFabric(props: SvgIconProps): react.JSX.Element;
|
|
3428
3448
|
|
|
3429
|
-
declare function AzureServicesServices(props: SvgIconProps):
|
|
3449
|
+
declare function AzureServicesServices(props: SvgIconProps): react.JSX.Element;
|
|
3430
3450
|
|
|
3431
|
-
declare function AzureServicesStorageSyncServices(props: SvgIconProps):
|
|
3451
|
+
declare function AzureServicesStorageSyncServices(props: SvgIconProps): react.JSX.Element;
|
|
3432
3452
|
|
|
3433
|
-
declare function AzureServicesSubscriptions(props: SvgIconProps):
|
|
3453
|
+
declare function AzureServicesSubscriptions(props: SvgIconProps): react.JSX.Element;
|
|
3434
3454
|
|
|
3435
|
-
declare function AzureServicesUnknown(props: SvgIconProps):
|
|
3455
|
+
declare function AzureServicesUnknown(props: SvgIconProps): react.JSX.Element;
|
|
3436
3456
|
|
|
3437
|
-
declare function AzureServicesVirtualMachine(props: SvgIconProps):
|
|
3457
|
+
declare function AzureServicesVirtualMachine(props: SvgIconProps): react.JSX.Element;
|
|
3438
3458
|
|
|
3439
|
-
declare function Bar(props: SvgIconProps):
|
|
3459
|
+
declare function Bar(props: SvgIconProps): react.JSX.Element;
|
|
3440
3460
|
|
|
3441
|
-
declare function Bitbucket(props: SvgIconProps):
|
|
3461
|
+
declare function Bitbucket(props: SvgIconProps): react.JSX.Element;
|
|
3442
3462
|
|
|
3443
|
-
declare function BitbucketColor(props: SvgIconProps):
|
|
3463
|
+
declare function BitbucketColor(props: SvgIconProps): react.JSX.Element;
|
|
3444
3464
|
|
|
3445
|
-
declare function Block(props: SvgIconProps):
|
|
3465
|
+
declare function Block(props: SvgIconProps): react.JSX.Element;
|
|
3446
3466
|
|
|
3447
|
-
declare function Bug(props: SvgIconProps):
|
|
3467
|
+
declare function Bug(props: SvgIconProps): react.JSX.Element;
|
|
3448
3468
|
|
|
3449
|
-
declare function BugCircle(props: SvgIconProps):
|
|
3469
|
+
declare function BugCircle(props: SvgIconProps): react.JSX.Element;
|
|
3450
3470
|
|
|
3451
|
-
declare function BugOutline(props: SvgIconProps):
|
|
3471
|
+
declare function BugOutline(props: SvgIconProps): react.JSX.Element;
|
|
3452
3472
|
|
|
3453
|
-
declare function Bulb(props: SvgIconProps):
|
|
3473
|
+
declare function Bulb(props: SvgIconProps): react.JSX.Element;
|
|
3454
3474
|
|
|
3455
|
-
declare function CISFatal(props: SvgIconProps):
|
|
3475
|
+
declare function CISFatal(props: SvgIconProps): react.JSX.Element;
|
|
3456
3476
|
|
|
3457
|
-
declare function CISInfo(props: SvgIconProps):
|
|
3477
|
+
declare function CISInfo(props: SvgIconProps): react.JSX.Element;
|
|
3458
3478
|
|
|
3459
|
-
declare function CISWarning(props: SvgIconProps):
|
|
3479
|
+
declare function CISWarning(props: SvgIconProps): react.JSX.Element;
|
|
3460
3480
|
|
|
3461
|
-
declare function Calendar(props: SvgIconProps):
|
|
3481
|
+
declare function Calendar(props: SvgIconProps): react.JSX.Element;
|
|
3462
3482
|
|
|
3463
|
-
declare function CdrIcon(props: SvgIconProps):
|
|
3483
|
+
declare function CdrIcon(props: SvgIconProps): react.JSX.Element;
|
|
3464
3484
|
|
|
3465
|
-
declare function Check(props: SvgIconProps):
|
|
3485
|
+
declare function Check(props: SvgIconProps): react.JSX.Element;
|
|
3466
3486
|
|
|
3467
|
-
declare function CheckBold(props: SvgIconProps):
|
|
3487
|
+
declare function CheckBold(props: SvgIconProps): react.JSX.Element;
|
|
3468
3488
|
|
|
3469
|
-
declare function CheckCircleOutline(props: SvgIconProps):
|
|
3489
|
+
declare function CheckCircleOutline(props: SvgIconProps): react.JSX.Element;
|
|
3470
3490
|
|
|
3471
|
-
declare function RoundedCheckCircleOutline(props: SvgIconProps):
|
|
3491
|
+
declare function RoundedCheckCircleOutline(props: SvgIconProps): react.JSX.Element;
|
|
3472
3492
|
|
|
3473
|
-
declare function Checkmarx(props: SvgIconProps):
|
|
3493
|
+
declare function Checkmarx(props: SvgIconProps): react.JSX.Element;
|
|
3474
3494
|
|
|
3475
|
-
declare function ClassificationDataLabeling(props: SvgIconProps):
|
|
3495
|
+
declare function ClassificationDataLabeling(props: SvgIconProps): react.JSX.Element;
|
|
3476
3496
|
|
|
3477
|
-
declare function Clock(props: SvgIconProps):
|
|
3497
|
+
declare function Clock(props: SvgIconProps): react.JSX.Element;
|
|
3478
3498
|
|
|
3479
|
-
declare function ClockPending(props: SvgIconProps):
|
|
3499
|
+
declare function ClockPending(props: SvgIconProps): react.JSX.Element;
|
|
3480
3500
|
|
|
3481
|
-
declare function Close(props: SvgIconProps):
|
|
3501
|
+
declare function Close(props: SvgIconProps): react.JSX.Element;
|
|
3482
3502
|
|
|
3483
|
-
declare function CloseFullscreen(props: SvgIconProps):
|
|
3503
|
+
declare function CloseFullscreen(props: SvgIconProps): react.JSX.Element;
|
|
3484
3504
|
|
|
3485
|
-
declare function CloseLarge(props: SvgIconProps):
|
|
3505
|
+
declare function CloseLarge(props: SvgIconProps): react.JSX.Element;
|
|
3486
3506
|
|
|
3487
|
-
declare function CloudDeploymentManager(props: SvgIconProps):
|
|
3507
|
+
declare function CloudDeploymentManager(props: SvgIconProps): react.JSX.Element;
|
|
3488
3508
|
|
|
3489
|
-
declare function CloudInstall(props: SvgIconProps):
|
|
3509
|
+
declare function CloudInstall(props: SvgIconProps): react.JSX.Element;
|
|
3490
3510
|
|
|
3491
|
-
declare function Clusters(props: SvgIconProps):
|
|
3511
|
+
declare function Clusters(props: SvgIconProps): react.JSX.Element;
|
|
3492
3512
|
|
|
3493
|
-
declare function Collapse(props: SvgIconProps):
|
|
3513
|
+
declare function Collapse(props: SvgIconProps): react.JSX.Element;
|
|
3494
3514
|
|
|
3495
|
-
declare function CollapseAll(props: SvgIconProps):
|
|
3515
|
+
declare function CollapseAll(props: SvgIconProps): react.JSX.Element;
|
|
3496
3516
|
|
|
3497
|
-
declare function CommonIAC(props: SvgIconProps):
|
|
3517
|
+
declare function CommonIAC(props: SvgIconProps): react.JSX.Element;
|
|
3498
3518
|
|
|
3499
|
-
declare function Compare(props: SvgIconProps):
|
|
3519
|
+
declare function Compare(props: SvgIconProps): react.JSX.Element;
|
|
3500
3520
|
|
|
3501
|
-
declare function Compliance(props: SvgIconProps):
|
|
3521
|
+
declare function Compliance(props: SvgIconProps): react.JSX.Element;
|
|
3502
3522
|
|
|
3503
|
-
declare function Connection(props: SvgIconProps):
|
|
3523
|
+
declare function Connection(props: SvgIconProps): react.JSX.Element;
|
|
3504
3524
|
|
|
3505
|
-
declare function Copy(props: SvgIconProps):
|
|
3525
|
+
declare function Copy(props: SvgIconProps): react.JSX.Element;
|
|
3506
3526
|
|
|
3507
|
-
declare function CopyLandscape(props: SvgIconProps):
|
|
3527
|
+
declare function CopyLandscape(props: SvgIconProps): react.JSX.Element;
|
|
3508
3528
|
|
|
3509
|
-
declare const CredentialExposure: (props: SvgIconProps) =>
|
|
3529
|
+
declare const CredentialExposure: (props: SvgIconProps) => react.JSX.Element;
|
|
3510
3530
|
|
|
3511
|
-
declare function CrossBold(props: SvgIconProps):
|
|
3531
|
+
declare function CrossBold(props: SvgIconProps): react.JSX.Element;
|
|
3512
3532
|
|
|
3513
|
-
declare function CrossCircleOutline(props: SvgIconProps):
|
|
3533
|
+
declare function CrossCircleOutline(props: SvgIconProps): react.JSX.Element;
|
|
3514
3534
|
|
|
3515
|
-
declare function Crossplane(props: SvgIconProps):
|
|
3535
|
+
declare function Crossplane(props: SvgIconProps): react.JSX.Element;
|
|
3516
3536
|
|
|
3517
|
-
declare const PADeveloperTools: (props: SvgIconProps) =>
|
|
3537
|
+
declare const PADeveloperTools: (props: SvgIconProps) => react.JSX.Element;
|
|
3518
3538
|
|
|
3519
|
-
declare const DNSSecurity: (props: SvgIconProps) =>
|
|
3539
|
+
declare const DNSSecurity: (props: SvgIconProps) => react.JSX.Element;
|
|
3520
3540
|
|
|
3521
|
-
declare function Dashboard1(props: SvgIconProps):
|
|
3541
|
+
declare function Dashboard1(props: SvgIconProps): react.JSX.Element;
|
|
3522
3542
|
|
|
3523
|
-
declare function Dashboard2(props: SvgIconProps):
|
|
3543
|
+
declare function Dashboard2(props: SvgIconProps): react.JSX.Element;
|
|
3524
3544
|
|
|
3525
|
-
declare function DataLabel(props: SvgIconProps):
|
|
3545
|
+
declare function DataLabel(props: SvgIconProps): react.JSX.Element;
|
|
3526
3546
|
|
|
3527
|
-
declare function Database(props: SvgIconProps):
|
|
3547
|
+
declare function Database(props: SvgIconProps): react.JSX.Element;
|
|
3528
3548
|
|
|
3529
|
-
declare function DatabaseAccess(props: SvgIconProps):
|
|
3549
|
+
declare function DatabaseAccess(props: SvgIconProps): react.JSX.Element;
|
|
3530
3550
|
|
|
3531
|
-
declare function DatabaseOutline(props: SvgIconProps):
|
|
3551
|
+
declare function DatabaseOutline(props: SvgIconProps): react.JSX.Element;
|
|
3532
3552
|
|
|
3533
|
-
declare function Delete(props: SvgIconProps):
|
|
3553
|
+
declare function Delete(props: SvgIconProps): react.JSX.Element;
|
|
3534
3554
|
|
|
3535
|
-
declare function DocValid(props: SvgIconProps):
|
|
3555
|
+
declare function DocValid(props: SvgIconProps): react.JSX.Element;
|
|
3536
3556
|
|
|
3537
|
-
declare function Docker(props: SvgIconProps):
|
|
3557
|
+
declare function Docker(props: SvgIconProps): react.JSX.Element;
|
|
3538
3558
|
|
|
3539
|
-
declare function Docker2(props: SvgIconProps):
|
|
3559
|
+
declare function Docker2(props: SvgIconProps): react.JSX.Element;
|
|
3540
3560
|
|
|
3541
|
-
declare function DockerCompose(props: SvgIconProps):
|
|
3561
|
+
declare function DockerCompose(props: SvgIconProps): react.JSX.Element;
|
|
3542
3562
|
|
|
3543
|
-
declare function Documentation(props: SvgIconProps):
|
|
3563
|
+
declare function Documentation(props: SvgIconProps): react.JSX.Element;
|
|
3544
3564
|
|
|
3545
|
-
declare function Dot(props: SvgIconProps):
|
|
3565
|
+
declare function Dot(props: SvgIconProps): react.JSX.Element;
|
|
3546
3566
|
|
|
3547
|
-
declare function DoubleArrowForward(props: SvgIconProps):
|
|
3567
|
+
declare function DoubleArrowForward(props: SvgIconProps): react.JSX.Element;
|
|
3548
3568
|
|
|
3549
|
-
declare function DownloadOutline(props: SvgIconProps):
|
|
3569
|
+
declare function DownloadOutline(props: SvgIconProps): react.JSX.Element;
|
|
3550
3570
|
|
|
3551
|
-
declare function Drag(props: SvgIconProps):
|
|
3571
|
+
declare function Drag(props: SvgIconProps): react.JSX.Element;
|
|
3552
3572
|
|
|
3553
|
-
declare function Duplicate(props: SvgIconProps):
|
|
3573
|
+
declare function Duplicate(props: SvgIconProps): react.JSX.Element;
|
|
3554
3574
|
|
|
3555
|
-
declare function EditOutline(props: SvgIconProps):
|
|
3575
|
+
declare function EditOutline(props: SvgIconProps): react.JSX.Element;
|
|
3556
3576
|
|
|
3557
|
-
declare function Encrypt(props: SvgIconProps):
|
|
3577
|
+
declare function Encrypt(props: SvgIconProps): react.JSX.Element;
|
|
3558
3578
|
|
|
3559
|
-
declare function Endpoint(props: SvgIconProps):
|
|
3579
|
+
declare function Endpoint(props: SvgIconProps): react.JSX.Element;
|
|
3560
3580
|
|
|
3561
|
-
declare function ErrorCircleOutline(props: SvgIconProps):
|
|
3581
|
+
declare function ErrorCircleOutline(props: SvgIconProps): react.JSX.Element;
|
|
3562
3582
|
|
|
3563
|
-
declare function Exchange(props: SvgIconProps):
|
|
3583
|
+
declare function Exchange(props: SvgIconProps): react.JSX.Element;
|
|
3564
3584
|
|
|
3565
|
-
declare function Exclamation(props: SvgIconProps):
|
|
3585
|
+
declare function Exclamation(props: SvgIconProps): react.JSX.Element;
|
|
3566
3586
|
|
|
3567
|
-
declare function Expand(props: SvgIconProps):
|
|
3587
|
+
declare function Expand(props: SvgIconProps): react.JSX.Element;
|
|
3568
3588
|
|
|
3569
|
-
declare function ExpandAll(props: SvgIconProps):
|
|
3589
|
+
declare function ExpandAll(props: SvgIconProps): react.JSX.Element;
|
|
3570
3590
|
|
|
3571
|
-
declare function Expansions(props: SvgIconProps):
|
|
3591
|
+
declare function Expansions(props: SvgIconProps): react.JSX.Element;
|
|
3572
3592
|
|
|
3573
|
-
declare function Export(props: SvgIconProps):
|
|
3593
|
+
declare function Export(props: SvgIconProps): react.JSX.Element;
|
|
3574
3594
|
|
|
3575
|
-
declare function Falcon(props: SvgIconProps):
|
|
3595
|
+
declare function Falcon(props: SvgIconProps): react.JSX.Element;
|
|
3576
3596
|
|
|
3577
|
-
declare function File$1(props: SvgIconProps):
|
|
3597
|
+
declare function File$1(props: SvgIconProps): react.JSX.Element;
|
|
3578
3598
|
|
|
3579
|
-
declare function Filter(props: SvgIconProps):
|
|
3599
|
+
declare function Filter(props: SvgIconProps): react.JSX.Element;
|
|
3580
3600
|
|
|
3581
|
-
declare function FilterOutline(props: SvgIconProps):
|
|
3601
|
+
declare function FilterOutline(props: SvgIconProps): react.JSX.Element;
|
|
3582
3602
|
|
|
3583
|
-
declare function Fingerprint(props: SvgIconProps):
|
|
3603
|
+
declare function Fingerprint(props: SvgIconProps): react.JSX.Element;
|
|
3584
3604
|
|
|
3585
|
-
declare function Folder(props: SvgIconProps):
|
|
3605
|
+
declare function Folder(props: SvgIconProps): react.JSX.Element;
|
|
3586
3606
|
|
|
3587
|
-
declare function Framework(props: SvgIconProps):
|
|
3607
|
+
declare function Framework(props: SvgIconProps): react.JSX.Element;
|
|
3588
3608
|
|
|
3589
|
-
declare function GCPCategoryAnalytics(props: SvgIconProps):
|
|
3609
|
+
declare function GCPCategoryAnalytics(props: SvgIconProps): react.JSX.Element;
|
|
3590
3610
|
|
|
3591
|
-
declare function GCPCategoryCompute(props: SvgIconProps):
|
|
3611
|
+
declare function GCPCategoryCompute(props: SvgIconProps): react.JSX.Element;
|
|
3592
3612
|
|
|
3593
|
-
declare function GCPCategoryContainers(props: SvgIconProps):
|
|
3613
|
+
declare function GCPCategoryContainers(props: SvgIconProps): react.JSX.Element;
|
|
3594
3614
|
|
|
3595
|
-
declare function GCPCategoryContainers1(props: SvgIconProps):
|
|
3615
|
+
declare function GCPCategoryContainers1(props: SvgIconProps): react.JSX.Element;
|
|
3596
3616
|
|
|
3597
|
-
declare function GCPCategoryIdentitySecurity(props: SvgIconProps):
|
|
3617
|
+
declare function GCPCategoryIdentitySecurity(props: SvgIconProps): react.JSX.Element;
|
|
3598
3618
|
|
|
3599
|
-
declare function GCPCategoryIdentitySecurity1(props: SvgIconProps):
|
|
3619
|
+
declare function GCPCategoryIdentitySecurity1(props: SvgIconProps): react.JSX.Element;
|
|
3600
3620
|
|
|
3601
|
-
declare function GCPCategoryMachineLearning(props: SvgIconProps):
|
|
3621
|
+
declare function GCPCategoryMachineLearning(props: SvgIconProps): react.JSX.Element;
|
|
3602
3622
|
|
|
3603
|
-
declare function GCPCategoryManagementGovernance(props: SvgIconProps):
|
|
3623
|
+
declare function GCPCategoryManagementGovernance(props: SvgIconProps): react.JSX.Element;
|
|
3604
3624
|
|
|
3605
|
-
declare function GCPCategoryMemoryStore(props: SvgIconProps):
|
|
3625
|
+
declare function GCPCategoryMemoryStore(props: SvgIconProps): react.JSX.Element;
|
|
3606
3626
|
|
|
3607
|
-
declare function GCPCategoryNetworking(props: SvgIconProps):
|
|
3627
|
+
declare function GCPCategoryNetworking(props: SvgIconProps): react.JSX.Element;
|
|
3608
3628
|
|
|
3609
|
-
declare function GCPCategoryNone(props: SvgIconProps):
|
|
3629
|
+
declare function GCPCategoryNone(props: SvgIconProps): react.JSX.Element;
|
|
3610
3630
|
|
|
3611
|
-
declare function GCPCategoryStorage(props: SvgIconProps):
|
|
3631
|
+
declare function GCPCategoryStorage(props: SvgIconProps): react.JSX.Element;
|
|
3612
3632
|
|
|
3613
|
-
declare function GCPCategoryUndefined(props: SvgIconProps):
|
|
3633
|
+
declare function GCPCategoryUndefined(props: SvgIconProps): react.JSX.Element;
|
|
3614
3634
|
|
|
3615
|
-
declare function GCPCategoryWebMobile(props: SvgIconProps):
|
|
3635
|
+
declare function GCPCategoryWebMobile(props: SvgIconProps): react.JSX.Element;
|
|
3616
3636
|
|
|
3617
|
-
declare function GCPIcon(props: SvgIconProps):
|
|
3637
|
+
declare function GCPIcon(props: SvgIconProps): react.JSX.Element;
|
|
3618
3638
|
|
|
3619
|
-
declare function GCPServicesApigeeAPIPlatform(props: SvgIconProps):
|
|
3639
|
+
declare function GCPServicesApigeeAPIPlatform(props: SvgIconProps): react.JSX.Element;
|
|
3620
3640
|
|
|
3621
|
-
declare function GCPServicesAppEngine(props: SvgIconProps):
|
|
3641
|
+
declare function GCPServicesAppEngine(props: SvgIconProps): react.JSX.Element;
|
|
3622
3642
|
|
|
3623
|
-
declare function GCPServicesBigquery(props: SvgIconProps):
|
|
3643
|
+
declare function GCPServicesBigquery(props: SvgIconProps): react.JSX.Element;
|
|
3624
3644
|
|
|
3625
|
-
declare function GCPServicesCloudLoadBalancing(props: SvgIconProps):
|
|
3645
|
+
declare function GCPServicesCloudLoadBalancing(props: SvgIconProps): react.JSX.Element;
|
|
3626
3646
|
|
|
3627
|
-
declare function GCPServicesCloudStorage(props: SvgIconProps):
|
|
3647
|
+
declare function GCPServicesCloudStorage(props: SvgIconProps): react.JSX.Element;
|
|
3628
3648
|
|
|
3629
|
-
declare function GCPServicesCloudAPIGateway(props: SvgIconProps):
|
|
3649
|
+
declare function GCPServicesCloudAPIGateway(props: SvgIconProps): react.JSX.Element;
|
|
3630
3650
|
|
|
3631
|
-
declare function GCPServicesCloudBuild(props: SvgIconProps):
|
|
3651
|
+
declare function GCPServicesCloudBuild(props: SvgIconProps): react.JSX.Element;
|
|
3632
3652
|
|
|
3633
|
-
declare function GCPServicesCloudCDN(props: SvgIconProps):
|
|
3653
|
+
declare function GCPServicesCloudCDN(props: SvgIconProps): react.JSX.Element;
|
|
3634
3654
|
|
|
3635
|
-
declare function GCPServicesCloudDNS(props: SvgIconProps):
|
|
3655
|
+
declare function GCPServicesCloudDNS(props: SvgIconProps): react.JSX.Element;
|
|
3636
3656
|
|
|
3637
|
-
declare function GCPServicesCloudLogging(props: SvgIconProps):
|
|
3657
|
+
declare function GCPServicesCloudLogging(props: SvgIconProps): react.JSX.Element;
|
|
3638
3658
|
|
|
3639
|
-
declare function GCPServicesCloudMonitoring(props: SvgIconProps):
|
|
3659
|
+
declare function GCPServicesCloudMonitoring(props: SvgIconProps): react.JSX.Element;
|
|
3640
3660
|
|
|
3641
|
-
declare function GCPServicesCloudRun(props: SvgIconProps):
|
|
3661
|
+
declare function GCPServicesCloudRun(props: SvgIconProps): react.JSX.Element;
|
|
3642
3662
|
|
|
3643
|
-
declare function GCPServicesCloudStorage2(props: SvgIconProps):
|
|
3663
|
+
declare function GCPServicesCloudStorage2(props: SvgIconProps): react.JSX.Element;
|
|
3644
3664
|
|
|
3645
|
-
declare function GCPServicesComputeImage(props: SvgIconProps):
|
|
3665
|
+
declare function GCPServicesComputeImage(props: SvgIconProps): react.JSX.Element;
|
|
3646
3666
|
|
|
3647
|
-
declare function GCPServicesComputeEngine(props: SvgIconProps):
|
|
3667
|
+
declare function GCPServicesComputeEngine(props: SvgIconProps): react.JSX.Element;
|
|
3648
3668
|
|
|
3649
|
-
declare function GCPServicesContainerRegistry(props: SvgIconProps):
|
|
3669
|
+
declare function GCPServicesContainerRegistry(props: SvgIconProps): react.JSX.Element;
|
|
3650
3670
|
|
|
3651
|
-
declare function GCPServicesDataflow(props: SvgIconProps):
|
|
3671
|
+
declare function GCPServicesDataflow(props: SvgIconProps): react.JSX.Element;
|
|
3652
3672
|
|
|
3653
|
-
declare function GCPServicesDataproc(props: SvgIconProps):
|
|
3673
|
+
declare function GCPServicesDataproc(props: SvgIconProps): react.JSX.Element;
|
|
3654
3674
|
|
|
3655
|
-
declare function GCPServicesDisks(props: SvgIconProps):
|
|
3675
|
+
declare function GCPServicesDisks(props: SvgIconProps): react.JSX.Element;
|
|
3656
3676
|
|
|
3657
|
-
declare function GCPServicesDockerImage(props: SvgIconProps):
|
|
3677
|
+
declare function GCPServicesDockerImage(props: SvgIconProps): react.JSX.Element;
|
|
3658
3678
|
|
|
3659
|
-
declare function GCPServicesGKENodePool(props: SvgIconProps):
|
|
3679
|
+
declare function GCPServicesGKENodePool(props: SvgIconProps): react.JSX.Element;
|
|
3660
3680
|
|
|
3661
|
-
declare function GCPServicesGKE(props: SvgIconProps):
|
|
3681
|
+
declare function GCPServicesGKE(props: SvgIconProps): react.JSX.Element;
|
|
3662
3682
|
|
|
3663
|
-
declare function GCPServicesIAMPrincipal(props: SvgIconProps):
|
|
3683
|
+
declare function GCPServicesIAMPrincipal(props: SvgIconProps): react.JSX.Element;
|
|
3664
3684
|
|
|
3665
|
-
declare function GCPServicesIAMRoles(props: SvgIconProps):
|
|
3685
|
+
declare function GCPServicesIAMRoles(props: SvgIconProps): react.JSX.Element;
|
|
3666
3686
|
|
|
3667
|
-
declare function GCPServicesIdentityAndAccessManagement(props: SvgIconProps):
|
|
3687
|
+
declare function GCPServicesIdentityAndAccessManagement(props: SvgIconProps): react.JSX.Element;
|
|
3668
3688
|
|
|
3669
|
-
declare function GCPServicesInstanceGroup(props: SvgIconProps):
|
|
3689
|
+
declare function GCPServicesInstanceGroup(props: SvgIconProps): react.JSX.Element;
|
|
3670
3690
|
|
|
3671
|
-
declare function GCPServicesKMSKey(props: SvgIconProps):
|
|
3691
|
+
declare function GCPServicesKMSKey(props: SvgIconProps): react.JSX.Element;
|
|
3672
3692
|
|
|
3673
|
-
declare function GCPServicesManagedInstanceGroup(props: SvgIconProps):
|
|
3693
|
+
declare function GCPServicesManagedInstanceGroup(props: SvgIconProps): react.JSX.Element;
|
|
3674
3694
|
|
|
3675
|
-
declare function GCPServicesNetworkEndpointGroup(props: SvgIconProps):
|
|
3695
|
+
declare function GCPServicesNetworkEndpointGroup(props: SvgIconProps): react.JSX.Element;
|
|
3676
3696
|
|
|
3677
|
-
declare function GCPServicesNetworkFirewall(props: SvgIconProps):
|
|
3697
|
+
declare function GCPServicesNetworkFirewall(props: SvgIconProps): react.JSX.Element;
|
|
3678
3698
|
|
|
3679
|
-
declare function GCPServicesPubsub(props: SvgIconProps):
|
|
3699
|
+
declare function GCPServicesPubsub(props: SvgIconProps): react.JSX.Element;
|
|
3680
3700
|
|
|
3681
|
-
declare function GCPServicesSQLDatabase(props: SvgIconProps):
|
|
3701
|
+
declare function GCPServicesSQLDatabase(props: SvgIconProps): react.JSX.Element;
|
|
3682
3702
|
|
|
3683
|
-
declare function GCPServicesSecretManager(props: SvgIconProps):
|
|
3703
|
+
declare function GCPServicesSecretManager(props: SvgIconProps): react.JSX.Element;
|
|
3684
3704
|
|
|
3685
|
-
declare function GCPServicesSecurityCenter(props: SvgIconProps):
|
|
3705
|
+
declare function GCPServicesSecurityCenter(props: SvgIconProps): react.JSX.Element;
|
|
3686
3706
|
|
|
3687
|
-
declare function GCPServicesServiceAccount(props: SvgIconProps):
|
|
3707
|
+
declare function GCPServicesServiceAccount(props: SvgIconProps): react.JSX.Element;
|
|
3688
3708
|
|
|
3689
|
-
declare function GCPServicesStorageBucket(props: SvgIconProps):
|
|
3709
|
+
declare function GCPServicesStorageBucket(props: SvgIconProps): react.JSX.Element;
|
|
3690
3710
|
|
|
3691
|
-
declare function GCPServicesTargetInstance(props: SvgIconProps):
|
|
3711
|
+
declare function GCPServicesTargetInstance(props: SvgIconProps): react.JSX.Element;
|
|
3692
3712
|
|
|
3693
|
-
declare function GCPServicesTargetPool(props: SvgIconProps):
|
|
3713
|
+
declare function GCPServicesTargetPool(props: SvgIconProps): react.JSX.Element;
|
|
3694
3714
|
|
|
3695
|
-
declare function GCPServicesTargetPool1(props: SvgIconProps):
|
|
3715
|
+
declare function GCPServicesTargetPool1(props: SvgIconProps): react.JSX.Element;
|
|
3696
3716
|
|
|
3697
|
-
declare function GCPServicesUnknown(props: SvgIconProps):
|
|
3717
|
+
declare function GCPServicesUnknown(props: SvgIconProps): react.JSX.Element;
|
|
3698
3718
|
|
|
3699
|
-
declare function GCPServicesVault(props: SvgIconProps):
|
|
3719
|
+
declare function GCPServicesVault(props: SvgIconProps): react.JSX.Element;
|
|
3700
3720
|
|
|
3701
|
-
declare function GCPServicesVertexAI(props: SvgIconProps):
|
|
3721
|
+
declare function GCPServicesVertexAI(props: SvgIconProps): react.JSX.Element;
|
|
3702
3722
|
|
|
3703
|
-
declare function GCPServicesVirtualPrivateCloud(props: SvgIconProps):
|
|
3723
|
+
declare function GCPServicesVirtualPrivateCloud(props: SvgIconProps): react.JSX.Element;
|
|
3704
3724
|
|
|
3705
|
-
declare function GCPServicesVirtualPrivateCloud1(props: SvgIconProps):
|
|
3725
|
+
declare function GCPServicesVirtualPrivateCloud1(props: SvgIconProps): react.JSX.Element;
|
|
3706
3726
|
|
|
3707
|
-
declare function GCPServicesBigtable(props: SvgIconProps):
|
|
3727
|
+
declare function GCPServicesBigtable(props: SvgIconProps): react.JSX.Element;
|
|
3708
3728
|
|
|
3709
|
-
declare function GCPServicesCloudSql(props: SvgIconProps):
|
|
3729
|
+
declare function GCPServicesCloudSql(props: SvgIconProps): react.JSX.Element;
|
|
3710
3730
|
|
|
3711
|
-
declare function GCPServicesFilestore(props: SvgIconProps):
|
|
3731
|
+
declare function GCPServicesFilestore(props: SvgIconProps): react.JSX.Element;
|
|
3712
3732
|
|
|
3713
|
-
declare function GCPServicesFirestore(props: SvgIconProps):
|
|
3733
|
+
declare function GCPServicesFirestore(props: SvgIconProps): react.JSX.Element;
|
|
3714
3734
|
|
|
3715
|
-
declare function GCPServicesLoadBalancer(props: SvgIconProps):
|
|
3735
|
+
declare function GCPServicesLoadBalancer(props: SvgIconProps): react.JSX.Element;
|
|
3716
3736
|
|
|
3717
|
-
declare function GCPServicesLocalSSD(props: SvgIconProps):
|
|
3737
|
+
declare function GCPServicesLocalSSD(props: SvgIconProps): react.JSX.Element;
|
|
3718
3738
|
|
|
3719
|
-
declare function GCPServicesProject(props: SvgIconProps):
|
|
3739
|
+
declare function GCPServicesProject(props: SvgIconProps): react.JSX.Element;
|
|
3720
3740
|
|
|
3721
|
-
declare function Github(props: SvgIconProps):
|
|
3741
|
+
declare function Github(props: SvgIconProps): react.JSX.Element;
|
|
3722
3742
|
|
|
3723
|
-
declare function GitHubGroupAsset(props: SvgIconProps):
|
|
3743
|
+
declare function GitHubGroupAsset(props: SvgIconProps): react.JSX.Element;
|
|
3724
3744
|
|
|
3725
|
-
declare function GitHubRepoAsset(props: SvgIconProps):
|
|
3745
|
+
declare function GitHubRepoAsset(props: SvgIconProps): react.JSX.Element;
|
|
3726
3746
|
|
|
3727
|
-
declare function Gitlab(props: SvgIconProps):
|
|
3747
|
+
declare function Gitlab(props: SvgIconProps): react.JSX.Element;
|
|
3728
3748
|
|
|
3729
|
-
declare function GitlabColor(props: SvgIconProps):
|
|
3749
|
+
declare function GitlabColor(props: SvgIconProps): react.JSX.Element;
|
|
3730
3750
|
|
|
3731
|
-
declare function GitLabGroupAsset(props: SvgIconProps):
|
|
3751
|
+
declare function GitLabGroupAsset(props: SvgIconProps): react.JSX.Element;
|
|
3732
3752
|
|
|
3733
|
-
declare function GitLabRepoAsset(props: SvgIconProps):
|
|
3753
|
+
declare function GitLabRepoAsset(props: SvgIconProps): react.JSX.Element;
|
|
3734
3754
|
|
|
3735
|
-
declare function Group(props: SvgIconProps):
|
|
3755
|
+
declare function Group(props: SvgIconProps): react.JSX.Element;
|
|
3736
3756
|
|
|
3737
|
-
declare function GuardDuty(props: SvgIconProps):
|
|
3757
|
+
declare function GuardDuty(props: SvgIconProps): react.JSX.Element;
|
|
3738
3758
|
|
|
3739
|
-
declare function Health(props: SvgIconProps):
|
|
3759
|
+
declare function Health(props: SvgIconProps): react.JSX.Element;
|
|
3740
3760
|
|
|
3741
|
-
declare function Helm(props: SvgIconProps):
|
|
3761
|
+
declare function Helm(props: SvgIconProps): react.JSX.Element;
|
|
3742
3762
|
|
|
3743
|
-
declare function HideOutline(props: SvgIconProps):
|
|
3763
|
+
declare function HideOutline(props: SvgIconProps): react.JSX.Element;
|
|
3744
3764
|
|
|
3745
|
-
declare function IACSecurity(props: SvgIconProps):
|
|
3765
|
+
declare function IACSecurity(props: SvgIconProps): react.JSX.Element;
|
|
3746
3766
|
|
|
3747
|
-
declare function ImageValid(props: SvgIconProps):
|
|
3767
|
+
declare function ImageValid(props: SvgIconProps): react.JSX.Element;
|
|
3748
3768
|
|
|
3749
|
-
declare function Info$1(props: SvgIconProps):
|
|
3769
|
+
declare function Info$1(props: SvgIconProps): react.JSX.Element;
|
|
3750
3770
|
|
|
3751
|
-
declare function InfoBold(props: SvgIconProps):
|
|
3771
|
+
declare function InfoBold(props: SvgIconProps): react.JSX.Element;
|
|
3752
3772
|
|
|
3753
|
-
declare function InfoCircleOutline(props: SvgIconProps):
|
|
3773
|
+
declare function InfoCircleOutline(props: SvgIconProps): react.JSX.Element;
|
|
3754
3774
|
|
|
3755
|
-
declare function InlineV(props: SvgIconProps):
|
|
3775
|
+
declare function InlineV(props: SvgIconProps): react.JSX.Element;
|
|
3756
3776
|
|
|
3757
|
-
declare function InlineX(props: SvgIconProps):
|
|
3777
|
+
declare function InlineX(props: SvgIconProps): react.JSX.Element;
|
|
3758
3778
|
|
|
3759
|
-
declare const InsecureConfiguration: (props: SvgIconProps) =>
|
|
3779
|
+
declare const InsecureConfiguration: (props: SvgIconProps) => react.JSX.Element;
|
|
3760
3780
|
|
|
3761
|
-
declare function Insights(props: SvgIconProps):
|
|
3781
|
+
declare function Insights(props: SvgIconProps): react.JSX.Element;
|
|
3762
3782
|
|
|
3763
|
-
declare function InternetScanner(props: SvgIconProps):
|
|
3783
|
+
declare function InternetScanner(props: SvgIconProps): react.JSX.Element;
|
|
3764
3784
|
|
|
3765
|
-
declare function Jira(props: SvgIconProps):
|
|
3785
|
+
declare function Jira(props: SvgIconProps): react.JSX.Element;
|
|
3766
3786
|
|
|
3767
|
-
declare function JiraBlue(props: SvgIconProps):
|
|
3787
|
+
declare function JiraBlue(props: SvgIconProps): react.JSX.Element;
|
|
3768
3788
|
|
|
3769
|
-
declare function KeyboardArrowDown(props: SvgIconProps):
|
|
3789
|
+
declare function KeyboardArrowDown(props: SvgIconProps): react.JSX.Element;
|
|
3770
3790
|
|
|
3771
|
-
declare function KeyboardArrowLeft(props: SvgIconProps):
|
|
3791
|
+
declare function KeyboardArrowLeft(props: SvgIconProps): react.JSX.Element;
|
|
3772
3792
|
|
|
3773
|
-
declare function KeyboardArrowRight(props: SvgIconProps):
|
|
3793
|
+
declare function KeyboardArrowRight(props: SvgIconProps): react.JSX.Element;
|
|
3774
3794
|
|
|
3775
|
-
declare function KeyboardArrowUp(props: SvgIconProps):
|
|
3795
|
+
declare function KeyboardArrowUp(props: SvgIconProps): react.JSX.Element;
|
|
3776
3796
|
|
|
3777
|
-
declare function KUBEIcon(props: SvgIconProps):
|
|
3797
|
+
declare function KUBEIcon(props: SvgIconProps): react.JSX.Element;
|
|
3778
3798
|
|
|
3779
|
-
declare function Kubernetes$1(props: SvgIconProps):
|
|
3799
|
+
declare function Kubernetes$1(props: SvgIconProps): react.JSX.Element;
|
|
3780
3800
|
|
|
3781
|
-
declare function KubernetesCategoryCompute(props: SvgIconProps):
|
|
3801
|
+
declare function KubernetesCategoryCompute(props: SvgIconProps): react.JSX.Element;
|
|
3782
3802
|
|
|
3783
|
-
declare function KubernetesCategoryIdentitySecurity(props: SvgIconProps):
|
|
3803
|
+
declare function KubernetesCategoryIdentitySecurity(props: SvgIconProps): react.JSX.Element;
|
|
3784
3804
|
|
|
3785
|
-
declare function KubernetesCategoryManagementGovernance(props: SvgIconProps):
|
|
3805
|
+
declare function KubernetesCategoryManagementGovernance(props: SvgIconProps): react.JSX.Element;
|
|
3786
3806
|
|
|
3787
|
-
declare function KubernetesCategoryNetworking(props: SvgIconProps):
|
|
3807
|
+
declare function KubernetesCategoryNetworking(props: SvgIconProps): react.JSX.Element;
|
|
3788
3808
|
|
|
3789
|
-
declare function KubernetesCategoryNone(props: SvgIconProps):
|
|
3809
|
+
declare function KubernetesCategoryNone(props: SvgIconProps): react.JSX.Element;
|
|
3790
3810
|
|
|
3791
|
-
declare function KubernetesCategoryStorage(props: SvgIconProps):
|
|
3811
|
+
declare function KubernetesCategoryStorage(props: SvgIconProps): react.JSX.Element;
|
|
3792
3812
|
|
|
3793
|
-
declare function KubernetesIcon(props: SvgIconProps):
|
|
3813
|
+
declare function KubernetesIcon(props: SvgIconProps): react.JSX.Element;
|
|
3794
3814
|
|
|
3795
|
-
declare function KubernetesServicesClusterRoleBinding(props: SvgIconProps):
|
|
3815
|
+
declare function KubernetesServicesClusterRoleBinding(props: SvgIconProps): react.JSX.Element;
|
|
3796
3816
|
|
|
3797
|
-
declare function KubernetesServicesClusterRole(props: SvgIconProps):
|
|
3817
|
+
declare function KubernetesServicesClusterRole(props: SvgIconProps): react.JSX.Element;
|
|
3798
3818
|
|
|
3799
|
-
declare function KubernetesServicesCluster(props: SvgIconProps):
|
|
3819
|
+
declare function KubernetesServicesCluster(props: SvgIconProps): react.JSX.Element;
|
|
3800
3820
|
|
|
3801
|
-
declare function KubernetesServicesConfigMap(props: SvgIconProps):
|
|
3821
|
+
declare function KubernetesServicesConfigMap(props: SvgIconProps): react.JSX.Element;
|
|
3802
3822
|
|
|
3803
|
-
declare function KubernetesServicesDaemonSet(props: SvgIconProps):
|
|
3823
|
+
declare function KubernetesServicesDaemonSet(props: SvgIconProps): react.JSX.Element;
|
|
3804
3824
|
|
|
3805
|
-
declare function KubernetesServicesDeployment(props: SvgIconProps):
|
|
3825
|
+
declare function KubernetesServicesDeployment(props: SvgIconProps): react.JSX.Element;
|
|
3806
3826
|
|
|
3807
|
-
declare function KubernetesServicesDockerImage(props: SvgIconProps):
|
|
3827
|
+
declare function KubernetesServicesDockerImage(props: SvgIconProps): react.JSX.Element;
|
|
3808
3828
|
|
|
3809
|
-
declare function KubernetesServicesEndpoint(props: SvgIconProps):
|
|
3829
|
+
declare function KubernetesServicesEndpoint(props: SvgIconProps): react.JSX.Element;
|
|
3810
3830
|
|
|
3811
|
-
declare function KubernetesServicesK8Service(props: SvgIconProps):
|
|
3831
|
+
declare function KubernetesServicesK8Service(props: SvgIconProps): react.JSX.Element;
|
|
3812
3832
|
|
|
3813
|
-
declare function KubernetesServicesNamespace(props: SvgIconProps):
|
|
3833
|
+
declare function KubernetesServicesNamespace(props: SvgIconProps): react.JSX.Element;
|
|
3814
3834
|
|
|
3815
|
-
declare function KubernetesServicesNetworkPolicy(props: SvgIconProps):
|
|
3835
|
+
declare function KubernetesServicesNetworkPolicy(props: SvgIconProps): react.JSX.Element;
|
|
3816
3836
|
|
|
3817
|
-
declare function KubernetesServicesNode(props: SvgIconProps):
|
|
3837
|
+
declare function KubernetesServicesNode(props: SvgIconProps): react.JSX.Element;
|
|
3818
3838
|
|
|
3819
|
-
declare function KubernetesServicesPod(props: SvgIconProps):
|
|
3839
|
+
declare function KubernetesServicesPod(props: SvgIconProps): react.JSX.Element;
|
|
3820
3840
|
|
|
3821
|
-
declare function KubernetesServicesReplicaSet(props: SvgIconProps):
|
|
3841
|
+
declare function KubernetesServicesReplicaSet(props: SvgIconProps): react.JSX.Element;
|
|
3822
3842
|
|
|
3823
|
-
declare function KubernetesServicesRoleBinding(props: SvgIconProps):
|
|
3843
|
+
declare function KubernetesServicesRoleBinding(props: SvgIconProps): react.JSX.Element;
|
|
3824
3844
|
|
|
3825
|
-
declare function KubernetesServicesRole(props: SvgIconProps):
|
|
3845
|
+
declare function KubernetesServicesRole(props: SvgIconProps): react.JSX.Element;
|
|
3826
3846
|
|
|
3827
|
-
declare function KubernetesServicesServiceAccount(props: SvgIconProps):
|
|
3847
|
+
declare function KubernetesServicesServiceAccount(props: SvgIconProps): react.JSX.Element;
|
|
3828
3848
|
|
|
3829
|
-
declare function KubernetesServicesStatefulSet(props: SvgIconProps):
|
|
3849
|
+
declare function KubernetesServicesStatefulSet(props: SvgIconProps): react.JSX.Element;
|
|
3830
3850
|
|
|
3831
|
-
declare function KubernetesServicesUnknown(props: SvgIconProps):
|
|
3851
|
+
declare function KubernetesServicesUnknown(props: SvgIconProps): react.JSX.Element;
|
|
3832
3852
|
|
|
3833
|
-
declare function Legend(props: SvgIconProps):
|
|
3853
|
+
declare function Legend(props: SvgIconProps): react.JSX.Element;
|
|
3834
3854
|
|
|
3835
|
-
declare function Link(props: SvgIconProps):
|
|
3855
|
+
declare function Link(props: SvgIconProps): react.JSX.Element;
|
|
3836
3856
|
|
|
3837
|
-
declare function List(props: SvgIconProps):
|
|
3857
|
+
declare function List(props: SvgIconProps): react.JSX.Element;
|
|
3838
3858
|
|
|
3839
|
-
declare function Loading(props: SvgIconProps):
|
|
3859
|
+
declare function Loading(props: SvgIconProps): react.JSX.Element;
|
|
3840
3860
|
|
|
3841
|
-
declare function LockOff(props: SvgIconProps):
|
|
3861
|
+
declare function LockOff(props: SvgIconProps): react.JSX.Element;
|
|
3842
3862
|
|
|
3843
|
-
declare function LockOutline(props: SvgIconProps):
|
|
3863
|
+
declare function LockOutline(props: SvgIconProps): react.JSX.Element;
|
|
3844
3864
|
|
|
3845
|
-
declare function Logout(props: SvgIconProps):
|
|
3865
|
+
declare function Logout(props: SvgIconProps): react.JSX.Element;
|
|
3846
3866
|
|
|
3847
|
-
declare const MFEVersionsIconUnSelected: (props: SvgIconProps) =>
|
|
3848
|
-
declare const MFEVersionsIconSelected: (props: SvgIconProps) =>
|
|
3849
|
-
declare const MFEVersionsIconDisabled: (props: SvgIconProps) =>
|
|
3867
|
+
declare const MFEVersionsIconUnSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
3868
|
+
declare const MFEVersionsIconSelected: (props: SvgIconProps) => react.JSX.Element;
|
|
3869
|
+
declare const MFEVersionsIconDisabled: (props: SvgIconProps) => react.JSX.Element;
|
|
3850
3870
|
|
|
3851
|
-
declare function MalwareIcon(props: SvgIconProps):
|
|
3871
|
+
declare function MalwareIcon(props: SvgIconProps): react.JSX.Element;
|
|
3852
3872
|
|
|
3853
|
-
declare function ManageColumns(props: SvgIconProps):
|
|
3873
|
+
declare function ManageColumns(props: SvgIconProps): react.JSX.Element;
|
|
3854
3874
|
|
|
3855
|
-
declare function ManualDataLabeling(props: SvgIconProps):
|
|
3875
|
+
declare function ManualDataLabeling(props: SvgIconProps): react.JSX.Element;
|
|
3856
3876
|
|
|
3857
|
-
declare function Mcd(props: SvgIconProps):
|
|
3877
|
+
declare function Mcd(props: SvgIconProps): react.JSX.Element;
|
|
3858
3878
|
|
|
3859
|
-
declare function McdGateway(props: SvgIconProps):
|
|
3879
|
+
declare function McdGateway(props: SvgIconProps): react.JSX.Element;
|
|
3860
3880
|
|
|
3861
|
-
declare function Merge(props: SvgIconProps):
|
|
3881
|
+
declare function Merge(props: SvgIconProps): react.JSX.Element;
|
|
3862
3882
|
|
|
3863
|
-
declare function MergeCircle(props: SvgIconProps):
|
|
3883
|
+
declare function MergeCircle(props: SvgIconProps): react.JSX.Element;
|
|
3864
3884
|
|
|
3865
|
-
declare function MinusBold(props: SvgIconProps):
|
|
3885
|
+
declare function MinusBold(props: SvgIconProps): react.JSX.Element;
|
|
3866
3886
|
|
|
3867
|
-
declare function MoveTop(props: SvgIconProps):
|
|
3887
|
+
declare function MoveTop(props: SvgIconProps): react.JSX.Element;
|
|
3868
3888
|
|
|
3869
|
-
declare function Namespace(props: SvgIconProps):
|
|
3889
|
+
declare function Namespace(props: SvgIconProps): react.JSX.Element;
|
|
3870
3890
|
|
|
3871
|
-
declare const NeglectedResource: (props: SvgIconProps) =>
|
|
3891
|
+
declare const NeglectedResource: (props: SvgIconProps) => react.JSX.Element;
|
|
3872
3892
|
|
|
3873
|
-
declare function Network(props: SvgIconProps):
|
|
3893
|
+
declare function Network(props: SvgIconProps): react.JSX.Element;
|
|
3874
3894
|
|
|
3875
|
-
declare function Node(props: SvgIconProps):
|
|
3895
|
+
declare function Node(props: SvgIconProps): react.JSX.Element;
|
|
3876
3896
|
|
|
3877
|
-
declare function Notifications(props: SvgIconProps):
|
|
3897
|
+
declare function Notifications(props: SvgIconProps): react.JSX.Element;
|
|
3878
3898
|
|
|
3879
|
-
declare function OCIIcon(props: SvgIconProps):
|
|
3899
|
+
declare function OCIIcon(props: SvgIconProps): react.JSX.Element;
|
|
3880
3900
|
|
|
3881
|
-
declare function OpenAPI(props: SvgIconProps):
|
|
3901
|
+
declare function OpenAPI(props: SvgIconProps): react.JSX.Element;
|
|
3882
3902
|
|
|
3883
|
-
declare const PAOpenInFull: (props: SvgIconProps) =>
|
|
3903
|
+
declare const PAOpenInFull: (props: SvgIconProps) => react.JSX.Element;
|
|
3884
3904
|
|
|
3885
|
-
declare function OpenInNewTab(props: SvgIconProps):
|
|
3905
|
+
declare function OpenInNewTab(props: SvgIconProps): react.JSX.Element;
|
|
3886
3906
|
|
|
3887
|
-
declare function OpenPage(props: SvgIconProps):
|
|
3907
|
+
declare function OpenPage(props: SvgIconProps): react.JSX.Element;
|
|
3888
3908
|
|
|
3889
|
-
declare function OpenPort(props: SvgIconProps):
|
|
3909
|
+
declare function OpenPort(props: SvgIconProps): react.JSX.Element;
|
|
3890
3910
|
|
|
3891
|
-
declare function OracleCategoryCompute(props: SvgIconProps):
|
|
3911
|
+
declare function OracleCategoryCompute(props: SvgIconProps): react.JSX.Element;
|
|
3892
3912
|
|
|
3893
|
-
declare function OracleCategoryDeveloperServices(props: SvgIconProps):
|
|
3913
|
+
declare function OracleCategoryDeveloperServices(props: SvgIconProps): react.JSX.Element;
|
|
3894
3914
|
|
|
3895
|
-
declare function OracleCategoryIdentitySecurity(props: SvgIconProps):
|
|
3915
|
+
declare function OracleCategoryIdentitySecurity(props: SvgIconProps): react.JSX.Element;
|
|
3896
3916
|
|
|
3897
|
-
declare function OracleCategoryNetworking(props: SvgIconProps):
|
|
3917
|
+
declare function OracleCategoryNetworking(props: SvgIconProps): react.JSX.Element;
|
|
3898
3918
|
|
|
3899
|
-
declare function OracleCategoryNone(props: SvgIconProps):
|
|
3919
|
+
declare function OracleCategoryNone(props: SvgIconProps): react.JSX.Element;
|
|
3900
3920
|
|
|
3901
|
-
declare function OracleCategoryStorage(props: SvgIconProps):
|
|
3921
|
+
declare function OracleCategoryStorage(props: SvgIconProps): react.JSX.Element;
|
|
3902
3922
|
|
|
3903
|
-
declare function OracleIcon(props: SvgIconProps):
|
|
3923
|
+
declare function OracleIcon(props: SvgIconProps): react.JSX.Element;
|
|
3904
3924
|
|
|
3905
|
-
declare function OracleServicesCompartment(props: SvgIconProps):
|
|
3925
|
+
declare function OracleServicesCompartment(props: SvgIconProps): react.JSX.Element;
|
|
3906
3926
|
|
|
3907
|
-
declare function OracleServicesDynamicGroups(props: SvgIconProps):
|
|
3927
|
+
declare function OracleServicesDynamicGroups(props: SvgIconProps): react.JSX.Element;
|
|
3908
3928
|
|
|
3909
|
-
declare function OracleServicesGroup(props: SvgIconProps):
|
|
3929
|
+
declare function OracleServicesGroup(props: SvgIconProps): react.JSX.Element;
|
|
3910
3930
|
|
|
3911
|
-
declare function OracleServicesIdentityDomain(props: SvgIconProps):
|
|
3931
|
+
declare function OracleServicesIdentityDomain(props: SvgIconProps): react.JSX.Element;
|
|
3912
3932
|
|
|
3913
|
-
declare function OracleServicesInternetGateway(props: SvgIconProps):
|
|
3933
|
+
declare function OracleServicesInternetGateway(props: SvgIconProps): react.JSX.Element;
|
|
3914
3934
|
|
|
3915
|
-
declare function OracleServicesNetworkLoadBalancer(props: SvgIconProps):
|
|
3935
|
+
declare function OracleServicesNetworkLoadBalancer(props: SvgIconProps): react.JSX.Element;
|
|
3916
3936
|
|
|
3917
|
-
declare function OracleServicesNetworkSecurityGroup(props: SvgIconProps):
|
|
3937
|
+
declare function OracleServicesNetworkSecurityGroup(props: SvgIconProps): react.JSX.Element;
|
|
3918
3938
|
|
|
3919
|
-
declare function OracleServicesObjectStorage(props: SvgIconProps):
|
|
3939
|
+
declare function OracleServicesObjectStorage(props: SvgIconProps): react.JSX.Element;
|
|
3920
3940
|
|
|
3921
|
-
declare function OracleServicesOracleInstance(props: SvgIconProps):
|
|
3941
|
+
declare function OracleServicesOracleInstance(props: SvgIconProps): react.JSX.Element;
|
|
3922
3942
|
|
|
3923
|
-
declare function OracleServicesPolicy(props: SvgIconProps):
|
|
3943
|
+
declare function OracleServicesPolicy(props: SvgIconProps): react.JSX.Element;
|
|
3924
3944
|
|
|
3925
|
-
declare function OracleServicesPublicIP(props: SvgIconProps):
|
|
3945
|
+
declare function OracleServicesPublicIP(props: SvgIconProps): react.JSX.Element;
|
|
3926
3946
|
|
|
3927
|
-
declare function OracleServicesSecurityLists(props: SvgIconProps):
|
|
3947
|
+
declare function OracleServicesSecurityLists(props: SvgIconProps): react.JSX.Element;
|
|
3928
3948
|
|
|
3929
|
-
declare function OracleServicesSubnet(props: SvgIconProps):
|
|
3949
|
+
declare function OracleServicesSubnet(props: SvgIconProps): react.JSX.Element;
|
|
3930
3950
|
|
|
3931
|
-
declare function OracleServicesUser(props: SvgIconProps):
|
|
3951
|
+
declare function OracleServicesUser(props: SvgIconProps): react.JSX.Element;
|
|
3932
3952
|
|
|
3933
|
-
declare function OracleServicesVirtualNetwork(props: SvgIconProps):
|
|
3953
|
+
declare function OracleServicesVirtualNetwork(props: SvgIconProps): react.JSX.Element;
|
|
3934
3954
|
|
|
3935
|
-
declare function Packages(props: SvgIconProps):
|
|
3955
|
+
declare function Packages(props: SvgIconProps): react.JSX.Element;
|
|
3936
3956
|
|
|
3937
|
-
declare function Password(props: SvgIconProps):
|
|
3957
|
+
declare function Password(props: SvgIconProps): react.JSX.Element;
|
|
3938
3958
|
|
|
3939
|
-
declare function Permissions(props: SvgIconProps):
|
|
3959
|
+
declare function Permissions(props: SvgIconProps): react.JSX.Element;
|
|
3940
3960
|
|
|
3941
|
-
declare function PlusBold(props: SvgIconProps):
|
|
3961
|
+
declare function PlusBold(props: SvgIconProps): react.JSX.Element;
|
|
3942
3962
|
|
|
3943
|
-
declare function PolicyAutomated(props: SvgIconProps):
|
|
3963
|
+
declare function PolicyAutomated(props: SvgIconProps): react.JSX.Element;
|
|
3944
3964
|
|
|
3945
|
-
declare function PolicySecret(props: SvgIconProps):
|
|
3965
|
+
declare function PolicySecret(props: SvgIconProps): react.JSX.Element;
|
|
3946
3966
|
|
|
3947
|
-
declare function PolicyVersion(props: SvgIconProps):
|
|
3967
|
+
declare function PolicyVersion(props: SvgIconProps): react.JSX.Element;
|
|
3948
3968
|
|
|
3949
|
-
declare function Preview(props: SvgIconProps):
|
|
3969
|
+
declare function Preview(props: SvgIconProps): react.JSX.Element;
|
|
3950
3970
|
|
|
3951
|
-
declare function PrivateIP(props: SvgIconProps):
|
|
3971
|
+
declare function PrivateIP(props: SvgIconProps): react.JSX.Element;
|
|
3952
3972
|
|
|
3953
|
-
declare function Pulumi(props: SvgIconProps):
|
|
3973
|
+
declare function Pulumi(props: SvgIconProps): react.JSX.Element;
|
|
3954
3974
|
|
|
3955
|
-
declare function Pin(props: SvgIconProps):
|
|
3975
|
+
declare function Pin(props: SvgIconProps): react.JSX.Element;
|
|
3956
3976
|
|
|
3957
|
-
declare function RadioChecked(props: SvgIconProps):
|
|
3977
|
+
declare function RadioChecked(props: SvgIconProps): react.JSX.Element;
|
|
3958
3978
|
|
|
3959
|
-
declare function RadioUnchecked(props: SvgIconProps):
|
|
3979
|
+
declare function RadioUnchecked(props: SvgIconProps): react.JSX.Element;
|
|
3960
3980
|
|
|
3961
|
-
declare function Recon$1(props: SvgIconProps):
|
|
3981
|
+
declare function Recon$1(props: SvgIconProps): react.JSX.Element;
|
|
3962
3982
|
|
|
3963
3983
|
type PaReloadProps = SvgIconProps & {
|
|
3964
3984
|
disabled?: boolean;
|
|
3965
3985
|
};
|
|
3966
|
-
declare function Reload(props: PaReloadProps):
|
|
3967
|
-
|
|
3968
|
-
declare function Repair(props: SvgIconProps): react_jsx_runtime.JSX.Element;
|
|
3986
|
+
declare function Reload(props: PaReloadProps): react.JSX.Element;
|
|
3969
3987
|
|
|
3970
|
-
declare function
|
|
3988
|
+
declare function Repair(props: SvgIconProps): react.JSX.Element;
|
|
3971
3989
|
|
|
3972
|
-
declare function
|
|
3990
|
+
declare function Replace(props: SvgIconProps): react.JSX.Element;
|
|
3973
3991
|
|
|
3974
|
-
declare function
|
|
3992
|
+
declare function Repo(props: SvgIconProps): react.JSX.Element;
|
|
3975
3993
|
|
|
3976
|
-
declare function
|
|
3994
|
+
declare function Repository(props: SvgIconProps): react.JSX.Element;
|
|
3977
3995
|
|
|
3978
|
-
declare function
|
|
3996
|
+
declare function RuleBasedDataLabeling(props: SvgIconProps): react.JSX.Element;
|
|
3979
3997
|
|
|
3980
|
-
declare function
|
|
3998
|
+
declare function SSO(props: SvgIconProps): react.JSX.Element;
|
|
3981
3999
|
|
|
3982
|
-
declare function
|
|
4000
|
+
declare function SThreeBucket(props: SvgIconProps): react.JSX.Element;
|
|
3983
4001
|
|
|
3984
|
-
declare
|
|
4002
|
+
declare function Scan(props: SvgIconProps): react.JSX.Element;
|
|
3985
4003
|
|
|
3986
|
-
declare
|
|
4004
|
+
declare const SecretExposure: (props: SvgIconProps) => react.JSX.Element;
|
|
3987
4005
|
|
|
3988
|
-
declare function
|
|
4006
|
+
declare function SecureEndpoint(props: SvgIconProps): react.JSX.Element;
|
|
3989
4007
|
|
|
3990
|
-
declare function
|
|
4008
|
+
declare function SecurityPostureIcon(props: SvgIconProps): react.JSX.Element;
|
|
3991
4009
|
|
|
3992
|
-
declare function
|
|
4010
|
+
declare function Send(props: SvgIconProps): react.JSX.Element;
|
|
3993
4011
|
|
|
3994
|
-
declare function
|
|
4012
|
+
declare function SensitiveData(props: SvgIconProps): react.JSX.Element;
|
|
3995
4013
|
|
|
3996
|
-
declare function
|
|
4014
|
+
declare function Serverless(props: SvgIconProps): react.JSX.Element;
|
|
3997
4015
|
|
|
3998
|
-
declare function
|
|
4016
|
+
declare function ServiceNow(props: SvgIconProps): react.JSX.Element;
|
|
3999
4017
|
|
|
4000
|
-
declare function
|
|
4018
|
+
declare function Settings(props: SvgIconProps): react.JSX.Element;
|
|
4001
4019
|
|
|
4002
|
-
declare function
|
|
4020
|
+
declare function SettingsMenuAPIKeys(props: SvgIconProps): react.JSX.Element;
|
|
4003
4021
|
|
|
4004
|
-
declare function
|
|
4022
|
+
declare function SettingsMenuAPISecurity(props: SvgIconProps): react.JSX.Element;
|
|
4005
4023
|
|
|
4006
|
-
declare function
|
|
4024
|
+
declare function SettingsMenuAccounts(props: SvgIconProps): react.JSX.Element;
|
|
4007
4025
|
|
|
4008
|
-
declare function
|
|
4026
|
+
declare function SettingsMenuAlerts(props: SvgIconProps): react.JSX.Element;
|
|
4009
4027
|
|
|
4010
|
-
declare function
|
|
4028
|
+
declare function SettingsMenuAuditLog(props: SvgIconProps): react.JSX.Element;
|
|
4011
4029
|
|
|
4012
|
-
declare function
|
|
4030
|
+
declare function SettingsMenuExternalAttackSurface(props: SvgIconProps): react.JSX.Element;
|
|
4013
4031
|
|
|
4014
|
-
declare function
|
|
4032
|
+
declare function SettingsMenuGenAISecurity(props: SvgIconProps): react.JSX.Element;
|
|
4015
4033
|
|
|
4016
|
-
declare function
|
|
4034
|
+
declare function SettingsMenuIntegrations(props: SvgIconProps): react.JSX.Element;
|
|
4017
4035
|
|
|
4018
|
-
declare function
|
|
4036
|
+
declare function SettingsMenuProfile(props: SvgIconProps): react.JSX.Element;
|
|
4019
4037
|
|
|
4020
|
-
declare function
|
|
4038
|
+
declare function SettingsMenuSCM(props: SvgIconProps): react.JSX.Element;
|
|
4021
4039
|
|
|
4022
|
-
declare function
|
|
4040
|
+
declare function SettingsMenuUsersScopes(props: SvgIconProps): react.JSX.Element;
|
|
4023
4041
|
|
|
4024
|
-
declare function
|
|
4042
|
+
declare function SettingsOutline(props: SvgIconProps): react.JSX.Element;
|
|
4025
4043
|
|
|
4026
|
-
declare function
|
|
4044
|
+
declare function SeverityBar(props: SvgIconProps): react.JSX.Element;
|
|
4027
4045
|
|
|
4028
|
-
declare function
|
|
4046
|
+
declare function Shadow(props: SvgIconProps): react.JSX.Element;
|
|
4029
4047
|
|
|
4030
|
-
declare
|
|
4048
|
+
declare function Share(props: SvgIconProps): react.JSX.Element;
|
|
4031
4049
|
|
|
4032
|
-
declare
|
|
4050
|
+
declare const PAShineStar: (props: SvgIconProps) => react.JSX.Element;
|
|
4033
4051
|
|
|
4034
|
-
declare function
|
|
4052
|
+
declare function SizeDown(props: SvgIconProps): react.JSX.Element;
|
|
4035
4053
|
|
|
4036
|
-
declare function
|
|
4054
|
+
declare function SizeUp(props: SvgIconProps): react.JSX.Element;
|
|
4037
4055
|
|
|
4038
|
-
declare function
|
|
4056
|
+
declare function SkipNext(props: SvgIconProps): react.JSX.Element;
|
|
4039
4057
|
|
|
4040
|
-
declare function
|
|
4058
|
+
declare function SkipPrevious(props: SvgIconProps): react.JSX.Element;
|
|
4041
4059
|
|
|
4042
|
-
declare function
|
|
4060
|
+
declare function Slack(props: SvgIconProps): react.JSX.Element;
|
|
4043
4061
|
|
|
4044
|
-
declare function
|
|
4062
|
+
declare function Snyk(props: SvgIconProps): react.JSX.Element;
|
|
4045
4063
|
|
|
4046
|
-
declare function
|
|
4064
|
+
declare function SortArrowDown(props: SvgIconProps): react.JSX.Element;
|
|
4047
4065
|
|
|
4048
|
-
declare function
|
|
4066
|
+
declare function SortArrowUp(props: SvgIconProps): react.JSX.Element;
|
|
4049
4067
|
|
|
4050
|
-
declare function
|
|
4068
|
+
declare function SortDoubleArrow(props: SvgIconProps): react.JSX.Element;
|
|
4051
4069
|
|
|
4052
|
-
declare function
|
|
4070
|
+
declare function SortInverted(props: SvgIconProps): react.JSX.Element;
|
|
4053
4071
|
|
|
4054
|
-
declare function
|
|
4072
|
+
declare function Spark(props: SvgIconProps): react.JSX.Element;
|
|
4055
4073
|
|
|
4056
|
-
declare function
|
|
4074
|
+
declare function Star(props: SvgIconProps): react.JSX.Element;
|
|
4057
4075
|
|
|
4058
|
-
declare function
|
|
4076
|
+
declare function StarOutline(props: SvgIconProps): react.JSX.Element;
|
|
4059
4077
|
|
|
4060
|
-
declare function
|
|
4078
|
+
declare function Structure(props: SvgIconProps): react.JSX.Element;
|
|
4061
4079
|
|
|
4062
|
-
declare function
|
|
4080
|
+
declare function Swagger(props: SvgIconProps): react.JSX.Element;
|
|
4063
4081
|
|
|
4064
|
-
declare function
|
|
4082
|
+
declare function SwaggerOutline(props: SvgIconProps): react.JSX.Element;
|
|
4065
4083
|
|
|
4066
|
-
declare function
|
|
4084
|
+
declare function Table(props: SvgIconProps): react.JSX.Element;
|
|
4067
4085
|
|
|
4068
|
-
declare function
|
|
4086
|
+
declare function Target(props: SvgIconProps): react.JSX.Element;
|
|
4069
4087
|
|
|
4070
|
-
declare function
|
|
4088
|
+
declare function TargetSensitive(props: SvgIconProps): react.JSX.Element;
|
|
4071
4089
|
|
|
4072
|
-
declare function
|
|
4090
|
+
declare function Teams(props: SvgIconProps): react.JSX.Element;
|
|
4073
4091
|
|
|
4074
|
-
declare function
|
|
4092
|
+
declare function Tenable(props: SvgIconProps): react.JSX.Element;
|
|
4075
4093
|
|
|
4076
|
-
declare function
|
|
4094
|
+
declare function Terraform(props: SvgIconProps): react.JSX.Element;
|
|
4077
4095
|
|
|
4078
|
-
declare function
|
|
4096
|
+
declare function Test(props: SvgIconProps): react.JSX.Element;
|
|
4079
4097
|
|
|
4080
|
-
declare function
|
|
4098
|
+
declare function Tray(props: SvgIconProps): react.JSX.Element;
|
|
4081
4099
|
|
|
4082
|
-
declare function
|
|
4100
|
+
declare function Trend(props: SvgIconProps): react.JSX.Element;
|
|
4083
4101
|
|
|
4084
|
-
declare function
|
|
4102
|
+
declare function TrendArrow(props: SvgIconProps): react.JSX.Element;
|
|
4085
4103
|
|
|
4086
|
-
declare function
|
|
4104
|
+
declare function TriangleUpOutline(props: SvgIconProps): react.JSX.Element;
|
|
4087
4105
|
|
|
4088
|
-
declare function
|
|
4106
|
+
declare function TwistLock(props: SvgIconProps): react.JSX.Element;
|
|
4089
4107
|
|
|
4090
|
-
declare function
|
|
4108
|
+
declare function Undo(props: SvgIconProps): react.JSX.Element;
|
|
4091
4109
|
|
|
4092
|
-
declare function
|
|
4110
|
+
declare function Uninstall(props: SvgIconProps): react.JSX.Element;
|
|
4093
4111
|
|
|
4094
|
-
declare function
|
|
4112
|
+
declare function Union(props: SvgIconProps): react.JSX.Element;
|
|
4095
4113
|
|
|
4096
|
-
declare function
|
|
4114
|
+
declare function Unlock(props: SvgIconProps): react.JSX.Element;
|
|
4097
4115
|
|
|
4098
|
-
declare function
|
|
4116
|
+
declare function User(props: SvgIconProps): react.JSX.Element;
|
|
4099
4117
|
|
|
4100
|
-
declare function
|
|
4118
|
+
declare function UserCircle(props: SvgIconProps): react.JSX.Element;
|
|
4101
4119
|
|
|
4102
|
-
declare function
|
|
4120
|
+
declare function VulCisa(props: SvgIconProps): react.JSX.Element;
|
|
4103
4121
|
|
|
4104
|
-
declare function
|
|
4122
|
+
declare function VulExploitable(props: SvgIconProps): react.JSX.Element;
|
|
4105
4123
|
|
|
4106
|
-
declare function
|
|
4124
|
+
declare function VulPanoptica(props: SvgIconProps): react.JSX.Element;
|
|
4107
4125
|
|
|
4108
|
-
declare function
|
|
4126
|
+
declare function VulPartial(props: SvgIconProps): react.JSX.Element;
|
|
4109
4127
|
|
|
4110
|
-
declare function
|
|
4128
|
+
declare function VulPublic(props: SvgIconProps): react.JSX.Element;
|
|
4111
4129
|
|
|
4112
|
-
declare function
|
|
4130
|
+
declare function VulSnyk(props: SvgIconProps): react.JSX.Element;
|
|
4113
4131
|
|
|
4114
|
-
declare function
|
|
4132
|
+
declare function VulTenable(props: SvgIconProps): react.JSX.Element;
|
|
4115
4133
|
|
|
4116
|
-
declare function
|
|
4134
|
+
declare function VulTwistLock(props: SvgIconProps): react.JSX.Element;
|
|
4117
4135
|
|
|
4118
|
-
declare function
|
|
4136
|
+
declare function VulnerabilitiesIcon(props: SvgIconProps): react.JSX.Element;
|
|
4119
4137
|
|
|
4120
|
-
declare function
|
|
4138
|
+
declare function WarningAccounts(props: SvgIconProps): react.JSX.Element;
|
|
4121
4139
|
|
|
4122
|
-
declare function
|
|
4140
|
+
declare function WarningQuestion(props: SvgIconProps): react.JSX.Element;
|
|
4123
4141
|
|
|
4124
|
-
declare function
|
|
4142
|
+
declare function Webex(props: SvgIconProps): react.JSX.Element;
|
|
4125
4143
|
|
|
4126
|
-
declare function
|
|
4144
|
+
declare function Zombie(props: SvgIconProps): react.JSX.Element;
|
|
4127
4145
|
|
|
4128
|
-
declare function
|
|
4146
|
+
declare function gRPC(props: SvgIconProps): react.JSX.Element;
|
|
4129
4147
|
|
|
4130
|
-
declare function
|
|
4148
|
+
declare function MenuApisec(props: SvgIconProps): react.JSX.Element;
|
|
4131
4149
|
|
|
4132
|
-
declare function
|
|
4150
|
+
declare function MenuAttackPathAnalysis(props: SvgIconProps): react.JSX.Element;
|
|
4133
4151
|
|
|
4134
|
-
declare function
|
|
4152
|
+
declare function MenuCICD(props: SvgIconProps): react.JSX.Element;
|
|
4135
4153
|
|
|
4136
|
-
declare function
|
|
4154
|
+
declare function MenuCloudInventory(props: SvgIconProps): react.JSX.Element;
|
|
4137
4155
|
|
|
4138
|
-
declare function
|
|
4156
|
+
declare function MenuComplianceReport(props: SvgIconProps): react.JSX.Element;
|
|
4139
4157
|
|
|
4140
|
-
declare function
|
|
4158
|
+
declare function MenuDataSecurity(props: SvgIconProps): react.JSX.Element;
|
|
4141
4159
|
|
|
4142
|
-
declare function
|
|
4160
|
+
declare function MenuExternalAttackSurface(props: SvgIconProps): react.JSX.Element;
|
|
4143
4161
|
|
|
4144
|
-
declare function
|
|
4162
|
+
declare function MenuIntegrations(props: SvgIconProps): react.JSX.Element;
|
|
4145
4163
|
|
|
4146
|
-
declare function
|
|
4164
|
+
declare function MenuOverview(props: SvgIconProps): react.JSX.Element;
|
|
4147
4165
|
|
|
4148
|
-
declare function
|
|
4166
|
+
declare function MenuReports(props: SvgIconProps): react.JSX.Element;
|
|
4149
4167
|
|
|
4150
|
-
declare function
|
|
4168
|
+
declare function MenuRuntimeEvents(props: SvgIconProps): react.JSX.Element;
|
|
4151
4169
|
|
|
4152
|
-
declare function
|
|
4170
|
+
declare function MenuSecurityGraph(props: SvgIconProps): react.JSX.Element;
|
|
4153
4171
|
|
|
4154
|
-
declare function
|
|
4172
|
+
declare function MenuSecurityPosture(props: SvgIconProps): react.JSX.Element;
|
|
4155
4173
|
|
|
4156
|
-
declare function
|
|
4174
|
+
declare function MenuSettings(props: SvgIconProps): react.JSX.Element;
|
|
4157
4175
|
|
|
4158
|
-
declare function
|
|
4176
|
+
declare function MenuSoftwareSupplyChain(props: SvgIconProps): react.JSX.Element;
|
|
4159
4177
|
|
|
4160
|
-
declare function
|
|
4178
|
+
declare function MenuVulnerabilityManagement(props: SvgIconProps): react.JSX.Element;
|
|
4161
4179
|
|
|
4162
|
-
declare function
|
|
4180
|
+
declare function PanopticaFullLogo(): react.JSX.Element;
|
|
4163
4181
|
|
|
4164
|
-
declare function
|
|
4182
|
+
declare function PanopticaIcon(): react.JSX.Element;
|
|
4165
4183
|
|
|
4166
|
-
declare function
|
|
4184
|
+
declare function VulStackrox(props: SvgIconProps): react.JSX.Element;
|
|
4167
4185
|
|
|
4168
|
-
declare function
|
|
4186
|
+
declare function VulServerless(props: SvgIconProps): react.JSX.Element;
|
|
4169
4187
|
|
|
4170
|
-
declare function
|
|
4188
|
+
declare function VulContainer(props: SvgIconProps): react.JSX.Element;
|
|
4171
4189
|
|
|
4172
|
-
declare function
|
|
4190
|
+
declare function Checkbox(props: SvgIconProps): react.JSX.Element;
|
|
4173
4191
|
|
|
4174
|
-
declare function
|
|
4192
|
+
declare function CheckboxFull(props: SvgIconProps): react.JSX.Element;
|
|
4175
4193
|
|
|
4176
|
-
declare function
|
|
4194
|
+
declare function Ignore(props: SvgIconProps): react.JSX.Element;
|
|
4177
4195
|
|
|
4178
|
-
declare function
|
|
4196
|
+
declare function RealtimeAsset(props: SvgIconProps): react.JSX.Element;
|
|
4179
4197
|
|
|
4180
|
-
declare function
|
|
4198
|
+
declare function UnIgnore(props: SvgIconProps): react.JSX.Element;
|
|
4181
4199
|
|
|
4182
|
-
declare function
|
|
4200
|
+
declare function IacStack(props: SvgIconProps): react.JSX.Element;
|
|
4183
4201
|
|
|
4184
|
-
declare function
|
|
4202
|
+
declare function SortGroup(props: SvgIconProps): react.JSX.Element;
|
|
4185
4203
|
|
|
4186
|
-
declare function
|
|
4204
|
+
declare function PullRequest(props: SvgIconProps): react.JSX.Element;
|
|
4187
4205
|
|
|
4188
|
-
declare function
|
|
4206
|
+
declare function QueryCollapse(props: SvgIconProps): react.JSX.Element;
|
|
4189
4207
|
|
|
4190
|
-
declare function
|
|
4208
|
+
declare function ActivityLog(props: SvgIconProps): react.JSX.Element;
|
|
4191
4209
|
|
|
4192
|
-
declare function
|
|
4210
|
+
declare function FileSystem(props: SvgIconProps): react.JSX.Element;
|
|
4193
4211
|
|
|
4194
|
-
declare function
|
|
4212
|
+
declare function Secret(props: SvgIconProps): react.JSX.Element;
|
|
4195
4213
|
|
|
4196
|
-
declare function
|
|
4214
|
+
declare function Code(props: SvgIconProps): react.JSX.Element;
|
|
4197
4215
|
|
|
4198
|
-
declare function
|
|
4216
|
+
declare function IAC(props: SvgIconProps): react.JSX.Element;
|
|
4199
4217
|
|
|
4200
|
-
declare function
|
|
4218
|
+
declare function AllDots(props: SvgIconProps): react.JSX.Element;
|
|
4201
4219
|
|
|
4202
|
-
declare function
|
|
4220
|
+
declare function MinusCircleOut(props: SvgIconProps): react.JSX.Element;
|
|
4203
4221
|
|
|
4204
|
-
declare function
|
|
4222
|
+
declare function A2a(props: SvgIconProps): react.JSX.Element;
|
|
4205
4223
|
|
|
4206
|
-
declare function
|
|
4224
|
+
declare function APIAttackPath(props: SvgIconProps): react.JSX.Element;
|
|
4207
4225
|
|
|
4208
|
-
declare function
|
|
4226
|
+
declare function APIRisky(props: SvgIconProps): react.JSX.Element;
|
|
4209
4227
|
|
|
4210
|
-
declare function
|
|
4228
|
+
declare function APISensitive(props: SvgIconProps): react.JSX.Element;
|
|
4211
4229
|
|
|
4212
|
-
declare function
|
|
4230
|
+
declare function AWS(props: SvgIconProps): react.JSX.Element;
|
|
4213
4231
|
|
|
4214
|
-
declare function
|
|
4232
|
+
declare function AccountCircle(props: SvgIconProps): react.JSX.Element;
|
|
4215
4233
|
|
|
4216
|
-
declare function
|
|
4234
|
+
declare function AccountCircleLive(props: SvgIconProps): react.JSX.Element;
|
|
4217
4235
|
|
|
4218
|
-
declare function
|
|
4236
|
+
declare function AddCircleFill(props: SvgIconProps): react.JSX.Element;
|
|
4219
4237
|
|
|
4220
|
-
declare function
|
|
4238
|
+
declare function AddUser(props: SvgIconProps): react.JSX.Element;
|
|
4221
4239
|
|
|
4222
|
-
declare function
|
|
4240
|
+
declare function Agent(props: SvgIconProps): react.JSX.Element;
|
|
4223
4241
|
|
|
4224
|
-
declare function
|
|
4242
|
+
declare function Animation(props: SvgIconProps): react.JSX.Element;
|
|
4225
4243
|
|
|
4226
|
-
declare function
|
|
4244
|
+
declare function Apartment(props: SvgIconProps): react.JSX.Element;
|
|
4227
4245
|
|
|
4228
|
-
declare function
|
|
4246
|
+
declare function ArrowBack(props: SvgIconProps): react.JSX.Element;
|
|
4229
4247
|
|
|
4230
|
-
declare function
|
|
4248
|
+
declare function ArrowDoubleLeftRight(props: SvgIconProps): react.JSX.Element;
|
|
4231
4249
|
|
|
4232
|
-
declare function
|
|
4250
|
+
declare function ArrowDown(props: SvgIconProps): react.JSX.Element;
|
|
4233
4251
|
|
|
4234
|
-
declare function
|
|
4252
|
+
declare function ArrowDownCircleFilled(props: SvgIconProps): react.JSX.Element;
|
|
4235
4253
|
|
|
4236
|
-
declare function
|
|
4254
|
+
declare function ArrowForward(props: SvgIconProps): react.JSX.Element;
|
|
4237
4255
|
|
|
4238
|
-
declare function
|
|
4256
|
+
declare function ArrowInsert(props: SvgIconProps): react.JSX.Element;
|
|
4239
4257
|
|
|
4240
|
-
declare function
|
|
4258
|
+
declare function ArrowMenuClose(props: SvgIconProps): react.JSX.Element;
|
|
4241
4259
|
|
|
4242
|
-
declare function
|
|
4260
|
+
declare function ArrowMenuOpen(props: SvgIconProps): react.JSX.Element;
|
|
4243
4261
|
|
|
4244
|
-
declare function
|
|
4262
|
+
declare function ArrowOutward(props: SvgIconProps): react.JSX.Element;
|
|
4245
4263
|
|
|
4246
|
-
declare function
|
|
4264
|
+
declare function AssetInventory(props: SvgIconProps): react.JSX.Element;
|
|
4247
4265
|
|
|
4248
|
-
declare function
|
|
4266
|
+
declare function Assign(props: SvgIconProps): react.JSX.Element;
|
|
4249
4267
|
|
|
4250
|
-
declare function
|
|
4268
|
+
declare function Attachment(props: SvgIconProps): react.JSX.Element;
|
|
4251
4269
|
|
|
4252
|
-
declare function
|
|
4270
|
+
declare function Attack(props: SvgIconProps): react.JSX.Element;
|
|
4253
4271
|
|
|
4254
|
-
declare function
|
|
4272
|
+
declare function Azure(props: SvgIconProps): react.JSX.Element;
|
|
4255
4273
|
|
|
4256
|
-
declare function
|
|
4274
|
+
declare function BarChart(props: SvgIconProps): react.JSX.Element;
|
|
4257
4275
|
|
|
4258
|
-
declare function
|
|
4276
|
+
declare function Bolt(props: SvgIconProps): react.JSX.Element;
|
|
4259
4277
|
|
|
4260
|
-
declare function
|
|
4278
|
+
declare function BookmarkAdded(props: SvgIconProps): react.JSX.Element;
|
|
4261
4279
|
|
|
4262
|
-
declare function
|
|
4280
|
+
declare function BookmarkEmpty(props: SvgIconProps): react.JSX.Element;
|
|
4263
4281
|
|
|
4264
|
-
declare function
|
|
4282
|
+
declare function BookmarkFilled(props: SvgIconProps): react.JSX.Element;
|
|
4265
4283
|
|
|
4266
|
-
declare function
|
|
4284
|
+
declare function BuildOutline(props: SvgIconProps): react.JSX.Element;
|
|
4267
4285
|
|
|
4268
|
-
declare function
|
|
4286
|
+
declare function Cadence(props: SvgIconProps): react.JSX.Element;
|
|
4269
4287
|
|
|
4270
|
-
declare function
|
|
4288
|
+
declare function CallMade(props: SvgIconProps): react.JSX.Element;
|
|
4271
4289
|
|
|
4272
|
-
declare function
|
|
4290
|
+
declare function CallReceived(props: SvgIconProps): react.JSX.Element;
|
|
4273
4291
|
|
|
4274
|
-
declare function
|
|
4292
|
+
declare function Category(props: SvgIconProps): react.JSX.Element;
|
|
4275
4293
|
|
|
4276
|
-
declare function
|
|
4294
|
+
declare function Cdr(props: SvgIconProps): react.JSX.Element;
|
|
4277
4295
|
|
|
4278
|
-
declare function
|
|
4296
|
+
declare function CheckCircle(props: SvgIconProps): react.JSX.Element;
|
|
4279
4297
|
|
|
4280
|
-
declare function
|
|
4298
|
+
declare function CheckCircleFill(props: SvgIconProps): react.JSX.Element;
|
|
4281
4299
|
|
|
4282
|
-
declare function
|
|
4300
|
+
declare function CheckSmall(props: SvgIconProps): react.JSX.Element;
|
|
4283
4301
|
|
|
4284
|
-
declare function
|
|
4302
|
+
declare function CheckSquareFilled(props: SvgIconProps): react.JSX.Element;
|
|
4285
4303
|
|
|
4286
|
-
declare function
|
|
4304
|
+
declare function CheckSquareOutlined(props: SvgIconProps): react.JSX.Element;
|
|
4287
4305
|
|
|
4288
|
-
declare function
|
|
4306
|
+
declare function CiCd$1(props: SvgIconProps): react.JSX.Element;
|
|
4289
4307
|
|
|
4290
|
-
declare function
|
|
4308
|
+
declare function Cli(props: SvgIconProps): react.JSX.Element;
|
|
4291
4309
|
|
|
4292
|
-
declare function
|
|
4310
|
+
declare function CloseCircleFilled(props: SvgIconProps): react.JSX.Element;
|
|
4293
4311
|
|
|
4294
|
-
declare function
|
|
4312
|
+
declare function CloseCircleOutline(props: SvgIconProps): react.JSX.Element;
|
|
4295
4313
|
|
|
4296
|
-
declare function
|
|
4314
|
+
declare function CloseSmall(props: SvgIconProps): react.JSX.Element;
|
|
4297
4315
|
|
|
4298
|
-
declare function
|
|
4316
|
+
declare function CloudConfiguration(props: SvgIconProps): react.JSX.Element;
|
|
4299
4317
|
|
|
4300
|
-
declare function
|
|
4318
|
+
declare function Cloudtrail(props: SvgIconProps): react.JSX.Element;
|
|
4301
4319
|
|
|
4302
|
-
declare function
|
|
4320
|
+
declare function CodeSecurity(props: SvgIconProps): react.JSX.Element;
|
|
4303
4321
|
|
|
4304
|
-
declare function
|
|
4322
|
+
declare function CodeVulnerability(props: SvgIconProps): react.JSX.Element;
|
|
4305
4323
|
|
|
4306
|
-
declare function
|
|
4324
|
+
declare function CollapseContent(props: SvgIconProps): react.JSX.Element;
|
|
4307
4325
|
|
|
4308
|
-
declare function
|
|
4326
|
+
declare function ComplianceReport(props: SvgIconProps): react.JSX.Element;
|
|
4309
4327
|
|
|
4310
|
-
declare function
|
|
4328
|
+
declare function ContentCopy(props: SvgIconProps): react.JSX.Element;
|
|
4311
4329
|
|
|
4312
|
-
declare function
|
|
4330
|
+
declare function Counter(props: SvgIconProps): react.JSX.Element;
|
|
4313
4331
|
|
|
4314
|
-
declare function
|
|
4332
|
+
declare function CredentialsExposure(props: SvgIconProps): react.JSX.Element;
|
|
4315
4333
|
|
|
4316
|
-
declare function
|
|
4334
|
+
declare function CreditCard(props: SvgIconProps): react.JSX.Element;
|
|
4317
4335
|
|
|
4318
|
-
declare function
|
|
4336
|
+
declare function Custom(props: SvgIconProps): react.JSX.Element;
|
|
4319
4337
|
|
|
4320
|
-
declare function
|
|
4338
|
+
declare function DarkMode(props: SvgIconProps): react.JSX.Element;
|
|
4321
4339
|
|
|
4322
|
-
declare function
|
|
4340
|
+
declare function DataTypeAutomated(props: SvgIconProps): react.JSX.Element;
|
|
4323
4341
|
|
|
4324
|
-
declare function
|
|
4342
|
+
declare function DataTypeRule(props: SvgIconProps): react.JSX.Element;
|
|
4325
4343
|
|
|
4326
|
-
declare function
|
|
4344
|
+
declare function DataExposure(props: SvgIconProps): react.JSX.Element;
|
|
4327
4345
|
|
|
4328
|
-
declare function
|
|
4346
|
+
declare function DataLake(props: SvgIconProps): react.JSX.Element;
|
|
4329
4347
|
|
|
4330
|
-
declare function
|
|
4348
|
+
declare function DataManualLabeling(props: SvgIconProps): react.JSX.Element;
|
|
4331
4349
|
|
|
4332
|
-
declare function
|
|
4350
|
+
declare function DataSecurity(props: SvgIconProps): react.JSX.Element;
|
|
4333
4351
|
|
|
4334
|
-
declare function
|
|
4352
|
+
declare function DatabaseAttackPath(props: SvgIconProps): react.JSX.Element;
|
|
4335
4353
|
|
|
4336
|
-
declare function
|
|
4354
|
+
declare function DatabaseRisky(props: SvgIconProps): react.JSX.Element;
|
|
4337
4355
|
|
|
4338
|
-
declare function
|
|
4356
|
+
declare function DatabaseSensitive(props: SvgIconProps): react.JSX.Element;
|
|
4339
4357
|
|
|
4340
|
-
declare function
|
|
4358
|
+
declare function DeleteFilled(props: SvgIconProps): react.JSX.Element;
|
|
4341
4359
|
|
|
4342
|
-
declare function
|
|
4360
|
+
declare function Discovery(props: SvgIconProps): react.JSX.Element;
|
|
4343
4361
|
|
|
4344
|
-
declare function
|
|
4362
|
+
declare function DisplayBy(props: SvgIconProps): react.JSX.Element;
|
|
4345
4363
|
|
|
4346
|
-
declare function
|
|
4364
|
+
declare function Dots(props: SvgIconProps): react.JSX.Element;
|
|
4347
4365
|
|
|
4348
|
-
declare function
|
|
4366
|
+
declare function Download(props: SvgIconProps): react.JSX.Element;
|
|
4349
4367
|
|
|
4350
|
-
declare function
|
|
4368
|
+
declare function DragHorizontal(props: SvgIconProps): react.JSX.Element;
|
|
4351
4369
|
|
|
4352
|
-
declare function
|
|
4370
|
+
declare function DragVertical(props: SvgIconProps): react.JSX.Element;
|
|
4353
4371
|
|
|
4354
|
-
declare function
|
|
4372
|
+
declare function Edit(props: SvgIconProps): react.JSX.Element;
|
|
4355
4373
|
|
|
4356
|
-
declare function
|
|
4374
|
+
declare function EditCalendar(props: SvgIconProps): react.JSX.Element;
|
|
4357
4375
|
|
|
4358
|
-
declare function
|
|
4376
|
+
declare function EditSquare(props: SvgIconProps): react.JSX.Element;
|
|
4359
4377
|
|
|
4360
|
-
declare function
|
|
4378
|
+
declare function Editor(props: SvgIconProps): react.JSX.Element;
|
|
4361
4379
|
|
|
4362
|
-
declare function
|
|
4380
|
+
declare function EmergencyFilled(props: SvgIconProps): react.JSX.Element;
|
|
4363
4381
|
|
|
4364
|
-
declare function
|
|
4382
|
+
declare function EmergencyOutlined(props: SvgIconProps): react.JSX.Element;
|
|
4365
4383
|
|
|
4366
|
-
declare function
|
|
4384
|
+
declare function Equal(props: SvgIconProps): react.JSX.Element;
|
|
4367
4385
|
|
|
4368
|
-
declare function
|
|
4386
|
+
declare function ErrorCircleFill(props: SvgIconProps): react.JSX.Element;
|
|
4369
4387
|
|
|
4370
|
-
declare function
|
|
4388
|
+
declare function Evaluation(props: SvgIconProps): react.JSX.Element;
|
|
4371
4389
|
|
|
4372
|
-
declare function
|
|
4390
|
+
declare function ExpandContent(props: SvgIconProps): react.JSX.Element;
|
|
4373
4391
|
|
|
4374
|
-
declare function
|
|
4392
|
+
declare function Extension(props: SvgIconProps): react.JSX.Element;
|
|
4375
4393
|
|
|
4376
|
-
declare function
|
|
4394
|
+
declare function ExtensionA2a(props: SvgIconProps): react.JSX.Element;
|
|
4377
4395
|
|
|
4378
|
-
declare function
|
|
4396
|
+
declare function ExtensionLlm(props: SvgIconProps): react.JSX.Element;
|
|
4379
4397
|
|
|
4380
|
-
declare function
|
|
4398
|
+
declare function ExtensionMcp(props: SvgIconProps): react.JSX.Element;
|
|
4381
4399
|
|
|
4382
|
-
declare function
|
|
4400
|
+
declare function ExternalAttackSurface(props: SvgIconProps): react.JSX.Element;
|
|
4383
4401
|
|
|
4384
|
-
declare function
|
|
4402
|
+
declare function FastForward(props: SvgIconProps): react.JSX.Element;
|
|
4385
4403
|
|
|
4386
|
-
declare function
|
|
4404
|
+
declare function FastRewind(props: SvgIconProps): react.JSX.Element;
|
|
4387
4405
|
|
|
4388
|
-
declare function
|
|
4406
|
+
declare function FileScan(props: SvgIconProps): react.JSX.Element;
|
|
4389
4407
|
|
|
4390
|
-
declare function
|
|
4408
|
+
declare function FileUpload(props: SvgIconProps): react.JSX.Element;
|
|
4391
4409
|
|
|
4392
|
-
declare function
|
|
4410
|
+
declare function Fluentbit(props: SvgIconProps): react.JSX.Element;
|
|
4393
4411
|
|
|
4394
|
-
declare function
|
|
4412
|
+
declare function FolderOpen(props: SvgIconProps): react.JSX.Element;
|
|
4395
4413
|
|
|
4396
|
-
declare function
|
|
4414
|
+
declare function Fork(props: SvgIconProps): react.JSX.Element;
|
|
4397
4415
|
|
|
4398
|
-
declare function
|
|
4416
|
+
declare function FunnelOutline(props: SvgIconProps): react.JSX.Element;
|
|
4399
4417
|
|
|
4400
|
-
declare function
|
|
4418
|
+
declare function GCP(props: SvgIconProps): react.JSX.Element;
|
|
4401
4419
|
|
|
4402
|
-
declare function
|
|
4420
|
+
declare function GaugeFilled(props: SvgIconProps): react.JSX.Element;
|
|
4403
4421
|
|
|
4404
|
-
declare function
|
|
4422
|
+
declare function GaugeOutline(props: SvgIconProps): react.JSX.Element;
|
|
4405
4423
|
|
|
4406
|
-
declare function
|
|
4424
|
+
declare function GestureSelect(props: SvgIconProps): react.JSX.Element;
|
|
4407
4425
|
|
|
4408
|
-
declare function
|
|
4426
|
+
declare function Git$1(props: SvgIconProps): react.JSX.Element;
|
|
4409
4427
|
|
|
4410
|
-
declare function
|
|
4428
|
+
declare function GraphView(props: SvgIconProps): react.JSX.Element;
|
|
4411
4429
|
|
|
4412
|
-
declare function
|
|
4430
|
+
declare function GroupBy(props: SvgIconProps): react.JSX.Element;
|
|
4413
4431
|
|
|
4414
|
-
declare function
|
|
4432
|
+
declare function Groups(props: SvgIconProps): react.JSX.Element;
|
|
4415
4433
|
|
|
4416
|
-
declare function
|
|
4434
|
+
declare function Hand(props: SvgIconProps): react.JSX.Element;
|
|
4417
4435
|
|
|
4418
|
-
declare function
|
|
4436
|
+
declare function HealthStatus(props: SvgIconProps): react.JSX.Element;
|
|
4419
4437
|
|
|
4420
|
-
declare function
|
|
4438
|
+
declare function HealthStatusHeart(props: SvgIconProps): react.JSX.Element;
|
|
4421
4439
|
|
|
4422
|
-
declare function
|
|
4440
|
+
declare function Help(props: SvgIconProps): react.JSX.Element;
|
|
4423
4441
|
|
|
4424
|
-
declare function
|
|
4442
|
+
declare function ImageAdd(props: SvgIconProps): react.JSX.Element;
|
|
4425
4443
|
|
|
4426
|
-
declare function
|
|
4444
|
+
declare function ImageGrid(props: SvgIconProps): react.JSX.Element;
|
|
4427
4445
|
|
|
4428
|
-
declare function
|
|
4446
|
+
declare function ImageLibrary(props: SvgIconProps): react.JSX.Element;
|
|
4429
4447
|
|
|
4430
|
-
declare function
|
|
4448
|
+
declare function ImageOutline(props: SvgIconProps): react.JSX.Element;
|
|
4431
4449
|
|
|
4432
|
-
declare function
|
|
4450
|
+
declare function ImageSearch(props: SvgIconProps): react.JSX.Element;
|
|
4433
4451
|
|
|
4434
|
-
declare function
|
|
4452
|
+
declare function InadequateAuthenticationAuthorization(props: SvgIconProps): react.JSX.Element;
|
|
4435
4453
|
|
|
4436
|
-
declare function
|
|
4454
|
+
declare function InadequateLoggingBackup(props: SvgIconProps): react.JSX.Element;
|
|
4437
4455
|
|
|
4438
|
-
declare function
|
|
4456
|
+
declare function InfoCircleFilled(props: SvgIconProps): react.JSX.Element;
|
|
4439
4457
|
|
|
4440
|
-
declare function
|
|
4458
|
+
declare function Install(props: SvgIconProps): react.JSX.Element;
|
|
4441
4459
|
|
|
4442
|
-
declare function
|
|
4460
|
+
declare function InsufficientEncryption(props: SvgIconProps): react.JSX.Element;
|
|
4443
4461
|
|
|
4444
|
-
declare function
|
|
4462
|
+
declare function InsufficientMonitoring(props: SvgIconProps): react.JSX.Element;
|
|
4445
4463
|
|
|
4446
|
-
declare function
|
|
4464
|
+
declare function Integrations(props: SvgIconProps): react.JSX.Element;
|
|
4447
4465
|
|
|
4448
|
-
declare function
|
|
4466
|
+
declare function Json(props: SvgIconProps): react.JSX.Element;
|
|
4449
4467
|
|
|
4450
|
-
declare function
|
|
4468
|
+
declare function KeyboardDoubleArrowDown(props: SvgIconProps): react.JSX.Element;
|
|
4451
4469
|
|
|
4452
|
-
declare function
|
|
4470
|
+
declare function KeyboardDoubleArrowLeft(props: SvgIconProps): react.JSX.Element;
|
|
4453
4471
|
|
|
4454
|
-
declare function
|
|
4472
|
+
declare function KeyboardDoubleArrowRight(props: SvgIconProps): react.JSX.Element;
|
|
4455
4473
|
|
|
4456
|
-
declare function
|
|
4474
|
+
declare function KeyboardDoubleArrowUp(props: SvgIconProps): react.JSX.Element;
|
|
4457
4475
|
|
|
4458
|
-
declare function
|
|
4476
|
+
declare function KeyboardForwardSlash(props: SvgIconProps): react.JSX.Element;
|
|
4459
4477
|
|
|
4460
|
-
declare function
|
|
4478
|
+
declare function Kspm(props: SvgIconProps): react.JSX.Element;
|
|
4461
4479
|
|
|
4462
|
-
declare function
|
|
4480
|
+
declare function Label(props: SvgIconProps): react.JSX.Element;
|
|
4463
4481
|
|
|
4464
|
-
declare function
|
|
4482
|
+
declare function Layout(props: SvgIconProps): react.JSX.Element;
|
|
4465
4483
|
|
|
4466
|
-
declare function
|
|
4484
|
+
declare function LightMode(props: SvgIconProps): react.JSX.Element;
|
|
4467
4485
|
|
|
4468
|
-
declare function
|
|
4486
|
+
declare function Lightbulb(props: SvgIconProps): react.JSX.Element;
|
|
4469
4487
|
|
|
4470
|
-
declare function
|
|
4488
|
+
declare function Llm(props: SvgIconProps): react.JSX.Element;
|
|
4471
4489
|
|
|
4472
|
-
declare function
|
|
4490
|
+
declare function Lock(props: SvgIconProps): react.JSX.Element;
|
|
4473
4491
|
|
|
4474
|
-
declare function
|
|
4492
|
+
declare function Login(props: SvgIconProps): react.JSX.Element;
|
|
4475
4493
|
|
|
4476
|
-
declare function
|
|
4494
|
+
declare function LongArrow(props: SvgIconProps): react.JSX.Element;
|
|
4477
4495
|
|
|
4478
|
-
declare function
|
|
4496
|
+
declare function ML(props: SvgIconProps): react.JSX.Element;
|
|
4479
4497
|
|
|
4480
|
-
declare function
|
|
4498
|
+
declare function MalwareInfectedWorkload(props: SvgIconProps): react.JSX.Element;
|
|
4481
4499
|
|
|
4482
|
-
declare function
|
|
4500
|
+
declare function Mcp(props: SvgIconProps): react.JSX.Element;
|
|
4483
4501
|
|
|
4484
|
-
declare function
|
|
4502
|
+
declare function McpServer(props: SvgIconProps): react.JSX.Element;
|
|
4485
4503
|
|
|
4486
|
-
declare function
|
|
4504
|
+
declare function MemoryStore(props: SvgIconProps): react.JSX.Element;
|
|
4487
4505
|
|
|
4488
|
-
declare function
|
|
4506
|
+
declare function Menu(props: SvgIconProps): react.JSX.Element;
|
|
4489
4507
|
|
|
4490
|
-
declare function
|
|
4508
|
+
declare function MenuList(props: SvgIconProps): react.JSX.Element;
|
|
4491
4509
|
|
|
4492
|
-
declare function
|
|
4510
|
+
declare function Messaging(props: SvgIconProps): react.JSX.Element;
|
|
4493
4511
|
|
|
4494
|
-
declare function
|
|
4512
|
+
declare function Minus(props: SvgIconProps): react.JSX.Element;
|
|
4495
4513
|
|
|
4496
|
-
declare function
|
|
4514
|
+
declare function MinusCircleFilled(props: SvgIconProps): react.JSX.Element;
|
|
4497
4515
|
|
|
4498
|
-
declare function
|
|
4516
|
+
declare function MinusCircleOutline(props: SvgIconProps): react.JSX.Element;
|
|
4499
4517
|
|
|
4500
|
-
declare function
|
|
4518
|
+
declare function Mitre(props: SvgIconProps): react.JSX.Element;
|
|
4501
4519
|
|
|
4502
|
-
declare function
|
|
4520
|
+
declare function MitreCommandControl(props: SvgIconProps): react.JSX.Element;
|
|
4503
4521
|
|
|
4504
|
-
declare function
|
|
4522
|
+
declare function MitreCredentialAccess(props: SvgIconProps): react.JSX.Element;
|
|
4505
4523
|
|
|
4506
|
-
declare function
|
|
4524
|
+
declare function MitreDefenceEvasion(props: SvgIconProps): react.JSX.Element;
|
|
4507
4525
|
|
|
4508
|
-
declare function
|
|
4526
|
+
declare function MitreDiscovery(props: SvgIconProps): react.JSX.Element;
|
|
4509
4527
|
|
|
4510
|
-
declare function
|
|
4528
|
+
declare function MitreExecution(props: SvgIconProps): react.JSX.Element;
|
|
4511
4529
|
|
|
4512
|
-
declare function
|
|
4530
|
+
declare function MitreExfiltration(props: SvgIconProps): react.JSX.Element;
|
|
4513
4531
|
|
|
4514
|
-
declare function
|
|
4532
|
+
declare function MitreImpact(props: SvgIconProps): react.JSX.Element;
|
|
4515
4533
|
|
|
4516
|
-
declare function
|
|
4534
|
+
declare function MitreInitialAccess(props: SvgIconProps): react.JSX.Element;
|
|
4517
4535
|
|
|
4518
|
-
declare function
|
|
4536
|
+
declare function MitreLateralMovement(props: SvgIconProps): react.JSX.Element;
|
|
4519
4537
|
|
|
4520
|
-
declare function
|
|
4538
|
+
declare function MitrePersistence(props: SvgIconProps): react.JSX.Element;
|
|
4521
4539
|
|
|
4522
|
-
declare function
|
|
4540
|
+
declare function MitrePriviledgeEscalation(props: SvgIconProps): react.JSX.Element;
|
|
4523
4541
|
|
|
4524
|
-
declare function
|
|
4542
|
+
declare function MitreResourcesDevelopment(props: SvgIconProps): react.JSX.Element;
|
|
4525
4543
|
|
|
4526
|
-
declare function
|
|
4544
|
+
declare function More(props: SvgIconProps): react.JSX.Element;
|
|
4527
4545
|
|
|
4528
|
-
declare function
|
|
4546
|
+
declare function NetworkFilled(props: SvgIconProps): react.JSX.Element;
|
|
4529
4547
|
|
|
4530
|
-
declare function
|
|
4548
|
+
declare function NetworkOutline(props: SvgIconProps): react.JSX.Element;
|
|
4531
4549
|
|
|
4532
|
-
declare function
|
|
4550
|
+
declare function NewFolder(props: SvgIconProps): react.JSX.Element;
|
|
4533
4551
|
|
|
4534
|
-
declare function
|
|
4552
|
+
declare function NorthEast(props: SvgIconProps): react.JSX.Element;
|
|
4535
4553
|
|
|
4536
|
-
declare function
|
|
4554
|
+
declare function NorthWest(props: SvgIconProps): react.JSX.Element;
|
|
4537
4555
|
|
|
4538
|
-
declare function
|
|
4556
|
+
declare function NotEqual(props: SvgIconProps): react.JSX.Element;
|
|
4539
4557
|
|
|
4540
|
-
declare function
|
|
4558
|
+
declare function NotificationActiveOutline(props: SvgIconProps): react.JSX.Element;
|
|
4541
4559
|
|
|
4542
|
-
declare function
|
|
4560
|
+
declare function NotificationImportantOutlined(props: SvgIconProps): react.JSX.Element;
|
|
4543
4561
|
|
|
4544
|
-
declare function
|
|
4562
|
+
declare function NotificationOffOutline(props: SvgIconProps): react.JSX.Element;
|
|
4545
4563
|
|
|
4546
|
-
declare function
|
|
4564
|
+
declare function NotificationOutlined(props: SvgIconProps): react.JSX.Element;
|
|
4547
4565
|
|
|
4548
|
-
declare function
|
|
4566
|
+
declare function Oasf(props: SvgIconProps): react.JSX.Element;
|
|
4549
4567
|
|
|
4550
|
-
declare function
|
|
4568
|
+
declare function Observability(props: SvgIconProps): react.JSX.Element;
|
|
4551
4569
|
|
|
4552
|
-
declare function
|
|
4570
|
+
declare function OpenFullscreen(props: SvgIconProps): react.JSX.Element;
|
|
4553
4571
|
|
|
4554
|
-
declare function
|
|
4572
|
+
declare function OpenInNew(props: SvgIconProps): react.JSX.Element;
|
|
4555
4573
|
|
|
4556
|
-
declare function
|
|
4574
|
+
declare function Oracle(props: SvgIconProps): react.JSX.Element;
|
|
4557
4575
|
|
|
4558
|
-
declare function
|
|
4576
|
+
declare function Palette(props: SvgIconProps): react.JSX.Element;
|
|
4559
4577
|
|
|
4560
|
-
declare function
|
|
4578
|
+
declare function Partial$1(props: SvgIconProps): react.JSX.Element;
|
|
4561
4579
|
|
|
4562
|
-
declare function
|
|
4580
|
+
declare function PauseCircleOutline(props: SvgIconProps): react.JSX.Element;
|
|
4563
4581
|
|
|
4564
|
-
declare function
|
|
4582
|
+
declare function PauseOutline(props: SvgIconProps): react.JSX.Element;
|
|
4565
4583
|
|
|
4566
|
-
declare function
|
|
4584
|
+
declare function Payments(props: SvgIconProps): react.JSX.Element;
|
|
4567
4585
|
|
|
4568
|
-
declare function
|
|
4586
|
+
declare function PermissiveAccess(props: SvgIconProps): react.JSX.Element;
|
|
4569
4587
|
|
|
4570
|
-
declare function
|
|
4588
|
+
declare function PersonOutline(props: SvgIconProps): react.JSX.Element;
|
|
4571
4589
|
|
|
4572
|
-
declare function
|
|
4590
|
+
declare function PhysicalGesture(props: SvgIconProps): react.JSX.Element;
|
|
4573
4591
|
|
|
4574
|
-
declare function
|
|
4592
|
+
declare function PlayCircleOutline(props: SvgIconProps): react.JSX.Element;
|
|
4575
4593
|
|
|
4576
|
-
declare function
|
|
4594
|
+
declare function PlayOutline(props: SvgIconProps): react.JSX.Element;
|
|
4577
4595
|
|
|
4578
|
-
declare function
|
|
4596
|
+
declare function Plus(props: SvgIconProps): react.JSX.Element;
|
|
4579
4597
|
|
|
4580
|
-
declare function
|
|
4598
|
+
declare function PlusCircleOutline(props: SvgIconProps): react.JSX.Element;
|
|
4581
4599
|
|
|
4582
|
-
declare function
|
|
4600
|
+
declare function PostureRisks(props: SvgIconProps): react.JSX.Element;
|
|
4583
4601
|
|
|
4584
|
-
declare function
|
|
4602
|
+
declare function Prompt(props: SvgIconProps): react.JSX.Element;
|
|
4585
4603
|
|
|
4586
|
-
declare function
|
|
4604
|
+
declare function PromptSuggestion(props: SvgIconProps): react.JSX.Element;
|
|
4587
4605
|
|
|
4588
|
-
declare function
|
|
4606
|
+
declare function Public(props: SvgIconProps): react.JSX.Element;
|
|
4589
4607
|
|
|
4590
|
-
declare function
|
|
4608
|
+
declare function PublicExposure(props: SvgIconProps): react.JSX.Element;
|
|
4591
4609
|
|
|
4592
|
-
declare function
|
|
4610
|
+
declare function Publish(props: SvgIconProps): react.JSX.Element;
|
|
4593
4611
|
|
|
4594
|
-
declare function
|
|
4612
|
+
declare function Reachable(props: SvgIconProps): react.JSX.Element;
|
|
4595
4613
|
|
|
4596
|
-
declare function
|
|
4614
|
+
declare function Redo(props: SvgIconProps): react.JSX.Element;
|
|
4597
4615
|
|
|
4598
|
-
declare function
|
|
4616
|
+
declare function Replay(props: SvgIconProps): react.JSX.Element;
|
|
4599
4617
|
|
|
4600
|
-
declare function
|
|
4618
|
+
declare function Reports(props: SvgIconProps): react.JSX.Element;
|
|
4601
4619
|
|
|
4602
|
-
declare function
|
|
4620
|
+
declare function Resize(props: SvgIconProps): react.JSX.Element;
|
|
4603
4621
|
|
|
4604
|
-
declare function
|
|
4622
|
+
declare function Resources(props: SvgIconProps): react.JSX.Element;
|
|
4605
4623
|
|
|
4606
|
-
declare function
|
|
4624
|
+
declare function Restore(props: SvgIconProps): react.JSX.Element;
|
|
4607
4625
|
|
|
4608
|
-
declare function
|
|
4626
|
+
declare function Rogue(props: SvgIconProps): react.JSX.Element;
|
|
4609
4627
|
|
|
4610
|
-
declare function
|
|
4628
|
+
declare function RootCauseAnalysis(props: SvgIconProps): react.JSX.Element;
|
|
4611
4629
|
|
|
4612
|
-
declare function
|
|
4630
|
+
declare function RuntimeEvents(props: SvgIconProps): react.JSX.Element;
|
|
4613
4631
|
|
|
4614
|
-
declare function
|
|
4632
|
+
declare function ScanReport(props: SvgIconProps): react.JSX.Element;
|
|
4615
4633
|
|
|
4616
|
-
declare function
|
|
4634
|
+
declare function Screenshot(props: SvgIconProps): react.JSX.Element;
|
|
4617
4635
|
|
|
4618
|
-
declare function
|
|
4636
|
+
declare function Search(props: SvgIconProps): react.JSX.Element;
|
|
4619
4637
|
|
|
4620
|
-
declare function
|
|
4638
|
+
declare function SearchList(props: SvgIconProps): react.JSX.Element;
|
|
4621
4639
|
|
|
4622
|
-
declare function
|
|
4640
|
+
declare function SecurityFindings(props: SvgIconProps): react.JSX.Element;
|
|
4623
4641
|
|
|
4624
|
-
declare function
|
|
4642
|
+
declare function SecurityGraph(props: SvgIconProps): react.JSX.Element;
|
|
4625
4643
|
|
|
4626
|
-
declare function
|
|
4644
|
+
declare function SecurityPosture(props: SvgIconProps): react.JSX.Element;
|
|
4627
4645
|
|
|
4628
|
-
declare function
|
|
4646
|
+
declare function Sensitive(props: SvgIconProps): react.JSX.Element;
|
|
4629
4647
|
|
|
4630
|
-
declare function
|
|
4648
|
+
declare function ServerlessScan(props: SvgIconProps): react.JSX.Element;
|
|
4631
4649
|
|
|
4632
|
-
declare function
|
|
4650
|
+
declare function SettingsFilled(props: SvgIconProps): react.JSX.Element;
|
|
4633
4651
|
|
|
4634
|
-
declare function
|
|
4652
|
+
declare function ShieldFilledWarning(props: SvgIconProps): react.JSX.Element;
|
|
4635
4653
|
|
|
4636
|
-
declare function
|
|
4654
|
+
declare function ShieldKeyFilled(props: SvgIconProps): react.JSX.Element;
|
|
4637
4655
|
|
|
4638
|
-
declare function
|
|
4656
|
+
declare function ShieldKeyOutline(props: SvgIconProps): react.JSX.Element;
|
|
4639
4657
|
|
|
4640
|
-
declare function
|
|
4658
|
+
declare function ShieldOutlineWarning(props: SvgIconProps): react.JSX.Element;
|
|
4641
4659
|
|
|
4642
|
-
declare function
|
|
4660
|
+
declare function Singleton(props: SvgIconProps): react.JSX.Element;
|
|
4643
4661
|
|
|
4644
|
-
declare function
|
|
4662
|
+
declare function Sort(props: SvgIconProps): react.JSX.Element;
|
|
4645
4663
|
|
|
4646
|
-
declare function
|
|
4664
|
+
declare function SouthEast(props: SvgIconProps): react.JSX.Element;
|
|
4647
4665
|
|
|
4648
|
-
declare function
|
|
4666
|
+
declare function SouthWest(props: SvgIconProps): react.JSX.Element;
|
|
4649
4667
|
|
|
4650
|
-
declare function
|
|
4668
|
+
declare function Sparkle(props: SvgIconProps): react.JSX.Element;
|
|
4651
4669
|
|
|
4652
|
-
declare function
|
|
4670
|
+
declare function StarEmpty(props: SvgIconProps): react.JSX.Element;
|
|
4653
4671
|
|
|
4654
|
-
declare function
|
|
4672
|
+
declare function StarFilled(props: SvgIconProps): react.JSX.Element;
|
|
4655
4673
|
|
|
4656
|
-
declare function
|
|
4674
|
+
declare function StarHalf(props: SvgIconProps): react.JSX.Element;
|
|
4657
4675
|
|
|
4658
|
-
declare function
|
|
4676
|
+
declare function StopCircleOutline(props: SvgIconProps): react.JSX.Element;
|
|
4659
4677
|
|
|
4660
|
-
declare function
|
|
4678
|
+
declare function StopOutline(props: SvgIconProps): react.JSX.Element;
|
|
4661
4679
|
|
|
4662
|
-
declare function
|
|
4680
|
+
declare function StopWatch(props: SvgIconProps): react.JSX.Element;
|
|
4663
4681
|
|
|
4664
|
-
declare function
|
|
4682
|
+
declare function StopWatchOff(props: SvgIconProps): react.JSX.Element;
|
|
4665
4683
|
|
|
4666
|
-
declare function
|
|
4684
|
+
declare function SuspiciousActivity(props: SvgIconProps): react.JSX.Element;
|
|
4667
4685
|
|
|
4668
|
-
declare function
|
|
4686
|
+
declare function Swap(props: SvgIconProps): react.JSX.Element;
|
|
4669
4687
|
|
|
4670
|
-
declare function
|
|
4688
|
+
declare function Synchronize(props: SvgIconProps): react.JSX.Element;
|
|
4671
4689
|
|
|
4672
|
-
declare function
|
|
4690
|
+
declare function Sysflow(props: SvgIconProps): react.JSX.Element;
|
|
4673
4691
|
|
|
4674
|
-
declare function
|
|
4692
|
+
declare function ThumbsDown(props: SvgIconProps): react.JSX.Element;
|
|
4675
4693
|
|
|
4676
|
-
declare function
|
|
4694
|
+
declare function ThumbsUp(props: SvgIconProps): react.JSX.Element;
|
|
4677
4695
|
|
|
4678
|
-
declare function
|
|
4696
|
+
declare function Timeline(props: SvgIconProps): react.JSX.Element;
|
|
4679
4697
|
|
|
4680
|
-
declare function
|
|
4698
|
+
declare function TriangleDown(props: SvgIconProps): react.JSX.Element;
|
|
4681
4699
|
|
|
4682
|
-
declare function
|
|
4700
|
+
declare function TriangleLeft(props: SvgIconProps): react.JSX.Element;
|
|
4683
4701
|
|
|
4684
|
-
declare function
|
|
4702
|
+
declare function TriangleRight(props: SvgIconProps): react.JSX.Element;
|
|
4685
4703
|
|
|
4686
|
-
declare function
|
|
4704
|
+
declare function TriangleUp(props: SvgIconProps): react.JSX.Element;
|
|
4687
4705
|
|
|
4688
|
-
declare function
|
|
4706
|
+
declare function UdpateLive(props: SvgIconProps): react.JSX.Element;
|
|
4689
4707
|
|
|
4690
|
-
declare function
|
|
4708
|
+
declare function Unlink(props: SvgIconProps): react.JSX.Element;
|
|
4691
4709
|
|
|
4692
|
-
declare function
|
|
4710
|
+
declare function UnsupportedSoftware(props: SvgIconProps): react.JSX.Element;
|
|
4693
4711
|
|
|
4694
|
-
declare function
|
|
4712
|
+
declare function Update(props: SvgIconProps): react.JSX.Element;
|
|
4695
4713
|
|
|
4696
|
-
declare function
|
|
4714
|
+
declare function Upload(props: SvgIconProps): react.JSX.Element;
|
|
4697
4715
|
|
|
4698
|
-
declare function
|
|
4716
|
+
declare function Verified(props: SvgIconProps): react.JSX.Element;
|
|
4699
4717
|
|
|
4700
|
-
declare function
|
|
4718
|
+
declare function VersionManagement(props: SvgIconProps): react.JSX.Element;
|
|
4701
4719
|
|
|
4702
|
-
declare function
|
|
4720
|
+
declare function ViewBy(props: SvgIconProps): react.JSX.Element;
|
|
4703
4721
|
|
|
4704
|
-
declare function
|
|
4722
|
+
declare function Visibility(props: SvgIconProps): react.JSX.Element;
|
|
4705
4723
|
|
|
4706
|
-
declare function
|
|
4724
|
+
declare function VisibilityOff(props: SvgIconProps): react.JSX.Element;
|
|
4707
4725
|
|
|
4708
|
-
declare function
|
|
4726
|
+
declare function VulnerabilityManagement(props: SvgIconProps): react.JSX.Element;
|
|
4709
4727
|
|
|
4710
|
-
declare function
|
|
4728
|
+
declare function Warning$1(props: SvgIconProps): react.JSX.Element;
|
|
4711
4729
|
|
|
4712
|
-
declare function
|
|
4730
|
+
declare function WarningFilled(props: SvgIconProps): react.JSX.Element;
|
|
4713
4731
|
|
|
4714
|
-
declare
|
|
4715
|
-
declare const AlibabaCloudColored: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
4732
|
+
declare function WorkloadProtection(props: SvgIconProps): react.JSX.Element;
|
|
4716
4733
|
|
|
4717
|
-
declare const
|
|
4718
|
-
declare const
|
|
4734
|
+
declare const AlibabaCloud: (props: SvgIconProps) => react.JSX.Element;
|
|
4735
|
+
declare const AlibabaCloudColored: (props: SvgIconProps) => react.JSX.Element;
|
|
4719
4736
|
|
|
4720
|
-
declare const
|
|
4721
|
-
declare const
|
|
4737
|
+
declare const AWSLogo: (props: SvgIconProps) => react.JSX.Element;
|
|
4738
|
+
declare const AWSLogoColored: (props: SvgIconProps) => react.JSX.Element;
|
|
4722
4739
|
|
|
4723
|
-
declare const
|
|
4724
|
-
declare const
|
|
4740
|
+
declare const AzureDevopsLogo: (props: SvgIconProps) => react.JSX.Element;
|
|
4741
|
+
declare const AzureDevopsLogoColored: (props: SvgIconProps) => react.JSX.Element;
|
|
4725
4742
|
|
|
4726
|
-
declare const
|
|
4727
|
-
declare const
|
|
4728
|
-
declare const OutshiftBrand: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
4743
|
+
declare const BitbucketLogo: (props: SvgIconProps) => react.JSX.Element;
|
|
4744
|
+
declare const BitbucketLogoColored: (props: SvgIconProps) => react.JSX.Element;
|
|
4729
4745
|
|
|
4730
|
-
declare const
|
|
4731
|
-
declare const
|
|
4732
|
-
declare const
|
|
4733
|
-
declare const CiscoAIAssistantProcessing_end: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
4746
|
+
declare const AgntcyBrand: (props: SvgIconProps) => react.JSX.Element;
|
|
4747
|
+
declare const CiscoBrand: (props: SvgIconProps) => react.JSX.Element;
|
|
4748
|
+
declare const OutshiftBrand: (props: SvgIconProps) => react.JSX.Element;
|
|
4734
4749
|
|
|
4735
|
-
declare const
|
|
4750
|
+
declare const CiscoAIAssistantDefault: (props: SvgIconProps) => react.JSX.Element;
|
|
4751
|
+
declare const CiscoAIAssistantProcessing_loop: (props: SvgIconProps) => react.JSX.Element;
|
|
4752
|
+
declare const CiscoAIAssistantProcessing_start: (props: SvgIconProps) => react.JSX.Element;
|
|
4753
|
+
declare const CiscoAIAssistantProcessing_end: (props: SvgIconProps) => react.JSX.Element;
|
|
4736
4754
|
|
|
4737
|
-
declare const
|
|
4738
|
-
declare const GCPLogoColored: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
4755
|
+
declare const Cisco: (props: SvgIconProps) => react.JSX.Element;
|
|
4739
4756
|
|
|
4740
|
-
declare const
|
|
4741
|
-
declare const
|
|
4757
|
+
declare const GCPLogo: (props: SvgIconProps) => react.JSX.Element;
|
|
4758
|
+
declare const GCPLogoColored: (props: SvgIconProps) => react.JSX.Element;
|
|
4742
4759
|
|
|
4743
|
-
declare const
|
|
4744
|
-
declare const
|
|
4760
|
+
declare const GitlabLogo: (props: SvgIconProps) => react.JSX.Element;
|
|
4761
|
+
declare const GitlabLogoColored: (props: SvgIconProps) => react.JSX.Element;
|
|
4745
4762
|
|
|
4746
|
-
declare const
|
|
4763
|
+
declare const GithubLogo: (props: SvgIconProps) => react.JSX.Element;
|
|
4764
|
+
declare const GithubLogoColored: (props: SvgIconProps) => react.JSX.Element;
|
|
4747
4765
|
|
|
4748
|
-
declare const
|
|
4749
|
-
declare const K8Colored: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
4766
|
+
declare const Google: (props: SvgIconProps) => react.JSX.Element;
|
|
4750
4767
|
|
|
4751
|
-
declare const
|
|
4752
|
-
declare const
|
|
4768
|
+
declare const K8: (props: SvgIconProps) => react.JSX.Element;
|
|
4769
|
+
declare const K8Colored: (props: SvgIconProps) => react.JSX.Element;
|
|
4753
4770
|
|
|
4754
|
-
declare const
|
|
4755
|
-
declare const
|
|
4771
|
+
declare const MicrosoftAzure: (props: SvgIconProps) => react.JSX.Element;
|
|
4772
|
+
declare const MicrosoftAzureColored: (props: SvgIconProps) => react.JSX.Element;
|
|
4756
4773
|
|
|
4757
|
-
declare
|
|
4758
|
-
declare
|
|
4759
|
-
declare function OrgSwitcherDefault(props: SvgIconProps): react_jsx_runtime.JSX.Element;
|
|
4774
|
+
declare const OracleLogo: (props: SvgIconProps) => react.JSX.Element;
|
|
4775
|
+
declare const OracleLogoColored: (props: SvgIconProps) => react.JSX.Element;
|
|
4760
4776
|
|
|
4761
|
-
|
|
4777
|
+
declare function OrgSwitcherWeak(props: SvgIconProps): react.JSX.Element;
|
|
4778
|
+
declare function OrgSwitcherMedium(props: SvgIconProps): react.JSX.Element;
|
|
4779
|
+
declare function OrgSwitcherDefault(props: SvgIconProps): react.JSX.Element;
|
|
4762
4780
|
|
|
4763
4781
|
declare const index_d_A2a: typeof A2a;
|
|
4764
4782
|
declare const index_d_API: typeof API;
|
|
@@ -6819,51 +6837,51 @@ declare namespace index_d {
|
|
|
6819
6837
|
};
|
|
6820
6838
|
}
|
|
6821
6839
|
|
|
6822
|
-
declare const AddDomain: (props: SvgIconProps) =>
|
|
6840
|
+
declare const AddDomain: (props: SvgIconProps) => react.JSX.Element;
|
|
6823
6841
|
|
|
6824
|
-
declare const AddRepos: (props: SvgIconProps) =>
|
|
6842
|
+
declare const AddRepos: (props: SvgIconProps) => react.JSX.Element;
|
|
6825
6843
|
|
|
6826
|
-
declare const AttackPathAnalysis: (props: SvgIconProps) =>
|
|
6844
|
+
declare const AttackPathAnalysis: (props: SvgIconProps) => react.JSX.Element;
|
|
6827
6845
|
|
|
6828
|
-
declare const AttackPathAnalysisWalkThrough: (props: SvgIconProps) =>
|
|
6846
|
+
declare const AttackPathAnalysisWalkThrough: (props: SvgIconProps) => react.JSX.Element;
|
|
6829
6847
|
|
|
6830
|
-
declare const Celebration: (props: SvgIconProps) =>
|
|
6848
|
+
declare const Celebration: (props: SvgIconProps) => react.JSX.Element;
|
|
6831
6849
|
|
|
6832
|
-
declare const CiCd: (props: SvgIconProps) =>
|
|
6850
|
+
declare const CiCd: (props: SvgIconProps) => react.JSX.Element;
|
|
6833
6851
|
|
|
6834
|
-
declare const Cloud: (props: SvgIconProps) =>
|
|
6852
|
+
declare const Cloud: (props: SvgIconProps) => react.JSX.Element;
|
|
6835
6853
|
|
|
6836
|
-
declare const CloudSimple: (props: SvgIconProps) =>
|
|
6854
|
+
declare const CloudSimple: (props: SvgIconProps) => react.JSX.Element;
|
|
6837
6855
|
|
|
6838
|
-
declare const Dashboard: (props: SvgIconProps) =>
|
|
6856
|
+
declare const Dashboard: (props: SvgIconProps) => react.JSX.Element;
|
|
6839
6857
|
|
|
6840
|
-
declare const Data: (props: SvgIconProps) =>
|
|
6858
|
+
declare const Data: (props: SvgIconProps) => react.JSX.Element;
|
|
6841
6859
|
|
|
6842
|
-
declare const EmptyData: (props: SvgIconProps) =>
|
|
6860
|
+
declare const EmptyData: (props: SvgIconProps) => react.JSX.Element;
|
|
6843
6861
|
|
|
6844
|
-
declare const Git: (props: SvgIconProps) =>
|
|
6862
|
+
declare const Git: (props: SvgIconProps) => react.JSX.Element;
|
|
6845
6863
|
|
|
6846
|
-
declare const GitSimple: (props: SvgIconProps) =>
|
|
6864
|
+
declare const GitSimple: (props: SvgIconProps) => react.JSX.Element;
|
|
6847
6865
|
|
|
6848
|
-
declare const Info: (props: SvgIconProps) =>
|
|
6866
|
+
declare const Info: (props: SvgIconProps) => react.JSX.Element;
|
|
6849
6867
|
|
|
6850
|
-
declare const Kubernetes: (props: SvgIconProps) =>
|
|
6868
|
+
declare const Kubernetes: (props: SvgIconProps) => react.JSX.Element;
|
|
6851
6869
|
|
|
6852
|
-
declare const Negative: (props: SvgIconProps) =>
|
|
6870
|
+
declare const Negative: (props: SvgIconProps) => react.JSX.Element;
|
|
6853
6871
|
|
|
6854
|
-
declare const NoData: (props: SvgIconProps) =>
|
|
6872
|
+
declare const NoData: (props: SvgIconProps) => react.JSX.Element;
|
|
6855
6873
|
|
|
6856
|
-
declare const Positive: (props: SvgIconProps) =>
|
|
6874
|
+
declare const Positive: (props: SvgIconProps) => react.JSX.Element;
|
|
6857
6875
|
|
|
6858
|
-
declare const Recon: (props: SvgIconProps) =>
|
|
6876
|
+
declare const Recon: (props: SvgIconProps) => react.JSX.Element;
|
|
6859
6877
|
|
|
6860
|
-
declare const Sent: (props: SvgIconProps) =>
|
|
6878
|
+
declare const Sent: (props: SvgIconProps) => react.JSX.Element;
|
|
6861
6879
|
|
|
6862
|
-
declare const Shield: (props: SvgIconProps) =>
|
|
6880
|
+
declare const Shield: (props: SvgIconProps) => react.JSX.Element;
|
|
6863
6881
|
|
|
6864
|
-
declare const Success: (props: SvgIconProps) =>
|
|
6882
|
+
declare const Success: (props: SvgIconProps) => react.JSX.Element;
|
|
6865
6883
|
|
|
6866
|
-
declare const Warning: (props: SvgIconProps) =>
|
|
6884
|
+
declare const Warning: (props: SvgIconProps) => react.JSX.Element;
|
|
6867
6885
|
|
|
6868
6886
|
declare const surfaceLight50 = "#fbfcfe";
|
|
6869
6887
|
declare const surfaceLight100 = "#f5f8fd";
|
|
@@ -7676,12 +7694,12 @@ declare enum ThemeMode {
|
|
|
7676
7694
|
}
|
|
7677
7695
|
interface ThemeModeContextValue {
|
|
7678
7696
|
mode: ThemeMode;
|
|
7679
|
-
setMode:
|
|
7697
|
+
setMode: react__default.Dispatch<react__default.SetStateAction<ThemeMode>>;
|
|
7680
7698
|
setTheme: (theme: ThemeMode) => void;
|
|
7681
7699
|
}
|
|
7682
7700
|
declare function useThemeMode(): ThemeModeContextValue;
|
|
7683
7701
|
interface ThemeProviderProps {
|
|
7684
|
-
children:
|
|
7702
|
+
children: react__default.ReactNode;
|
|
7685
7703
|
defaultMode?: ThemeMode;
|
|
7686
7704
|
/**
|
|
7687
7705
|
* A fully custom MUI Theme. Must include palette.vars (VarsType) to be
|
|
@@ -7691,7 +7709,7 @@ interface ThemeProviderProps {
|
|
|
7691
7709
|
*/
|
|
7692
7710
|
customTheme?: Theme;
|
|
7693
7711
|
}
|
|
7694
|
-
declare const ThemeProvider: ({ children, defaultMode, customTheme, }: ThemeProviderProps) =>
|
|
7712
|
+
declare const ThemeProvider: ({ children, defaultMode, customTheme, }: ThemeProviderProps) => react__default.JSX.Element;
|
|
7695
7713
|
|
|
7696
|
-
export { Accordion, StyledAccordionSummary as AccordionSummary, ActionsDialog, ActivityTimeline, ActivityTimelineStepStatus, AddDomain, AddRepos, AnchorLinkMenu, AttackPathAnalysis, AttackPathAnalysisWalkThrough, Avatar, AvatarGroup, Backdrop, Badge, Banner, BarChart$1 as BarChart, BarGraph, BasePage, Breadcrumbs, Button, Card, CardActionArea, CardActions, CardContent, CardDescription, CardHeader, CardSubheader, Celebration, ChartType, ChartTypeComponents, ChartWidget, Checkbox$1 as Checkbox, CiCd, Cloud, CloudSimple, CodeBlock, CopyButton, CreateTableInstance, Dashboard, Data, DatePicker, DateRangePicker, DateTimePicker, Dialog, DialogActions, DialogContent, DialogContentText, DialogSubtitle, DialogTitle, Divider, DonutChart, EMPTY_FUNCTION, EmptyData, EmptyState, FiltersBar, FiltersDrawer, FloatingButton, Footer, GaugeChart, GeneralSize, Git, GitSimple, GlobalSearchInput, Header, HorizontalBarChart, Icon, IconPosition, index_d as Icons, IndicatorBadge, Info, InputField, KeyValuePairs, Kubernetes, LabelAndChildrenTooltipContent, Layout$1 as Layout, LineChart, Link$1 as Link, LinkColorEnum, LinkType, List$1 as List, ListItem, ListItemButton, ListItemIcon, ListItemText, ListSubheader, LoadingErrorState, LoadingStates, Menu$1 as Menu, MenuItem, StyledMenuSubheader as MenuSubheader, Message, Navigation, NavigationDrawer, NavigationSubNavigation, Negative, NestedMenu, NestedMenuListbox, NoData, OS_LIGHT_COLORS, OverflowTooltip, PageTitle, Pagination, PathDisplay, PickerItem, Popover, Positive, RadioButton, RadioGroup, Recon, RemainingTags, SEVERITY_VALUE, ScrollArea, SearchInput, Select, SelectNode, SelectNodeListItem, Sent, Severity, SeverityBadge, SeverityBadgeLabel, SeverityBar$1 as SeverityBar, Shield, SideDrawer, Skeleton, Slider, SpiderChart, Spinner, StaticDatePicker, StaticDateTimePicker, StepperModal, StepperPanel, Success, Tab, Table$1 as Table, Tabs, Tag, TagAvatarSize, TagBackgroundColorVariants, TagStatus, Tags, ThemeMode, ThemeProvider, TimePicker, Toast, Toaster, Toggle, Tooltip, TooltipSize, Upload$1 as Upload, ViewSwitcher, Warning, Widget, agentcyBlue, agentcyDarkBlue, agentcyYellow, augmentTreeData, blue100, blue200, blue300, blue400, blue50, blue500, blue600, blue700, blue800, blue900, blueAlpha10, blueAlpha40, blueFocusRingStrong, blueFocusRingWeak, bluePalette, brandColors, capitalize, darkModeCardFloating, darkModeCardLifted, darkModeCardRaised, darkModeCardSubtle, darkModeFooterBottom, darkModeSideDrawerLeft, darkModeSideDrawerRight, darkVars, deepCopyTree, flattenSelectTree, flattenSelectTreeWithSearch, flattenSelectTreeWithoutSearch, formatNodeValue, getAllSelectedLeaves, getAllSelectedParents, getChildrenOfTopLevelNode, getColorBySeverity, getLeafCounts, getTagStyle, gradientStopColors, gradientsPalette, green10, green100, green200, green300, green40, green400, green50, green500, green600, green700, green800, green900, greenPalette, grey0, grey100, grey200, grey300, grey400, grey50, grey500, grey600, grey700, grey800, grey900, greyAlpha10, greyAlpha40, greyPalette, illustrationGradientEnd, illustrationGradientStart, illustrationInfoGradientEnd, illustrationInfoGradientMiddle, illustrationInfoGradientStart, illustrationNegativeGradientStart, illustrationPositiveGradientEnd, illustrationPositiveGradientMiddle, illustrationPositiveGradientStart, illustrationRing, illustrationShell, illustrationStroke, illustrationSurface, illustrationSurfaceSubtle, illustrationWarningGradientEnd, illustrationWarningGradientStart, iocVars, isLeaf, lavender10, lavender100, lavender200, lavender300, lavender400, lavender50, lavender500, lavender600, lavender700, lavender800, lavender900, lavenderPalette, lightAlphaOrange10, lightAlphaOrange40, lightBlue100, lightBlue200, lightBlue300, lightBlue400, lightBlue50, lightBlue500, lightBlue600, lightBlue700, lightBlue800, lightBlue900, lightBlueAlpha10, lightBlueAlpha40, lightBluePalette, lightModeCardFloating, lightModeCardLifted, lightModeCardRaised, lightModeCardSubtle, lightModeFooterBottom, lightModeSideDrawer, lightModeSideDrawerLeft, lightModeSideDrawerRight, lightOrange100, lightOrange200, lightOrange300, lightOrange400, lightOrange50, lightOrange500, lightOrange600, lightOrange700, lightOrange800, lightOrange900, lightOrangePalette, lightVars, lime10, lime100, lime200, lime300, lime400, lime50, lime500, lime600, lime700, lime800, lime900, limePalette, mergeNodeChildrenValueToText, night10, night100, night200, night300, night400, night50, night500, night600, night700, night800, night900, nightPalette, normalizeSeverity, orange100, orange200, orange300, orange400, orange50, orange500, orange600, orange700, orange800, orange900, orangeAlpha10, orangeAlpha40, orangePalette, outshiftBlue, outshiftLogoDark, outshiftLogoGreen, outshiftLogoLightBlue, outshiftLogoLightOrange, outshiftLogoOrange, outshiftLogoWhite, outshiftMidnightBlue, outshiftOrange, pink10, pink100, pink200, pink300, pink400, pink50, pink500, pink600, pink700, pink800, pink900, pinkPalette, purple100, purple200, purple300, purple400, purple50, purple500, purple600, purple700, purple800, purple900, purpleAlpha10, purpleAlpha40, purplePalette, red100, red200, red300, red400, red50, red500, red600, red700, red800, red900, redAlpha10, redAlpha40, redPalette, selectTagStyle, setSelectedMainSkillCategories, sortBySeverity, sunset10, sunset100, sunset200, sunset300, sunset400, sunset50, sunset500, sunset600, sunset700, sunset800, sunset900, sunsetPalette, surfaceDark100, surfaceDark200, surfaceDark300, surfaceDark400, surfaceDark50, surfaceDark500, surfaceDark600, surfaceDark700, surfaceDark800, surfaceDark800Alpha40, surfaceDark900, surfaceDark900Alpha10, surfaceDark900Alpha40, surfaceDarkPalette, surfaceLight100, surfaceLight200, surfaceLight300, surfaceLight400, surfaceLight50, surfaceLight500, surfaceLight50Alpha40, surfaceLight600, surfaceLight700, surfaceLight800, surfaceLight800Alpha40, surfaceLight900, surfaceLight900Alpha10, surfaceLight900Alpha40, surfaceLightPalette, teal10, teal100, teal200, teal300, teal400, teal50, teal500, teal600, teal700, teal800, teal900, tealPalette, toast, upwardsPush, useNestedMenu, useThemeMode, yellow100, yellow200, yellow300, yellow400, yellow50, yellow500, yellow600, yellow700, yellow800, yellow900, yellowAlpha10, yellowAlpha40, yellowPalette };
|
|
7697
|
-
export type { AccordionProps, ActionsDialogProps, ActivityTimelineProps, ActivityTimelineStep, AnchorLinkMenuItem, AnchorLinkMenuProps, AssetsData, AtomicTypes, AugmentedSelectNodeType, AvatarGroupProps, AvatarProps, BackdropProps, BadgeProps, BadgeType, BannerProps, BarChartProps, BarGraphItem, BarGraphProps, BarProps, BasePageProps, BreadcrumbItem, BreadcrumbsProps, ButtonProps, CardActionAreaProps, CardActionsProps, CardContentProps, CardDescriptionProps, CardHeaderProps, CardProps, CardSubheaderProps, ChartCategory, ChartCategoryItem, ChartDataItem, ChartProps, CheckboxProps, CodeBlockHeaderButton, CodeBlockProps, CodeBlockSize, ConditionalPropsByType, CopyButtonPosition, CopyButtonProps, CopyButtonSize, CopyButtonStylesProps, DatePickerProps, DateRangePickerProps, DateTimePickerProps, DialogActionsProps, DialogContentProps, DialogContentTextProps, DialogProps, DialogSubtitleProps, DialogTitleProps, DividerProps, DividerVariant, DonutProps, EmptyStateDirection, EmptyStateProps, EmptyStateVariant, ExportProps, ExtendedChartProps, ExtendedDataPoint, FilterData, FilterOptionData, FiltersBarActionsProps, FiltersBarProps, FiltersDrawerProps, FlattenSelectTreeArgs, FlattenedSelectTreeData, FloatingButtonProps, FloatingButtonSize, FloatingButtonVariant, FooterProps, GaugeChartProps, GlobalSearchGroup, GlobalSearchItem, GlobalSearchProps, Gradient, GradientsPalette, HeaderAction, HeaderProps, HeaderTooltipMeta, HorizontalBarChartProps, IChartWidgetProps, IWidgetProps, IconProps, IndicatorBadgeProps, IndicatorBadgeValue, InputFieldProps, KeyValuePairItem, KeyValuePairsLayout, KeyValuePairsProps, LayoutProps, LineChartProps, LinkColorStatus, LinkProps, LinkState, ListItemButtonProps, ListItemIconProps, ListItemProps, ListItemTextProps, ListProps, ListSubheaderProps, LoadingErrorStateProps, LoadingStatesProps, LoadingStatesSkeletonState, MenuItemProps, MenuItemSize, MenuProps, MessageProps, MessageType, NavigationDrawerProps, NavigationItemData, NavigationItemState, NavigationProps, NavigationSectionData, NavigationSubNavigationProps, NestedMenuProps, OverflowTooltipProps, PageTitleProps, PaginationProps, PathDisplayProps, PickerDisplay, PickerItemProps, PickerSize,
|
|
7714
|
+
export { Accordion, StyledAccordionSummary as AccordionSummary, ActionsDialog, ActivityTimeline, ActivityTimelineStepStatus, AddDomain, AddRepos, AnchorLinkMenu, AttackPathAnalysis, AttackPathAnalysisWalkThrough, Avatar, AvatarGroup, Backdrop, Badge, Banner, BarChart$1 as BarChart, BarGraph, BasePage, Breadcrumbs, Button, Card, CardActionArea, CardActions, CardContent, CardDescription, CardHeader, CardSubheader, Celebration, ChartType, ChartTypeComponents, ChartWidget, Checkbox$1 as Checkbox, CiCd, Cloud, CloudSimple, CodeBlock, CopyButton, CreateTableInstance, Dashboard, Data, DatePicker, DateRangePicker, DateTimePicker, Dialog, DialogActions, DialogContent, DialogContentText, DialogSubtitle, DialogTitle, Divider, DonutChart, EMPTY_FUNCTION, EmptyData, EmptyState, FiltersBar, FiltersDrawer, FloatingButton, Footer, GaugeChart, GeneralSize, Git, GitSimple, GlobalSearchInput, Header, HorizontalBarChart, Icon, IconPosition, index_d as Icons, IndicatorBadge, Info, InputField, KeyValuePairs, Kubernetes, LabelAndChildrenTooltipContent, Layout$1 as Layout, LineChart, Link$1 as Link, LinkColorEnum, LinkType, List$1 as List, ListItem, ListItemButton, ListItemIcon, ListItemText, ListSubheader, LoadingErrorState, LoadingStates, Menu$1 as Menu, MenuItem, StyledMenuSubheader as MenuSubheader, Message, Navigation, NavigationDrawer, NavigationSubNavigation, Negative, NestedMenu, NestedMenuListbox, NoData, OS_LIGHT_COLORS, OverflowTooltip, POPOVER_PLACEMENTS, PageTitle, Pagination, PathDisplay, PickerItem, Popover, PopoverPlacement, PopoverPlacementAlign, PopoverPlacementSide, Positive, RadioButton, RadioGroup, Recon, RemainingTags, SEVERITY_VALUE, ScrollArea, SearchInput, Select, SelectNode, SelectNodeListItem, Sent, Severity, SeverityBadge, SeverityBadgeLabel, SeverityBar$1 as SeverityBar, Shield, SideDrawer, Skeleton, Slider, SpiderChart, Spinner, StaticDatePicker, StaticDateTimePicker, StepperModal, StepperPanel, Success, Tab, Table$1 as Table, Tabs, Tag, TagAvatarSize, TagBackgroundColorVariants, TagStatus, Tags, ThemeMode, ThemeProvider, TimePicker, Toast, Toaster, Toggle, Tooltip, TooltipSize, Upload$1 as Upload, ViewSwitcher, Warning, Widget, agentcyBlue, agentcyDarkBlue, agentcyYellow, augmentTreeData, blue100, blue200, blue300, blue400, blue50, blue500, blue600, blue700, blue800, blue900, blueAlpha10, blueAlpha40, blueFocusRingStrong, blueFocusRingWeak, bluePalette, brandColors, capitalize, darkModeCardFloating, darkModeCardLifted, darkModeCardRaised, darkModeCardSubtle, darkModeFooterBottom, darkModeSideDrawerLeft, darkModeSideDrawerRight, darkVars, deepCopyTree, flattenSelectTree, flattenSelectTreeWithSearch, flattenSelectTreeWithoutSearch, formatNodeValue, getAllSelectedLeaves, getAllSelectedParents, getChildrenOfTopLevelNode, getColorBySeverity, getLeafCounts, getTagStyle, gradientStopColors, gradientsPalette, green10, green100, green200, green300, green40, green400, green50, green500, green600, green700, green800, green900, greenPalette, grey0, grey100, grey200, grey300, grey400, grey50, grey500, grey600, grey700, grey800, grey900, greyAlpha10, greyAlpha40, greyPalette, illustrationGradientEnd, illustrationGradientStart, illustrationInfoGradientEnd, illustrationInfoGradientMiddle, illustrationInfoGradientStart, illustrationNegativeGradientStart, illustrationPositiveGradientEnd, illustrationPositiveGradientMiddle, illustrationPositiveGradientStart, illustrationRing, illustrationShell, illustrationStroke, illustrationSurface, illustrationSurfaceSubtle, illustrationWarningGradientEnd, illustrationWarningGradientStart, iocVars, isLeaf, lavender10, lavender100, lavender200, lavender300, lavender400, lavender50, lavender500, lavender600, lavender700, lavender800, lavender900, lavenderPalette, lightAlphaOrange10, lightAlphaOrange40, lightBlue100, lightBlue200, lightBlue300, lightBlue400, lightBlue50, lightBlue500, lightBlue600, lightBlue700, lightBlue800, lightBlue900, lightBlueAlpha10, lightBlueAlpha40, lightBluePalette, lightModeCardFloating, lightModeCardLifted, lightModeCardRaised, lightModeCardSubtle, lightModeFooterBottom, lightModeSideDrawer, lightModeSideDrawerLeft, lightModeSideDrawerRight, lightOrange100, lightOrange200, lightOrange300, lightOrange400, lightOrange50, lightOrange500, lightOrange600, lightOrange700, lightOrange800, lightOrange900, lightOrangePalette, lightVars, lime10, lime100, lime200, lime300, lime400, lime50, lime500, lime600, lime700, lime800, lime900, limePalette, mergeNodeChildrenValueToText, night10, night100, night200, night300, night400, night50, night500, night600, night700, night800, night900, nightPalette, normalizeSeverity, orange100, orange200, orange300, orange400, orange50, orange500, orange600, orange700, orange800, orange900, orangeAlpha10, orangeAlpha40, orangePalette, outshiftBlue, outshiftLogoDark, outshiftLogoGreen, outshiftLogoLightBlue, outshiftLogoLightOrange, outshiftLogoOrange, outshiftLogoWhite, outshiftMidnightBlue, outshiftOrange, pink10, pink100, pink200, pink300, pink400, pink50, pink500, pink600, pink700, pink800, pink900, pinkPalette, purple100, purple200, purple300, purple400, purple50, purple500, purple600, purple700, purple800, purple900, purpleAlpha10, purpleAlpha40, purplePalette, red100, red200, red300, red400, red50, red500, red600, red700, red800, red900, redAlpha10, redAlpha40, redPalette, selectTagStyle, setSelectedMainSkillCategories, sortBySeverity, sunset10, sunset100, sunset200, sunset300, sunset400, sunset50, sunset500, sunset600, sunset700, sunset800, sunset900, sunsetPalette, surfaceDark100, surfaceDark200, surfaceDark300, surfaceDark400, surfaceDark50, surfaceDark500, surfaceDark600, surfaceDark700, surfaceDark800, surfaceDark800Alpha40, surfaceDark900, surfaceDark900Alpha10, surfaceDark900Alpha40, surfaceDarkPalette, surfaceLight100, surfaceLight200, surfaceLight300, surfaceLight400, surfaceLight50, surfaceLight500, surfaceLight50Alpha40, surfaceLight600, surfaceLight700, surfaceLight800, surfaceLight800Alpha40, surfaceLight900, surfaceLight900Alpha10, surfaceLight900Alpha40, surfaceLightPalette, teal10, teal100, teal200, teal300, teal400, teal50, teal500, teal600, teal700, teal800, teal900, tealPalette, toast, upwardsPush, useNestedMenu, useThemeMode, yellow100, yellow200, yellow300, yellow400, yellow50, yellow500, yellow600, yellow700, yellow800, yellow900, yellowAlpha10, yellowAlpha40, yellowPalette };
|
|
7715
|
+
export type { AccordionProps, ActionsDialogProps, ActivityTimelineProps, ActivityTimelineStep, AnchorLinkMenuItem, AnchorLinkMenuProps, AssetsData, AtomicTypes, AugmentedSelectNodeType, AvatarGroupProps, AvatarProps, BackdropProps, BadgeProps, BadgeType, BannerProps, BarChartProps, BarGraphItem, BarGraphProps, BarProps, BasePageProps, BreadcrumbItem, BreadcrumbsProps, ButtonProps, CardActionAreaProps, CardActionsProps, CardContentProps, CardDescriptionProps, CardHeaderProps, CardProps, CardSubheaderProps, ChartCategory, ChartCategoryItem, ChartDataItem, ChartProps, CheckboxProps, CodeBlockHeaderButton, CodeBlockProps, CodeBlockSize, ConditionalPropsByType, CopyButtonPosition, CopyButtonProps, CopyButtonSize, CopyButtonStylesProps, DatePickerProps, DateRangePickerProps, DateTimePickerProps, DialogActionsProps, DialogContentProps, DialogContentTextProps, DialogProps, DialogSubtitleProps, DialogTitleProps, DividerProps, DividerVariant, DonutProps, EmptyStateDirection, EmptyStateProps, EmptyStateVariant, ExportProps, ExtendedChartProps, ExtendedDataPoint, FilterData, FilterOptionData, FiltersBarActionsProps, FiltersBarProps, FiltersDrawerProps, FlattenSelectTreeArgs, FlattenedSelectTreeData, FloatingButtonProps, FloatingButtonSize, FloatingButtonVariant, FooterProps, GaugeChartProps, GlobalSearchGroup, GlobalSearchItem, GlobalSearchProps, Gradient, GradientsPalette, HeaderAction, HeaderProps, HeaderTooltipMeta, HorizontalBarChartProps, IChartWidgetProps, IWidgetProps, IconProps, IndicatorBadgeProps, IndicatorBadgeValue, InputFieldProps, KeyValuePairItem, KeyValuePairsLayout, KeyValuePairsProps, LayoutProps, LineChartProps, LinkColorStatus, LinkProps, LinkState, ListItemButtonProps, ListItemIconProps, ListItemProps, ListItemTextProps, ListProps, ListSubheaderProps, LoadingErrorStateProps, LoadingStatesProps, LoadingStatesSkeletonState, MenuItemProps, MenuItemSize, MenuProps, MessageProps, MessageType, NavigationDrawerProps, NavigationItemData, NavigationItemState, NavigationProps, NavigationSectionData, NavigationSubNavigationProps, NestedMenuProps, OverflowTooltipProps, PageTitleProps, PaginationProps, PathDisplayProps, PickerDisplay, PickerItemProps, PickerSize, PopoverProps, PopoverSize, RadioButtonProps, RadioGroupProps, ScrollAreaProps, SearchInputProps, SelectNodeType, SelectProps, SeverityBadgeLabelProps, SeverityBadgeProps, SeverityBadgeScoreSystemItem, SeverityBarProps, SideDrawerFooterProps, SideDrawerHeaderProps, SideDrawerProps, SkeletonProps, SliderProps, SpiderChartProps, SpinnerProps, StaticDatePickerProps, StaticDateTimePickerProps, StaticTimePickerProps, StatusBanner, StepperModalProps, StepperModalStep, StepperPanelProps, StepperStep, SubNavItem, TabProps, TableChartDataItem, TableProps, TableRow, TableTitle, TabsProps, TabsType, TagProps, TagStatusStyle, TagsProps, ThemeModeContextValue, ThemeProviderProps, TimePickerProps, ToastAction, ToastProps, ToastType, ToasterProps, ToggleProps, TooltipProps, TopToolbarProps, UploadFile, UploadFileStatus, UploadProps, VarsType, ViewSwitcherOption, ViewSwitcherOptionObject, ViewSwitcherOptionProperties, ViewSwitcherProps, ViewSwitcherSize };
|