@devopness/ui-react 2.151.0 → 2.153.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/src/components/Primitives/ArrowHead/ArrowHead.d.ts +24 -0
- package/dist/src/components/Primitives/ArrowHead/ArrowHead.styled.d.ts +9 -0
- package/dist/src/components/Primitives/ArrowHead/index.d.ts +1 -0
- package/dist/src/components/Primitives/Label/Label.styled.d.ts +1 -1
- package/dist/src/components/Primitives/index.d.ts +1 -0
- package/dist/src/icons/iconLoader.d.ts +76 -76
- package/dist/ui-react.cjs +44 -33
- package/dist/ui-react.js +648 -621
- package/package.json +14 -14
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
type ArrowHeadProps = {
|
|
2
|
+
/** Fill color for the arrow shape */
|
|
3
|
+
fill: string;
|
|
4
|
+
/** Stroke color for the arrow shape border */
|
|
5
|
+
stroke: string;
|
|
6
|
+
/** CSS styles to apply to the arrow shape */
|
|
7
|
+
style?: React.CSSProperties;
|
|
8
|
+
/**
|
|
9
|
+
* Event handler called when the arrow is clicked.
|
|
10
|
+
*/
|
|
11
|
+
onClick?: React.MouseEventHandler;
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* An arrow separator
|
|
15
|
+
*
|
|
16
|
+
* @example
|
|
17
|
+
* <ArrowHead
|
|
18
|
+
* fill="#000000"
|
|
19
|
+
* stroke="#FFFFFF"
|
|
20
|
+
* />
|
|
21
|
+
*/
|
|
22
|
+
declare const ArrowHead: ({ fill, stroke, style, onClick }: ArrowHeadProps) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export type { ArrowHeadProps };
|
|
24
|
+
export { ArrowHead };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
type ArrowShapeProps = {
|
|
2
|
+
fill: string;
|
|
3
|
+
stroke: string;
|
|
4
|
+
};
|
|
5
|
+
declare const Container: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
6
|
+
declare const ArrowShape: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('styled-components').FastOmit<import('styled-components/dist/types').Substitute<import('react').SVGProps<SVGSVGElement>, Omit<import('react').SVGProps<SVGSVGElement>, "ref"> & {
|
|
7
|
+
ref?: ((instance: SVGSVGElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<SVGSVGElement> | null | undefined;
|
|
8
|
+
}>, never>, ArrowShapeProps>> & string;
|
|
9
|
+
export { Container, ArrowShape };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ArrowHead';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
declare const LabelElement: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, never>> & string;
|
|
2
2
|
declare const ContentFlex: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
3
|
-
declare const QuestionIcon: import('styled-components/dist/types').IStyledComponentBase<"web",
|
|
3
|
+
declare const QuestionIcon: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react-icons/lib').IconBaseProps, never>> & string & Omit<import('react-icons/lib').IconType, keyof import('react').Component<any, {}, any>>;
|
|
4
4
|
export { LabelElement, ContentFlex, QuestionIcon };
|
|
@@ -1,31 +1,31 @@
|
|
|
1
1
|
declare const iconList: readonly [{
|
|
2
2
|
readonly type: "icon";
|
|
3
3
|
readonly accessor: "link";
|
|
4
|
-
readonly component: IconType;
|
|
4
|
+
readonly component: import('react-icons/lib').IconType;
|
|
5
5
|
}, {
|
|
6
6
|
readonly type: "icon";
|
|
7
7
|
readonly accessor: "unlink";
|
|
8
|
-
readonly component: IconType;
|
|
8
|
+
readonly component: import('react-icons/lib').IconType;
|
|
9
9
|
}, {
|
|
10
10
|
readonly type: "icon";
|
|
11
11
|
readonly accessor: "tag";
|
|
12
|
-
readonly component: IconType;
|
|
12
|
+
readonly component: import('react-icons/lib').IconType;
|
|
13
13
|
}, {
|
|
14
14
|
readonly type: "icon";
|
|
15
15
|
readonly accessor: "help";
|
|
16
|
-
readonly component: IconType;
|
|
16
|
+
readonly component: import('react-icons/lib').IconType;
|
|
17
17
|
}, {
|
|
18
18
|
readonly type: "icon";
|
|
19
19
|
readonly accessor: "key";
|
|
20
|
-
readonly component: IconType;
|
|
20
|
+
readonly component: import('react-icons/lib').IconType;
|
|
21
21
|
}, {
|
|
22
22
|
readonly type: "icon";
|
|
23
23
|
readonly accessor: "skip";
|
|
24
|
-
readonly component: IconType;
|
|
24
|
+
readonly component: import('react-icons/lib').IconType;
|
|
25
25
|
}, {
|
|
26
26
|
readonly type: "icon";
|
|
27
27
|
readonly accessor: "pending";
|
|
28
|
-
readonly component: IconType;
|
|
28
|
+
readonly component: import('react-icons/lib').IconType;
|
|
29
29
|
}, {
|
|
30
30
|
readonly type: "icon";
|
|
31
31
|
readonly accessor: "loading";
|
|
@@ -36,243 +36,243 @@ declare const iconList: readonly [{
|
|
|
36
36
|
}, {
|
|
37
37
|
readonly type: "icon";
|
|
38
38
|
readonly accessor: "server";
|
|
39
|
-
readonly component: IconType;
|
|
39
|
+
readonly component: import('react-icons/lib').IconType;
|
|
40
40
|
}, {
|
|
41
41
|
readonly type: "icon";
|
|
42
42
|
readonly accessor: "self-hosted";
|
|
43
|
-
readonly component: IconType;
|
|
43
|
+
readonly component: import('react-icons/lib').IconType;
|
|
44
44
|
}, {
|
|
45
45
|
readonly type: "icon";
|
|
46
46
|
readonly accessor: "sortIcon";
|
|
47
|
-
readonly component: IconType;
|
|
47
|
+
readonly component: import('react-icons/lib').IconType;
|
|
48
48
|
}, {
|
|
49
49
|
readonly type: "icon";
|
|
50
50
|
readonly accessor: "add";
|
|
51
|
-
readonly component: IconType;
|
|
51
|
+
readonly component: import('react-icons/lib').IconType;
|
|
52
52
|
}, {
|
|
53
53
|
readonly type: "icon";
|
|
54
54
|
readonly accessor: "plus";
|
|
55
|
-
readonly component: IconType;
|
|
55
|
+
readonly component: import('react-icons/lib').IconType;
|
|
56
56
|
}, {
|
|
57
57
|
readonly type: "icon";
|
|
58
58
|
readonly accessor: "downArrow";
|
|
59
|
-
readonly component: IconType;
|
|
59
|
+
readonly component: import('react-icons/lib').IconType;
|
|
60
60
|
}, {
|
|
61
61
|
readonly type: "icon";
|
|
62
62
|
readonly accessor: "upArrow";
|
|
63
|
-
readonly component: IconType;
|
|
63
|
+
readonly component: import('react-icons/lib').IconType;
|
|
64
64
|
}, {
|
|
65
65
|
readonly type: "icon";
|
|
66
66
|
readonly accessor: "leftArrow";
|
|
67
|
-
readonly component: IconType;
|
|
67
|
+
readonly component: import('react-icons/lib').IconType;
|
|
68
68
|
}, {
|
|
69
69
|
readonly type: "icon";
|
|
70
70
|
readonly accessor: "rightArrow";
|
|
71
|
-
readonly component: IconType;
|
|
71
|
+
readonly component: import('react-icons/lib').IconType;
|
|
72
72
|
}, {
|
|
73
73
|
readonly type: "icon";
|
|
74
74
|
readonly accessor: "config";
|
|
75
|
-
readonly component: IconType;
|
|
75
|
+
readonly component: import('react-icons/lib').IconType;
|
|
76
76
|
}, {
|
|
77
77
|
readonly type: "icon";
|
|
78
78
|
readonly accessor: "userCheck";
|
|
79
|
-
readonly component: IconType;
|
|
79
|
+
readonly component: import('react-icons/lib').IconType;
|
|
80
80
|
}, {
|
|
81
81
|
readonly type: "icon";
|
|
82
82
|
readonly accessor: "userClock";
|
|
83
|
-
readonly component: IconType;
|
|
83
|
+
readonly component: import('react-icons/lib').IconType;
|
|
84
84
|
}, {
|
|
85
85
|
readonly type: "icon";
|
|
86
86
|
readonly accessor: "userTimes";
|
|
87
|
-
readonly component: IconType;
|
|
87
|
+
readonly component: import('react-icons/lib').IconType;
|
|
88
88
|
}, {
|
|
89
89
|
readonly type: "icon";
|
|
90
90
|
readonly accessor: "warningCloud";
|
|
91
|
-
readonly component: IconType;
|
|
91
|
+
readonly component: import('react-icons/lib').IconType;
|
|
92
92
|
}, {
|
|
93
93
|
readonly type: "icon";
|
|
94
94
|
readonly accessor: "error";
|
|
95
|
-
readonly component: IconType;
|
|
95
|
+
readonly component: import('react-icons/lib').IconType;
|
|
96
96
|
}, {
|
|
97
97
|
readonly type: "icon";
|
|
98
98
|
readonly accessor: "warning";
|
|
99
|
-
readonly component: IconType;
|
|
99
|
+
readonly component: import('react-icons/lib').IconType;
|
|
100
100
|
}, {
|
|
101
101
|
readonly type: "icon";
|
|
102
102
|
readonly accessor: "checkCircle";
|
|
103
|
-
readonly component: IconType;
|
|
103
|
+
readonly component: import('react-icons/lib').IconType;
|
|
104
104
|
}, {
|
|
105
105
|
readonly type: "icon";
|
|
106
106
|
readonly accessor: "alarmOn";
|
|
107
|
-
readonly component: IconType;
|
|
107
|
+
readonly component: import('react-icons/lib').IconType;
|
|
108
108
|
}, {
|
|
109
109
|
readonly type: "icon";
|
|
110
110
|
readonly accessor: "dragHandle";
|
|
111
|
-
readonly component: IconType;
|
|
111
|
+
readonly component: import('react-icons/lib').IconType;
|
|
112
112
|
}, {
|
|
113
113
|
readonly type: "icon";
|
|
114
114
|
readonly accessor: "delete";
|
|
115
|
-
readonly component: IconType;
|
|
115
|
+
readonly component: import('react-icons/lib').IconType;
|
|
116
116
|
}, {
|
|
117
117
|
readonly type: "icon";
|
|
118
118
|
readonly accessor: "edit";
|
|
119
|
-
readonly component: IconType;
|
|
119
|
+
readonly component: import('react-icons/lib').IconType;
|
|
120
120
|
}, {
|
|
121
121
|
readonly type: "icon";
|
|
122
122
|
readonly accessor: "lockOpen";
|
|
123
|
-
readonly component: IconType;
|
|
123
|
+
readonly component: import('react-icons/lib').IconType;
|
|
124
124
|
}, {
|
|
125
125
|
readonly type: "icon";
|
|
126
126
|
readonly accessor: "lock";
|
|
127
|
-
readonly component: IconType;
|
|
127
|
+
readonly component: import('react-icons/lib').IconType;
|
|
128
128
|
}, {
|
|
129
129
|
readonly type: "icon";
|
|
130
130
|
readonly accessor: "eye2Line";
|
|
131
|
-
readonly component: IconType;
|
|
131
|
+
readonly component: import('react-icons/lib').IconType;
|
|
132
132
|
}, {
|
|
133
133
|
readonly type: "icon";
|
|
134
134
|
readonly accessor: "cubes";
|
|
135
|
-
readonly component: IconType;
|
|
135
|
+
readonly component: import('react-icons/lib').IconType;
|
|
136
136
|
}, {
|
|
137
137
|
readonly type: "icon";
|
|
138
138
|
readonly accessor: "security";
|
|
139
|
-
readonly component: IconType;
|
|
139
|
+
readonly component: import('react-icons/lib').IconType;
|
|
140
140
|
}, {
|
|
141
141
|
readonly type: "icon";
|
|
142
142
|
readonly accessor: "fillGearFill";
|
|
143
|
-
readonly component: IconType;
|
|
143
|
+
readonly component: import('react-icons/lib').IconType;
|
|
144
144
|
}, {
|
|
145
145
|
readonly type: "icon";
|
|
146
146
|
readonly accessor: "devices";
|
|
147
|
-
readonly component: IconType;
|
|
147
|
+
readonly component: import('react-icons/lib').IconType;
|
|
148
148
|
}, {
|
|
149
149
|
readonly type: "icon";
|
|
150
150
|
readonly accessor: "logout";
|
|
151
|
-
readonly component: IconType;
|
|
151
|
+
readonly component: import('react-icons/lib').IconType;
|
|
152
152
|
}, {
|
|
153
153
|
readonly type: "icon";
|
|
154
154
|
readonly accessor: "codeBadge";
|
|
155
|
-
readonly component: IconType;
|
|
155
|
+
readonly component: import('react-icons/lib').IconType;
|
|
156
156
|
}, {
|
|
157
157
|
readonly type: "icon";
|
|
158
158
|
readonly accessor: "logout";
|
|
159
|
-
readonly component: IconType;
|
|
159
|
+
readonly component: import('react-icons/lib').IconType;
|
|
160
160
|
}, {
|
|
161
161
|
readonly type: "icon";
|
|
162
162
|
readonly accessor: "snooze";
|
|
163
|
-
readonly component: IconType;
|
|
163
|
+
readonly component: import('react-icons/lib').IconType;
|
|
164
164
|
}, {
|
|
165
165
|
readonly type: "icon";
|
|
166
166
|
readonly accessor: "timeroff";
|
|
167
|
-
readonly component: IconType;
|
|
167
|
+
readonly component: import('react-icons/lib').IconType;
|
|
168
168
|
}, {
|
|
169
169
|
readonly type: "icon";
|
|
170
170
|
readonly accessor: "deploy";
|
|
171
|
-
readonly component: IconType;
|
|
171
|
+
readonly component: import('react-icons/lib').IconType;
|
|
172
172
|
}, {
|
|
173
173
|
readonly type: "icon";
|
|
174
174
|
readonly accessor: "outlineCheck";
|
|
175
|
-
readonly component: IconType;
|
|
175
|
+
readonly component: import('react-icons/lib').IconType;
|
|
176
176
|
}, {
|
|
177
177
|
readonly type: "icon";
|
|
178
178
|
readonly accessor: "filledCheck";
|
|
179
|
-
readonly component: IconType;
|
|
179
|
+
readonly component: import('react-icons/lib').IconType;
|
|
180
180
|
}, {
|
|
181
181
|
readonly type: "icon";
|
|
182
182
|
readonly accessor: "settings";
|
|
183
|
-
readonly component: IconType;
|
|
183
|
+
readonly component: import('react-icons/lib').IconType;
|
|
184
184
|
}, {
|
|
185
185
|
readonly type: "icon";
|
|
186
186
|
readonly accessor: "branch";
|
|
187
|
-
readonly component: IconType;
|
|
187
|
+
readonly component: import('react-icons/lib').IconType;
|
|
188
188
|
}, {
|
|
189
189
|
readonly type: "icon";
|
|
190
190
|
readonly accessor: "commit";
|
|
191
|
-
readonly component: IconType;
|
|
191
|
+
readonly component: import('react-icons/lib').IconType;
|
|
192
192
|
}, {
|
|
193
193
|
readonly type: "icon";
|
|
194
194
|
readonly accessor: "user";
|
|
195
|
-
readonly component: IconType;
|
|
195
|
+
readonly component: import('react-icons/lib').IconType;
|
|
196
196
|
}, {
|
|
197
197
|
readonly type: "icon";
|
|
198
198
|
readonly accessor: "copy";
|
|
199
|
-
readonly component: IconType;
|
|
199
|
+
readonly component: import('react-icons/lib').IconType;
|
|
200
200
|
}, {
|
|
201
201
|
readonly type: "icon";
|
|
202
202
|
readonly accessor: "outlineCopy";
|
|
203
|
-
readonly component: IconType;
|
|
203
|
+
readonly component: import('react-icons/lib').IconType;
|
|
204
204
|
}, {
|
|
205
205
|
readonly type: "icon";
|
|
206
206
|
readonly accessor: "lens";
|
|
207
|
-
readonly component: IconType;
|
|
207
|
+
readonly component: import('react-icons/lib').IconType;
|
|
208
208
|
}, {
|
|
209
209
|
readonly type: "icon";
|
|
210
210
|
readonly accessor: "more";
|
|
211
|
-
readonly component: IconType;
|
|
211
|
+
readonly component: import('react-icons/lib').IconType;
|
|
212
212
|
}, {
|
|
213
213
|
readonly type: "icon";
|
|
214
214
|
readonly accessor: "launch";
|
|
215
|
-
readonly component: IconType;
|
|
215
|
+
readonly component: import('react-icons/lib').IconType;
|
|
216
216
|
}, {
|
|
217
217
|
readonly type: "icon";
|
|
218
218
|
readonly accessor: "connect";
|
|
219
|
-
readonly component: IconType;
|
|
219
|
+
readonly component: import('react-icons/lib').IconType;
|
|
220
220
|
}, {
|
|
221
221
|
readonly type: "icon";
|
|
222
222
|
readonly accessor: "cloudServer";
|
|
223
|
-
readonly component: IconType;
|
|
223
|
+
readonly component: import('react-icons/lib').IconType;
|
|
224
224
|
}, {
|
|
225
225
|
readonly type: "icon";
|
|
226
226
|
readonly accessor: "gitBranch";
|
|
227
|
-
readonly component: IconType;
|
|
227
|
+
readonly component: import('react-icons/lib').IconType;
|
|
228
228
|
}, {
|
|
229
229
|
readonly type: "icon";
|
|
230
230
|
readonly accessor: "outlineServer";
|
|
231
|
-
readonly component: IconType;
|
|
231
|
+
readonly component: import('react-icons/lib').IconType;
|
|
232
232
|
}, {
|
|
233
233
|
readonly type: "icon";
|
|
234
234
|
readonly accessor: "storage";
|
|
235
|
-
readonly component: IconType;
|
|
235
|
+
readonly component: import('react-icons/lib').IconType;
|
|
236
236
|
}, {
|
|
237
237
|
readonly type: "icon";
|
|
238
238
|
readonly accessor: "mapPinLine";
|
|
239
|
-
readonly component: IconType;
|
|
239
|
+
readonly component: import('react-icons/lib').IconType;
|
|
240
240
|
}, {
|
|
241
241
|
readonly type: "icon";
|
|
242
242
|
readonly accessor: "outlineSafety";
|
|
243
|
-
readonly component: IconType;
|
|
243
|
+
readonly component: import('react-icons/lib').IconType;
|
|
244
244
|
}, {
|
|
245
245
|
readonly type: "icon";
|
|
246
246
|
readonly accessor: "plusCircle";
|
|
247
|
-
readonly component: IconType;
|
|
247
|
+
readonly component: import('react-icons/lib').IconType;
|
|
248
248
|
}, {
|
|
249
249
|
readonly type: "icon";
|
|
250
250
|
readonly accessor: "riTeamLine";
|
|
251
|
-
readonly component: IconType;
|
|
251
|
+
readonly component: import('react-icons/lib').IconType;
|
|
252
252
|
}, {
|
|
253
253
|
readonly type: "icon";
|
|
254
254
|
readonly accessor: "aiOutlineDollarCircle";
|
|
255
|
-
readonly component: IconType;
|
|
255
|
+
readonly component: import('react-icons/lib').IconType;
|
|
256
256
|
}, {
|
|
257
257
|
readonly type: "icon";
|
|
258
258
|
readonly accessor: "network";
|
|
259
|
-
readonly component: IconType;
|
|
259
|
+
readonly component: import('react-icons/lib').IconType;
|
|
260
260
|
}, {
|
|
261
261
|
readonly type: "icon";
|
|
262
262
|
readonly accessor: "subnet";
|
|
263
|
-
readonly component: IconType;
|
|
263
|
+
readonly component: import('react-icons/lib').IconType;
|
|
264
264
|
}, {
|
|
265
265
|
readonly type: "icon";
|
|
266
266
|
readonly accessor: "mdGroup";
|
|
267
|
-
readonly component: IconType;
|
|
267
|
+
readonly component: import('react-icons/lib').IconType;
|
|
268
268
|
}, {
|
|
269
269
|
readonly type: "icon";
|
|
270
270
|
readonly accessor: "faGlobe";
|
|
271
|
-
readonly component: IconType;
|
|
271
|
+
readonly component: import('react-icons/lib').IconType;
|
|
272
272
|
}, {
|
|
273
273
|
readonly type: "icon";
|
|
274
274
|
readonly accessor: "openInNewWindow";
|
|
275
|
-
readonly component: IconType;
|
|
275
|
+
readonly component: import('react-icons/lib').IconType;
|
|
276
276
|
}, {
|
|
277
277
|
readonly type: "image";
|
|
278
278
|
readonly accessor: "github";
|
|
@@ -376,39 +376,39 @@ declare const iconList: readonly [{
|
|
|
376
376
|
}, {
|
|
377
377
|
readonly type: "icon";
|
|
378
378
|
readonly accessor: "close";
|
|
379
|
-
readonly component: IconType;
|
|
379
|
+
readonly component: import('react-icons/lib').IconType;
|
|
380
380
|
}, {
|
|
381
381
|
readonly type: "icon";
|
|
382
382
|
readonly accessor: "eye";
|
|
383
|
-
readonly component: IconType;
|
|
383
|
+
readonly component: import('react-icons/lib').IconType;
|
|
384
384
|
}, {
|
|
385
385
|
readonly type: "icon";
|
|
386
386
|
readonly accessor: "eyeOff";
|
|
387
|
-
readonly component: IconType;
|
|
387
|
+
readonly component: import('react-icons/lib').IconType;
|
|
388
388
|
}, {
|
|
389
389
|
readonly type: "icon";
|
|
390
390
|
readonly accessor: "passkey";
|
|
391
|
-
readonly component: IconType;
|
|
391
|
+
readonly component: import('react-icons/lib').IconType;
|
|
392
392
|
}, {
|
|
393
393
|
readonly type: "icon";
|
|
394
394
|
readonly accessor: "info";
|
|
395
|
-
readonly component: IconType;
|
|
395
|
+
readonly component: import('react-icons/lib').IconType;
|
|
396
396
|
}, {
|
|
397
397
|
readonly type: "icon";
|
|
398
398
|
readonly accessor: "description";
|
|
399
|
-
readonly component: IconType;
|
|
399
|
+
readonly component: import('react-icons/lib').IconType;
|
|
400
400
|
}, {
|
|
401
401
|
readonly type: "icon";
|
|
402
402
|
readonly accessor: "terminal";
|
|
403
|
-
readonly component: IconType;
|
|
403
|
+
readonly component: import('react-icons/lib').IconType;
|
|
404
404
|
}, {
|
|
405
405
|
readonly type: "icon";
|
|
406
406
|
readonly accessor: "treeView";
|
|
407
|
-
readonly component: IconType;
|
|
407
|
+
readonly component: import('react-icons/lib').IconType;
|
|
408
408
|
}, {
|
|
409
409
|
readonly type: "icon";
|
|
410
410
|
readonly accessor: "folder";
|
|
411
|
-
readonly component: IconType;
|
|
411
|
+
readonly component: import('react-icons/lib').IconType;
|
|
412
412
|
}];
|
|
413
413
|
/**
|
|
414
414
|
* Lists all valid icon accessors
|