@grasp-labs/ds-react-components 1.1.8 → 1.2.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 +1 -2
- package/dist/components/iconButton/IconButton.d.ts +1 -2
- package/dist/icons/iconsLazy.d.ts +344 -64
- package/dist/{index-BTS6LY-M.js → index-acNCkjas.js} +3899 -3925
- package/dist/index.css +1 -1
- package/dist/{index.esm-PVQc_2lZ.js → index.esm-CXwp-i4H.js} +1 -1
- package/dist/index.js +15 -16
- package/package.json +1 -1
|
@@ -5,7 +5,6 @@ export type ButtonProps = BaseButtonProps & {
|
|
|
5
5
|
size?: ButtonSize;
|
|
6
6
|
prefix?: ReactNode;
|
|
7
7
|
suffix?: ReactNode;
|
|
8
|
-
isLoading?: boolean;
|
|
9
8
|
};
|
|
10
9
|
/**
|
|
11
10
|
* A button component with size variants and optional prefix/suffix content.
|
|
@@ -14,4 +13,4 @@ export type ButtonProps = BaseButtonProps & {
|
|
|
14
13
|
* @param props - The props for the Button component.
|
|
15
14
|
* @returns The rendered button with optional prefix/suffix content.
|
|
16
15
|
*/
|
|
17
|
-
export declare const Button: ({ size, className, children, prefix, suffix,
|
|
16
|
+
export declare const Button: ({ size, className, children, prefix, suffix, variant, ...props }: ButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -5,7 +5,6 @@ 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;
|
|
9
8
|
};
|
|
10
9
|
/**
|
|
11
10
|
* A circular icon-only button component for actions requiring minimal visual footprint.
|
|
@@ -14,4 +13,4 @@ export type IconButtonProps = Omit<BaseButtonProps, "children" | "variant"> & {
|
|
|
14
13
|
* @param props - The props for the IconButton component.
|
|
15
14
|
* @returns The rendered circular icon button.
|
|
16
15
|
*/
|
|
17
|
-
export declare const IconButton: ({ size, icon: Icon, className, variant,
|
|
16
|
+
export declare const IconButton: ({ size, icon: Icon, className, variant, ...props }: IconButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,65 +1,345 @@
|
|
|
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
|
-
|
|
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
|
+
}>>;
|
|
8
|
+
readonly arrowDown: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
9
|
+
title?: string;
|
|
10
|
+
titleId?: string;
|
|
11
|
+
desc?: string;
|
|
12
|
+
descId?: string;
|
|
13
|
+
}>>;
|
|
14
|
+
readonly arrowLeft: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
15
|
+
title?: string;
|
|
16
|
+
titleId?: string;
|
|
17
|
+
desc?: string;
|
|
18
|
+
descId?: string;
|
|
19
|
+
}>>;
|
|
20
|
+
readonly arrowRight: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
21
|
+
title?: string;
|
|
22
|
+
titleId?: string;
|
|
23
|
+
desc?: string;
|
|
24
|
+
descId?: string;
|
|
25
|
+
}>>;
|
|
26
|
+
readonly arrowUp: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
27
|
+
title?: string;
|
|
28
|
+
titleId?: string;
|
|
29
|
+
desc?: string;
|
|
30
|
+
descId?: string;
|
|
31
|
+
}>>;
|
|
32
|
+
readonly bell: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
33
|
+
title?: string;
|
|
34
|
+
titleId?: string;
|
|
35
|
+
desc?: string;
|
|
36
|
+
descId?: string;
|
|
37
|
+
}>>;
|
|
38
|
+
readonly briefcase: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
39
|
+
title?: string;
|
|
40
|
+
titleId?: string;
|
|
41
|
+
desc?: string;
|
|
42
|
+
descId?: string;
|
|
43
|
+
}>>;
|
|
44
|
+
readonly calendar: 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 caution: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
51
|
+
title?: string;
|
|
52
|
+
titleId?: string;
|
|
53
|
+
desc?: string;
|
|
54
|
+
descId?: string;
|
|
55
|
+
}>>;
|
|
56
|
+
readonly check: import('react').LazyExoticComponent<import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
57
|
+
title?: string;
|
|
58
|
+
titleId?: string;
|
|
59
|
+
desc?: string;
|
|
60
|
+
descId?: string;
|
|
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
|
+
}>>;
|
|
61
344
|
};
|
|
62
|
-
export type IconName = keyof typeof
|
|
63
|
-
export declare const icons: Record<IconName, LazyExoticComponent<IconComponent>>;
|
|
64
|
-
export declare function preloadIcon(name: IconName): Promise<void>;
|
|
65
|
-
export {};
|
|
345
|
+
export type IconName = keyof typeof icons;
|