@grasp-labs/ds-react-components 0.28.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  import { ButtonHTMLAttributes } from 'react';
2
- export type BaseButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
3
- variant?: "contained" | "outlined" | "text";
4
- color?: "primary" | "secondary" | "danger";
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, color, className, children, ...props }: BaseButtonProps) => import("react/jsx-runtime").JSX.Element;
13
+ export declare const BaseButton: ({ variant, className, children, ...props }: BaseButtonProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,20 +1,5 @@
1
- export type Variant = "contained" | "outlined" | "text";
2
- export type Color = "primary" | "secondary" | "danger";
3
- export declare const colorVariantClasses: {
4
- readonly contained: {
5
- readonly primary: "border-2 border-primary bg-primary text-contrast disabled:hover:bg-primary disabled:hover:text-contrast hover:bg-contrast hover:text-text ";
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: "\n disabled:cursor-not-allowed disabled:opacity-50\n";
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
- prefixContent?: ReactNode;
5
+ prefix?: ReactNode;
6
6
  /** Optional suffix element (e.g. icon, button) */
7
- suffixContent?: ReactNode;
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, prefixContent, suffixContent, error, onChange, disabled, ref, id, name, rootClassName, type, acceptOnly, ...rest }: BaseTextBoxProps) => JSX.Element;
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?: "small" | "medium" | "large";
5
- prefixContent?: ReactNode;
6
- suffixContent?: ReactNode;
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, prefixContent, suffixContent, ...props }: ButtonProps) => import("react/jsx-runtime").JSX.Element;
16
+ export declare const Button: ({ size, className, children, prefix, suffix, variant, ...props }: ButtonProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,10 +1,3 @@
1
- export declare const buttonSizeClasses: {
2
- readonly small: "rounded-lg px-3 py-1 text-xs gap-1";
3
- readonly medium: "rounded-xl px-5 py-2 text-xs gap-2";
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
- prefixContent?: import('react').ReactNode;
3
- suffixContent?: import('react').ReactNode;
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 { variant: "contained", color: "primary" } */
16
+ /** Props for the confirm button @default { } */
17
17
  confirmButtonProps?: Omit<ButtonProps, "onClick" | "children">;
18
- /** Props for the cancel button @default { variant: "outlined", color: "secondary" } */
18
+ /** Props for the cancel button @default { variant: "secondary" } */
19
19
  cancelButtonProps?: Omit<ButtonProps, "onClick" | "children">;
20
20
  };
21
21
  /**
@@ -1,5 +1,5 @@
1
1
  import { ReactNode } from 'react';
2
- import { IconName } from '../../icons/icons';
2
+ import { IconName } from '../../icons/iconsLazy';
3
3
  import { IconProps } from '../../types/IconComponent';
4
4
  export type DynamicIconProps = IconProps & {
5
5
  name: IconName;
@@ -1,7 +1,7 @@
1
1
  import { ComponentType, SVGProps } from 'react';
2
2
  import { BaseButtonProps } from '../baseButton';
3
3
  export type IconButtonProps = Omit<BaseButtonProps, "children"> & {
4
- size?: "small" | "medium" | "large";
4
+ size?: "small" | "medium";
5
5
  icon: ComponentType<SVGProps<SVGSVGElement>>;
6
6
  "aria-label"?: string;
7
7
  };
@@ -0,0 +1,5 @@
1
+ export declare const baseClass: "[&>svg]:size-4 rounded-lg";
2
+ export declare const iconClass: {
3
+ readonly small: "size-8";
4
+ readonly medium: "size-10";
5
+ };
@@ -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>, "color" | "size" | "className" | "children" | "prefixContent" | "suffixContent">;
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, color, size, className, prefixContent, suffixContent, children, ...props }: LinkProps<ComponentType>): import("react/jsx-runtime").JSX.Element;
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
- prefixContent?: ReactElement;
7
- suffixContent?: ReactElement;
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, prefixContent, suffixContent, disabled, emptyPlaceholder, addMorePlaceholder, toggleAriaLabel, noOptionsText, ref, maxHeight, listClassName, }: MultiSelectProps<Option>) => import("react/jsx-runtime").JSX.Element;
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
- prefixContent?: ReactElement;
8
- suffixContent?: ReactElement;
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, prefixContent, suffixContent, error, disabled, placeholder, toggleAriaLabel, noOptionsText, ref, disableSearch, className, containerClassName, listClassName, maxHeight, onSearch, debounce, isLoading, loadingText, }: SelectProps<Option>) => import("react/jsx-runtime").JSX.Element;
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,27 +1,19 @@
1
- import { default as React } from 'react';
1
+ import { ReactNode } from 'react';
2
2
  export type TypographyProps = {
3
- children: React.ReactNode;
4
- bold?: boolean;
3
+ children: ReactNode;
5
4
  className?: string;
6
5
  };
7
- export declare const H1: ({ children, bold, className }: TypographyProps) => React.ReactElement<{
8
- className: string;
9
- }, string | React.JSXElementConstructor<any>>;
10
- export declare const H2: ({ children, bold, className }: TypographyProps) => React.ReactElement<{
11
- className: string;
12
- }, string | React.JSXElementConstructor<any>>;
13
- export declare const H3: ({ children, bold, className }: TypographyProps) => React.ReactElement<{
14
- className: string;
15
- }, string | React.JSXElementConstructor<any>>;
16
- export declare const H4: ({ children, bold, className }: TypographyProps) => React.ReactElement<{
17
- className: string;
18
- }, string | React.JSXElementConstructor<any>>;
19
- export declare const H5: ({ children, bold, className }: TypographyProps) => React.ReactElement<{
20
- className: string;
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, H6, Label } from './Typography';
1
+ export { H1, H2, H3, H4, H5, Body, Label } from './Typography';
2
2
  export type { TypographyProps } from './Typography';
@@ -0,0 +1,55 @@
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 CalendarIcon: IconComponent;
9
+ export declare const CautionIcon: IconComponent;
10
+ export declare const CheckIcon: IconComponent;
11
+ export declare const ChevronDoubleLeftIcon: IconComponent;
12
+ export declare const ChevronDoubleRightIcon: IconComponent;
13
+ export declare const CircleIcon: IconComponent;
14
+ export declare const ClockIcon: IconComponent;
15
+ export declare const CloseIcon: IconComponent;
16
+ export declare const CogWheelIcon: IconComponent;
17
+ export declare const ConnectionIcon: IconComponent;
18
+ export declare const CopyIcon: IconComponent;
19
+ export declare const CorrectIcon: IconComponent;
20
+ export declare const DashIcon: IconComponent;
21
+ export declare const DashboardIcon: IconComponent;
22
+ export declare const DatabaseIcon: IconComponent;
23
+ export declare const DeleteIcon: IconComponent;
24
+ export declare const DetailsIcon: IconComponent;
25
+ export declare const DownIcon: IconComponent;
26
+ export declare const DownloadIcon: IconComponent;
27
+ export declare const EarthIcon: IconComponent;
28
+ export declare const EditIcon: IconComponent;
29
+ export declare const ErrorIcon: IconComponent;
30
+ export declare const EyeIcon: IconComponent;
31
+ export declare const FileIcon: IconComponent;
32
+ export declare const EyeOffIcon: IconComponent;
33
+ export declare const FilterIcon: IconComponent;
34
+ export declare const HourglassIcon: IconComponent;
35
+ export declare const IdeaIcon: IconComponent;
36
+ export declare const InfoIcon: IconComponent;
37
+ export declare const LeftBarIcon: IconComponent;
38
+ export declare const LeftIcon: IconComponent;
39
+ export declare const ListIcon: IconComponent;
40
+ export declare const MoreIcon: IconComponent;
41
+ export declare const NotepadIcon: IconComponent;
42
+ export declare const NotesIcon: IconComponent;
43
+ export declare const PlayIcon: IconComponent;
44
+ export declare const PlusIcon: IconComponent;
45
+ export declare const ProfileIcon: IconComponent;
46
+ export declare const RecycleIcon: IconComponent;
47
+ export declare const ReloadIcon: IconComponent;
48
+ export declare const RightIcon: IconComponent;
49
+ export declare const SaveIcon: IconComponent;
50
+ export declare const SearchIcon: IconComponent;
51
+ export declare const ServerIcon: IconComponent;
52
+ export declare const SuccessIcon: IconComponent;
53
+ export declare const TableIcon: IconComponent;
54
+ export declare const UpIcon: IconComponent;
55
+ export declare const WarningIcon: IconComponent;
@@ -1,54 +1,65 @@
1
- import { IconComponent } from '../types/IconComponent';
2
1
  export declare const icons: {
2
+ readonly address: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
3
+ title?: string;
4
+ titleId?: string;
5
+ desc?: string;
6
+ descId?: string;
7
+ }>>;
3
8
  readonly arrowDown: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
4
9
  title?: string;
5
10
  titleId?: string;
6
11
  desc?: string;
7
12
  descId?: string;
8
13
  }>>;
9
- readonly bell: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
14
+ readonly arrowLeft: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
10
15
  title?: string;
11
16
  titleId?: string;
12
17
  desc?: string;
13
18
  descId?: string;
14
19
  }>>;
15
- readonly calendar: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
20
+ readonly arrowRight: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
16
21
  title?: string;
17
22
  titleId?: string;
18
23
  desc?: string;
19
24
  descId?: string;
20
25
  }>>;
21
- readonly check: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
26
+ readonly arrowUp: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
22
27
  title?: string;
23
28
  titleId?: string;
24
29
  desc?: string;
25
30
  descId?: string;
26
31
  }>>;
27
- readonly circleFilled: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
32
+ readonly bell: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
28
33
  title?: string;
29
34
  titleId?: string;
30
35
  desc?: string;
31
36
  descId?: string;
32
37
  }>>;
33
- readonly chevronDoubleLeft: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
38
+ readonly calendar: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
34
39
  title?: string;
35
40
  titleId?: string;
36
41
  desc?: string;
37
42
  descId?: string;
38
43
  }>>;
39
- readonly chevronDoubleRight: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
44
+ readonly caution: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
45
+ title?: string;
46
+ titleId?: string;
47
+ desc?: string;
48
+ descId?: string;
49
+ }>>;
50
+ readonly check: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
40
51
  title?: string;
41
52
  titleId?: string;
42
53
  desc?: string;
43
54
  descId?: string;
44
55
  }>>;
45
- readonly chevronLeft: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
56
+ readonly chevronDoubleLeft: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
46
57
  title?: string;
47
58
  titleId?: string;
48
59
  desc?: string;
49
60
  descId?: string;
50
61
  }>>;
51
- readonly chevronRight: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
62
+ readonly chevronDoubleRight: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
52
63
  title?: string;
53
64
  titleId?: string;
54
65
  desc?: string;
@@ -78,12 +89,36 @@ export declare const icons: {
78
89
  desc?: string;
79
90
  descId?: string;
80
91
  }>>;
92
+ readonly connection: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
93
+ title?: string;
94
+ titleId?: string;
95
+ desc?: string;
96
+ descId?: string;
97
+ }>>;
98
+ readonly copy: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
99
+ title?: string;
100
+ titleId?: string;
101
+ desc?: string;
102
+ descId?: string;
103
+ }>>;
104
+ readonly correct: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
105
+ title?: string;
106
+ titleId?: string;
107
+ desc?: string;
108
+ descId?: string;
109
+ }>>;
81
110
  readonly dash: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
82
111
  title?: string;
83
112
  titleId?: string;
84
113
  desc?: string;
85
114
  descId?: string;
86
115
  }>>;
116
+ readonly dashboard: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
117
+ title?: string;
118
+ titleId?: string;
119
+ desc?: string;
120
+ descId?: string;
121
+ }>>;
87
122
  readonly database: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
88
123
  title?: string;
89
124
  titleId?: string;
@@ -102,6 +137,12 @@ export declare const icons: {
102
137
  desc?: string;
103
138
  descId?: string;
104
139
  }>>;
140
+ readonly down: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
141
+ title?: string;
142
+ titleId?: string;
143
+ desc?: string;
144
+ descId?: string;
145
+ }>>;
105
146
  readonly download: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
106
147
  title?: string;
107
148
  titleId?: string;
@@ -120,19 +161,19 @@ export declare const icons: {
120
161
  desc?: string;
121
162
  descId?: string;
122
163
  }>>;
123
- readonly errorFilled: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
164
+ readonly error: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
124
165
  title?: string;
125
166
  titleId?: string;
126
167
  desc?: string;
127
168
  descId?: string;
128
169
  }>>;
129
- readonly errorOutlined: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
170
+ readonly eye: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
130
171
  title?: string;
131
172
  titleId?: string;
132
173
  desc?: string;
133
174
  descId?: string;
134
175
  }>>;
135
- readonly eye: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
176
+ readonly file: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
136
177
  title?: string;
137
178
  titleId?: string;
138
179
  desc?: string;
@@ -144,43 +185,43 @@ export declare const icons: {
144
185
  desc?: string;
145
186
  descId?: string;
146
187
  }>>;
147
- readonly expandDown: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
188
+ readonly filter: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
148
189
  title?: string;
149
190
  titleId?: string;
150
191
  desc?: string;
151
192
  descId?: string;
152
193
  }>>;
153
- readonly expandRight: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
194
+ readonly hourglass: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
154
195
  title?: string;
155
196
  titleId?: string;
156
197
  desc?: string;
157
198
  descId?: string;
158
199
  }>>;
159
- readonly expand: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
200
+ readonly idea: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
160
201
  title?: string;
161
202
  titleId?: string;
162
203
  desc?: string;
163
204
  descId?: string;
164
205
  }>>;
165
- readonly filter: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
206
+ readonly info: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
166
207
  title?: string;
167
208
  titleId?: string;
168
209
  desc?: string;
169
210
  descId?: string;
170
211
  }>>;
171
- readonly hourglass: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
212
+ readonly leftBar: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
172
213
  title?: string;
173
214
  titleId?: string;
174
215
  desc?: string;
175
216
  descId?: string;
176
217
  }>>;
177
- readonly idea: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
218
+ readonly left: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
178
219
  title?: string;
179
220
  titleId?: string;
180
221
  desc?: string;
181
222
  descId?: string;
182
223
  }>>;
183
- readonly infoOutlined: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
224
+ readonly list: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
184
225
  title?: string;
185
226
  titleId?: string;
186
227
  desc?: string;
@@ -192,6 +233,18 @@ export declare const icons: {
192
233
  desc?: string;
193
234
  descId?: string;
194
235
  }>>;
236
+ readonly notepad: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
237
+ title?: string;
238
+ titleId?: string;
239
+ desc?: string;
240
+ descId?: string;
241
+ }>>;
242
+ readonly notes: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
243
+ title?: string;
244
+ titleId?: string;
245
+ desc?: string;
246
+ descId?: string;
247
+ }>>;
195
248
  readonly play: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
196
249
  title?: string;
197
250
  titleId?: string;
@@ -222,31 +275,31 @@ export declare const icons: {
222
275
  desc?: string;
223
276
  descId?: string;
224
277
  }>>;
225
- readonly save: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
278
+ readonly right: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
226
279
  title?: string;
227
280
  titleId?: string;
228
281
  desc?: string;
229
282
  descId?: string;
230
283
  }>>;
231
- readonly search: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
284
+ readonly save: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
232
285
  title?: string;
233
286
  titleId?: string;
234
287
  desc?: string;
235
288
  descId?: string;
236
289
  }>>;
237
- readonly successFilled: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
290
+ readonly search: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
238
291
  title?: string;
239
292
  titleId?: string;
240
293
  desc?: string;
241
294
  descId?: string;
242
295
  }>>;
243
- readonly successOutlined: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
296
+ readonly server: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
244
297
  title?: string;
245
298
  titleId?: string;
246
299
  desc?: string;
247
300
  descId?: string;
248
301
  }>>;
249
- readonly tableArrow: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
302
+ readonly success: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
250
303
  title?: string;
251
304
  titleId?: string;
252
305
  desc?: string;
@@ -258,62 +311,17 @@ export declare const icons: {
258
311
  desc?: string;
259
312
  descId?: string;
260
313
  }>>;
261
- readonly warningFilled: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
314
+ readonly up: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
262
315
  title?: string;
263
316
  titleId?: string;
264
317
  desc?: string;
265
318
  descId?: string;
266
319
  }>>;
267
- readonly warningOutlined: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
320
+ readonly warning: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
268
321
  title?: string;
269
322
  titleId?: string;
270
323
  desc?: string;
271
324
  descId?: string;
272
325
  }>>;
273
326
  };
274
- export declare const ArrowDownIcon: IconComponent;
275
- export declare const BellIcon: IconComponent;
276
- export declare const CalendarIcon: IconComponent;
277
- export declare const CheckIcon: IconComponent;
278
- export declare const CircleFilledIcon: IconComponent;
279
- export declare const ChevronDoubleLeftIcon: IconComponent;
280
- export declare const ChevronDoubleRightIcon: IconComponent;
281
- export declare const ChevronLeftIcon: IconComponent;
282
- export declare const ChevronRightIcon: IconComponent;
283
- export declare const CircleIcon: IconComponent;
284
- export declare const ClockIcon: IconComponent;
285
- export declare const CloseIcon: IconComponent;
286
- export declare const CogWheelIcon: IconComponent;
287
- export declare const DashIcon: IconComponent;
288
- export declare const DatabaseIcon: IconComponent;
289
- export declare const DeleteIcon: IconComponent;
290
- export declare const DetailsIcon: IconComponent;
291
- export declare const DownloadIcon: IconComponent;
292
- export declare const EarthIcon: IconComponent;
293
- export declare const EditIcon: IconComponent;
294
- export declare const ErrorFilledIcon: IconComponent;
295
- export declare const ErrorOutlinedIcon: IconComponent;
296
- export declare const EyeIcon: IconComponent;
297
- export declare const EyeOffIcon: IconComponent;
298
- export declare const ExpandDownIcon: IconComponent;
299
- export declare const ExpandRightIcon: IconComponent;
300
- export declare const ExpandIcon: IconComponent;
301
- export declare const FilterIcon: IconComponent;
302
- export declare const HourglassIcon: IconComponent;
303
- export declare const IdeaIcon: IconComponent;
304
- export declare const InfoOutlinedIcon: IconComponent;
305
- export declare const MoreIcon: IconComponent;
306
- export declare const PlayIcon: IconComponent;
307
- export declare const PlusIcon: IconComponent;
308
- export declare const ProfileIcon: IconComponent;
309
- export declare const RecycleIcon: IconComponent;
310
- export declare const ReloadIcon: IconComponent;
311
- export declare const SaveIcon: IconComponent;
312
- export declare const SearchIcon: IconComponent;
313
- export declare const SuccessFilledIcon: IconComponent;
314
- export declare const SuccessOutlinedIcon: IconComponent;
315
- export declare const TableArrowIcon: IconComponent;
316
- export declare const TableIcon: IconComponent;
317
- export declare const WarningFilledIcon: IconComponent;
318
- export declare const WarningOutlinedIcon: IconComponent;
319
327
  export type IconName = keyof typeof icons;
@@ -1 +1,2 @@
1
- export * from './icons';
1
+ export * from './iconsComponents';
2
+ export * from './iconsLazy';