@apexcura/ui-components 0.0.16-Beta128 → 0.0.16-Beta1281
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 +191 -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 +10 -9
|
@@ -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,55 @@ 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
|
+
disabledColor?: string;
|
|
69
|
+
tooltip?: {
|
|
70
|
+
title: string;
|
|
71
|
+
placement: 'top' | 'bottom' | 'left' | 'right';
|
|
72
|
+
};
|
|
73
|
+
varient?: 'solid' | 'outlined' | 'light';
|
|
74
|
+
color?: string;
|
|
75
|
+
buttonStyle?: RadioGroupButtonStyle;
|
|
76
|
+
tableHeight?: string;
|
|
77
|
+
buttonVariant?: string;
|
|
78
|
+
optionRender?: (option: {
|
|
79
|
+
key?: string | number | bigint;
|
|
80
|
+
label?: string | ReactNode;
|
|
81
|
+
value?: string | number;
|
|
82
|
+
color?: string;
|
|
83
|
+
}) => React.ReactNode;
|
|
84
|
+
active?: number;
|
|
85
|
+
visitedClassName?: string;
|
|
22
86
|
accept?: string | undefined;
|
|
23
87
|
max_count?: number | undefined;
|
|
24
88
|
multiple?: boolean | undefined;
|
|
25
89
|
activeClassName?: string;
|
|
90
|
+
fileList?: UploadFile[];
|
|
26
91
|
radioGroupClassName?: string | undefined;
|
|
27
92
|
selectedStyle?: boolean;
|
|
28
93
|
style?: CSSProperties;
|
|
@@ -31,25 +96,58 @@ export type ElementType = {
|
|
|
31
96
|
className?: string | undefined;
|
|
32
97
|
placeholder?: string;
|
|
33
98
|
addonBefore?: React.ReactNode;
|
|
34
|
-
|
|
99
|
+
format?: string;
|
|
100
|
+
indexWidth?: number;
|
|
101
|
+
tabPosition?: TabsPosition;
|
|
102
|
+
defaultValue?: string | {
|
|
103
|
+
label: string;
|
|
104
|
+
value: string;
|
|
105
|
+
search?: string;
|
|
106
|
+
};
|
|
107
|
+
limit?: number;
|
|
108
|
+
ref?: LegacyRef<InputRef> | undefined;
|
|
35
109
|
disabled?: boolean;
|
|
36
110
|
prefix?: React.ReactNode;
|
|
37
111
|
type?: string;
|
|
38
|
-
|
|
112
|
+
searchable?: boolean;
|
|
113
|
+
expandIcon?: boolean;
|
|
114
|
+
size?: SizeType | number;
|
|
115
|
+
colWidth?: string;
|
|
39
116
|
errorText?: string;
|
|
40
117
|
errorClassName?: string;
|
|
41
|
-
|
|
42
|
-
|
|
118
|
+
expandIconStyles?: boolean;
|
|
119
|
+
enableRowSelection?: boolean;
|
|
120
|
+
showSelectionControls?: boolean;
|
|
121
|
+
dropdownStyle?: CSSProperties;
|
|
122
|
+
isIconOnly?: boolean;
|
|
123
|
+
value?: string | number | boolean | null | object | undefined | string[] | UploadFile[] | PaginationType | DateRangeSegmentType | dropDownValueProps | radioValueProps | WeekSchedule | autoCompleteProps;
|
|
124
|
+
status?: string | undefined;
|
|
43
125
|
styles?: React.CSSProperties;
|
|
44
126
|
variant?: 'outlined' | 'borderless' | 'filled';
|
|
127
|
+
bordered?: boolean;
|
|
128
|
+
enable_all?: boolean;
|
|
45
129
|
label?: string;
|
|
46
130
|
name?: string;
|
|
47
131
|
suffix?: React.ReactNode;
|
|
132
|
+
rowClickExpandable?: boolean;
|
|
133
|
+
expandable?: boolean;
|
|
48
134
|
maxLength?: number;
|
|
135
|
+
sortable?: boolean;
|
|
136
|
+
indexClickable?: boolean;
|
|
137
|
+
splitButton?: {
|
|
138
|
+
value: string;
|
|
139
|
+
icon: string;
|
|
140
|
+
label: string;
|
|
141
|
+
isSVGStylesOverride: boolean;
|
|
142
|
+
tooltip: string;
|
|
143
|
+
}[];
|
|
49
144
|
options?: {
|
|
50
145
|
key?: string;
|
|
51
146
|
label?: string;
|
|
52
147
|
value?: string;
|
|
148
|
+
icon?: string;
|
|
149
|
+
tooltip?: string;
|
|
150
|
+
color?: string;
|
|
53
151
|
}[];
|
|
54
152
|
firstOptions?: {
|
|
55
153
|
key?: string;
|
|
@@ -66,43 +164,90 @@ export type ElementType = {
|
|
|
66
164
|
view?: boolean;
|
|
67
165
|
enabled_dates?: string;
|
|
68
166
|
onChange?: (value: string | number | boolean | object | object[] | undefined) => void;
|
|
69
|
-
onClick?: () => void;
|
|
167
|
+
onClick?: (value: string | number | boolean | object | object[] | undefined) => void;
|
|
70
168
|
dropDownOptions?: (number | string | boolean | object | null | undefined | (() => void))[];
|
|
71
|
-
id?: number;
|
|
169
|
+
id?: number | string;
|
|
170
|
+
fullHeight?: boolean;
|
|
72
171
|
thead?: {
|
|
73
|
-
|
|
172
|
+
sorter?: boolean;
|
|
173
|
+
defaultSortOrder?: SortOrder;
|
|
174
|
+
width?: number;
|
|
175
|
+
_id?: string;
|
|
74
176
|
name?: string;
|
|
75
177
|
label?: string;
|
|
76
178
|
visible?: boolean;
|
|
77
179
|
required?: boolean;
|
|
78
180
|
key?: string;
|
|
79
181
|
render?: (text: string) => React.JSX.Element;
|
|
182
|
+
renderCell?: (value: number, record: string, index: number) => React.ReactNode;
|
|
80
183
|
ellipsis?: boolean;
|
|
184
|
+
sortable?: boolean;
|
|
185
|
+
filtered?: boolean;
|
|
186
|
+
filters?: {
|
|
187
|
+
text: string;
|
|
188
|
+
value: string;
|
|
189
|
+
}[];
|
|
190
|
+
fixed?: string | boolean | undefined;
|
|
191
|
+
disabled?: boolean;
|
|
192
|
+
clickable?: boolean;
|
|
81
193
|
}[];
|
|
82
|
-
|
|
83
|
-
|
|
194
|
+
childHead?: {
|
|
195
|
+
_id?: string;
|
|
84
196
|
name?: string;
|
|
85
197
|
label?: string;
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
198
|
+
visible?: boolean;
|
|
199
|
+
required?: boolean;
|
|
200
|
+
key?: string;
|
|
201
|
+
render?: (text: string) => React.JSX.Element;
|
|
202
|
+
ellipsis?: boolean;
|
|
203
|
+
sortable?: boolean;
|
|
204
|
+
filtered?: boolean;
|
|
205
|
+
filters?: {
|
|
206
|
+
text: string;
|
|
207
|
+
value: string;
|
|
208
|
+
}[];
|
|
89
209
|
}[];
|
|
210
|
+
tbody?: ChildRecordType[];
|
|
90
211
|
optionType?: string;
|
|
91
212
|
selectedClassName?: string;
|
|
92
213
|
action?: React.MouseEventHandler<HTMLElement> | string;
|
|
93
214
|
listClassName?: string;
|
|
94
215
|
listItemClassName?: string;
|
|
95
216
|
img?: string;
|
|
217
|
+
video?: string;
|
|
218
|
+
height?: number;
|
|
219
|
+
width?: number;
|
|
220
|
+
imgExpand?: string;
|
|
221
|
+
segmentedValue?: string;
|
|
222
|
+
useSegments?: string;
|
|
223
|
+
imgCollapse?: string;
|
|
224
|
+
pageSizeOptions?: number[];
|
|
96
225
|
items?: {
|
|
97
|
-
|
|
226
|
+
iconClassName?: string;
|
|
227
|
+
href?: string;
|
|
228
|
+
title?: string;
|
|
229
|
+
id?: number;
|
|
230
|
+
key?: number | string;
|
|
231
|
+
element?: string;
|
|
98
232
|
icon?: string;
|
|
99
233
|
label?: string;
|
|
100
|
-
active?:
|
|
234
|
+
active?: number;
|
|
101
235
|
text?: string;
|
|
102
236
|
time?: string;
|
|
103
237
|
name?: string;
|
|
104
238
|
y?: number;
|
|
105
239
|
color?: string;
|
|
240
|
+
isCount?: boolean;
|
|
241
|
+
count?: number;
|
|
242
|
+
isNewMenuItem?: boolean;
|
|
243
|
+
progress?: number;
|
|
244
|
+
className?: string;
|
|
245
|
+
contact?: string;
|
|
246
|
+
status?: string;
|
|
247
|
+
assignedTo?: string;
|
|
248
|
+
user?: string;
|
|
249
|
+
dot?: React.ReactNode;
|
|
250
|
+
children?: string;
|
|
106
251
|
}[];
|
|
107
252
|
primaryText?: string;
|
|
108
253
|
secondaryText?: string;
|
|
@@ -116,6 +261,7 @@ export type ElementType = {
|
|
|
116
261
|
subContainerClassName?: string;
|
|
117
262
|
element?: string;
|
|
118
263
|
secondTextClassName?: string;
|
|
264
|
+
iconClassName?: string;
|
|
119
265
|
iconsClassName?: string;
|
|
120
266
|
labelClassName?: string;
|
|
121
267
|
containerClassName?: string;
|
|
@@ -127,6 +273,7 @@ export type ElementType = {
|
|
|
127
273
|
fillText1?: string;
|
|
128
274
|
fillText2?: string;
|
|
129
275
|
pagination?: boolean;
|
|
276
|
+
antdButton?: boolean;
|
|
130
277
|
required?: boolean;
|
|
131
278
|
is_detail?: boolean;
|
|
132
279
|
checkedChildren?: string;
|
|
@@ -136,9 +283,11 @@ export type ElementType = {
|
|
|
136
283
|
minRows?: number;
|
|
137
284
|
maxRows?: number;
|
|
138
285
|
isSearch?: boolean;
|
|
286
|
+
allowText?: boolean;
|
|
139
287
|
mode?: 'multiple' | 'tags' | undefined;
|
|
140
288
|
picker?: 'date' | 'week' | 'month' | 'quarter' | 'year';
|
|
141
289
|
weekrange?: boolean;
|
|
290
|
+
rangePresets?: boolean;
|
|
142
291
|
message?: string;
|
|
143
292
|
isStatus?: boolean;
|
|
144
293
|
isDelete?: boolean;
|
|
@@ -146,5 +295,31 @@ export type ElementType = {
|
|
|
146
295
|
notificationType?: 'success' | 'info' | 'warning' | 'error';
|
|
147
296
|
showProgress?: boolean;
|
|
148
297
|
isLoading?: boolean;
|
|
298
|
+
isNotChatbot?: boolean;
|
|
299
|
+
allowClear?: boolean;
|
|
300
|
+
isBack?: boolean;
|
|
301
|
+
showCount?: boolean;
|
|
302
|
+
avatarClassName?: string;
|
|
303
|
+
segmentedOptions?: string[] | {
|
|
304
|
+
tooltip: string;
|
|
305
|
+
label: string;
|
|
306
|
+
value: string;
|
|
307
|
+
}[];
|
|
308
|
+
manageRadioButton?: boolean;
|
|
309
|
+
cardClassname?: string;
|
|
310
|
+
autoFocus?: boolean;
|
|
311
|
+
titleClassName?: string;
|
|
312
|
+
fileType?: string[];
|
|
313
|
+
fileSize?: number;
|
|
314
|
+
allowOne?: boolean;
|
|
315
|
+
showSerialNumber?: boolean;
|
|
316
|
+
isTextSelect?: boolean;
|
|
317
|
+
autoSize?: boolean;
|
|
318
|
+
rowClick?: boolean;
|
|
319
|
+
dropdownRender?: (menu: ReactElement<string | JSXElementConstructor<string>>) => ReactElement<string | JSXElementConstructor<string>>;
|
|
320
|
+
isopen?: boolean;
|
|
321
|
+
clickedVal?: string;
|
|
322
|
+
customColor?: boolean;
|
|
149
323
|
};
|
|
324
|
+
export type Colors = 'blue-green' | 'danger' | 'facebook' | 'instagram' | 'primary' | 'secondary' | 'success' | 'turquoise' | 'warning' | 'yellow';
|
|
150
325
|
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
|
};
|