@grasp-labs/ds-react-components 0.28.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/baseButton/BaseButton.d.ts +4 -4
- package/dist/components/baseButton/BaseButton.styles.d.ts +5 -20
- package/dist/components/baseTextBox/BaseTextBox.d.ts +4 -4
- package/dist/components/button/Button.d.ts +5 -4
- package/dist/components/button/Button.styles.d.ts +3 -10
- package/dist/components/datePicker/DatePickerTextBox.d.ts +3 -3
- package/dist/components/dialog/ConfirmationDialog.d.ts +2 -2
- package/dist/components/dynamicIcon/DynamicIcon.d.ts +1 -1
- package/dist/components/iconButton/IconButton.d.ts +5 -4
- package/dist/components/iconButton/IconButton.styles.d.ts +5 -0
- package/dist/components/link/Link.d.ts +2 -2
- package/dist/components/multiSelect/MultiSelect.d.ts +3 -3
- package/dist/components/select/Select.d.ts +3 -3
- package/dist/components/table/components/Pagination.d.ts +3 -3
- package/dist/components/table/types.d.ts +0 -2
- package/dist/components/typography/Typography.d.ts +16 -24
- package/dist/components/typography/index.d.ts +1 -1
- package/dist/icons/iconsComponents.d.ts +58 -0
- package/dist/icons/{icons.d.ts → iconsLazy.d.ts} +96 -70
- package/dist/icons/index.d.ts +2 -1
- package/dist/{index-D-LlrXgj.js → index-3FfnDfv1.js} +5953 -5935
- package/dist/index.css +1 -1
- package/dist/{index.esm-DSM8g92J.js → index.esm-DDTEaO23.js} +1 -1
- package/dist/index.js +132 -118
- package/dist/tailwind-styles.css +222 -68
- package/package.json +1 -1
- package/dist/circle-filled-DDHXyiE7.js +0 -5
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ButtonHTMLAttributes } from 'react';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
import { Variant } from './BaseButton.styles';
|
|
3
|
+
export type BaseButtonProps = Omit<ButtonHTMLAttributes<HTMLButtonElement>, "prefix" | "suffix"> & {
|
|
4
|
+
variant?: Variant;
|
|
5
5
|
};
|
|
6
6
|
/**
|
|
7
7
|
* A foundational button component with configurable variants and color schemes.
|
|
@@ -10,4 +10,4 @@ export type BaseButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
|
10
10
|
* @param props - The props for the BaseButton component.
|
|
11
11
|
* @returns The rendered button element.
|
|
12
12
|
*/
|
|
13
|
-
export declare const BaseButton: ({ variant,
|
|
13
|
+
export declare const BaseButton: ({ variant, className, children, ...props }: BaseButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,20 +1,5 @@
|
|
|
1
|
-
export type Variant = "
|
|
2
|
-
export
|
|
3
|
-
export declare const
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
readonly secondary: "border-2 border-secondary bg-secondary text-text disabled:hover:bg-secondary disabled:hover:text-text hover:bg-contrast hover:text-text";
|
|
7
|
-
readonly danger: "border-2 border-error bg-error text-contrast disabled:hover:bg-error disabled:hover:text-contrast hover:bg-contrast hover:text-error";
|
|
8
|
-
};
|
|
9
|
-
readonly outlined: {
|
|
10
|
-
readonly primary: "border-2 border-primary bg-contrast text-text disabled:hover:bg-contrast disabled:hover:text-text hover:bg-primary hover:text-contrast";
|
|
11
|
-
readonly secondary: "border-2 border-secondary bg-contrast text-text disabled:hover:bg-contrast disabled:hover:text-text hover:bg-secondary hover:text-text";
|
|
12
|
-
readonly danger: "border-2 border-error bg-contrast text-error disabled:hover:bg-contrast disabled:hover:text-error hover:bg-error hover:text-contrast";
|
|
13
|
-
};
|
|
14
|
-
readonly text: {
|
|
15
|
-
readonly primary: "text-primary hover:text-primary-light";
|
|
16
|
-
readonly secondary: "text-text";
|
|
17
|
-
readonly danger: "text-error";
|
|
18
|
-
};
|
|
19
|
-
};
|
|
20
|
-
export declare function getBaseButtonClassName(variant: Variant, color: Color, className?: string): string;
|
|
1
|
+
export type Variant = "primary" | "secondary" | "text" | "danger";
|
|
2
|
+
export declare const baseClasses: "\n inline-flex cursor-pointer items-center justify-center select-none transition-colors leading-none\n focus-visible:outline-primary focus-visible:outline-1 focus-visible:outline-offset-1\n";
|
|
3
|
+
export declare const variantClasses: Record<Variant, string>;
|
|
4
|
+
export declare const disabledClasses: "disabled:cursor-not-allowed";
|
|
5
|
+
export declare const getBaseButtonClassName: (variant: Variant, className?: string) => string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { InputHTMLAttributes, JSX, ReactNode } from 'react';
|
|
2
2
|
export type AcceptOnlyPattern = "number" | "integer" | "alphanumeric" | "alpha" | "decimal";
|
|
3
|
-
export type BaseTextBoxProps = Omit<InputHTMLAttributes<HTMLInputElement>, "children"> & {
|
|
3
|
+
export type BaseTextBoxProps = Omit<InputHTMLAttributes<HTMLInputElement>, "children" | "prefix" | "suffix"> & {
|
|
4
4
|
/** Optional prefix element (e.g. icon, button) */
|
|
5
|
-
|
|
5
|
+
prefix?: ReactNode;
|
|
6
6
|
/** Optional suffix element (e.g. icon, button) */
|
|
7
|
-
|
|
7
|
+
suffix?: ReactNode;
|
|
8
8
|
/** Whether the textbox is in an error state */
|
|
9
9
|
error?: boolean;
|
|
10
10
|
/** Whether the textbox is disabled */
|
|
@@ -37,4 +37,4 @@ export type BaseTextBoxProps = Omit<InputHTMLAttributes<HTMLInputElement>, "chil
|
|
|
37
37
|
* @param ref - Ref forwarded to the native input element.
|
|
38
38
|
* @returns {JSX.Element} The rendered BaseTextBox component.
|
|
39
39
|
*/
|
|
40
|
-
export declare const BaseTextBox: ({ className,
|
|
40
|
+
export declare const BaseTextBox: ({ className, prefix, suffix, error, onChange, disabled, ref, id, name, rootClassName, type, acceptOnly, ...rest }: BaseTextBoxProps) => JSX.Element;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
2
|
import { BaseButtonProps } from '../baseButton';
|
|
3
|
+
export type ButtonSize = "small" | "medium";
|
|
3
4
|
export type ButtonProps = BaseButtonProps & {
|
|
4
|
-
size?:
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
size?: ButtonSize;
|
|
6
|
+
prefix?: ReactNode;
|
|
7
|
+
suffix?: ReactNode;
|
|
7
8
|
};
|
|
8
9
|
/**
|
|
9
10
|
* A button component with size variants and optional prefix/suffix content.
|
|
@@ -12,4 +13,4 @@ export type ButtonProps = BaseButtonProps & {
|
|
|
12
13
|
* @param props - The props for the Button component.
|
|
13
14
|
* @returns The rendered button with optional prefix/suffix content.
|
|
14
15
|
*/
|
|
15
|
-
export declare const Button: ({ size, className, children,
|
|
16
|
+
export declare const Button: ({ size, className, children, prefix, suffix, variant, ...props }: ButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
readonly large: "rounded-xl px-7 py-3 text-sm gap-2";
|
|
5
|
-
};
|
|
6
|
-
export declare const buttonContentClasses: {
|
|
7
|
-
readonly small: "h-4";
|
|
8
|
-
readonly medium: "h-5";
|
|
9
|
-
readonly large: "h-5";
|
|
10
|
-
};
|
|
1
|
+
import { ButtonSize } from './Button';
|
|
2
|
+
export declare const buttonBaseClasses: "[&>svg]:size-4";
|
|
3
|
+
export declare const buttonSizeClasses: Record<ButtonSize, string>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export declare const DatePickerTextBox: import('react').ForwardRefExoticComponent<Omit<Omit<import('react').InputHTMLAttributes<HTMLInputElement>, "children"> & {
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
export declare const DatePickerTextBox: import('react').ForwardRefExoticComponent<Omit<Omit<import('react').InputHTMLAttributes<HTMLInputElement>, "prefix" | "suffix" | "children"> & {
|
|
2
|
+
prefix?: import('react').ReactNode;
|
|
3
|
+
suffix?: import('react').ReactNode;
|
|
4
4
|
error?: boolean;
|
|
5
5
|
disabled?: boolean;
|
|
6
6
|
id?: string;
|
|
@@ -13,9 +13,9 @@ export type ConfirmationDialogProps = Omit<DialogProps, "footerActions"> & {
|
|
|
13
13
|
confirmLabel?: string;
|
|
14
14
|
/** Label for the cancel button @default "Cancel" */
|
|
15
15
|
cancelLabel?: string;
|
|
16
|
-
/** Props for the confirm button @default {
|
|
16
|
+
/** Props for the confirm button @default { } */
|
|
17
17
|
confirmButtonProps?: Omit<ButtonProps, "onClick" | "children">;
|
|
18
|
-
/** Props for the cancel button @default { variant: "
|
|
18
|
+
/** Props for the cancel button @default { variant: "secondary" } */
|
|
19
19
|
cancelButtonProps?: Omit<ButtonProps, "onClick" | "children">;
|
|
20
20
|
};
|
|
21
21
|
/**
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { ComponentType, SVGProps } from 'react';
|
|
2
|
-
import { BaseButtonProps } from '../baseButton';
|
|
3
|
-
export type IconButtonProps = Omit<BaseButtonProps, "children"> & {
|
|
4
|
-
size?: "small" | "medium"
|
|
2
|
+
import { BaseButtonProps, Variant } from '../baseButton';
|
|
3
|
+
export type IconButtonProps = Omit<BaseButtonProps, "children" | "variant"> & {
|
|
4
|
+
size?: "small" | "medium";
|
|
5
5
|
icon: ComponentType<SVGProps<SVGSVGElement>>;
|
|
6
6
|
"aria-label"?: string;
|
|
7
|
+
variant?: Variant | "raw";
|
|
7
8
|
};
|
|
8
9
|
/**
|
|
9
10
|
* A circular icon-only button component for actions requiring minimal visual footprint.
|
|
@@ -12,4 +13,4 @@ export type IconButtonProps = Omit<BaseButtonProps, "children"> & {
|
|
|
12
13
|
* @param props - The props for the IconButton component.
|
|
13
14
|
* @returns The rendered circular icon button.
|
|
14
15
|
*/
|
|
15
|
-
export declare const IconButton: ({ size, icon: Icon, className, ...props }: IconButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export declare const IconButton: ({ size, icon: Icon, className, variant, ...props }: IconButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -2,7 +2,7 @@ import { ElementType } from 'react';
|
|
|
2
2
|
import { Variant } from '../baseButton';
|
|
3
3
|
import { Button } from '../button';
|
|
4
4
|
import * as React from "react";
|
|
5
|
-
type BaseButtonProps = Pick<React.ComponentProps<typeof Button>, "
|
|
5
|
+
type BaseButtonProps = Pick<React.ComponentProps<typeof Button>, "size" | "className" | "children" | "prefix" | "suffix">;
|
|
6
6
|
type VisualConfigProps = BaseButtonProps & {
|
|
7
7
|
variant?: Variant | "generic";
|
|
8
8
|
};
|
|
@@ -17,5 +17,5 @@ export type LinkProps<Component extends ElementType = "a"> = VisualConfigProps &
|
|
|
17
17
|
* @param props - The props for the Link component.
|
|
18
18
|
* @returns The rendered link element.
|
|
19
19
|
*/
|
|
20
|
-
export declare function Link<ComponentType extends ElementType = "a">({ as, variant,
|
|
20
|
+
export declare function Link<ComponentType extends ElementType = "a">({ as, variant, size, className, prefix, suffix, children, ...props }: LinkProps<ComponentType>): import("react/jsx-runtime").JSX.Element;
|
|
21
21
|
export {};
|
|
@@ -3,8 +3,8 @@ import { BaseOption } from '../../types/BaseOption';
|
|
|
3
3
|
export type MultiSelectProps<Option extends BaseOption> = {
|
|
4
4
|
value: Option[];
|
|
5
5
|
setValue: (value: Option[] | ((prevState: Option[]) => Option[])) => void;
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
prefix?: ReactElement;
|
|
7
|
+
suffix?: ReactElement;
|
|
8
8
|
options: Option[];
|
|
9
9
|
id?: string;
|
|
10
10
|
error?: boolean;
|
|
@@ -25,4 +25,4 @@ export type MultiSelectProps<Option extends BaseOption> = {
|
|
|
25
25
|
* @param props - The props for the MultiSelect component.
|
|
26
26
|
* @returns The rendered multi-select dropdown with tag list.
|
|
27
27
|
*/
|
|
28
|
-
export declare const MultiSelect: <Option extends BaseOption>({ value, setValue, options, id, error,
|
|
28
|
+
export declare const MultiSelect: <Option extends BaseOption>({ value, setValue, options, id, error, prefix, suffix, disabled, emptyPlaceholder, addMorePlaceholder, toggleAriaLabel, noOptionsText, ref, maxHeight, listClassName, }: MultiSelectProps<Option>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -4,8 +4,8 @@ import { NoneOf } from '../../types/NoneOf';
|
|
|
4
4
|
export type BaseSelectProps<Option> = {
|
|
5
5
|
value: Option | null;
|
|
6
6
|
setValue: (value: Option | null) => void;
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
prefix?: ReactElement;
|
|
8
|
+
suffix?: ReactElement;
|
|
9
9
|
options: Option[];
|
|
10
10
|
id?: string;
|
|
11
11
|
error?: boolean;
|
|
@@ -37,4 +37,4 @@ export type SelectProps<Option extends BaseOption> = (BaseSelectProps<Option> &
|
|
|
37
37
|
* @param props - The props for the Select component.
|
|
38
38
|
* @returns The rendered select dropdown component.
|
|
39
39
|
*/
|
|
40
|
-
export declare const Select: <Option extends BaseOption>({ value, setValue, options, id,
|
|
40
|
+
export declare const Select: <Option extends BaseOption>({ value, setValue, options, id, prefix, suffix, error, disabled, placeholder, toggleAriaLabel, noOptionsText, ref, disableSearch, className, containerClassName, listClassName, maxHeight, onSearch, debounce, isLoading, loadingText, }: SelectProps<Option>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import { HTMLAttributes } from 'react';
|
|
2
|
+
export type PaginationProps = HTMLAttributes<HTMLDivElement> & {
|
|
2
3
|
currentPage: number;
|
|
3
4
|
totalPages: number;
|
|
4
5
|
totalItems: number;
|
|
@@ -8,7 +9,6 @@ export type PaginationProps = {
|
|
|
8
9
|
onItemsPerPageChange: (itemsPerPage: number) => void;
|
|
9
10
|
className?: string;
|
|
10
11
|
selectClassName?: string;
|
|
11
|
-
itemsPerPageText?: string;
|
|
12
12
|
fromText?: string;
|
|
13
13
|
};
|
|
14
14
|
/**
|
|
@@ -18,4 +18,4 @@ export type PaginationProps = {
|
|
|
18
18
|
* @param props - The props for the Pagination component.
|
|
19
19
|
* @returns The rendered pagination controls with navigation buttons and page info.
|
|
20
20
|
*/
|
|
21
|
-
export declare const Pagination: ({ currentPage, totalPages, totalItems, itemsPerPage, itemsPerPageOptions, onPageChange, onItemsPerPageChange, className,
|
|
21
|
+
export declare const Pagination: ({ currentPage, totalPages, totalItems, itemsPerPage, itemsPerPageOptions, onPageChange, onItemsPerPageChange, className, fromText, ...rest }: PaginationProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -38,13 +38,11 @@ export type TableProps<T> = Omit<TableOptions<T>, "getCoreRowModel" | "getSorted
|
|
|
38
38
|
paginationProps?: {
|
|
39
39
|
mode?: "client";
|
|
40
40
|
itemsPerPageOptions?: number[];
|
|
41
|
-
itemsPerPageText?: string;
|
|
42
41
|
fromText?: string;
|
|
43
42
|
totalItems?: never;
|
|
44
43
|
} | {
|
|
45
44
|
mode: "server";
|
|
46
45
|
itemsPerPageOptions?: number[];
|
|
47
|
-
itemsPerPageText?: string;
|
|
48
46
|
fromText?: string;
|
|
49
47
|
totalItems: number;
|
|
50
48
|
};
|
|
@@ -1,27 +1,19 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
2
|
export type TypographyProps = {
|
|
3
|
-
children:
|
|
4
|
-
bold?: boolean;
|
|
3
|
+
children: ReactNode;
|
|
5
4
|
className?: string;
|
|
6
5
|
};
|
|
7
|
-
export
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
export declare const
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
export declare const
|
|
20
|
-
|
|
21
|
-
}, string | React.JSXElementConstructor<any>>;
|
|
22
|
-
export declare const H6: ({ children, bold, className }: TypographyProps) => React.ReactElement<{
|
|
23
|
-
className: string;
|
|
24
|
-
}, string | React.JSXElementConstructor<any>>;
|
|
25
|
-
export declare const Label: ({ children, bold, className }: TypographyProps) => React.ReactElement<{
|
|
26
|
-
className: string;
|
|
27
|
-
}, string | React.JSXElementConstructor<any>>;
|
|
6
|
+
export type BodyProps = TypographyProps & {
|
|
7
|
+
bold?: boolean;
|
|
8
|
+
small?: boolean;
|
|
9
|
+
};
|
|
10
|
+
export type LabelProps = TypographyProps & {
|
|
11
|
+
bold?: boolean;
|
|
12
|
+
};
|
|
13
|
+
export declare const H1: ({ className, ...props }: TypographyProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export declare const H2: ({ className, ...props }: TypographyProps) => import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
export declare const H3: ({ className, ...props }: TypographyProps) => import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export declare const H4: ({ className, ...props }: TypographyProps) => import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export declare const H5: ({ className, ...props }: TypographyProps) => import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export declare const Body: ({ bold, small, className, ...props }: BodyProps) => import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export declare const Label: ({ bold, className, ...props }: LabelProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { H1, H2, H3, H4, H5,
|
|
1
|
+
export { H1, H2, H3, H4, H5, Body, Label } from './Typography';
|
|
2
2
|
export type { TypographyProps } from './Typography';
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { IconComponent } from '../types/IconComponent';
|
|
2
|
+
export declare const AddressIcon: IconComponent;
|
|
3
|
+
export declare const ArrowDownIcon: IconComponent;
|
|
4
|
+
export declare const ArrowLeftIcon: IconComponent;
|
|
5
|
+
export declare const ArrowRightIcon: IconComponent;
|
|
6
|
+
export declare const ArrowUpIcon: IconComponent;
|
|
7
|
+
export declare const BellIcon: IconComponent;
|
|
8
|
+
export declare const BriefcaseIcon: IconComponent;
|
|
9
|
+
export declare const CalendarIcon: IconComponent;
|
|
10
|
+
export declare const CautionIcon: IconComponent;
|
|
11
|
+
export declare const CheckIcon: IconComponent;
|
|
12
|
+
export declare const ChevronDoubleLeftIcon: IconComponent;
|
|
13
|
+
export declare const ChevronDoubleRightIcon: IconComponent;
|
|
14
|
+
export declare const CircleIcon: IconComponent;
|
|
15
|
+
export declare const ClockIcon: IconComponent;
|
|
16
|
+
export declare const CloseIcon: IconComponent;
|
|
17
|
+
export declare const CogWheelIcon: IconComponent;
|
|
18
|
+
export declare const ConnectionIcon: IconComponent;
|
|
19
|
+
export declare const CopyIcon: IconComponent;
|
|
20
|
+
export declare const CorrectIcon: IconComponent;
|
|
21
|
+
export declare const DashIcon: IconComponent;
|
|
22
|
+
export declare const DashboardIcon: IconComponent;
|
|
23
|
+
export declare const DatabaseIcon: IconComponent;
|
|
24
|
+
export declare const DeleteIcon: IconComponent;
|
|
25
|
+
export declare const DetailsIcon: IconComponent;
|
|
26
|
+
export declare const DownIcon: IconComponent;
|
|
27
|
+
export declare const DownloadIcon: IconComponent;
|
|
28
|
+
export declare const EarthIcon: IconComponent;
|
|
29
|
+
export declare const EditIcon: IconComponent;
|
|
30
|
+
export declare const ErrorIcon: IconComponent;
|
|
31
|
+
export declare const EyeIcon: IconComponent;
|
|
32
|
+
export declare const FileIcon: IconComponent;
|
|
33
|
+
export declare const EyeOffIcon: IconComponent;
|
|
34
|
+
export declare const FilterIcon: IconComponent;
|
|
35
|
+
export declare const GlobeIcon: IconComponent;
|
|
36
|
+
export declare const HourglassIcon: IconComponent;
|
|
37
|
+
export declare const IdeaIcon: IconComponent;
|
|
38
|
+
export declare const InfoIcon: IconComponent;
|
|
39
|
+
export declare const LeftBarIcon: IconComponent;
|
|
40
|
+
export declare const LeftIcon: IconComponent;
|
|
41
|
+
export declare const ListIcon: IconComponent;
|
|
42
|
+
export declare const MoreIcon: IconComponent;
|
|
43
|
+
export declare const NotepadIcon: IconComponent;
|
|
44
|
+
export declare const NotesIcon: IconComponent;
|
|
45
|
+
export declare const PlayIcon: IconComponent;
|
|
46
|
+
export declare const PlusIcon: IconComponent;
|
|
47
|
+
export declare const ProfileIcon: IconComponent;
|
|
48
|
+
export declare const RecycleIcon: IconComponent;
|
|
49
|
+
export declare const ReloadIcon: IconComponent;
|
|
50
|
+
export declare const RightIcon: IconComponent;
|
|
51
|
+
export declare const SaveIcon: IconComponent;
|
|
52
|
+
export declare const SearchIcon: IconComponent;
|
|
53
|
+
export declare const ServerIcon: IconComponent;
|
|
54
|
+
export declare const SuccessIcon: IconComponent;
|
|
55
|
+
export declare const TableIcon: IconComponent;
|
|
56
|
+
export declare const UpIcon: IconComponent;
|
|
57
|
+
export declare const UserIcon: IconComponent;
|
|
58
|
+
export declare const WarningIcon: IconComponent;
|