@apexcura/ui-components 0.0.16-Beta129 → 0.0.16-Beta1291
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/ACBreadcrumb.d.ts +16 -0
- package/dist/Components/AadharComponent.d.ts +3 -0
- package/dist/Components/AbhaNumberComponent.d.ts +3 -0
- package/dist/Components/AntdButton.d.ts +4 -0
- package/dist/Components/AutoCompleteInput.d.ts +14 -0
- package/dist/Components/AvatarUpload.d.ts +3 -0
- package/dist/Components/Capcha.d.ts +3 -0
- package/dist/Components/CardElement.d.ts +3 -0
- package/dist/Components/CheckBoxTable.d.ts +12 -0
- package/dist/Components/CustomStepper.d.ts +3 -0
- package/dist/Components/DateRangeSegments.d.ts +16 -0
- package/dist/Components/DisplayTimeline.d.ts +3 -0
- package/dist/Components/Document.d.ts +3 -0
- package/dist/Components/DropdownElement.d.ts +3 -0
- package/dist/Components/FormInputLabel.d.ts +11 -0
- package/dist/Components/GoogleMapWidget.d.ts +3 -0
- package/dist/Components/GradientCard.d.ts +5 -0
- package/dist/Components/GradientCardGroup.d.ts +24 -0
- package/dist/Components/Image.d.ts +1 -1
- package/dist/Components/KanbanBoard.d.ts +2 -0
- package/dist/Components/MediaUpload.d.ts +3 -0
- package/dist/Components/NumberElement.d.ts +1 -0
- package/dist/Components/ProfileContainer.d.ts +3 -0
- package/dist/Components/QRCodeElement.d.ts +5 -0
- package/dist/Components/RadioElement.d.ts +14 -1
- package/dist/Components/SegmentedElement.d.ts +3 -0
- package/dist/Components/SelectElement.d.ts +1 -0
- package/dist/Components/Sidebar.d.ts +2 -2
- package/dist/Components/SplitButton.d.ts +3 -0
- package/dist/Components/TableCopyComponent.d.ts +4 -0
- package/dist/Components/TableElement.d.ts +2 -0
- package/dist/Components/TextEditor.d.ts +5 -0
- package/dist/Components/TextElement.d.ts +1 -1
- package/dist/Components/TextareaElement.d.ts +1 -0
- package/dist/Components/TimePicker.d.ts +3 -0
- package/dist/Components/TimeRangeComponent.d.ts +3 -0
- package/dist/Components/TimeScheduleTable.d.ts +3 -0
- package/dist/Components/Video.d.ts +3 -0
- package/dist/Types/types.d.ts +195 -16
- package/dist/constants/icons.d.ts +8 -0
- package/dist/index.d.ts +30 -0
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +126 -1
- package/dist/index.js.map +1 -1
- package/dist/report.html +2 -2
- package/package.json +13 -10
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface ACBreadcrumbItemProps {
|
|
3
|
+
id?: string;
|
|
4
|
+
icon?: string;
|
|
5
|
+
iconClassName?: string;
|
|
6
|
+
href?: string;
|
|
7
|
+
title: string;
|
|
8
|
+
}
|
|
9
|
+
export interface ACBreadcrumbProps {
|
|
10
|
+
className?: string;
|
|
11
|
+
element?: string;
|
|
12
|
+
name: string;
|
|
13
|
+
items: ACBreadcrumbItemProps[];
|
|
14
|
+
onClick: (value: string) => void;
|
|
15
|
+
}
|
|
16
|
+
export declare const ACBreadcrumb: React.FC<ACBreadcrumbProps>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ElementType } from '../Types/types';
|
|
3
|
+
import '../styles/index.css';
|
|
4
|
+
interface autoCompleteProps {
|
|
5
|
+
value?: {
|
|
6
|
+
key?: string;
|
|
7
|
+
value?: string;
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
interface customProps extends ElementType {
|
|
11
|
+
value?: autoCompleteProps;
|
|
12
|
+
}
|
|
13
|
+
export declare const AutoCompleteInput: (props: customProps) => React.JSX.Element;
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ElementType } from '../Types/types';
|
|
3
|
+
interface PaginationType {
|
|
4
|
+
name?: string;
|
|
5
|
+
page?: number;
|
|
6
|
+
pageSize?: number;
|
|
7
|
+
}
|
|
8
|
+
interface TableElementProps extends ElementType {
|
|
9
|
+
value?: PaginationType | null;
|
|
10
|
+
}
|
|
11
|
+
export declare const TableElement: (props: TableElementProps) => React.JSX.Element;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ElementType } from '../Types/types';
|
|
3
|
+
interface DateRangeSegmentType {
|
|
4
|
+
values?: string[];
|
|
5
|
+
segmentedValue?: string;
|
|
6
|
+
}
|
|
7
|
+
interface DateRangeSegmentsProps extends ElementType {
|
|
8
|
+
value?: DateRangeSegmentType | null;
|
|
9
|
+
segmentedOptions?: {
|
|
10
|
+
tooltip: string;
|
|
11
|
+
label: string;
|
|
12
|
+
value: string;
|
|
13
|
+
}[];
|
|
14
|
+
}
|
|
15
|
+
export declare const DateRangeSegments: (props: DateRangeSegmentsProps) => React.JSX.Element;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface FormInputLabelProps {
|
|
3
|
+
label?: string;
|
|
4
|
+
required?: boolean;
|
|
5
|
+
color?: string;
|
|
6
|
+
element?: 'input-radio' | string;
|
|
7
|
+
variant?: 'button' | 'default';
|
|
8
|
+
labelClassName?: string;
|
|
9
|
+
}
|
|
10
|
+
declare const FormInputLabel: React.FC<FormInputLabelProps>;
|
|
11
|
+
export default FormInputLabel;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Colors } from '../Types/types';
|
|
3
|
+
export interface GradientCardGroupOptionProps {
|
|
4
|
+
active?: boolean;
|
|
5
|
+
clickable?: boolean;
|
|
6
|
+
color?: Colors;
|
|
7
|
+
id?: string;
|
|
8
|
+
name: string;
|
|
9
|
+
onClick?: () => void;
|
|
10
|
+
prefixIcon?: string;
|
|
11
|
+
prefixIconClassName?: string;
|
|
12
|
+
suffixText: string | number;
|
|
13
|
+
title: string;
|
|
14
|
+
}
|
|
15
|
+
export interface GradientCardGroupProps {
|
|
16
|
+
className?: string;
|
|
17
|
+
cols?: number;
|
|
18
|
+
element?: string;
|
|
19
|
+
name: string;
|
|
20
|
+
options: GradientCardGroupOptionProps[];
|
|
21
|
+
value: '';
|
|
22
|
+
onChange?: (value: string | number | boolean | object | object[] | undefined) => void;
|
|
23
|
+
}
|
|
24
|
+
export declare const GradientCardGroup: (props: GradientCardGroupProps) => React.JSX.Element;
|
|
@@ -1,3 +1,16 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ElementType } from '../Types/types';
|
|
3
|
-
|
|
3
|
+
import '../styles/radio.css';
|
|
4
|
+
type radioValueProps = {
|
|
5
|
+
value: {
|
|
6
|
+
key?: string | undefined;
|
|
7
|
+
label?: string | undefined;
|
|
8
|
+
value?: string | undefined;
|
|
9
|
+
} | undefined;
|
|
10
|
+
};
|
|
11
|
+
interface RadioElementProps extends Omit<ElementType, 'variant'> {
|
|
12
|
+
value?: radioValueProps | null;
|
|
13
|
+
variant?: 'chip' | 'circled' | 'flat';
|
|
14
|
+
}
|
|
15
|
+
export declare const RadioElement: (props: RadioElementProps) => React.JSX.Element;
|
|
16
|
+
export {};
|
package/dist/Types/types.d.ts
CHANGED
|
@@ -1,11 +1,32 @@
|
|
|
1
|
-
import { UploadFile } from 'antd';
|
|
1
|
+
import { InputRef, UploadFile } from 'antd';
|
|
2
2
|
import { SizeType } from 'antd/es/config-provider/SizeContext';
|
|
3
|
+
import { RadioGroupButtonStyle } from 'antd/es/radio';
|
|
4
|
+
import { TabsPosition } from 'antd/es/tabs';
|
|
3
5
|
import { TooltipPlacement } from 'antd/es/tooltip';
|
|
4
|
-
import {
|
|
6
|
+
import { SortOrder } from 'antd/es/table/interface';
|
|
7
|
+
import React, { CSSProperties, JSXElementConstructor, LegacyRef, ReactElement, ReactNode } from 'react';
|
|
5
8
|
type PaginationType = {
|
|
9
|
+
name?: string;
|
|
6
10
|
page?: number;
|
|
7
11
|
pageSize?: number;
|
|
8
12
|
};
|
|
13
|
+
type DateRangeSegmentType = {
|
|
14
|
+
values?: string[];
|
|
15
|
+
segmentedValue?: string;
|
|
16
|
+
};
|
|
17
|
+
interface ScheduleType {
|
|
18
|
+
from: string | null;
|
|
19
|
+
to: string | null;
|
|
20
|
+
}
|
|
21
|
+
interface WeekSchedule {
|
|
22
|
+
Sunday: ScheduleType;
|
|
23
|
+
Monday: ScheduleType;
|
|
24
|
+
Tuesday: ScheduleType;
|
|
25
|
+
Wednesday: ScheduleType;
|
|
26
|
+
Thursday: ScheduleType;
|
|
27
|
+
Friday: ScheduleType;
|
|
28
|
+
Saturday: ScheduleType;
|
|
29
|
+
}
|
|
9
30
|
type dropDownValueProps = {
|
|
10
31
|
firstValue: {
|
|
11
32
|
key?: string | undefined;
|
|
@@ -18,11 +39,59 @@ type dropDownValueProps = {
|
|
|
18
39
|
value?: string | undefined;
|
|
19
40
|
} | undefined;
|
|
20
41
|
};
|
|
42
|
+
type radioValueProps = {
|
|
43
|
+
value: {
|
|
44
|
+
key?: string | undefined;
|
|
45
|
+
label?: string | undefined;
|
|
46
|
+
value?: string | undefined;
|
|
47
|
+
} | undefined;
|
|
48
|
+
};
|
|
49
|
+
type autoCompleteProps = {
|
|
50
|
+
value?: {
|
|
51
|
+
key?: string;
|
|
52
|
+
value?: string;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
interface ChildRecordType {
|
|
56
|
+
_id?: string;
|
|
57
|
+
id?: string;
|
|
58
|
+
name?: string;
|
|
59
|
+
label?: string;
|
|
60
|
+
element?: string;
|
|
61
|
+
type?: string;
|
|
62
|
+
value?: boolean;
|
|
63
|
+
children?: ChildRecordType[];
|
|
64
|
+
}
|
|
21
65
|
export type ElementType = {
|
|
66
|
+
showToolbar?: boolean;
|
|
67
|
+
src?: string;
|
|
68
|
+
isPopover?: boolean;
|
|
69
|
+
title?: string;
|
|
70
|
+
okText?: string;
|
|
71
|
+
cancelText?: string;
|
|
72
|
+
disabledColor?: string;
|
|
73
|
+
tooltip?: {
|
|
74
|
+
title: string;
|
|
75
|
+
placement: 'top' | 'bottom' | 'left' | 'right';
|
|
76
|
+
};
|
|
77
|
+
varient?: 'solid' | 'outlined' | 'light';
|
|
78
|
+
color?: string;
|
|
79
|
+
buttonStyle?: RadioGroupButtonStyle;
|
|
80
|
+
tableHeight?: string;
|
|
81
|
+
buttonVariant?: string;
|
|
82
|
+
optionRender?: (option: {
|
|
83
|
+
key?: string | number | bigint;
|
|
84
|
+
label?: string | ReactNode;
|
|
85
|
+
value?: string | number;
|
|
86
|
+
color?: string;
|
|
87
|
+
}) => React.ReactNode;
|
|
88
|
+
active?: number;
|
|
89
|
+
visitedClassName?: string;
|
|
22
90
|
accept?: string | undefined;
|
|
23
91
|
max_count?: number | undefined;
|
|
24
92
|
multiple?: boolean | undefined;
|
|
25
93
|
activeClassName?: string;
|
|
94
|
+
fileList?: UploadFile[];
|
|
26
95
|
radioGroupClassName?: string | undefined;
|
|
27
96
|
selectedStyle?: boolean;
|
|
28
97
|
style?: CSSProperties;
|
|
@@ -31,25 +100,58 @@ export type ElementType = {
|
|
|
31
100
|
className?: string | undefined;
|
|
32
101
|
placeholder?: string;
|
|
33
102
|
addonBefore?: React.ReactNode;
|
|
34
|
-
|
|
103
|
+
format?: string;
|
|
104
|
+
indexWidth?: number;
|
|
105
|
+
tabPosition?: TabsPosition;
|
|
106
|
+
defaultValue?: string | {
|
|
107
|
+
label: string;
|
|
108
|
+
value: string;
|
|
109
|
+
search?: string;
|
|
110
|
+
};
|
|
111
|
+
limit?: number;
|
|
112
|
+
ref?: LegacyRef<InputRef> | undefined;
|
|
35
113
|
disabled?: boolean;
|
|
36
114
|
prefix?: React.ReactNode;
|
|
37
115
|
type?: string;
|
|
38
|
-
|
|
116
|
+
searchable?: boolean;
|
|
117
|
+
expandIcon?: boolean;
|
|
118
|
+
size?: SizeType | number;
|
|
119
|
+
colWidth?: string;
|
|
39
120
|
errorText?: string;
|
|
40
121
|
errorClassName?: string;
|
|
41
|
-
|
|
42
|
-
|
|
122
|
+
expandIconStyles?: boolean;
|
|
123
|
+
enableRowSelection?: boolean;
|
|
124
|
+
showSelectionControls?: boolean;
|
|
125
|
+
dropdownStyle?: CSSProperties;
|
|
126
|
+
isIconOnly?: boolean;
|
|
127
|
+
value?: string | number | boolean | null | object | undefined | string[] | UploadFile[] | PaginationType | DateRangeSegmentType | dropDownValueProps | radioValueProps | WeekSchedule | autoCompleteProps;
|
|
128
|
+
status?: string | undefined;
|
|
43
129
|
styles?: React.CSSProperties;
|
|
44
130
|
variant?: 'outlined' | 'borderless' | 'filled';
|
|
131
|
+
bordered?: boolean;
|
|
132
|
+
enable_all?: boolean;
|
|
45
133
|
label?: string;
|
|
46
134
|
name?: string;
|
|
47
135
|
suffix?: React.ReactNode;
|
|
136
|
+
rowClickExpandable?: boolean;
|
|
137
|
+
expandable?: boolean;
|
|
48
138
|
maxLength?: number;
|
|
139
|
+
sortable?: boolean;
|
|
140
|
+
indexClickable?: boolean;
|
|
141
|
+
splitButton?: {
|
|
142
|
+
value: string;
|
|
143
|
+
icon: string;
|
|
144
|
+
label: string;
|
|
145
|
+
isSVGStylesOverride: boolean;
|
|
146
|
+
tooltip: string;
|
|
147
|
+
}[];
|
|
49
148
|
options?: {
|
|
50
149
|
key?: string;
|
|
51
150
|
label?: string;
|
|
52
151
|
value?: string;
|
|
152
|
+
icon?: string;
|
|
153
|
+
tooltip?: string;
|
|
154
|
+
color?: string;
|
|
53
155
|
}[];
|
|
54
156
|
firstOptions?: {
|
|
55
157
|
key?: string;
|
|
@@ -66,43 +168,90 @@ export type ElementType = {
|
|
|
66
168
|
view?: boolean;
|
|
67
169
|
enabled_dates?: string;
|
|
68
170
|
onChange?: (value: string | number | boolean | object | object[] | undefined) => void;
|
|
69
|
-
onClick?: () => void;
|
|
171
|
+
onClick?: (value: string | number | boolean | object | object[] | undefined) => void;
|
|
70
172
|
dropDownOptions?: (number | string | boolean | object | null | undefined | (() => void))[];
|
|
71
|
-
id?: number;
|
|
173
|
+
id?: number | string;
|
|
174
|
+
fullHeight?: boolean;
|
|
72
175
|
thead?: {
|
|
73
|
-
|
|
176
|
+
sorter?: boolean;
|
|
177
|
+
defaultSortOrder?: SortOrder;
|
|
178
|
+
width?: number;
|
|
179
|
+
_id?: string;
|
|
74
180
|
name?: string;
|
|
75
181
|
label?: string;
|
|
76
182
|
visible?: boolean;
|
|
77
183
|
required?: boolean;
|
|
78
184
|
key?: string;
|
|
79
185
|
render?: (text: string) => React.JSX.Element;
|
|
186
|
+
renderCell?: (value: number, record: string, index: number) => React.ReactNode;
|
|
80
187
|
ellipsis?: boolean;
|
|
188
|
+
sortable?: boolean;
|
|
189
|
+
filtered?: boolean;
|
|
190
|
+
filters?: {
|
|
191
|
+
text: string;
|
|
192
|
+
value: string;
|
|
193
|
+
}[];
|
|
194
|
+
fixed?: string | boolean | undefined;
|
|
195
|
+
disabled?: boolean;
|
|
196
|
+
clickable?: boolean;
|
|
81
197
|
}[];
|
|
82
|
-
|
|
83
|
-
|
|
198
|
+
childHead?: {
|
|
199
|
+
_id?: string;
|
|
84
200
|
name?: string;
|
|
85
201
|
label?: string;
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
202
|
+
visible?: boolean;
|
|
203
|
+
required?: boolean;
|
|
204
|
+
key?: string;
|
|
205
|
+
render?: (text: string) => React.JSX.Element;
|
|
206
|
+
ellipsis?: boolean;
|
|
207
|
+
sortable?: boolean;
|
|
208
|
+
filtered?: boolean;
|
|
209
|
+
filters?: {
|
|
210
|
+
text: string;
|
|
211
|
+
value: string;
|
|
212
|
+
}[];
|
|
89
213
|
}[];
|
|
214
|
+
tbody?: ChildRecordType[];
|
|
90
215
|
optionType?: string;
|
|
91
216
|
selectedClassName?: string;
|
|
92
217
|
action?: React.MouseEventHandler<HTMLElement> | string;
|
|
93
218
|
listClassName?: string;
|
|
94
219
|
listItemClassName?: string;
|
|
95
220
|
img?: string;
|
|
221
|
+
video?: string;
|
|
222
|
+
height?: number;
|
|
223
|
+
width?: number;
|
|
224
|
+
imgExpand?: string;
|
|
225
|
+
segmentedValue?: string;
|
|
226
|
+
useSegments?: string;
|
|
227
|
+
imgCollapse?: string;
|
|
228
|
+
pageSizeOptions?: number[];
|
|
96
229
|
items?: {
|
|
97
|
-
|
|
230
|
+
iconClassName?: string;
|
|
231
|
+
href?: string;
|
|
232
|
+
title?: string;
|
|
233
|
+
id?: number;
|
|
234
|
+
key?: number | string;
|
|
235
|
+
element?: string;
|
|
98
236
|
icon?: string;
|
|
99
237
|
label?: string;
|
|
100
|
-
active?:
|
|
238
|
+
active?: number;
|
|
101
239
|
text?: string;
|
|
102
240
|
time?: string;
|
|
103
241
|
name?: string;
|
|
104
242
|
y?: number;
|
|
105
243
|
color?: string;
|
|
244
|
+
isCount?: boolean;
|
|
245
|
+
count?: number;
|
|
246
|
+
isNewMenuItem?: boolean;
|
|
247
|
+
progress?: number;
|
|
248
|
+
className?: string;
|
|
249
|
+
contact?: string;
|
|
250
|
+
status?: string;
|
|
251
|
+
assignedTo?: string;
|
|
252
|
+
user?: string;
|
|
253
|
+
dot?: React.ReactNode;
|
|
254
|
+
children?: string;
|
|
106
255
|
}[];
|
|
107
256
|
primaryText?: string;
|
|
108
257
|
secondaryText?: string;
|
|
@@ -116,6 +265,7 @@ export type ElementType = {
|
|
|
116
265
|
subContainerClassName?: string;
|
|
117
266
|
element?: string;
|
|
118
267
|
secondTextClassName?: string;
|
|
268
|
+
iconClassName?: string;
|
|
119
269
|
iconsClassName?: string;
|
|
120
270
|
labelClassName?: string;
|
|
121
271
|
containerClassName?: string;
|
|
@@ -127,6 +277,7 @@ export type ElementType = {
|
|
|
127
277
|
fillText1?: string;
|
|
128
278
|
fillText2?: string;
|
|
129
279
|
pagination?: boolean;
|
|
280
|
+
antdButton?: boolean;
|
|
130
281
|
required?: boolean;
|
|
131
282
|
is_detail?: boolean;
|
|
132
283
|
checkedChildren?: string;
|
|
@@ -136,9 +287,11 @@ export type ElementType = {
|
|
|
136
287
|
minRows?: number;
|
|
137
288
|
maxRows?: number;
|
|
138
289
|
isSearch?: boolean;
|
|
290
|
+
allowText?: boolean;
|
|
139
291
|
mode?: 'multiple' | 'tags' | undefined;
|
|
140
292
|
picker?: 'date' | 'week' | 'month' | 'quarter' | 'year';
|
|
141
293
|
weekrange?: boolean;
|
|
294
|
+
rangePresets?: boolean;
|
|
142
295
|
message?: string;
|
|
143
296
|
isStatus?: boolean;
|
|
144
297
|
isDelete?: boolean;
|
|
@@ -146,5 +299,31 @@ export type ElementType = {
|
|
|
146
299
|
notificationType?: 'success' | 'info' | 'warning' | 'error';
|
|
147
300
|
showProgress?: boolean;
|
|
148
301
|
isLoading?: boolean;
|
|
302
|
+
isNotChatbot?: boolean;
|
|
303
|
+
allowClear?: boolean;
|
|
304
|
+
isBack?: boolean;
|
|
305
|
+
showCount?: boolean;
|
|
306
|
+
avatarClassName?: string;
|
|
307
|
+
segmentedOptions?: string[] | {
|
|
308
|
+
tooltip: string;
|
|
309
|
+
label: string;
|
|
310
|
+
value: string;
|
|
311
|
+
}[];
|
|
312
|
+
manageRadioButton?: boolean;
|
|
313
|
+
cardClassname?: string;
|
|
314
|
+
autoFocus?: boolean;
|
|
315
|
+
titleClassName?: string;
|
|
316
|
+
fileType?: string[];
|
|
317
|
+
fileSize?: number;
|
|
318
|
+
allowOne?: boolean;
|
|
319
|
+
showSerialNumber?: boolean;
|
|
320
|
+
isTextSelect?: boolean;
|
|
321
|
+
autoSize?: boolean;
|
|
322
|
+
rowClick?: boolean;
|
|
323
|
+
dropdownRender?: (menu: ReactElement<string | JSXElementConstructor<string>>) => ReactElement<string | JSXElementConstructor<string>>;
|
|
324
|
+
isopen?: boolean;
|
|
325
|
+
clickedVal?: string;
|
|
326
|
+
customColor?: boolean;
|
|
149
327
|
};
|
|
328
|
+
export type Colors = 'blue-green' | 'danger' | 'facebook' | 'instagram' | 'primary' | 'secondary' | 'success' | 'turquoise' | 'warning' | 'yellow';
|
|
150
329
|
export {};
|
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
export declare const testIcons: {
|
|
3
|
+
[key: string]: string;
|
|
4
|
+
};
|
|
5
|
+
export declare const sidenavIcons: {
|
|
6
|
+
[key: string]: (props: {
|
|
7
|
+
fill?: string;
|
|
8
|
+
}) => React.ReactNode;
|
|
9
|
+
};
|
|
2
10
|
export declare const icons: {
|
|
3
11
|
[key: string]: React.ReactNode;
|
|
4
12
|
};
|