@grasp-labs/ds-react-components 1.2.0 → 1.3.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/button/Button.d.ts +2 -1
- package/dist/components/iconButton/IconButton.d.ts +2 -1
- package/dist/icons/iconsLazy.d.ts +64 -344
- package/dist/{index-acNCkjas.js → index-CcbEiDW7.js} +3914 -3888
- package/dist/{index.esm-CXwp-i4H.js → index.esm-hIxJ5tpq.js} +1 -1
- package/dist/index.js +16 -15
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ export type ButtonProps = BaseButtonProps & {
|
|
|
5
5
|
size?: ButtonSize;
|
|
6
6
|
prefix?: ReactNode;
|
|
7
7
|
suffix?: ReactNode;
|
|
8
|
+
isLoading?: boolean;
|
|
8
9
|
};
|
|
9
10
|
/**
|
|
10
11
|
* A button component with size variants and optional prefix/suffix content.
|
|
@@ -13,4 +14,4 @@ export type ButtonProps = BaseButtonProps & {
|
|
|
13
14
|
* @param props - The props for the Button component.
|
|
14
15
|
* @returns The rendered button with optional prefix/suffix content.
|
|
15
16
|
*/
|
|
16
|
-
export declare const Button: ({ size, className, children, prefix, suffix, variant, ...props }: ButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export declare const Button: ({ size, className, children, prefix, suffix, isLoading, disabled, variant, "aria-busy": ariaBusy, ...props }: ButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -5,6 +5,7 @@ export type IconButtonProps = Omit<BaseButtonProps, "children" | "variant"> & {
|
|
|
5
5
|
icon: ComponentType<SVGProps<SVGSVGElement>>;
|
|
6
6
|
"aria-label"?: string;
|
|
7
7
|
variant?: Variant | "raw";
|
|
8
|
+
isLoading?: boolean;
|
|
8
9
|
};
|
|
9
10
|
/**
|
|
10
11
|
* A circular icon-only button component for actions requiring minimal visual footprint.
|
|
@@ -13,4 +14,4 @@ export type IconButtonProps = Omit<BaseButtonProps, "children" | "variant"> & {
|
|
|
13
14
|
* @param props - The props for the IconButton component.
|
|
14
15
|
* @returns The rendered circular icon button.
|
|
15
16
|
*/
|
|
16
|
-
export declare const IconButton: ({ size, icon: Icon, className, variant, ...props }: IconButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export declare const IconButton: ({ size, icon: Icon, className, variant, isLoading, disabled, "aria-busy": ariaBusy, ...props }: IconButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,345 +1,65 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
readonly
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
readonly
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
readonly
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
readonly
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
readonly
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
readonly
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
readonly
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
readonly
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
readonly
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
}>>;
|
|
62
|
-
readonly chevronDoubleLeft: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
63
|
-
title?: string;
|
|
64
|
-
titleId?: string;
|
|
65
|
-
desc?: string;
|
|
66
|
-
descId?: string;
|
|
67
|
-
}>>;
|
|
68
|
-
readonly chevronDoubleRight: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
69
|
-
title?: string;
|
|
70
|
-
titleId?: string;
|
|
71
|
-
desc?: string;
|
|
72
|
-
descId?: string;
|
|
73
|
-
}>>;
|
|
74
|
-
readonly circle: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
75
|
-
title?: string;
|
|
76
|
-
titleId?: string;
|
|
77
|
-
desc?: string;
|
|
78
|
-
descId?: string;
|
|
79
|
-
}>>;
|
|
80
|
-
readonly clock: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
81
|
-
title?: string;
|
|
82
|
-
titleId?: string;
|
|
83
|
-
desc?: string;
|
|
84
|
-
descId?: string;
|
|
85
|
-
}>>;
|
|
86
|
-
readonly close: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
87
|
-
title?: string;
|
|
88
|
-
titleId?: string;
|
|
89
|
-
desc?: string;
|
|
90
|
-
descId?: string;
|
|
91
|
-
}>>;
|
|
92
|
-
readonly cogWheel: 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 connection: 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 copy: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
105
|
-
title?: string;
|
|
106
|
-
titleId?: string;
|
|
107
|
-
desc?: string;
|
|
108
|
-
descId?: string;
|
|
109
|
-
}>>;
|
|
110
|
-
readonly correct: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
111
|
-
title?: string;
|
|
112
|
-
titleId?: string;
|
|
113
|
-
desc?: string;
|
|
114
|
-
descId?: string;
|
|
115
|
-
}>>;
|
|
116
|
-
readonly dash: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
117
|
-
title?: string;
|
|
118
|
-
titleId?: string;
|
|
119
|
-
desc?: string;
|
|
120
|
-
descId?: string;
|
|
121
|
-
}>>;
|
|
122
|
-
readonly dashboard: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
123
|
-
title?: string;
|
|
124
|
-
titleId?: string;
|
|
125
|
-
desc?: string;
|
|
126
|
-
descId?: string;
|
|
127
|
-
}>>;
|
|
128
|
-
readonly database: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
129
|
-
title?: string;
|
|
130
|
-
titleId?: string;
|
|
131
|
-
desc?: string;
|
|
132
|
-
descId?: string;
|
|
133
|
-
}>>;
|
|
134
|
-
readonly delete: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
135
|
-
title?: string;
|
|
136
|
-
titleId?: string;
|
|
137
|
-
desc?: string;
|
|
138
|
-
descId?: string;
|
|
139
|
-
}>>;
|
|
140
|
-
readonly details: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
141
|
-
title?: string;
|
|
142
|
-
titleId?: string;
|
|
143
|
-
desc?: string;
|
|
144
|
-
descId?: string;
|
|
145
|
-
}>>;
|
|
146
|
-
readonly down: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
147
|
-
title?: string;
|
|
148
|
-
titleId?: string;
|
|
149
|
-
desc?: string;
|
|
150
|
-
descId?: string;
|
|
151
|
-
}>>;
|
|
152
|
-
readonly download: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
153
|
-
title?: string;
|
|
154
|
-
titleId?: string;
|
|
155
|
-
desc?: string;
|
|
156
|
-
descId?: string;
|
|
157
|
-
}>>;
|
|
158
|
-
readonly earth: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
159
|
-
title?: string;
|
|
160
|
-
titleId?: string;
|
|
161
|
-
desc?: string;
|
|
162
|
-
descId?: string;
|
|
163
|
-
}>>;
|
|
164
|
-
readonly edit: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
165
|
-
title?: string;
|
|
166
|
-
titleId?: string;
|
|
167
|
-
desc?: string;
|
|
168
|
-
descId?: string;
|
|
169
|
-
}>>;
|
|
170
|
-
readonly error: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
171
|
-
title?: string;
|
|
172
|
-
titleId?: string;
|
|
173
|
-
desc?: string;
|
|
174
|
-
descId?: string;
|
|
175
|
-
}>>;
|
|
176
|
-
readonly eye: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
177
|
-
title?: string;
|
|
178
|
-
titleId?: string;
|
|
179
|
-
desc?: string;
|
|
180
|
-
descId?: string;
|
|
181
|
-
}>>;
|
|
182
|
-
readonly file: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
183
|
-
title?: string;
|
|
184
|
-
titleId?: string;
|
|
185
|
-
desc?: string;
|
|
186
|
-
descId?: string;
|
|
187
|
-
}>>;
|
|
188
|
-
readonly eyeOff: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
189
|
-
title?: string;
|
|
190
|
-
titleId?: string;
|
|
191
|
-
desc?: string;
|
|
192
|
-
descId?: string;
|
|
193
|
-
}>>;
|
|
194
|
-
readonly filter: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
195
|
-
title?: string;
|
|
196
|
-
titleId?: string;
|
|
197
|
-
desc?: string;
|
|
198
|
-
descId?: string;
|
|
199
|
-
}>>;
|
|
200
|
-
readonly globe: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
201
|
-
title?: string;
|
|
202
|
-
titleId?: string;
|
|
203
|
-
desc?: string;
|
|
204
|
-
descId?: string;
|
|
205
|
-
}>>;
|
|
206
|
-
readonly hourglass: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
207
|
-
title?: string;
|
|
208
|
-
titleId?: string;
|
|
209
|
-
desc?: string;
|
|
210
|
-
descId?: string;
|
|
211
|
-
}>>;
|
|
212
|
-
readonly idea: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
213
|
-
title?: string;
|
|
214
|
-
titleId?: string;
|
|
215
|
-
desc?: string;
|
|
216
|
-
descId?: string;
|
|
217
|
-
}>>;
|
|
218
|
-
readonly info: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
219
|
-
title?: string;
|
|
220
|
-
titleId?: string;
|
|
221
|
-
desc?: string;
|
|
222
|
-
descId?: string;
|
|
223
|
-
}>>;
|
|
224
|
-
readonly leftBar: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
225
|
-
title?: string;
|
|
226
|
-
titleId?: string;
|
|
227
|
-
desc?: string;
|
|
228
|
-
descId?: string;
|
|
229
|
-
}>>;
|
|
230
|
-
readonly left: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
231
|
-
title?: string;
|
|
232
|
-
titleId?: string;
|
|
233
|
-
desc?: string;
|
|
234
|
-
descId?: string;
|
|
235
|
-
}>>;
|
|
236
|
-
readonly list: 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 more: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
243
|
-
title?: string;
|
|
244
|
-
titleId?: string;
|
|
245
|
-
desc?: string;
|
|
246
|
-
descId?: string;
|
|
247
|
-
}>>;
|
|
248
|
-
readonly notepad: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
249
|
-
title?: string;
|
|
250
|
-
titleId?: string;
|
|
251
|
-
desc?: string;
|
|
252
|
-
descId?: string;
|
|
253
|
-
}>>;
|
|
254
|
-
readonly notes: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
255
|
-
title?: string;
|
|
256
|
-
titleId?: string;
|
|
257
|
-
desc?: string;
|
|
258
|
-
descId?: string;
|
|
259
|
-
}>>;
|
|
260
|
-
readonly play: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
261
|
-
title?: string;
|
|
262
|
-
titleId?: string;
|
|
263
|
-
desc?: string;
|
|
264
|
-
descId?: string;
|
|
265
|
-
}>>;
|
|
266
|
-
readonly plus: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
267
|
-
title?: string;
|
|
268
|
-
titleId?: string;
|
|
269
|
-
desc?: string;
|
|
270
|
-
descId?: string;
|
|
271
|
-
}>>;
|
|
272
|
-
readonly profile: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
273
|
-
title?: string;
|
|
274
|
-
titleId?: string;
|
|
275
|
-
desc?: string;
|
|
276
|
-
descId?: string;
|
|
277
|
-
}>>;
|
|
278
|
-
readonly recycle: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
279
|
-
title?: string;
|
|
280
|
-
titleId?: string;
|
|
281
|
-
desc?: string;
|
|
282
|
-
descId?: string;
|
|
283
|
-
}>>;
|
|
284
|
-
readonly reload: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
285
|
-
title?: string;
|
|
286
|
-
titleId?: string;
|
|
287
|
-
desc?: string;
|
|
288
|
-
descId?: string;
|
|
289
|
-
}>>;
|
|
290
|
-
readonly right: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
291
|
-
title?: string;
|
|
292
|
-
titleId?: string;
|
|
293
|
-
desc?: string;
|
|
294
|
-
descId?: string;
|
|
295
|
-
}>>;
|
|
296
|
-
readonly save: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
297
|
-
title?: string;
|
|
298
|
-
titleId?: string;
|
|
299
|
-
desc?: string;
|
|
300
|
-
descId?: string;
|
|
301
|
-
}>>;
|
|
302
|
-
readonly search: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
303
|
-
title?: string;
|
|
304
|
-
titleId?: string;
|
|
305
|
-
desc?: string;
|
|
306
|
-
descId?: string;
|
|
307
|
-
}>>;
|
|
308
|
-
readonly server: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
309
|
-
title?: string;
|
|
310
|
-
titleId?: string;
|
|
311
|
-
desc?: string;
|
|
312
|
-
descId?: string;
|
|
313
|
-
}>>;
|
|
314
|
-
readonly success: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
315
|
-
title?: string;
|
|
316
|
-
titleId?: string;
|
|
317
|
-
desc?: string;
|
|
318
|
-
descId?: string;
|
|
319
|
-
}>>;
|
|
320
|
-
readonly table: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
321
|
-
title?: string;
|
|
322
|
-
titleId?: string;
|
|
323
|
-
desc?: string;
|
|
324
|
-
descId?: string;
|
|
325
|
-
}>>;
|
|
326
|
-
readonly up: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
327
|
-
title?: string;
|
|
328
|
-
titleId?: string;
|
|
329
|
-
desc?: string;
|
|
330
|
-
descId?: string;
|
|
331
|
-
}>>;
|
|
332
|
-
readonly user: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
333
|
-
title?: string;
|
|
334
|
-
titleId?: string;
|
|
335
|
-
desc?: string;
|
|
336
|
-
descId?: string;
|
|
337
|
-
}>>;
|
|
338
|
-
readonly warning: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
339
|
-
title?: string;
|
|
340
|
-
titleId?: string;
|
|
341
|
-
desc?: string;
|
|
342
|
-
descId?: string;
|
|
343
|
-
}>>;
|
|
1
|
+
import { LazyExoticComponent } from 'react';
|
|
2
|
+
import { IconComponent } from '../types/IconComponent';
|
|
3
|
+
declare const iconImporters: {
|
|
4
|
+
readonly address: () => Promise<typeof import("*.svg?react")>;
|
|
5
|
+
readonly arrowDown: () => Promise<typeof import("*.svg?react")>;
|
|
6
|
+
readonly arrowLeft: () => Promise<typeof import("*.svg?react")>;
|
|
7
|
+
readonly arrowRight: () => Promise<typeof import("*.svg?react")>;
|
|
8
|
+
readonly arrowUp: () => Promise<typeof import("*.svg?react")>;
|
|
9
|
+
readonly bell: () => Promise<typeof import("*.svg?react")>;
|
|
10
|
+
readonly briefcase: () => Promise<typeof import("*.svg?react")>;
|
|
11
|
+
readonly calendar: () => Promise<typeof import("*.svg?react")>;
|
|
12
|
+
readonly caution: () => Promise<typeof import("*.svg?react")>;
|
|
13
|
+
readonly check: () => Promise<typeof import("*.svg?react")>;
|
|
14
|
+
readonly chevronDoubleLeft: () => Promise<typeof import("*.svg?react")>;
|
|
15
|
+
readonly chevronDoubleRight: () => Promise<typeof import("*.svg?react")>;
|
|
16
|
+
readonly circle: () => Promise<typeof import("*.svg?react")>;
|
|
17
|
+
readonly clock: () => Promise<typeof import("*.svg?react")>;
|
|
18
|
+
readonly close: () => Promise<typeof import("*.svg?react")>;
|
|
19
|
+
readonly cogWheel: () => Promise<typeof import("*.svg?react")>;
|
|
20
|
+
readonly connection: () => Promise<typeof import("*.svg?react")>;
|
|
21
|
+
readonly copy: () => Promise<typeof import("*.svg?react")>;
|
|
22
|
+
readonly correct: () => Promise<typeof import("*.svg?react")>;
|
|
23
|
+
readonly dash: () => Promise<typeof import("*.svg?react")>;
|
|
24
|
+
readonly dashboard: () => Promise<typeof import("*.svg?react")>;
|
|
25
|
+
readonly database: () => Promise<typeof import("*.svg?react")>;
|
|
26
|
+
readonly delete: () => Promise<typeof import("*.svg?react")>;
|
|
27
|
+
readonly details: () => Promise<typeof import("*.svg?react")>;
|
|
28
|
+
readonly down: () => Promise<typeof import("*.svg?react")>;
|
|
29
|
+
readonly download: () => Promise<typeof import("*.svg?react")>;
|
|
30
|
+
readonly earth: () => Promise<typeof import("*.svg?react")>;
|
|
31
|
+
readonly edit: () => Promise<typeof import("*.svg?react")>;
|
|
32
|
+
readonly error: () => Promise<typeof import("*.svg?react")>;
|
|
33
|
+
readonly eye: () => Promise<typeof import("*.svg?react")>;
|
|
34
|
+
readonly file: () => Promise<typeof import("*.svg?react")>;
|
|
35
|
+
readonly eyeOff: () => Promise<typeof import("*.svg?react")>;
|
|
36
|
+
readonly filter: () => Promise<typeof import("*.svg?react")>;
|
|
37
|
+
readonly globe: () => Promise<typeof import("*.svg?react")>;
|
|
38
|
+
readonly hourglass: () => Promise<typeof import("*.svg?react")>;
|
|
39
|
+
readonly idea: () => Promise<typeof import("*.svg?react")>;
|
|
40
|
+
readonly info: () => Promise<typeof import("*.svg?react")>;
|
|
41
|
+
readonly leftBar: () => Promise<typeof import("*.svg?react")>;
|
|
42
|
+
readonly left: () => Promise<typeof import("*.svg?react")>;
|
|
43
|
+
readonly list: () => Promise<typeof import("*.svg?react")>;
|
|
44
|
+
readonly more: () => Promise<typeof import("*.svg?react")>;
|
|
45
|
+
readonly notepad: () => Promise<typeof import("*.svg?react")>;
|
|
46
|
+
readonly notes: () => Promise<typeof import("*.svg?react")>;
|
|
47
|
+
readonly play: () => Promise<typeof import("*.svg?react")>;
|
|
48
|
+
readonly plus: () => Promise<typeof import("*.svg?react")>;
|
|
49
|
+
readonly profile: () => Promise<typeof import("*.svg?react")>;
|
|
50
|
+
readonly recycle: () => Promise<typeof import("*.svg?react")>;
|
|
51
|
+
readonly reload: () => Promise<typeof import("*.svg?react")>;
|
|
52
|
+
readonly right: () => Promise<typeof import("*.svg?react")>;
|
|
53
|
+
readonly save: () => Promise<typeof import("*.svg?react")>;
|
|
54
|
+
readonly search: () => Promise<typeof import("*.svg?react")>;
|
|
55
|
+
readonly server: () => Promise<typeof import("*.svg?react")>;
|
|
56
|
+
readonly success: () => Promise<typeof import("*.svg?react")>;
|
|
57
|
+
readonly table: () => Promise<typeof import("*.svg?react")>;
|
|
58
|
+
readonly up: () => Promise<typeof import("*.svg?react")>;
|
|
59
|
+
readonly user: () => Promise<typeof import("*.svg?react")>;
|
|
60
|
+
readonly warning: () => Promise<typeof import("*.svg?react")>;
|
|
344
61
|
};
|
|
345
|
-
export type IconName = keyof typeof
|
|
62
|
+
export type IconName = keyof typeof iconImporters;
|
|
63
|
+
export declare const icons: Record<IconName, LazyExoticComponent<IconComponent>>;
|
|
64
|
+
export declare function preloadIcon(name: IconName): Promise<void>;
|
|
65
|
+
export {};
|