@rubenpazch/icons 3.0.1 → 3.0.3
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/ArchiveIcon.d.ts +8 -0
- package/dist/ArchiveIcon.d.ts.map +1 -0
- package/dist/BusinessPlanIcon.d.ts +8 -0
- package/dist/BusinessPlanIcon.d.ts.map +1 -0
- package/dist/CheckOutIcon.d.ts +9 -0
- package/dist/CheckOutIcon.d.ts.map +1 -0
- package/dist/ChecksIcon.d.ts +8 -0
- package/dist/ChecksIcon.d.ts.map +1 -0
- package/dist/CoinsHandIcon.d.ts +9 -0
- package/dist/CoinsHandIcon.d.ts.map +1 -0
- package/dist/ExclamationTriangleIcon.d.ts +9 -0
- package/dist/ExclamationTriangleIcon.d.ts.map +1 -0
- package/dist/EyeCheckIcon.d.ts +9 -0
- package/dist/EyeCheckIcon.d.ts.map +1 -0
- package/dist/GalleryPhotoIcon.d.ts +8 -0
- package/dist/GalleryPhotoIcon.d.ts.map +1 -0
- package/dist/GlassesIcon.d.ts +9 -0
- package/dist/GlassesIcon.d.ts.map +1 -0
- package/dist/PresentationChartIcon.d.ts +9 -0
- package/dist/PresentationChartIcon.d.ts.map +1 -0
- package/dist/RobotIcon.d.ts +8 -0
- package/dist/RobotIcon.d.ts.map +1 -0
- package/dist/RobotOffIcon.d.ts +8 -0
- package/dist/RobotOffIcon.d.ts.map +1 -0
- package/dist/TargetIcon.d.ts +17 -0
- package/dist/TargetIcon.d.ts.map +1 -0
- package/dist/UploadIcon.d.ts +4 -32
- package/dist/UploadIcon.d.ts.map +1 -1
- package/dist/UserPlusIcon.d.ts +8 -0
- package/dist/UserPlusIcon.d.ts.map +1 -0
- package/dist/WalletOpenIcon.d.ts +9 -0
- package/dist/WalletOpenIcon.d.ts.map +1 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +179 -76
- package/dist/index.d.ts.map +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import * as React$1 from 'react';
|
|
2
|
+
import React__default from 'react';
|
|
2
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
4
|
|
|
4
5
|
interface ArrowDetailsIconProps {
|
|
@@ -16,9 +17,16 @@ interface ArrowDetailsIconProps {
|
|
|
16
17
|
* <ArrowDetailsIcon size="md" />
|
|
17
18
|
* <ArrowDetailsIcon className="w-6 h-6 text-blue-600" />
|
|
18
19
|
*/
|
|
19
|
-
declare const ArrowDetailsIcon:
|
|
20
|
+
declare const ArrowDetailsIcon: React__default.FC<ArrowDetailsIconProps>;
|
|
20
21
|
//# sourceMappingURL=ArrowDetailsIcon.d.ts.map
|
|
21
22
|
|
|
23
|
+
interface ArchiveIconProps extends React$1.SVGProps<SVGSVGElement> {
|
|
24
|
+
size?: "sm" | "md" | "lg";
|
|
25
|
+
color?: string;
|
|
26
|
+
className?: string;
|
|
27
|
+
}
|
|
28
|
+
declare const ArchiveIcon: React$1.FC<ArchiveIconProps>;
|
|
29
|
+
|
|
22
30
|
interface BrandingIconProps {
|
|
23
31
|
className?: string;
|
|
24
32
|
size?: "sm" | "md" | "lg";
|
|
@@ -33,9 +41,16 @@ interface BrandingIconProps {
|
|
|
33
41
|
* <BrandingIcon size="md" />
|
|
34
42
|
* <BrandingIcon className="text-purple-600" />
|
|
35
43
|
*/
|
|
36
|
-
declare const BrandingIcon:
|
|
44
|
+
declare const BrandingIcon: React__default.FC<BrandingIconProps>;
|
|
37
45
|
//# sourceMappingURL=BrandingIcon.d.ts.map
|
|
38
46
|
|
|
47
|
+
interface BusinessPlanIconProps extends React$1.SVGProps<SVGSVGElement> {
|
|
48
|
+
size?: "sm" | "md" | "lg";
|
|
49
|
+
color?: string;
|
|
50
|
+
className?: string;
|
|
51
|
+
}
|
|
52
|
+
declare const BusinessPlanIcon: React$1.FC<BusinessPlanIconProps>;
|
|
53
|
+
|
|
39
54
|
interface CalendarIconProps {
|
|
40
55
|
className?: string;
|
|
41
56
|
size?: "sm" | "md" | "lg";
|
|
@@ -50,7 +65,7 @@ interface CalendarIconProps {
|
|
|
50
65
|
* <CalendarIcon size="md" />
|
|
51
66
|
* <CalendarIcon className="w-5 h-5 text-blue-600" />
|
|
52
67
|
*/
|
|
53
|
-
declare const CalendarIcon:
|
|
68
|
+
declare const CalendarIcon: React__default.FC<CalendarIconProps>;
|
|
54
69
|
//# sourceMappingURL=CalendarIcon.d.ts.map
|
|
55
70
|
|
|
56
71
|
interface CheckIconProps {
|
|
@@ -69,6 +84,14 @@ interface CheckIconProps {
|
|
|
69
84
|
*/
|
|
70
85
|
declare function CheckIcon({ className, size, }: CheckIconProps): react_jsx_runtime.JSX.Element;
|
|
71
86
|
|
|
87
|
+
interface CheckOutIconProps {
|
|
88
|
+
className?: string;
|
|
89
|
+
size?: "sm" | "md" | "lg";
|
|
90
|
+
color?: string;
|
|
91
|
+
}
|
|
92
|
+
declare const CheckOutIcon: React__default.FC<CheckOutIconProps>;
|
|
93
|
+
//# sourceMappingURL=CheckOutIcon.d.ts.map
|
|
94
|
+
|
|
72
95
|
interface CheckmarkIconProps {
|
|
73
96
|
className?: string;
|
|
74
97
|
size?: "sm" | "md" | "lg";
|
|
@@ -83,16 +106,23 @@ interface CheckmarkIconProps {
|
|
|
83
106
|
* <CheckmarkIcon size="md" />
|
|
84
107
|
* <CheckmarkIcon className="w-5 h-5 text-white" />
|
|
85
108
|
*/
|
|
86
|
-
declare const CheckmarkIcon:
|
|
109
|
+
declare const CheckmarkIcon: React__default.FC<CheckmarkIconProps>;
|
|
87
110
|
//# sourceMappingURL=CheckmarkIcon.d.ts.map
|
|
88
111
|
|
|
112
|
+
interface ChecksIconProps extends React$1.SVGProps<SVGSVGElement> {
|
|
113
|
+
size?: "sm" | "md" | "lg";
|
|
114
|
+
color?: string;
|
|
115
|
+
className?: string;
|
|
116
|
+
}
|
|
117
|
+
declare const ChecksIcon: React$1.FC<ChecksIconProps>;
|
|
118
|
+
|
|
89
119
|
interface ChevronIconProps {
|
|
90
120
|
className?: string;
|
|
91
121
|
size?: "sm" | "md" | "lg";
|
|
92
122
|
color?: string;
|
|
93
123
|
direction?: "up" | "down" | "left" | "right";
|
|
94
124
|
}
|
|
95
|
-
declare const ChevronIcon:
|
|
125
|
+
declare const ChevronIcon: React__default.FC<ChevronIconProps>;
|
|
96
126
|
//# sourceMappingURL=ChevronIcon.d.ts.map
|
|
97
127
|
|
|
98
128
|
type IconSize$6 = "sm" | "md" | "lg" | "xl";
|
|
@@ -104,7 +134,7 @@ interface CityIconProps {
|
|
|
104
134
|
* CityIcon component
|
|
105
135
|
* Displays a building/city icon for city-related UI elements
|
|
106
136
|
*/
|
|
107
|
-
declare const CityIcon:
|
|
137
|
+
declare const CityIcon: React__default.FC<CityIconProps>;
|
|
108
138
|
|
|
109
139
|
type IconSize$5 = "sm" | "md" | "lg" | "xl";
|
|
110
140
|
interface ClockIconProps {
|
|
@@ -115,7 +145,7 @@ interface ClockIconProps {
|
|
|
115
145
|
* ClockIcon component
|
|
116
146
|
* Displays a clock icon for time/date-related UI elements
|
|
117
147
|
*/
|
|
118
|
-
declare const ClockIcon:
|
|
148
|
+
declare const ClockIcon: React__default.FC<ClockIconProps>;
|
|
119
149
|
|
|
120
150
|
interface CloseIconProps {
|
|
121
151
|
className?: string;
|
|
@@ -124,6 +154,14 @@ interface CloseIconProps {
|
|
|
124
154
|
}
|
|
125
155
|
declare function CloseIcon({ className, size, color, }: CloseIconProps): react_jsx_runtime.JSX.Element;
|
|
126
156
|
|
|
157
|
+
interface CoinsHandIconProps {
|
|
158
|
+
className?: string;
|
|
159
|
+
size?: "sm" | "md" | "lg";
|
|
160
|
+
color?: string;
|
|
161
|
+
}
|
|
162
|
+
declare const CoinsHandIcon: React__default.FC<CoinsHandIconProps>;
|
|
163
|
+
//# sourceMappingURL=CoinsHandIcon.d.ts.map
|
|
164
|
+
|
|
127
165
|
interface DocumentIconProps {
|
|
128
166
|
className?: string;
|
|
129
167
|
size?: "sm" | "md" | "lg";
|
|
@@ -138,7 +176,7 @@ interface DocumentIconProps {
|
|
|
138
176
|
* <DocumentIcon size="md" />
|
|
139
177
|
* <DocumentIcon className="w-6 h-6 text-pink-600" />
|
|
140
178
|
*/
|
|
141
|
-
declare const DocumentIcon:
|
|
179
|
+
declare const DocumentIcon: React__default.FC<DocumentIconProps>;
|
|
142
180
|
//# sourceMappingURL=DocumentIcon.d.ts.map
|
|
143
181
|
|
|
144
182
|
interface DownloadIconProps {
|
|
@@ -146,7 +184,7 @@ interface DownloadIconProps {
|
|
|
146
184
|
size?: "sm" | "md" | "lg";
|
|
147
185
|
color?: string;
|
|
148
186
|
}
|
|
149
|
-
declare const DownloadIcon:
|
|
187
|
+
declare const DownloadIcon: React__default.FC<DownloadIconProps>;
|
|
150
188
|
//# sourceMappingURL=DownloadIcon.d.ts.map
|
|
151
189
|
|
|
152
190
|
interface DragHandleIconProps {
|
|
@@ -163,7 +201,7 @@ interface DragHandleIconProps {
|
|
|
163
201
|
* <DragHandleIcon size="md" />
|
|
164
202
|
* <DragHandleIcon className="w-6 h-6 text-gray-400" />
|
|
165
203
|
*/
|
|
166
|
-
declare const DragHandleIcon:
|
|
204
|
+
declare const DragHandleIcon: React__default.FC<DragHandleIconProps>;
|
|
167
205
|
//# sourceMappingURL=DragHandleIcon.d.ts.map
|
|
168
206
|
|
|
169
207
|
interface EditIconProps {
|
|
@@ -181,7 +219,7 @@ interface EditIconProps {
|
|
|
181
219
|
* <EditIcon size="md" />
|
|
182
220
|
* <EditIcon className="w-6 h-6 text-blue-600" />
|
|
183
221
|
*/
|
|
184
|
-
declare const EditIcon:
|
|
222
|
+
declare const EditIcon: React__default.FC<EditIconProps>;
|
|
185
223
|
//# sourceMappingURL=EditIcon.d.ts.map
|
|
186
224
|
|
|
187
225
|
type IconSize$4 = "sm" | "md" | "lg" | "xl";
|
|
@@ -193,7 +231,7 @@ interface EmailIconProps {
|
|
|
193
231
|
* EmailIcon component
|
|
194
232
|
* Displays an envelope icon for email-related UI elements
|
|
195
233
|
*/
|
|
196
|
-
declare const EmailIcon:
|
|
234
|
+
declare const EmailIcon: React__default.FC<EmailIconProps>;
|
|
197
235
|
|
|
198
236
|
interface ErrorIconProps {
|
|
199
237
|
className?: string;
|
|
@@ -209,17 +247,32 @@ interface ErrorIconProps {
|
|
|
209
247
|
* <ErrorIcon size="md" />
|
|
210
248
|
* <ErrorIcon className="text-red-400" />
|
|
211
249
|
*/
|
|
212
|
-
declare const ErrorIcon:
|
|
250
|
+
declare const ErrorIcon: React__default.FC<ErrorIconProps>;
|
|
213
251
|
//# sourceMappingURL=ErrorIcon.d.ts.map
|
|
214
252
|
|
|
253
|
+
interface ExclamationTriangleIconProps {
|
|
254
|
+
className?: string;
|
|
255
|
+
size?: "sm" | "md" | "lg";
|
|
256
|
+
color?: string;
|
|
257
|
+
}
|
|
258
|
+
declare const ExclamationTriangleIcon: React__default.FC<ExclamationTriangleIconProps>;
|
|
259
|
+
//# sourceMappingURL=ExclamationTriangleIcon.d.ts.map
|
|
260
|
+
|
|
215
261
|
interface EyeIconProps {
|
|
216
262
|
className?: string;
|
|
217
263
|
size?: "sm" | "md" | "lg";
|
|
218
264
|
color?: string;
|
|
219
265
|
}
|
|
220
|
-
declare const EyeIcon:
|
|
266
|
+
declare const EyeIcon: React__default.FC<EyeIconProps>;
|
|
221
267
|
//# sourceMappingURL=EyeIcon.d.ts.map
|
|
222
268
|
|
|
269
|
+
interface EyeCheckIconProps extends React$1.SVGProps<SVGSVGElement> {
|
|
270
|
+
size?: "sm" | "md" | "lg";
|
|
271
|
+
color?: string;
|
|
272
|
+
className?: string;
|
|
273
|
+
}
|
|
274
|
+
declare const EyeCheckIcon: React$1.FC<EyeCheckIconProps>;
|
|
275
|
+
|
|
223
276
|
interface FilterIconProps {
|
|
224
277
|
className?: string;
|
|
225
278
|
size?: "sm" | "md" | "lg";
|
|
@@ -234,15 +287,30 @@ interface FilterIconProps {
|
|
|
234
287
|
* <FilterIcon size="md" />
|
|
235
288
|
* <FilterIcon className="w-6 h-6 text-blue-600" />
|
|
236
289
|
*/
|
|
237
|
-
declare const FilterIcon:
|
|
290
|
+
declare const FilterIcon: React__default.FC<FilterIconProps>;
|
|
238
291
|
//# sourceMappingURL=FilterIcon.d.ts.map
|
|
239
292
|
|
|
293
|
+
interface GalleryPhotoIconProps extends React$1.SVGProps<SVGSVGElement> {
|
|
294
|
+
size?: "sm" | "md" | "lg";
|
|
295
|
+
color?: string;
|
|
296
|
+
className?: string;
|
|
297
|
+
}
|
|
298
|
+
declare const GalleryPhotoIcon: React$1.FC<GalleryPhotoIconProps>;
|
|
299
|
+
|
|
300
|
+
interface GlassesIconProps {
|
|
301
|
+
className?: string;
|
|
302
|
+
size?: "sm" | "md" | "lg";
|
|
303
|
+
color?: string;
|
|
304
|
+
}
|
|
305
|
+
declare const GlassesIcon: React__default.FC<GlassesIconProps>;
|
|
306
|
+
//# sourceMappingURL=GlassesIcon.d.ts.map
|
|
307
|
+
|
|
240
308
|
interface HomeIconProps {
|
|
241
309
|
className?: string;
|
|
242
310
|
size?: "sm" | "md" | "lg";
|
|
243
311
|
color?: string;
|
|
244
312
|
}
|
|
245
|
-
declare const HomeIcon:
|
|
313
|
+
declare const HomeIcon: React__default.FC<HomeIconProps>;
|
|
246
314
|
//# sourceMappingURL=HomeIcon.d.ts.map
|
|
247
315
|
|
|
248
316
|
interface InfoIconProps {
|
|
@@ -259,7 +327,7 @@ interface InfoIconProps {
|
|
|
259
327
|
* <InfoIcon size="md" />
|
|
260
328
|
* <InfoIcon className="w-6 h-6 text-blue-600" />
|
|
261
329
|
*/
|
|
262
|
-
declare const InfoIcon:
|
|
330
|
+
declare const InfoIcon: React__default.FC<InfoIconProps>;
|
|
263
331
|
//# sourceMappingURL=InfoIcon.d.ts.map
|
|
264
332
|
|
|
265
333
|
interface LinkIconProps {
|
|
@@ -267,7 +335,7 @@ interface LinkIconProps {
|
|
|
267
335
|
size?: "sm" | "md" | "lg";
|
|
268
336
|
color?: string;
|
|
269
337
|
}
|
|
270
|
-
declare const LinkIcon:
|
|
338
|
+
declare const LinkIcon: React__default.FC<LinkIconProps>;
|
|
271
339
|
//# sourceMappingURL=LinkIcon.d.ts.map
|
|
272
340
|
|
|
273
341
|
type IconSize$3 = "sm" | "md" | "lg" | "xl";
|
|
@@ -279,7 +347,7 @@ interface LocationIconProps {
|
|
|
279
347
|
* LocationIcon component
|
|
280
348
|
* Displays a map pin/location icon for address-related UI elements
|
|
281
349
|
*/
|
|
282
|
-
declare const LocationIcon:
|
|
350
|
+
declare const LocationIcon: React__default.FC<LocationIconProps>;
|
|
283
351
|
|
|
284
352
|
interface ManualIdentifierIconProps {
|
|
285
353
|
className?: string;
|
|
@@ -295,7 +363,7 @@ interface ManualIdentifierIconProps {
|
|
|
295
363
|
* <ManualIdentifierIcon size="md" />
|
|
296
364
|
* <ManualIdentifierIcon className="w-6 h-6 text-orange-600" />
|
|
297
365
|
*/
|
|
298
|
-
declare const ManualIdentifierIcon:
|
|
366
|
+
declare const ManualIdentifierIcon: React__default.FC<ManualIdentifierIconProps>;
|
|
299
367
|
//# sourceMappingURL=ManualIdentifierIcon.d.ts.map
|
|
300
368
|
|
|
301
369
|
type IconSize$2 = "sm" | "md" | "lg" | "xl";
|
|
@@ -307,7 +375,7 @@ interface MapIconProps {
|
|
|
307
375
|
* MapIcon component
|
|
308
376
|
* Displays a map icon for state/region-related UI elements
|
|
309
377
|
*/
|
|
310
|
-
declare const MapIcon:
|
|
378
|
+
declare const MapIcon: React__default.FC<MapIconProps>;
|
|
311
379
|
|
|
312
380
|
interface MinusIconProps {
|
|
313
381
|
className?: string;
|
|
@@ -325,7 +393,7 @@ interface MoreIconProps {
|
|
|
325
393
|
* MoreIcon component
|
|
326
394
|
* Displays a vertical three-dot menu icon for more options/actions
|
|
327
395
|
*/
|
|
328
|
-
declare const MoreIcon:
|
|
396
|
+
declare const MoreIcon: React__default.FC<MoreIconProps>;
|
|
329
397
|
|
|
330
398
|
interface NotificationIconProps {
|
|
331
399
|
className?: string;
|
|
@@ -341,7 +409,7 @@ interface NotificationIconProps {
|
|
|
341
409
|
* <NotificationIcon size="md" />
|
|
342
410
|
* <NotificationIcon className="text-blue-600" />
|
|
343
411
|
*/
|
|
344
|
-
declare const NotificationIcon:
|
|
412
|
+
declare const NotificationIcon: React__default.FC<NotificationIconProps>;
|
|
345
413
|
//# sourceMappingURL=NotificationIcon.d.ts.map
|
|
346
414
|
|
|
347
415
|
interface PatientIconProps {
|
|
@@ -349,7 +417,7 @@ interface PatientIconProps {
|
|
|
349
417
|
size?: "sm" | "md" | "lg";
|
|
350
418
|
color?: string;
|
|
351
419
|
}
|
|
352
|
-
declare const PatientIcon:
|
|
420
|
+
declare const PatientIcon: React__default.FC<PatientIconProps>;
|
|
353
421
|
//# sourceMappingURL=PatientIcon.d.ts.map
|
|
354
422
|
|
|
355
423
|
interface PatientsIconProps {
|
|
@@ -357,7 +425,7 @@ interface PatientsIconProps {
|
|
|
357
425
|
size?: "sm" | "md" | "lg";
|
|
358
426
|
color?: string;
|
|
359
427
|
}
|
|
360
|
-
declare const PatientsIcon:
|
|
428
|
+
declare const PatientsIcon: React__default.FC<PatientsIconProps>;
|
|
361
429
|
//# sourceMappingURL=PatientsIcon.d.ts.map
|
|
362
430
|
|
|
363
431
|
type IconSize = "sm" | "md" | "lg" | "xl";
|
|
@@ -369,7 +437,7 @@ interface PhoneIconProps {
|
|
|
369
437
|
* PhoneIcon component
|
|
370
438
|
* Displays a phone icon for contact-related UI elements
|
|
371
439
|
*/
|
|
372
|
-
declare const PhoneIcon:
|
|
440
|
+
declare const PhoneIcon: React__default.FC<PhoneIconProps>;
|
|
373
441
|
|
|
374
442
|
interface PlusIconProps {
|
|
375
443
|
className?: string;
|
|
@@ -392,9 +460,17 @@ interface PrescriptionIconProps {
|
|
|
392
460
|
size?: "sm" | "md" | "lg";
|
|
393
461
|
color?: string;
|
|
394
462
|
}
|
|
395
|
-
declare const PrescriptionIcon:
|
|
463
|
+
declare const PrescriptionIcon: React__default.FC<PrescriptionIconProps>;
|
|
396
464
|
//# sourceMappingURL=PrescriptionIcon.d.ts.map
|
|
397
465
|
|
|
466
|
+
interface PresentationChartIconProps {
|
|
467
|
+
className?: string;
|
|
468
|
+
size?: "sm" | "md" | "lg";
|
|
469
|
+
color?: string;
|
|
470
|
+
}
|
|
471
|
+
declare const PresentationChartIcon: React__default.FC<PresentationChartIconProps>;
|
|
472
|
+
//# sourceMappingURL=PresentationChartIcon.d.ts.map
|
|
473
|
+
|
|
398
474
|
interface PrintIconProps {
|
|
399
475
|
className?: string;
|
|
400
476
|
size?: "sm" | "md" | "lg";
|
|
@@ -410,7 +486,7 @@ interface PrintIconProps {
|
|
|
410
486
|
* <PrintIcon size="md" />
|
|
411
487
|
* <PrintIcon className="w-6 h-6 text-blue-600" />
|
|
412
488
|
*/
|
|
413
|
-
declare const PrintIcon:
|
|
489
|
+
declare const PrintIcon: React__default.FC<PrintIconProps>;
|
|
414
490
|
//# sourceMappingURL=PrintIcon.d.ts.map
|
|
415
491
|
|
|
416
492
|
interface RefreshIconProps {
|
|
@@ -428,7 +504,7 @@ interface RefreshIconProps {
|
|
|
428
504
|
* <RefreshIcon size="md" />
|
|
429
505
|
* <RefreshIcon className="w-6 h-6 text-green-600" />
|
|
430
506
|
*/
|
|
431
|
-
declare const RefreshIcon:
|
|
507
|
+
declare const RefreshIcon: React__default.FC<RefreshIconProps>;
|
|
432
508
|
//# sourceMappingURL=RefreshIcon.d.ts.map
|
|
433
509
|
|
|
434
510
|
interface SearchIconProps {
|
|
@@ -445,7 +521,7 @@ interface SearchIconProps {
|
|
|
445
521
|
* <SearchIcon size="md" />
|
|
446
522
|
* <SearchIcon className="w-6 h-6 text-blue-600" />
|
|
447
523
|
*/
|
|
448
|
-
declare const SearchIcon:
|
|
524
|
+
declare const SearchIcon: React__default.FC<SearchIconProps>;
|
|
449
525
|
//# sourceMappingURL=SearchIcon.d.ts.map
|
|
450
526
|
|
|
451
527
|
interface SettingsIconProps {
|
|
@@ -453,7 +529,7 @@ interface SettingsIconProps {
|
|
|
453
529
|
size?: "sm" | "md" | "lg";
|
|
454
530
|
color?: string;
|
|
455
531
|
}
|
|
456
|
-
declare const SettingsIcon:
|
|
532
|
+
declare const SettingsIcon: React__default.FC<SettingsIconProps>;
|
|
457
533
|
//# sourceMappingURL=SettingsIcon.d.ts.map
|
|
458
534
|
|
|
459
535
|
interface SortIconProps {
|
|
@@ -470,7 +546,7 @@ interface SortIconProps {
|
|
|
470
546
|
* <SortIcon size="md" />
|
|
471
547
|
* <SortIcon className="w-6 h-6 text-blue-600" />
|
|
472
548
|
*/
|
|
473
|
-
declare const SortIcon:
|
|
549
|
+
declare const SortIcon: React__default.FC<SortIconProps>;
|
|
474
550
|
//# sourceMappingURL=SortIcon.d.ts.map
|
|
475
551
|
|
|
476
552
|
interface SpinnerIconProps {
|
|
@@ -478,7 +554,7 @@ interface SpinnerIconProps {
|
|
|
478
554
|
size?: "sm" | "md" | "lg";
|
|
479
555
|
color?: string;
|
|
480
556
|
}
|
|
481
|
-
declare const SpinnerIcon:
|
|
557
|
+
declare const SpinnerIcon: React__default.FC<SpinnerIconProps>;
|
|
482
558
|
//# sourceMappingURL=SpinnerIcon.d.ts.map
|
|
483
559
|
|
|
484
560
|
interface SystemIdentifierIconProps {
|
|
@@ -495,7 +571,7 @@ interface SystemIdentifierIconProps {
|
|
|
495
571
|
* <SystemIdentifierIcon size="md" />
|
|
496
572
|
* <SystemIdentifierIcon className="w-6 h-6 text-blue-600" />
|
|
497
573
|
*/
|
|
498
|
-
declare const SystemIdentifierIcon:
|
|
574
|
+
declare const SystemIdentifierIcon: React__default.FC<SystemIdentifierIconProps>;
|
|
499
575
|
//# sourceMappingURL=SystemIdentifierIcon.d.ts.map
|
|
500
576
|
|
|
501
577
|
interface TrashIconProps {
|
|
@@ -513,59 +589,54 @@ interface TrashIconProps {
|
|
|
513
589
|
* <TrashIcon size="md" />
|
|
514
590
|
* <TrashIcon className="w-6 h-6 text-red-600" />
|
|
515
591
|
*/
|
|
516
|
-
declare const TrashIcon:
|
|
592
|
+
declare const TrashIcon: React__default.FC<TrashIconProps>;
|
|
517
593
|
//# sourceMappingURL=TrashIcon.d.ts.map
|
|
518
594
|
|
|
519
|
-
interface
|
|
520
|
-
|
|
521
|
-
* Size of the icon in pixels or as a Tailwind CSS class
|
|
522
|
-
* @default 'h-12 w-12'
|
|
523
|
-
*/
|
|
524
|
-
size?: string;
|
|
525
|
-
/**
|
|
526
|
-
* Additional CSS classes to apply
|
|
527
|
-
*/
|
|
528
|
-
className?: string;
|
|
529
|
-
/**
|
|
530
|
-
* Accessible label for screen readers
|
|
531
|
-
*/
|
|
532
|
-
ariaLabel?: string;
|
|
595
|
+
interface IconProps$1 extends React$1.SVGProps<SVGSVGElement> {
|
|
596
|
+
size?: "sm" | "md" | "lg";
|
|
533
597
|
}
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
598
|
+
declare const ArrowLeftIcon: React$1.FC<IconProps$1>;
|
|
599
|
+
|
|
600
|
+
interface IconProps extends React$1.SVGProps<SVGSVGElement> {
|
|
601
|
+
size?: "sm" | "md" | "lg";
|
|
602
|
+
}
|
|
603
|
+
declare const ArrowRightIcon: React$1.FC<IconProps>;
|
|
604
|
+
|
|
605
|
+
interface RobotOffIconProps extends React$1.SVGProps<SVGSVGElement> {
|
|
606
|
+
size?: "sm" | "md" | "lg";
|
|
607
|
+
color?: string;
|
|
608
|
+
className?: string;
|
|
609
|
+
}
|
|
610
|
+
declare const RobotOffIcon: React$1.FC<RobotOffIconProps>;
|
|
611
|
+
|
|
612
|
+
interface UploadIconProps extends React$1.SVGProps<SVGSVGElement> {
|
|
613
|
+
size?: "sm" | "md" | "lg";
|
|
614
|
+
color?: string;
|
|
615
|
+
className?: string;
|
|
616
|
+
}
|
|
617
|
+
declare const UploadIcon: React$1.FC<UploadIconProps>;
|
|
554
618
|
|
|
555
619
|
interface UserManagementIconProps {
|
|
556
620
|
className?: string;
|
|
557
621
|
size?: "sm" | "md" | "lg";
|
|
558
622
|
color?: string;
|
|
559
623
|
}
|
|
560
|
-
declare const UserManagementIcon:
|
|
624
|
+
declare const UserManagementIcon: React__default.FC<UserManagementIconProps>;
|
|
561
625
|
//# sourceMappingURL=UserManagementIcon.d.ts.map
|
|
562
626
|
|
|
627
|
+
interface UserPlusIconProps extends React$1.SVGProps<SVGSVGElement> {
|
|
628
|
+
size?: "sm" | "md" | "lg";
|
|
629
|
+
color?: string;
|
|
630
|
+
className?: string;
|
|
631
|
+
}
|
|
632
|
+
declare const UserPlusIcon: React$1.FC<UserPlusIconProps>;
|
|
633
|
+
|
|
563
634
|
interface UserSelectIconProps {
|
|
564
635
|
className?: string;
|
|
565
636
|
size?: "sm" | "md" | "lg";
|
|
566
637
|
color?: string;
|
|
567
638
|
}
|
|
568
|
-
declare const UserSelectIcon:
|
|
639
|
+
declare const UserSelectIcon: React__default.FC<UserSelectIconProps>;
|
|
569
640
|
//# sourceMappingURL=UserSelectIcon.d.ts.map
|
|
570
641
|
|
|
571
642
|
interface UsersIconProps {
|
|
@@ -582,15 +653,23 @@ interface UsersIconProps {
|
|
|
582
653
|
* <UsersIcon size="md" />
|
|
583
654
|
* <UsersIcon className="w-6 h-6 text-blue-600" />
|
|
584
655
|
*/
|
|
585
|
-
declare const UsersIcon:
|
|
656
|
+
declare const UsersIcon: React__default.FC<UsersIconProps>;
|
|
586
657
|
//# sourceMappingURL=UsersIcon.d.ts.map
|
|
587
658
|
|
|
659
|
+
interface WalletOpenProps {
|
|
660
|
+
className?: string;
|
|
661
|
+
size?: "sm" | "md" | "lg";
|
|
662
|
+
color?: string;
|
|
663
|
+
}
|
|
664
|
+
declare const WalletOpen: React__default.FC<WalletOpenProps>;
|
|
665
|
+
//# sourceMappingURL=WalletOpenIcon.d.ts.map
|
|
666
|
+
|
|
588
667
|
interface ZoomInIconProps {
|
|
589
668
|
className?: string;
|
|
590
669
|
size?: "sm" | "md" | "lg";
|
|
591
670
|
color?: string;
|
|
592
671
|
}
|
|
593
|
-
declare const ZoomInIcon:
|
|
672
|
+
declare const ZoomInIcon: React__default.FC<ZoomInIconProps>;
|
|
594
673
|
//# sourceMappingURL=ZoomInIcon.d.ts.map
|
|
595
674
|
|
|
596
675
|
interface ZoomOutIconProps {
|
|
@@ -598,7 +677,31 @@ interface ZoomOutIconProps {
|
|
|
598
677
|
size?: "sm" | "md" | "lg";
|
|
599
678
|
color?: string;
|
|
600
679
|
}
|
|
601
|
-
declare const ZoomOutIcon:
|
|
680
|
+
declare const ZoomOutIcon: React__default.FC<ZoomOutIconProps>;
|
|
602
681
|
//# sourceMappingURL=ZoomOutIcon.d.ts.map
|
|
603
682
|
|
|
604
|
-
|
|
683
|
+
interface RobotIconProps extends React$1.SVGProps<SVGSVGElement> {
|
|
684
|
+
size?: "sm" | "md" | "lg";
|
|
685
|
+
color?: string;
|
|
686
|
+
className?: string;
|
|
687
|
+
}
|
|
688
|
+
declare const RobotIcon: React$1.FC<RobotIconProps>;
|
|
689
|
+
|
|
690
|
+
interface TargetIconProps {
|
|
691
|
+
className?: string;
|
|
692
|
+
size?: "sm" | "md" | "lg";
|
|
693
|
+
color?: string;
|
|
694
|
+
}
|
|
695
|
+
/**
|
|
696
|
+
* TargetIcon Component
|
|
697
|
+
*
|
|
698
|
+
* A target/crosshair icon for selection, focus, or goal indication.
|
|
699
|
+
*
|
|
700
|
+
* @example
|
|
701
|
+
* <TargetIcon size="md" />
|
|
702
|
+
* <TargetIcon className="w-6 h-6 text-blue-600" />
|
|
703
|
+
*/
|
|
704
|
+
declare const TargetIcon: React.FC<TargetIconProps>;
|
|
705
|
+
//# sourceMappingURL=TargetIcon.d.ts.map
|
|
706
|
+
|
|
707
|
+
export { ArchiveIcon, ArrowDetailsIcon, ArrowLeftIcon, ArrowRightIcon, BrandingIcon, BusinessPlanIcon, CalendarIcon, CheckIcon, CheckOutIcon, CheckmarkIcon, ChecksIcon, ChevronIcon, CityIcon, ClockIcon, CloseIcon, CoinsHandIcon, DocumentIcon, DownloadIcon, DragHandleIcon, EditIcon, EmailIcon, ErrorIcon, ExclamationTriangleIcon, EyeCheckIcon, EyeIcon, FilterIcon, GalleryPhotoIcon, GlassesIcon, HomeIcon, InfoIcon, LinkIcon, LocationIcon, ManualIdentifierIcon, MapIcon, MinusIcon, MoreIcon, NotificationIcon, PatientIcon, PatientsIcon, PhoneIcon, PlusIcon, PrescriptionIcon, PresentationChartIcon, PrintIcon, RefreshIcon, RobotIcon, RobotOffIcon, SearchIcon, SettingsIcon, SortIcon, SpinnerIcon, SystemIdentifierIcon, TargetIcon, TrashIcon, UploadIcon, UserManagementIcon, UserPlusIcon, UserSelectIcon, UsersIcon, WalletOpen as WalletOpenIcon, ZoomInIcon, ZoomOutIcon };
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|