@rubenpazch/icons 2.0.0 → 3.0.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/ArrowDetailsIcon.d.ts +2 -2
- package/dist/BrandingIcon.d.ts +2 -2
- package/dist/BrandingIcon.d.ts.map +1 -1
- package/dist/CalendarIcon.d.ts +2 -2
- package/dist/CalendarIcon.d.ts.map +1 -1
- package/dist/CheckIcon.d.ts +2 -2
- package/dist/CheckIcon.d.ts.map +1 -1
- package/dist/CheckmarkIcon.d.ts +2 -2
- package/dist/CheckmarkIcon.d.ts.map +1 -1
- package/dist/ChevronIcon.d.ts +3 -3
- package/dist/CityIcon.d.ts +2 -2
- package/dist/ClockIcon.d.ts +2 -2
- package/dist/ClockIcon.d.ts.map +1 -1
- package/dist/CloseIcon.d.ts +1 -1
- package/dist/CloseIcon.d.ts.map +1 -1
- package/dist/DocumentIcon.d.ts +2 -2
- package/dist/DocumentIcon.d.ts.map +1 -1
- package/dist/DownloadIcon.d.ts +2 -2
- package/dist/DragHandleIcon.d.ts +2 -2
- package/dist/DragHandleIcon.d.ts.map +1 -1
- package/dist/EditIcon.d.ts +2 -2
- package/dist/EmailIcon.d.ts +2 -2
- package/dist/EmailIcon.d.ts.map +1 -1
- package/dist/ErrorIcon.d.ts +2 -2
- package/dist/ErrorIcon.d.ts.map +1 -1
- package/dist/EyeIcon.d.ts +2 -2
- package/dist/FilterIcon.d.ts +2 -2
- package/dist/FilterIcon.d.ts.map +1 -1
- package/dist/HomeIcon.d.ts +2 -2
- package/dist/InfoIcon.d.ts +2 -2
- package/dist/LinkIcon.d.ts +2 -2
- package/dist/LocationIcon.d.ts +2 -2
- package/dist/LocationIcon.d.ts.map +1 -1
- package/dist/ManualIdentifierIcon.d.ts +2 -2
- package/dist/MapIcon.d.ts +2 -2
- package/dist/MinusIcon.d.ts +1 -1
- package/dist/MinusIcon.d.ts.map +1 -1
- package/dist/MoreIcon.d.ts +2 -2
- package/dist/NotificationIcon.d.ts +2 -2
- package/dist/NotificationIcon.d.ts.map +1 -1
- package/dist/PatientIcon.d.ts +2 -2
- package/dist/PatientsIcon.d.ts +2 -2
- package/dist/PhoneIcon.d.ts +2 -2
- package/dist/PhoneIcon.d.ts.map +1 -1
- package/dist/PlusIcon.d.ts +2 -2
- package/dist/PlusIcon.d.ts.map +1 -1
- package/dist/PrescriptionIcon.d.ts +2 -2
- package/dist/PrintIcon.d.ts +2 -2
- package/dist/RefreshIcon.d.ts +2 -2
- package/dist/SearchIcon.d.ts +2 -2
- package/dist/SearchIcon.d.ts.map +1 -1
- package/dist/SettingsIcon.d.ts +2 -2
- package/dist/SettingsIcon.d.ts.map +1 -1
- package/dist/SortIcon.d.ts +2 -2
- package/dist/SpinnerIcon.d.ts +2 -2
- package/dist/SpinnerIcon.d.ts.map +1 -1
- package/dist/SystemIdentifierIcon.d.ts +2 -2
- package/dist/SystemIdentifierIcon.d.ts.map +1 -1
- package/dist/TrashIcon.d.ts +2 -2
- package/dist/UploadIcon.d.ts +1 -1
- package/dist/UserManagementIcon.d.ts +2 -2
- package/dist/UserSelectIcon.d.ts +2 -2
- package/dist/UsersIcon.d.ts +2 -2
- package/dist/UsersIcon.d.ts.map +1 -1
- package/dist/ZoomInIcon.d.ts +2 -2
- package/dist/ZoomOutIcon.d.ts +2 -2
- package/dist/index copy.d.ts +45 -45
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +47 -47
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
3
3
|
|
|
4
4
|
interface ArrowDetailsIconProps {
|
|
5
5
|
className?: string;
|
|
6
|
-
size?:
|
|
6
|
+
size?: "sm" | "md" | "lg";
|
|
7
7
|
color?: string;
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
@@ -21,7 +21,7 @@ declare const ArrowDetailsIcon: React.FC<ArrowDetailsIconProps>;
|
|
|
21
21
|
|
|
22
22
|
interface BrandingIconProps {
|
|
23
23
|
className?: string;
|
|
24
|
-
size?:
|
|
24
|
+
size?: "sm" | "md" | "lg";
|
|
25
25
|
}
|
|
26
26
|
/**
|
|
27
27
|
* BrandingIcon Component
|
|
@@ -38,7 +38,7 @@ declare const BrandingIcon: React.FC<BrandingIconProps>;
|
|
|
38
38
|
|
|
39
39
|
interface CalendarIconProps {
|
|
40
40
|
className?: string;
|
|
41
|
-
size?:
|
|
41
|
+
size?: "sm" | "md" | "lg";
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
44
44
|
* CalendarIcon Component
|
|
@@ -55,7 +55,7 @@ declare const CalendarIcon: React.FC<CalendarIconProps>;
|
|
|
55
55
|
|
|
56
56
|
interface CheckIconProps {
|
|
57
57
|
className?: string;
|
|
58
|
-
size?:
|
|
58
|
+
size?: "sm" | "md" | "lg";
|
|
59
59
|
}
|
|
60
60
|
/**
|
|
61
61
|
* CheckIcon Component
|
|
@@ -67,11 +67,11 @@ interface CheckIconProps {
|
|
|
67
67
|
* <CheckIcon size="md" />
|
|
68
68
|
* <CheckIcon className="w-5 h-5 text-green-600" />
|
|
69
69
|
*/
|
|
70
|
-
declare function CheckIcon({ className, size }: CheckIconProps): react_jsx_runtime.JSX.Element;
|
|
70
|
+
declare function CheckIcon({ className, size, }: CheckIconProps): react_jsx_runtime.JSX.Element;
|
|
71
71
|
|
|
72
72
|
interface CheckmarkIconProps {
|
|
73
73
|
className?: string;
|
|
74
|
-
size?:
|
|
74
|
+
size?: "sm" | "md" | "lg";
|
|
75
75
|
}
|
|
76
76
|
/**
|
|
77
77
|
* CheckmarkIcon Component
|
|
@@ -88,14 +88,14 @@ declare const CheckmarkIcon: React.FC<CheckmarkIconProps>;
|
|
|
88
88
|
|
|
89
89
|
interface ChevronIconProps {
|
|
90
90
|
className?: string;
|
|
91
|
-
size?:
|
|
91
|
+
size?: "sm" | "md" | "lg";
|
|
92
92
|
color?: string;
|
|
93
|
-
direction?:
|
|
93
|
+
direction?: "up" | "down" | "left" | "right";
|
|
94
94
|
}
|
|
95
95
|
declare const ChevronIcon: React.FC<ChevronIconProps>;
|
|
96
96
|
//# sourceMappingURL=ChevronIcon.d.ts.map
|
|
97
97
|
|
|
98
|
-
type IconSize$6 =
|
|
98
|
+
type IconSize$6 = "sm" | "md" | "lg" | "xl";
|
|
99
99
|
interface CityIconProps {
|
|
100
100
|
size?: IconSize$6;
|
|
101
101
|
className?: string;
|
|
@@ -106,7 +106,7 @@ interface CityIconProps {
|
|
|
106
106
|
*/
|
|
107
107
|
declare const CityIcon: React.FC<CityIconProps>;
|
|
108
108
|
|
|
109
|
-
type IconSize$5 =
|
|
109
|
+
type IconSize$5 = "sm" | "md" | "lg" | "xl";
|
|
110
110
|
interface ClockIconProps {
|
|
111
111
|
size?: IconSize$5;
|
|
112
112
|
className?: string;
|
|
@@ -119,14 +119,14 @@ declare const ClockIcon: React.FC<ClockIconProps>;
|
|
|
119
119
|
|
|
120
120
|
interface CloseIconProps {
|
|
121
121
|
className?: string;
|
|
122
|
-
size?:
|
|
122
|
+
size?: "sm" | "md" | "lg";
|
|
123
123
|
color?: string;
|
|
124
124
|
}
|
|
125
125
|
declare function CloseIcon({ className, size, color, }: CloseIconProps): react_jsx_runtime.JSX.Element;
|
|
126
126
|
|
|
127
127
|
interface DocumentIconProps {
|
|
128
128
|
className?: string;
|
|
129
|
-
size?:
|
|
129
|
+
size?: "sm" | "md" | "lg";
|
|
130
130
|
}
|
|
131
131
|
/**
|
|
132
132
|
* DocumentIcon Component
|
|
@@ -143,7 +143,7 @@ declare const DocumentIcon: React.FC<DocumentIconProps>;
|
|
|
143
143
|
|
|
144
144
|
interface DownloadIconProps {
|
|
145
145
|
className?: string;
|
|
146
|
-
size?:
|
|
146
|
+
size?: "sm" | "md" | "lg";
|
|
147
147
|
color?: string;
|
|
148
148
|
}
|
|
149
149
|
declare const DownloadIcon: React.FC<DownloadIconProps>;
|
|
@@ -151,7 +151,7 @@ declare const DownloadIcon: React.FC<DownloadIconProps>;
|
|
|
151
151
|
|
|
152
152
|
interface DragHandleIconProps {
|
|
153
153
|
className?: string;
|
|
154
|
-
size?:
|
|
154
|
+
size?: "sm" | "md" | "lg";
|
|
155
155
|
}
|
|
156
156
|
/**
|
|
157
157
|
* DragHandleIcon Component
|
|
@@ -168,7 +168,7 @@ declare const DragHandleIcon: React.FC<DragHandleIconProps>;
|
|
|
168
168
|
|
|
169
169
|
interface EditIconProps {
|
|
170
170
|
className?: string;
|
|
171
|
-
size?:
|
|
171
|
+
size?: "sm" | "md" | "lg";
|
|
172
172
|
color?: string;
|
|
173
173
|
}
|
|
174
174
|
/**
|
|
@@ -184,7 +184,7 @@ interface EditIconProps {
|
|
|
184
184
|
declare const EditIcon: React.FC<EditIconProps>;
|
|
185
185
|
//# sourceMappingURL=EditIcon.d.ts.map
|
|
186
186
|
|
|
187
|
-
type IconSize$4 =
|
|
187
|
+
type IconSize$4 = "sm" | "md" | "lg" | "xl";
|
|
188
188
|
interface EmailIconProps {
|
|
189
189
|
size?: IconSize$4;
|
|
190
190
|
className?: string;
|
|
@@ -197,7 +197,7 @@ declare const EmailIcon: React.FC<EmailIconProps>;
|
|
|
197
197
|
|
|
198
198
|
interface ErrorIconProps {
|
|
199
199
|
className?: string;
|
|
200
|
-
size?:
|
|
200
|
+
size?: "sm" | "md" | "lg";
|
|
201
201
|
}
|
|
202
202
|
/**
|
|
203
203
|
* ErrorIcon Component
|
|
@@ -214,7 +214,7 @@ declare const ErrorIcon: React.FC<ErrorIconProps>;
|
|
|
214
214
|
|
|
215
215
|
interface EyeIconProps {
|
|
216
216
|
className?: string;
|
|
217
|
-
size?:
|
|
217
|
+
size?: "sm" | "md" | "lg";
|
|
218
218
|
color?: string;
|
|
219
219
|
}
|
|
220
220
|
declare const EyeIcon: React.FC<EyeIconProps>;
|
|
@@ -222,7 +222,7 @@ declare const EyeIcon: React.FC<EyeIconProps>;
|
|
|
222
222
|
|
|
223
223
|
interface FilterIconProps {
|
|
224
224
|
className?: string;
|
|
225
|
-
size?:
|
|
225
|
+
size?: "sm" | "md" | "lg";
|
|
226
226
|
}
|
|
227
227
|
/**
|
|
228
228
|
* FilterIcon Component
|
|
@@ -239,7 +239,7 @@ declare const FilterIcon: React.FC<FilterIconProps>;
|
|
|
239
239
|
|
|
240
240
|
interface HomeIconProps {
|
|
241
241
|
className?: string;
|
|
242
|
-
size?:
|
|
242
|
+
size?: "sm" | "md" | "lg";
|
|
243
243
|
color?: string;
|
|
244
244
|
}
|
|
245
245
|
declare const HomeIcon: React.FC<HomeIconProps>;
|
|
@@ -247,7 +247,7 @@ declare const HomeIcon: React.FC<HomeIconProps>;
|
|
|
247
247
|
|
|
248
248
|
interface InfoIconProps {
|
|
249
249
|
className?: string;
|
|
250
|
-
size?:
|
|
250
|
+
size?: "sm" | "md" | "lg";
|
|
251
251
|
}
|
|
252
252
|
/**
|
|
253
253
|
* InfoIcon Component
|
|
@@ -264,13 +264,13 @@ declare const InfoIcon: React.FC<InfoIconProps>;
|
|
|
264
264
|
|
|
265
265
|
interface LinkIconProps {
|
|
266
266
|
className?: string;
|
|
267
|
-
size?:
|
|
267
|
+
size?: "sm" | "md" | "lg";
|
|
268
268
|
color?: string;
|
|
269
269
|
}
|
|
270
270
|
declare const LinkIcon: React.FC<LinkIconProps>;
|
|
271
271
|
//# sourceMappingURL=LinkIcon.d.ts.map
|
|
272
272
|
|
|
273
|
-
type IconSize$3 =
|
|
273
|
+
type IconSize$3 = "sm" | "md" | "lg" | "xl";
|
|
274
274
|
interface LocationIconProps {
|
|
275
275
|
size?: IconSize$3;
|
|
276
276
|
className?: string;
|
|
@@ -283,7 +283,7 @@ declare const LocationIcon: React.FC<LocationIconProps>;
|
|
|
283
283
|
|
|
284
284
|
interface ManualIdentifierIconProps {
|
|
285
285
|
className?: string;
|
|
286
|
-
size?:
|
|
286
|
+
size?: "sm" | "md" | "lg";
|
|
287
287
|
}
|
|
288
288
|
/**
|
|
289
289
|
* ManualIdentifierIcon Component
|
|
@@ -298,7 +298,7 @@ interface ManualIdentifierIconProps {
|
|
|
298
298
|
declare const ManualIdentifierIcon: React.FC<ManualIdentifierIconProps>;
|
|
299
299
|
//# sourceMappingURL=ManualIdentifierIcon.d.ts.map
|
|
300
300
|
|
|
301
|
-
type IconSize$2 =
|
|
301
|
+
type IconSize$2 = "sm" | "md" | "lg" | "xl";
|
|
302
302
|
interface MapIconProps {
|
|
303
303
|
size?: IconSize$2;
|
|
304
304
|
className?: string;
|
|
@@ -311,12 +311,12 @@ declare const MapIcon: React.FC<MapIconProps>;
|
|
|
311
311
|
|
|
312
312
|
interface MinusIconProps {
|
|
313
313
|
className?: string;
|
|
314
|
-
size?:
|
|
314
|
+
size?: "sm" | "md" | "lg";
|
|
315
315
|
color?: string;
|
|
316
316
|
}
|
|
317
317
|
declare function MinusIcon({ className, size, color, }: MinusIconProps): react_jsx_runtime.JSX.Element;
|
|
318
318
|
|
|
319
|
-
type IconSize$1 =
|
|
319
|
+
type IconSize$1 = "sm" | "md" | "lg" | "xl";
|
|
320
320
|
interface MoreIconProps {
|
|
321
321
|
size?: IconSize$1;
|
|
322
322
|
className?: string;
|
|
@@ -329,7 +329,7 @@ declare const MoreIcon: React.FC<MoreIconProps>;
|
|
|
329
329
|
|
|
330
330
|
interface NotificationIconProps {
|
|
331
331
|
className?: string;
|
|
332
|
-
size?:
|
|
332
|
+
size?: "sm" | "md" | "lg";
|
|
333
333
|
}
|
|
334
334
|
/**
|
|
335
335
|
* NotificationIcon Component
|
|
@@ -346,7 +346,7 @@ declare const NotificationIcon: React.FC<NotificationIconProps>;
|
|
|
346
346
|
|
|
347
347
|
interface PatientIconProps {
|
|
348
348
|
className?: string;
|
|
349
|
-
size?:
|
|
349
|
+
size?: "sm" | "md" | "lg";
|
|
350
350
|
color?: string;
|
|
351
351
|
}
|
|
352
352
|
declare const PatientIcon: React.FC<PatientIconProps>;
|
|
@@ -354,13 +354,13 @@ declare const PatientIcon: React.FC<PatientIconProps>;
|
|
|
354
354
|
|
|
355
355
|
interface PatientsIconProps {
|
|
356
356
|
className?: string;
|
|
357
|
-
size?:
|
|
357
|
+
size?: "sm" | "md" | "lg";
|
|
358
358
|
color?: string;
|
|
359
359
|
}
|
|
360
360
|
declare const PatientsIcon: React.FC<PatientsIconProps>;
|
|
361
361
|
//# sourceMappingURL=PatientsIcon.d.ts.map
|
|
362
362
|
|
|
363
|
-
type IconSize =
|
|
363
|
+
type IconSize = "sm" | "md" | "lg" | "xl";
|
|
364
364
|
interface PhoneIconProps {
|
|
365
365
|
size?: IconSize;
|
|
366
366
|
className?: string;
|
|
@@ -373,7 +373,7 @@ declare const PhoneIcon: React.FC<PhoneIconProps>;
|
|
|
373
373
|
|
|
374
374
|
interface PlusIconProps {
|
|
375
375
|
className?: string;
|
|
376
|
-
size?:
|
|
376
|
+
size?: "sm" | "md" | "lg";
|
|
377
377
|
}
|
|
378
378
|
/**
|
|
379
379
|
* PlusIcon Component
|
|
@@ -385,11 +385,11 @@ interface PlusIconProps {
|
|
|
385
385
|
* <PlusIcon size="md" />
|
|
386
386
|
* <PlusIcon className="w-6 h-6 text-green-600" />
|
|
387
387
|
*/
|
|
388
|
-
declare function PlusIcon({ className, size }: PlusIconProps): react_jsx_runtime.JSX.Element;
|
|
388
|
+
declare function PlusIcon({ className, size, }: PlusIconProps): react_jsx_runtime.JSX.Element;
|
|
389
389
|
|
|
390
390
|
interface PrescriptionIconProps {
|
|
391
391
|
className?: string;
|
|
392
|
-
size?:
|
|
392
|
+
size?: "sm" | "md" | "lg";
|
|
393
393
|
color?: string;
|
|
394
394
|
}
|
|
395
395
|
declare const PrescriptionIcon: React.FC<PrescriptionIconProps>;
|
|
@@ -397,7 +397,7 @@ declare const PrescriptionIcon: React.FC<PrescriptionIconProps>;
|
|
|
397
397
|
|
|
398
398
|
interface PrintIconProps {
|
|
399
399
|
className?: string;
|
|
400
|
-
size?:
|
|
400
|
+
size?: "sm" | "md" | "lg";
|
|
401
401
|
color?: string;
|
|
402
402
|
}
|
|
403
403
|
/**
|
|
@@ -415,7 +415,7 @@ declare const PrintIcon: React.FC<PrintIconProps>;
|
|
|
415
415
|
|
|
416
416
|
interface RefreshIconProps {
|
|
417
417
|
className?: string;
|
|
418
|
-
size?:
|
|
418
|
+
size?: "sm" | "md" | "lg";
|
|
419
419
|
color?: string;
|
|
420
420
|
}
|
|
421
421
|
/**
|
|
@@ -433,7 +433,7 @@ declare const RefreshIcon: React.FC<RefreshIconProps>;
|
|
|
433
433
|
|
|
434
434
|
interface SearchIconProps {
|
|
435
435
|
className?: string;
|
|
436
|
-
size?:
|
|
436
|
+
size?: "sm" | "md" | "lg";
|
|
437
437
|
}
|
|
438
438
|
/**
|
|
439
439
|
* SearchIcon Component
|
|
@@ -450,7 +450,7 @@ declare const SearchIcon: React.FC<SearchIconProps>;
|
|
|
450
450
|
|
|
451
451
|
interface SettingsIconProps {
|
|
452
452
|
className?: string;
|
|
453
|
-
size?:
|
|
453
|
+
size?: "sm" | "md" | "lg";
|
|
454
454
|
color?: string;
|
|
455
455
|
}
|
|
456
456
|
declare const SettingsIcon: React.FC<SettingsIconProps>;
|
|
@@ -458,7 +458,7 @@ declare const SettingsIcon: React.FC<SettingsIconProps>;
|
|
|
458
458
|
|
|
459
459
|
interface SortIconProps {
|
|
460
460
|
className?: string;
|
|
461
|
-
size?:
|
|
461
|
+
size?: "sm" | "md" | "lg";
|
|
462
462
|
}
|
|
463
463
|
/**
|
|
464
464
|
* SortIcon Component
|
|
@@ -475,7 +475,7 @@ declare const SortIcon: React.FC<SortIconProps>;
|
|
|
475
475
|
|
|
476
476
|
interface SpinnerIconProps {
|
|
477
477
|
className?: string;
|
|
478
|
-
size?:
|
|
478
|
+
size?: "sm" | "md" | "lg";
|
|
479
479
|
color?: string;
|
|
480
480
|
}
|
|
481
481
|
declare const SpinnerIcon: React.FC<SpinnerIconProps>;
|
|
@@ -483,7 +483,7 @@ declare const SpinnerIcon: React.FC<SpinnerIconProps>;
|
|
|
483
483
|
|
|
484
484
|
interface SystemIdentifierIconProps {
|
|
485
485
|
className?: string;
|
|
486
|
-
size?:
|
|
486
|
+
size?: "sm" | "md" | "lg";
|
|
487
487
|
}
|
|
488
488
|
/**
|
|
489
489
|
* SystemIdentifierIcon Component
|
|
@@ -500,7 +500,7 @@ declare const SystemIdentifierIcon: React.FC<SystemIdentifierIconProps>;
|
|
|
500
500
|
|
|
501
501
|
interface TrashIconProps {
|
|
502
502
|
className?: string;
|
|
503
|
-
size?:
|
|
503
|
+
size?: "sm" | "md" | "lg";
|
|
504
504
|
color?: string;
|
|
505
505
|
}
|
|
506
506
|
/**
|
|
@@ -554,7 +554,7 @@ declare const UploadIcon: React.FC<UploadIconProps>;
|
|
|
554
554
|
|
|
555
555
|
interface UserManagementIconProps {
|
|
556
556
|
className?: string;
|
|
557
|
-
size?:
|
|
557
|
+
size?: "sm" | "md" | "lg";
|
|
558
558
|
color?: string;
|
|
559
559
|
}
|
|
560
560
|
declare const UserManagementIcon: React.FC<UserManagementIconProps>;
|
|
@@ -562,7 +562,7 @@ declare const UserManagementIcon: React.FC<UserManagementIconProps>;
|
|
|
562
562
|
|
|
563
563
|
interface UserSelectIconProps {
|
|
564
564
|
className?: string;
|
|
565
|
-
size?:
|
|
565
|
+
size?: "sm" | "md" | "lg";
|
|
566
566
|
color?: string;
|
|
567
567
|
}
|
|
568
568
|
declare const UserSelectIcon: React.FC<UserSelectIconProps>;
|
|
@@ -570,7 +570,7 @@ declare const UserSelectIcon: React.FC<UserSelectIconProps>;
|
|
|
570
570
|
|
|
571
571
|
interface UsersIconProps {
|
|
572
572
|
className?: string;
|
|
573
|
-
size?:
|
|
573
|
+
size?: "sm" | "md" | "lg";
|
|
574
574
|
}
|
|
575
575
|
/**
|
|
576
576
|
* UsersIcon Component
|
|
@@ -587,7 +587,7 @@ declare const UsersIcon: React.FC<UsersIconProps>;
|
|
|
587
587
|
|
|
588
588
|
interface ZoomInIconProps {
|
|
589
589
|
className?: string;
|
|
590
|
-
size?:
|
|
590
|
+
size?: "sm" | "md" | "lg";
|
|
591
591
|
color?: string;
|
|
592
592
|
}
|
|
593
593
|
declare const ZoomInIcon: React.FC<ZoomInIconProps>;
|
|
@@ -595,7 +595,7 @@ declare const ZoomInIcon: React.FC<ZoomInIconProps>;
|
|
|
595
595
|
|
|
596
596
|
interface ZoomOutIconProps {
|
|
597
597
|
className?: string;
|
|
598
|
-
size?:
|
|
598
|
+
size?: "sm" | "md" | "lg";
|
|
599
599
|
color?: string;
|
|
600
600
|
}
|
|
601
601
|
declare const ZoomOutIcon: React.FC<ZoomOutIconProps>;
|
package/dist/index.esm.js
CHANGED
|
@@ -7,5 +7,5 @@ import e from"react";var r,s={exports:{}},o={};var t,l,n={};
|
|
|
7
7
|
*
|
|
8
8
|
* This source code is licensed under the MIT license found in the
|
|
9
9
|
* LICENSE file in the root directory of this source tree.
|
|
10
|
-
*/function a(){return t||(t=1,"production"!==process.env.NODE_ENV&&function(){function r(e){if(null==e)return null;if("function"==typeof e)return e.$$typeof===$?null:e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case x:return"Fragment";case v:return"Profiler";case p:return"StrictMode";case k:return"Suspense";case y:return"SuspenseList";case C:return"Activity"}if("object"==typeof e)switch("number"==typeof e.tag&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),e.$$typeof){case u:return"Portal";case g:return e.displayName||"Context";case f:return(e._context.displayName||"Context")+".Consumer";case j:var s=e.render;return(e=e.displayName)||(e=""!==(e=s.displayName||s.name||"")?"ForwardRef("+e+")":"ForwardRef"),e;case L:return null!==(s=e.displayName||null)?s:r(e.type)||"Memo";case N:s=e._payload,e=e._init;try{return r(e(s))}catch(e){}}return null}function s(e){return""+e}function o(e){try{s(e);var r=!1}catch(e){r=!0}if(r){var o=(r=console).error,t="function"==typeof Symbol&&Symbol.toStringTag&&e[Symbol.toStringTag]||e.constructor.name||"Object";return o.call(r,"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",t),s(e)}}function t(e){if(e===x)return"<>";if("object"==typeof e&&null!==e&&e.$$typeof===N)return"<...>";try{var s=r(e);return s?"<"+s+">":"<...>"}catch(e){return"<...>"}}function l(){return Error("react-stack-top-frame")}function a(){var e=r(this.type);return W[e]||(W[e]=!0,console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.")),void 0!==(e=this.props.ref)?e:null}function i(e,s,t,l,n,i){var h,m=s.children;if(void 0!==m)if(l)if(M(m)){for(l=0;l<m.length;l++)c(m[l]);Object.freeze&&Object.freeze(m)}else console.error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else c(m);if(z.call(s,"key")){m=r(e);var u=Object.keys(s).filter(function(e){return"key"!==e});l=0<u.length?"{key: someKey, "+u.join(": ..., ")+": ...}":"{key: someKey}",V[m+l]||(u=0<u.length?"{"+u.join(": ..., ")+": ...}":"{}",console.error('A props object containing a "key" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />',l,m,u,m),V[m+l]=!0)}if(m=null,void 0!==t&&(o(t),m=""+t),function(e){if(z.call(e,"key")){var r=Object.getOwnPropertyDescriptor(e,"key").get;if(r&&r.isReactWarning)return!1}return void 0!==e.key}(s)&&(o(s.key),m=""+s.key),"key"in s)for(var x in t={},s)"key"!==x&&(t[x]=s[x]);else t=s;return m&&function(e,r){function s(){d||(d=!0,console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",r))}s.isReactWarning=!0,Object.defineProperty(e,"key",{get:s,configurable:!0})}(t,"function"==typeof e?e.displayName||e.name||"Unknown":e),function(e,r,s,o,t,l){var n=s.ref;return e={$$typeof:w,type:e,key:r,props:s,_owner:o},null!==(void 0!==n?n:null)?Object.defineProperty(e,"ref",{enumerable:!1,get:a}):Object.defineProperty(e,"ref",{enumerable:!1,value:null}),e._store={},Object.defineProperty(e._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:0}),Object.defineProperty(e,"_debugInfo",{configurable:!1,enumerable:!1,writable:!0,value:null}),Object.defineProperty(e,"_debugStack",{configurable:!1,enumerable:!1,writable:!0,value:t}),Object.defineProperty(e,"_debugTask",{configurable:!1,enumerable:!1,writable:!0,value:l}),Object.freeze&&(Object.freeze(e.props),Object.freeze(e)),e}(e,m,t,null===(h=b.A)?null:h.getOwner(),n,i)}function c(e){h(e)?e._store&&(e._store.validated=1):"object"==typeof e&&null!==e&&e.$$typeof===N&&("fulfilled"===e._payload.status?h(e._payload.value)&&e._payload.value._store&&(e._payload.value._store.validated=1):e._store&&(e._store.validated=1))}function h(e){return"object"==typeof e&&null!==e&&e.$$typeof===w}var d,m=e,w=Symbol.for("react.transitional.element"),u=Symbol.for("react.portal"),x=Symbol.for("react.fragment"),p=Symbol.for("react.strict_mode"),v=Symbol.for("react.profiler"),f=Symbol.for("react.consumer"),g=Symbol.for("react.context"),j=Symbol.for("react.forward_ref"),k=Symbol.for("react.suspense"),y=Symbol.for("react.suspense_list"),L=Symbol.for("react.memo"),N=Symbol.for("react.lazy"),C=Symbol.for("react.activity"),$=Symbol.for("react.client.reference"),b=m.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,z=Object.prototype.hasOwnProperty,M=Array.isArray,B=console.createTask?console.createTask:function(){return null},W={},_=(m={react_stack_bottom_frame:function(e){return e()}}).react_stack_bottom_frame.bind(m,l)(),H=B(t(l)),V={};n.Fragment=x,n.jsx=function(e,r,s){var o=1e4>b.recentlyCreatedOwnerStacks++;return i(e,r,s,!1,o?Error("react-stack-top-frame"):_,o?B(t(e)):H)},n.jsxs=function(e,r,s){var o=1e4>b.recentlyCreatedOwnerStacks++;return i(e,r,s,!0,o?Error("react-stack-top-frame"):_,o?B(t(e)):H)}}()),n}var i=(l||(l=1,"production"===process.env.NODE_ENV?s.exports=function(){if(r)return o;r=1;var e=Symbol.for("react.transitional.element"),s=Symbol.for("react.fragment");function t(r,s,o){var t=null;if(void 0!==o&&(t=""+o),void 0!==s.key&&(t=""+s.key),"key"in s)for(var l in o={},s)"key"!==l&&(o[l]=s[l]);else o=s;return s=o.ref,{$$typeof:e,type:r,key:t,ref:void 0!==s?s:null,props:o}}return o.Fragment=s,o.jsx=t,o.jsxs=t,o}():s.exports=a()),s.exports);const c=({className:e="",size:r="md",color:s="currentColor"})=>{const o=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:s,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:o,"aria-label":"View Details",children:i.jsx("path",{d:"M13 9l3 3m0 0l-3 3m3-3H8m13 0a9 9 0 11-18 0 9 9 0 0118 0z"})})},h=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor",className:s,"aria-label":"Branding",children:i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M9.53 16.122a3 3 0 00-5.78 1.128 2.25 2.25 0 01-2.4 2.245 4.5 4.5 0 008.4-2.245c0-.399-.078-.78-.22-1.128zm0 0a15.998 15.998 0 003.388-1.62m-5.043-.025a15.994 15.994 0 011.622-3.395m3.42 3.42a15.995 15.995 0 004.764-4.648l3.876-5.814a1.151 1.151 0 00-1.597-1.597L14.146 6.32a15.996 15.996 0 00-4.649 4.763m3.42 3.42a6.776 6.776 0 00-3.42-3.42"})})},d=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",className:s,"aria-label":"Calendar",children:i.jsx("path",{fillRule:"evenodd",d:"M6 2a1 1 0 00-1 1v1H4a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2h-1V3a1 1 0 10-2 0v1H7V3a1 1 0 00-1-1zm0 5a1 1 0 000 2h8a1 1 0 100-2H6z",clipRule:"evenodd"})})};function m({className:e="",size:r="md"}){const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",className:s,"aria-label":"Check",children:i.jsx("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})})}const w=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`.trim();return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:3,stroke:"currentColor",className:s,children:i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4.5 12.75l6 6 9-13.5"})})},u=({className:e="",size:r="md",color:s="currentColor",direction:o="down"})=>i.jsx("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${{up:"rotate-180",down:"",left:"rotate-90",right:"-rotate-90"}[o]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:i.jsx("path",{d:"M19 14l-7 7m0 0l-7-7m7 7V3"})}),x={sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6",xl:"w-8 h-8"},p=({size:e="md",className:r=""})=>i.jsx("svg",{className:`${x[e]} ${r}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4"})}),v={sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6",xl:"w-8 h-8"},f=({size:e="md",className:r=""})=>i.jsx("svg",{className:`${v[e]} ${r}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"})});function g({className:e="",size:r="md",color:s="currentColor"}){return i.jsx("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:i.jsx("path",{d:"M6 18L18 6M6 6l12 12"})})}const j=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:s,"aria-label":"Document",children:i.jsx("path",{d:"M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"})})},k=({className:e="",size:r="md",color:s="currentColor"})=>i.jsx("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:i.jsx("path",{d:"M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4"})}),y=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",className:s,"aria-hidden":"true",children:i.jsx("path",{d:"M10 9a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm0 6a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm8-6a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm0 6a2 2 0 1 1-4 0 2 2 0 0 1 4 0z"})})},L=({className:e="",size:r="md",color:s="currentColor"})=>{const o=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:s,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:o,"aria-label":"Edit",children:i.jsx("path",{d:"M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z"})})},N={sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6",xl:"w-8 h-8"},C=({size:e="md",className:r=""})=>i.jsx("svg",{className:`${N[e]} ${r}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"})}),$=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{className:s,viewBox:"0 0 20 20",fill:"currentColor","aria-label":"Error",children:i.jsx("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z",clipRule:"evenodd"})})},b=({className:e="",size:r="md",color:s="currentColor"})=>i.jsxs("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:[i.jsx("path",{d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"}),i.jsx("circle",{cx:"12",cy:"12",r:"3"})]}),z=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:s,"aria-hidden":"true",children:i.jsx("polygon",{points:"22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"})})},M=({className:e="",size:r="md",color:s="currentColor"})=>i.jsx("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:i.jsx("path",{d:"M3 12l2-4m0 0l7-4 7 4M5 8v10a1 1 0 001 1h12a1 1 0 001-1V8m-9 4v4m4-4v4"})}),B=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:s,"aria-label":"Info",children:i.jsx("path",{d:"M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"})})},W=({className:e="",size:r="md",color:s="currentColor"})=>i.jsx("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:s,viewBox:"0 0 20 20","aria-label":"Link",children:i.jsx("path",{fillRule:"evenodd",d:"M12.586 4.586a2 2 0 112.828 2.828l-3 3a2 2 0 01-2.828 0 1 1 0 00-1.414 1.414 4 4 0 005.656 0l3-3a4 4 0 00-5.656-5.656l-1.5 1.5a1 1 0 101.414 1.414l1.5-1.5zm-5 5a2 2 0 012.828 0 1 1 0 101.414-1.414 4 4 0 00-5.656 0l-3 3a4 4 0 105.656 5.656l1.5-1.5a1 1 0 10-1.414-1.414l-1.5 1.5a2 2 0 11-2.828-2.828l3-3z",clipRule:"evenodd"})}),_={sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6",xl:"w-8 h-8"},H=({size:e="md",className:r=""})=>i.jsxs("svg",{className:`${_[e]} ${r}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:[i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"}),i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M15 11a3 3 0 11-6 0 3 3 0 016 0z"})]}),V=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{className:s,fill:"currentColor",viewBox:"0 0 21 21",xmlns:"http://www.w3.org/2000/svg","aria-label":"Manual Identifier",children:i.jsx("path",{d:"M327.2,654 L325.1,654 L325.1,646 L327.2,646 L327.2,644 L323,644 L323,656 L327.2,656 L327.2,654 Z M333.5,644 L333.5,646 L341.9,646 L341.9,654 L333.5,654 L333.5,656 L344,656 L344,644 L333.5,644 Z M331.4,658 L333.5,658 L333.5,660 L327.2,660 L327.2,658 L329.3,658 L329.3,642 L327.2,642 L327.2,640 L333.5,640 L333.5,642 L331.4,642 L331.4,658 Z",transform:"translate(-323, -640)"})})},S={sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6",xl:"w-8 h-8"},O=({size:e="md",className:r=""})=>i.jsx("svg",{className:`${S[e]} ${r}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M9 20l-5.447-2.724A1 1 0 013 16.382V5.618a1 1 0 011.447-.894L9 7m0 13l6-3m-6 3V7m6 10l4.553 2.276A1 1 0 0021 18.382V7.618a1 1 0 00-.553-.894L15 4m0 13V4m0 0L9 7"})});function R({className:e="",size:r="md",color:s="currentColor"}){return i.jsx("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:i.jsx("path",{d:"M5 12h14"})})}const A={sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6",xl:"w-8 h-8"},E=({size:e="md",className:r=""})=>i.jsx("svg",{className:`${A[e]} ${r}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M12 5v.01M12 12v.01M12 19v.01M12 6a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2z"})}),P=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor",className:s,"aria-label":"Notifications",children:i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M14.857 17.082a23.848 23.848 0 005.454-1.31A8.967 8.967 0 0118 9.75v-.7V9A6 6 0 006 9v.75a8.967 8.967 0 01-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 01-5.714 0m5.714 0a3 3 0 11-5.714 0"})})},T=({className:e="",size:r="md",color:s="currentColor"})=>i.jsxs("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:[i.jsx("path",{d:"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}),i.jsx("circle",{cx:"12",cy:"7",r:"4"})]}),Z=({className:e="",size:r="md",color:s="currentColor"})=>i.jsxs("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:[i.jsx("path",{d:"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),i.jsx("circle",{cx:"9",cy:"7",r:"4"}),i.jsx("path",{d:"M23 21v-2a4 4 0 0 0-3-3.87"}),i.jsx("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"})]}),D={sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6",xl:"w-8 h-8"},I=({size:e="md",className:r=""})=>i.jsx("svg",{className:`${D[e]} ${r}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"})});function U({className:e="",size:r="md"}){const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:s,"aria-label":"Plus",children:i.jsx("path",{d:"M12 4v16m8-8H4"})})}const F=({className:e="",size:r="md",color:s="currentColor"})=>i.jsxs("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:[i.jsx("path",{d:"M9 12h6m-6 4h6m2-13H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2z"}),i.jsx("path",{d:"M9 3v2m6-2v2"})]}),J=({className:e="",size:r="md",color:s="currentColor"})=>{const o=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:s,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:o,"aria-label":"Print",children:[i.jsx("polyline",{points:"6 9 6 2 18 2 18 9"}),i.jsx("path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}),i.jsx("rect",{x:"6",y:"14",width:"12",height:"8"})]})},K=({className:e="",size:r="md",color:s="currentColor"})=>{const o=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:s,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:o,"aria-label":"Refresh",children:i.jsx("path",{d:"M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"})})},X=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:s,"aria-label":"Search",children:i.jsx("path",{d:"M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"})})},Y=({className:e="",size:r="md",color:s="currentColor"})=>i.jsx("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:s,viewBox:"0 0 24 24",children:i.jsxs("g",{children:[i.jsx("circle",{cx:"12",cy:"12",r:"3",fill:s}),i.jsx("circle",{cx:"12",cy:"12",r:"7",fill:"none",stroke:s,strokeWidth:"1.5"}),i.jsx("rect",{x:"11",y:"2",width:"2",height:"2.5",fill:s}),i.jsx("rect",{x:"15.2",y:"3.5",width:"2.2",height:"2",fill:s,transform:"rotate(30 16.3 4.5)"}),i.jsx("rect",{x:"18.5",y:"7.2",width:"2",height:"2.2",fill:s,transform:"rotate(60 19.5 8.3)"}),i.jsx("rect",{x:"20.5",y:"11",width:"2.5",height:"2",fill:s}),i.jsx("rect",{x:"18.5",y:"14.8",width:"2",height:"2.2",fill:s,transform:"rotate(120 19.5 15.9)"}),i.jsx("rect",{x:"15.2",y:"18.5",width:"2.2",height:"2",fill:s,transform:"rotate(150 16.3 19.5)"}),i.jsx("rect",{x:"11",y:"20.5",width:"2",height:"2.5",fill:s}),i.jsx("rect",{x:"6.6",y:"18.5",width:"2.2",height:"2",fill:s,transform:"rotate(210 7.7 19.5)"}),i.jsx("rect",{x:"3.5",y:"14.8",width:"2",height:"2.2",fill:s,transform:"rotate(240 4.5 15.9)"}),i.jsx("rect",{x:"1",y:"11",width:"2.5",height:"2",fill:s}),i.jsx("rect",{x:"3.5",y:"7.2",width:"2",height:"2.2",fill:s,transform:"rotate(300 4.5 8.3)"}),i.jsx("rect",{x:"6.6",y:"3.5",width:"2.2",height:"2",fill:s,transform:"rotate(330 7.7 4.5)"})]})}),q=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:s,"aria-hidden":"true",children:[i.jsx("path",{d:"M3 6h18"}),i.jsx("path",{d:"M7 12h10"}),i.jsx("path",{d:"M10 18h4"})]})},G=({className:e="",size:r="md",color:s="currentColor"})=>i.jsxs("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} animate-spin ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",children:[i.jsx("circle",{className:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"4"}),i.jsx("path",{className:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})]}),Q=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",className:s,"aria-label":"System Identifier",children:[i.jsx("rect",{x:"3",y:"3",width:"5",height:"5",rx:"1",stroke:"currentColor",strokeWidth:"2"}),i.jsx("rect",{x:"3",y:"16",width:"5",height:"5",rx:"1",stroke:"currentColor",strokeWidth:"2"}),i.jsx("rect",{x:"16",y:"3",width:"5",height:"5",rx:"1",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),i.jsx("rect",{x:"6",y:"10",width:"2",height:"2",rx:"0.5",fill:"currentColor"}),i.jsx("path",{d:"M12.5 2H13.5C13.7761 2 14 2.22386 14 2.5V5.5C14 5.77614 13.7761 6 13.5 6H12.5C12.2239 6 12 6.22386 12 6.5V7.5C12 7.77614 11.7761 8 11.5 8H10.5C10.2239 8 10 7.77614 10 7.5V4.5C10 4.22386 10.2239 4 10.5 4H11.5C11.7761 4 12 3.77614 12 3.5V2.5C12 2.22386 12.2239 2 12.5 2Z",fill:"currentColor"}),i.jsx("rect",{x:"8",y:"12",width:"4",height:"2",rx:"0.5",fill:"currentColor"}),i.jsx("rect",{x:"18",y:"10",width:"4",height:"2",rx:"0.5",fill:"currentColor"}),i.jsx("rect",{x:"12",y:"18",width:"4",height:"2",rx:"0.5",fill:"currentColor"}),i.jsx("rect",{x:"10",y:"16",width:"2",height:"2",rx:"0.5",fill:"currentColor"}),i.jsx("path",{d:"M12 11.5V10.5C12 10.2239 12.2239 10 12.5 10H15.5C15.7761 10 16 10.2239 16 10.5V14H17.5C17.7761 14 18 14.2239 18 14.5V15.5C18 15.7761 17.7761 16 17.5 16H16H14.5C14.2239 16 14 15.7761 14 15.5V12.5C14 12.2239 13.7761 12 13.5 12H12.5C12.2239 12 12 11.7761 12 11.5Z",fill:"currentColor"}),i.jsx("path",{d:"M16.5 20L17.5 20C17.7761 20 18 19.7761 18 19.5L18 18.5C18 18.2239 18.2239 18 18.5 18L19.5 18C19.7761 18 20 17.7761 20 17.5L20 14.5C20 14.2239 20.2239 14 20.5 14L21.5 14C21.7761 14 22 14.2239 22 14.5L22 16L22 18L22 19.5C22 19.7761 21.7761 20 21.5 20L20.5 20C20.2239 20 20 20.2239 20 20.5L20 21.5C20 21.7761 19.7761 22 19.5 22L16.5 22C16.2239 22 16 21.7761 16 21.5L16 20.5C16 20.2239 16.2239 20 16.5 20Z",fill:"currentColor"}),i.jsx("path",{d:"M2 13.5V10.5C2 10.2239 2.22386 10 2.5 10H3.5C3.77614 10 4 10.2239 4 10.5V11.5C4 11.7761 4.22386 12 4.5 12H5.5C5.77614 12 6 12.2239 6 12.5V13.5C6 13.7761 5.77614 14 5.5 14H2.5C2.22386 14 2 13.7761 2 13.5Z",fill:"currentColor"}),i.jsx("path",{d:"M13.5 22H10.5C10.2239 22 10 21.7761 10 21.5V20.5C10 20.2239 10.2239 20 10.5 20H11.5C11.7761 20 12 19.7761 12 19.5V18.5C12 18.2239 12.2239 18 12.5 18H15.5C15.7761 18 16 18.2239 16 18.5V19.5C16 19.7761 15.7761 20 15.5 20H14.5C14.2239 20 14 20.2239 14 20.5V21.5C14 21.7761 13.7761 22 13.5 22Z",fill:"currentColor"})]})},ee=({className:e="",size:r="md",color:s="currentColor"})=>{const o=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:s,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:o,"aria-label":"Delete",children:i.jsx("path",{d:"M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"})})},re=({size:e="h-12 w-12",className:r="text-gray-400",ariaLabel:s="Upload"})=>i.jsx("svg",{className:`${e} ${r}`,stroke:"currentColor",fill:"none",viewBox:"0 0 48 48","aria-hidden":"true","aria-label":s,children:i.jsx("path",{d:"M28 8H12a4 4 0 00-4 4v20m32-12v8m0 0v8a4 4 0 01-4 4H12a4 4 0 01-4-4v-4m32-4l-3.172-3.172a4 4 0 00-5.656 0L28 28M8 32l9.172-9.172a4 4 0 015.656 0L28 28m0 0l4 4m4-24h8m-4-4v8m-12 4h.02",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"})}),se=({className:e="",size:r="md",color:s="currentColor"})=>i.jsx("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",children:i.jsx("path",{stroke:s,strokeLinecap:"square",strokeLinejoin:"round",strokeWidth:"2",d:"M10 19H5a1 1 0 0 1-1-1v-1a3 3 0 0 1 3-3h2m10 1a3 3 0 0 1-3 3m3-3a3 3 0 0 0-3-3m3 3h1m-4 3a3 3 0 0 1-3-3m3 3v1m-3-4a3 3 0 0 1 3-3m-3 3h-1m4-3v-1m-2.121 1.879-.707-.707m5.656 5.656-.707-.707m-4.242 0-.707.707m5.656-5.656-.707.707M12 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"})}),oe=({className:e="",size:r="md",color:s="currentColor"})=>i.jsxs("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:[i.jsx("path",{d:"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}),i.jsx("circle",{cx:"12",cy:"7",r:"4"})]}),te=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",className:s,"aria-label":"Users",children:[i.jsx("circle",{cx:"6",cy:"7",r:"2.5"}),i.jsx("path",{d:"M4 14c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2c0-1.1-.9-2-2-2H4z"}),i.jsx("circle",{cx:"12",cy:"6",r:"2.5"}),i.jsx("path",{d:"M10 13c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-3c0-1.1-.9-2-2-2h-4z"}),i.jsx("circle",{cx:"18",cy:"7",r:"2.5"}),i.jsx("path",{d:"M16 14c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2c0-1.1-.9-2-2-2h-4z"})]})},le=({className:e="",size:r="md",color:s="currentColor"})=>i.jsxs("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round","aria-label":"Zoom In",children:[i.jsx("circle",{cx:"11",cy:"11",r:"8"}),i.jsx("path",{d:"M21 21l-4.35-4.35"}),i.jsx("line",{x1:"11",y1:"8",x2:"11",y2:"14"}),i.jsx("line",{x1:"8",y1:"11",x2:"14",y2:"11"})]}),ne=({className:e="",size:r="md",color:s="currentColor"})=>i.jsxs("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round","aria-label":"Zoom Out",children:[i.jsx("circle",{cx:"11",cy:"11",r:"8"}),i.jsx("path",{d:"M21 21l-4.35-4.35"}),i.jsx("line",{x1:"8",y1:"11",x2:"14",y2:"11"})]});export{c as ArrowDetailsIcon,h as BrandingIcon,d as CalendarIcon,m as CheckIcon,w as CheckmarkIcon,u as ChevronIcon,p as CityIcon,f as ClockIcon,g as CloseIcon,j as DocumentIcon,k as DownloadIcon,y as DragHandleIcon,L as EditIcon,C as EmailIcon,$ as ErrorIcon,b as EyeIcon,z as FilterIcon,M as HomeIcon,B as InfoIcon,W as LinkIcon,H as LocationIcon,V as ManualIdentifierIcon,O as MapIcon,R as MinusIcon,E as MoreIcon,P as NotificationIcon,T as PatientIcon,Z as PatientsIcon,I as PhoneIcon,U as PlusIcon,F as PrescriptionIcon,J as PrintIcon,K as RefreshIcon,X as SearchIcon,Y as SettingsIcon,q as SortIcon,G as SpinnerIcon,Q as SystemIdentifierIcon,ee as TrashIcon,re as UploadIcon,se as UserManagementIcon,oe as UserSelectIcon,te as UsersIcon,le as ZoomInIcon,ne as ZoomOutIcon};
|
|
10
|
+
*/function a(){return t||(t=1,"production"!==process.env.NODE_ENV&&function(){function r(e){if(null==e)return null;if("function"==typeof e)return e.$$typeof===$?null:e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case x:return"Fragment";case v:return"Profiler";case p:return"StrictMode";case k:return"Suspense";case y:return"SuspenseList";case C:return"Activity"}if("object"==typeof e)switch("number"==typeof e.tag&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),e.$$typeof){case u:return"Portal";case g:return e.displayName||"Context";case f:return(e._context.displayName||"Context")+".Consumer";case j:var s=e.render;return(e=e.displayName)||(e=""!==(e=s.displayName||s.name||"")?"ForwardRef("+e+")":"ForwardRef"),e;case L:return null!==(s=e.displayName||null)?s:r(e.type)||"Memo";case N:s=e._payload,e=e._init;try{return r(e(s))}catch(e){}}return null}function s(e){return""+e}function o(e){try{s(e);var r=!1}catch(e){r=!0}if(r){var o=(r=console).error,t="function"==typeof Symbol&&Symbol.toStringTag&&e[Symbol.toStringTag]||e.constructor.name||"Object";return o.call(r,"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",t),s(e)}}function t(e){if(e===x)return"<>";if("object"==typeof e&&null!==e&&e.$$typeof===N)return"<...>";try{var s=r(e);return s?"<"+s+">":"<...>"}catch(e){return"<...>"}}function l(){return Error("react-stack-top-frame")}function a(){var e=r(this.type);return W[e]||(W[e]=!0,console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.")),void 0!==(e=this.props.ref)?e:null}function i(e,s,t,l,n,i){var h,m=s.children;if(void 0!==m)if(l)if(M(m)){for(l=0;l<m.length;l++)c(m[l]);Object.freeze&&Object.freeze(m)}else console.error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else c(m);if(z.call(s,"key")){m=r(e);var u=Object.keys(s).filter(function(e){return"key"!==e});l=0<u.length?"{key: someKey, "+u.join(": ..., ")+": ...}":"{key: someKey}",V[m+l]||(u=0<u.length?"{"+u.join(": ..., ")+": ...}":"{}",console.error('A props object containing a "key" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />',l,m,u,m),V[m+l]=!0)}if(m=null,void 0!==t&&(o(t),m=""+t),function(e){if(z.call(e,"key")){var r=Object.getOwnPropertyDescriptor(e,"key").get;if(r&&r.isReactWarning)return!1}return void 0!==e.key}(s)&&(o(s.key),m=""+s.key),"key"in s)for(var x in t={},s)"key"!==x&&(t[x]=s[x]);else t=s;return m&&function(e,r){function s(){d||(d=!0,console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",r))}s.isReactWarning=!0,Object.defineProperty(e,"key",{get:s,configurable:!0})}(t,"function"==typeof e?e.displayName||e.name||"Unknown":e),function(e,r,s,o,t,l){var n=s.ref;return e={$$typeof:w,type:e,key:r,props:s,_owner:o},null!==(void 0!==n?n:null)?Object.defineProperty(e,"ref",{enumerable:!1,get:a}):Object.defineProperty(e,"ref",{enumerable:!1,value:null}),e._store={},Object.defineProperty(e._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:0}),Object.defineProperty(e,"_debugInfo",{configurable:!1,enumerable:!1,writable:!0,value:null}),Object.defineProperty(e,"_debugStack",{configurable:!1,enumerable:!1,writable:!0,value:t}),Object.defineProperty(e,"_debugTask",{configurable:!1,enumerable:!1,writable:!0,value:l}),Object.freeze&&(Object.freeze(e.props),Object.freeze(e)),e}(e,m,t,null===(h=b.A)?null:h.getOwner(),n,i)}function c(e){h(e)?e._store&&(e._store.validated=1):"object"==typeof e&&null!==e&&e.$$typeof===N&&("fulfilled"===e._payload.status?h(e._payload.value)&&e._payload.value._store&&(e._payload.value._store.validated=1):e._store&&(e._store.validated=1))}function h(e){return"object"==typeof e&&null!==e&&e.$$typeof===w}var d,m=e,w=Symbol.for("react.transitional.element"),u=Symbol.for("react.portal"),x=Symbol.for("react.fragment"),p=Symbol.for("react.strict_mode"),v=Symbol.for("react.profiler"),f=Symbol.for("react.consumer"),g=Symbol.for("react.context"),j=Symbol.for("react.forward_ref"),k=Symbol.for("react.suspense"),y=Symbol.for("react.suspense_list"),L=Symbol.for("react.memo"),N=Symbol.for("react.lazy"),C=Symbol.for("react.activity"),$=Symbol.for("react.client.reference"),b=m.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,z=Object.prototype.hasOwnProperty,M=Array.isArray,B=console.createTask?console.createTask:function(){return null},W={},_=(m={react_stack_bottom_frame:function(e){return e()}}).react_stack_bottom_frame.bind(m,l)(),H=B(t(l)),V={};n.Fragment=x,n.jsx=function(e,r,s){var o=1e4>b.recentlyCreatedOwnerStacks++;return i(e,r,s,!1,o?Error("react-stack-top-frame"):_,o?B(t(e)):H)},n.jsxs=function(e,r,s){var o=1e4>b.recentlyCreatedOwnerStacks++;return i(e,r,s,!0,o?Error("react-stack-top-frame"):_,o?B(t(e)):H)}}()),n}var i=(l||(l=1,"production"===process.env.NODE_ENV?s.exports=function(){if(r)return o;r=1;var e=Symbol.for("react.transitional.element"),s=Symbol.for("react.fragment");function t(r,s,o){var t=null;if(void 0!==o&&(t=""+o),void 0!==s.key&&(t=""+s.key),"key"in s)for(var l in o={},s)"key"!==l&&(o[l]=s[l]);else o=s;return s=o.ref,{$$typeof:e,type:r,key:t,ref:void 0!==s?s:null,props:o}}return o.Fragment=s,o.jsx=t,o.jsxs=t,o}():s.exports=a()),s.exports);const c=({className:e="",size:r="md",color:s="currentColor"})=>{const o=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:s,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:o,"aria-label":"View Details",children:i.jsx("path",{d:"M13 9l3 3m0 0l-3 3m3-3H8m13 0a9 9 0 11-18 0 9 9 0 0118 0z"})})},h=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor",className:s,"aria-label":"Branding",children:i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M9.53 16.122a3 3 0 00-5.78 1.128 2.25 2.25 0 01-2.4 2.245 4.5 4.5 0 008.4-2.245c0-.399-.078-.78-.22-1.128zm0 0a15.998 15.998 0 003.388-1.62m-5.043-.025a15.994 15.994 0 011.622-3.395m3.42 3.42a15.995 15.995 0 004.764-4.648l3.876-5.814a1.151 1.151 0 00-1.597-1.597L14.146 6.32a15.996 15.996 0 00-4.649 4.763m3.42 3.42a6.776 6.776 0 00-3.42-3.42"})})},d=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",className:s,"aria-label":"Calendar",children:i.jsx("path",{fillRule:"evenodd",d:"M6 2a1 1 0 00-1 1v1H4a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2h-1V3a1 1 0 10-2 0v1H7V3a1 1 0 00-1-1zm0 5a1 1 0 000 2h8a1 1 0 100-2H6z",clipRule:"evenodd"})})};function m({className:e="",size:r="md"}){const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",className:s,"aria-label":"Check",children:i.jsx("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z",clipRule:"evenodd"})})}const w=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`.trim();return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:3,stroke:"currentColor",className:s,children:i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4.5 12.75l6 6 9-13.5"})})},u=({className:e="",size:r="md",color:s="currentColor",direction:o="down"})=>i.jsx("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${{up:"rotate-180",down:"",left:"rotate-90",right:"-rotate-90"}[o]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:i.jsx("path",{d:"M6 9l6 6 6-6"})}),x={sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6",xl:"w-8 h-8"},p=({size:e="md",className:r=""})=>i.jsx("svg",{className:`${x[e]} ${r}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4"})}),v={sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6",xl:"w-8 h-8"},f=({size:e="md",className:r=""})=>i.jsx("svg",{className:`${v[e]} ${r}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"})});function g({className:e="",size:r="md",color:s="currentColor"}){return i.jsx("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:i.jsx("path",{d:"M6 18L18 6M6 6l12 12"})})}const j=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:s,"aria-label":"Document",children:i.jsx("path",{d:"M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"})})},k=({className:e="",size:r="md",color:s="currentColor"})=>i.jsx("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:i.jsx("path",{d:"M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4"})}),y=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",className:s,"aria-hidden":"true",children:i.jsx("path",{d:"M10 9a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm0 6a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm8-6a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm0 6a2 2 0 1 1-4 0 2 2 0 0 1 4 0z"})})},L=({className:e="",size:r="md",color:s="currentColor"})=>{const o=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:s,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:o,"aria-label":"Edit",children:i.jsx("path",{d:"M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z"})})},N={sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6",xl:"w-8 h-8"},C=({size:e="md",className:r=""})=>i.jsx("svg",{className:`${N[e]} ${r}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"})}),$=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{className:s,viewBox:"0 0 20 20",fill:"currentColor","aria-label":"Error",children:i.jsx("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z",clipRule:"evenodd"})})},b=({className:e="",size:r="md",color:s="currentColor"})=>i.jsxs("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:[i.jsx("path",{d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"}),i.jsx("circle",{cx:"12",cy:"12",r:"3"})]}),z=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:s,"aria-hidden":"true",children:i.jsx("polygon",{points:"22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"})})},M=({className:e="",size:r="md",color:s="currentColor"})=>i.jsx("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:i.jsx("path",{d:"M3 12l2-4m0 0l7-4 7 4M5 8v10a1 1 0 001 1h12a1 1 0 001-1V8m-9 4v4m4-4v4"})}),B=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:s,"aria-label":"Info",children:i.jsx("path",{d:"M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"})})},W=({className:e="",size:r="md",color:s="currentColor"})=>i.jsx("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:s,viewBox:"0 0 20 20","aria-label":"Link",children:i.jsx("path",{fillRule:"evenodd",d:"M12.586 4.586a2 2 0 112.828 2.828l-3 3a2 2 0 01-2.828 0 1 1 0 00-1.414 1.414 4 4 0 005.656 0l3-3a4 4 0 00-5.656-5.656l-1.5 1.5a1 1 0 101.414 1.414l1.5-1.5zm-5 5a2 2 0 012.828 0 1 1 0 101.414-1.414 4 4 0 00-5.656 0l-3 3a4 4 0 105.656 5.656l1.5-1.5a1 1 0 10-1.414-1.414l-1.5 1.5a2 2 0 11-2.828-2.828l3-3z",clipRule:"evenodd"})}),_={sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6",xl:"w-8 h-8"},H=({size:e="md",className:r=""})=>i.jsxs("svg",{className:`${_[e]} ${r}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:[i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"}),i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M15 11a3 3 0 11-6 0 3 3 0 016 0z"})]}),V=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{className:s,fill:"currentColor",viewBox:"0 0 21 21",xmlns:"http://www.w3.org/2000/svg","aria-label":"Manual Identifier",children:i.jsx("path",{d:"M327.2,654 L325.1,654 L325.1,646 L327.2,646 L327.2,644 L323,644 L323,656 L327.2,656 L327.2,654 Z M333.5,644 L333.5,646 L341.9,646 L341.9,654 L333.5,654 L333.5,656 L344,656 L344,644 L333.5,644 Z M331.4,658 L333.5,658 L333.5,660 L327.2,660 L327.2,658 L329.3,658 L329.3,642 L327.2,642 L327.2,640 L333.5,640 L333.5,642 L331.4,642 L331.4,658 Z",transform:"translate(-323, -640)"})})},S={sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6",xl:"w-8 h-8"},O=({size:e="md",className:r=""})=>i.jsx("svg",{className:`${S[e]} ${r}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M9 20l-5.447-2.724A1 1 0 013 16.382V5.618a1 1 0 011.447-.894L9 7m0 13l6-3m-6 3V7m6 10l4.553 2.276A1 1 0 0021 18.382V7.618a1 1 0 00-.553-.894L15 4m0 13V4m0 0L9 7"})});function R({className:e="",size:r="md",color:s="currentColor"}){return i.jsx("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:i.jsx("path",{d:"M5 12h14"})})}const A={sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6",xl:"w-8 h-8"},E=({size:e="md",className:r=""})=>i.jsx("svg",{className:`${A[e]} ${r}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M12 5v.01M12 12v.01M12 19v.01M12 6a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2z"})}),P=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor",className:s,"aria-label":"Notifications",children:i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M14.857 17.082a23.848 23.848 0 005.454-1.31A8.967 8.967 0 0118 9.75v-.7V9A6 6 0 006 9v.75a8.967 8.967 0 01-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 01-5.714 0m5.714 0a3 3 0 11-5.714 0"})})},T=({className:e="",size:r="md",color:s="currentColor"})=>i.jsxs("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:[i.jsx("path",{d:"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}),i.jsx("circle",{cx:"12",cy:"7",r:"4"})]}),Z=({className:e="",size:r="md",color:s="currentColor"})=>i.jsxs("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:[i.jsx("path",{d:"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),i.jsx("circle",{cx:"9",cy:"7",r:"4"}),i.jsx("path",{d:"M23 21v-2a4 4 0 0 0-3-3.87"}),i.jsx("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"})]}),D={sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6",xl:"w-8 h-8"},I=({size:e="md",className:r=""})=>i.jsx("svg",{className:`${D[e]} ${r}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:i.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"})});function U({className:e="",size:r="md"}){const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:s,"aria-label":"Plus",children:i.jsx("path",{d:"M12 4v16m8-8H4"})})}const F=({className:e="",size:r="md",color:s="currentColor"})=>i.jsxs("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:[i.jsx("path",{d:"M9 12h6m-6 4h6m2-13H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2z"}),i.jsx("path",{d:"M9 3v2m6-2v2"})]}),J=({className:e="",size:r="md",color:s="currentColor"})=>{const o=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:s,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:o,"aria-label":"Print",children:[i.jsx("polyline",{points:"6 9 6 2 18 2 18 9"}),i.jsx("path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}),i.jsx("rect",{x:"6",y:"14",width:"12",height:"8"})]})},K=({className:e="",size:r="md",color:s="currentColor"})=>{const o=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:s,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:o,"aria-label":"Refresh",children:i.jsx("path",{d:"M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"})})},X=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:s,"aria-label":"Search",children:i.jsx("path",{d:"M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"})})},Y=({className:e="",size:r="md",color:s="currentColor"})=>i.jsx("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:s,viewBox:"0 0 24 24",children:i.jsxs("g",{children:[i.jsx("circle",{cx:"12",cy:"12",r:"3",fill:s}),i.jsx("circle",{cx:"12",cy:"12",r:"7",fill:"none",stroke:s,strokeWidth:"1.5"}),i.jsx("rect",{x:"11",y:"2",width:"2",height:"2.5",fill:s}),i.jsx("rect",{x:"15.2",y:"3.5",width:"2.2",height:"2",fill:s,transform:"rotate(30 16.3 4.5)"}),i.jsx("rect",{x:"18.5",y:"7.2",width:"2",height:"2.2",fill:s,transform:"rotate(60 19.5 8.3)"}),i.jsx("rect",{x:"20.5",y:"11",width:"2.5",height:"2",fill:s}),i.jsx("rect",{x:"18.5",y:"14.8",width:"2",height:"2.2",fill:s,transform:"rotate(120 19.5 15.9)"}),i.jsx("rect",{x:"15.2",y:"18.5",width:"2.2",height:"2",fill:s,transform:"rotate(150 16.3 19.5)"}),i.jsx("rect",{x:"11",y:"20.5",width:"2",height:"2.5",fill:s}),i.jsx("rect",{x:"6.6",y:"18.5",width:"2.2",height:"2",fill:s,transform:"rotate(210 7.7 19.5)"}),i.jsx("rect",{x:"3.5",y:"14.8",width:"2",height:"2.2",fill:s,transform:"rotate(240 4.5 15.9)"}),i.jsx("rect",{x:"1",y:"11",width:"2.5",height:"2",fill:s}),i.jsx("rect",{x:"3.5",y:"7.2",width:"2",height:"2.2",fill:s,transform:"rotate(300 4.5 8.3)"}),i.jsx("rect",{x:"6.6",y:"3.5",width:"2.2",height:"2",fill:s,transform:"rotate(330 7.7 4.5)"})]})}),q=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:s,"aria-hidden":"true",children:[i.jsx("path",{d:"M3 6h18"}),i.jsx("path",{d:"M7 12h10"}),i.jsx("path",{d:"M10 18h4"})]})},G=({className:e="",size:r="md",color:s="currentColor"})=>i.jsxs("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} animate-spin ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",children:[i.jsx("circle",{className:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"4"}),i.jsx("path",{className:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})]}),Q=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",className:s,"aria-label":"System Identifier",children:[i.jsx("rect",{x:"3",y:"3",width:"5",height:"5",rx:"1",stroke:"currentColor",strokeWidth:"2"}),i.jsx("rect",{x:"3",y:"16",width:"5",height:"5",rx:"1",stroke:"currentColor",strokeWidth:"2"}),i.jsx("rect",{x:"16",y:"3",width:"5",height:"5",rx:"1",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),i.jsx("rect",{x:"6",y:"10",width:"2",height:"2",rx:"0.5",fill:"currentColor"}),i.jsx("path",{d:"M12.5 2H13.5C13.7761 2 14 2.22386 14 2.5V5.5C14 5.77614 13.7761 6 13.5 6H12.5C12.2239 6 12 6.22386 12 6.5V7.5C12 7.77614 11.7761 8 11.5 8H10.5C10.2239 8 10 7.77614 10 7.5V4.5C10 4.22386 10.2239 4 10.5 4H11.5C11.7761 4 12 3.77614 12 3.5V2.5C12 2.22386 12.2239 2 12.5 2Z",fill:"currentColor"}),i.jsx("rect",{x:"8",y:"12",width:"4",height:"2",rx:"0.5",fill:"currentColor"}),i.jsx("rect",{x:"18",y:"10",width:"4",height:"2",rx:"0.5",fill:"currentColor"}),i.jsx("rect",{x:"12",y:"18",width:"4",height:"2",rx:"0.5",fill:"currentColor"}),i.jsx("rect",{x:"10",y:"16",width:"2",height:"2",rx:"0.5",fill:"currentColor"}),i.jsx("path",{d:"M12 11.5V10.5C12 10.2239 12.2239 10 12.5 10H15.5C15.7761 10 16 10.2239 16 10.5V14H17.5C17.7761 14 18 14.2239 18 14.5V15.5C18 15.7761 17.7761 16 17.5 16H16H14.5C14.2239 16 14 15.7761 14 15.5V12.5C14 12.2239 13.7761 12 13.5 12H12.5C12.2239 12 12 11.7761 12 11.5Z",fill:"currentColor"}),i.jsx("path",{d:"M16.5 20L17.5 20C17.7761 20 18 19.7761 18 19.5L18 18.5C18 18.2239 18.2239 18 18.5 18L19.5 18C19.7761 18 20 17.7761 20 17.5L20 14.5C20 14.2239 20.2239 14 20.5 14L21.5 14C21.7761 14 22 14.2239 22 14.5L22 16L22 18L22 19.5C22 19.7761 21.7761 20 21.5 20L20.5 20C20.2239 20 20 20.2239 20 20.5L20 21.5C20 21.7761 19.7761 22 19.5 22L16.5 22C16.2239 22 16 21.7761 16 21.5L16 20.5C16 20.2239 16.2239 20 16.5 20Z",fill:"currentColor"}),i.jsx("path",{d:"M2 13.5V10.5C2 10.2239 2.22386 10 2.5 10H3.5C3.77614 10 4 10.2239 4 10.5V11.5C4 11.7761 4.22386 12 4.5 12H5.5C5.77614 12 6 12.2239 6 12.5V13.5C6 13.7761 5.77614 14 5.5 14H2.5C2.22386 14 2 13.7761 2 13.5Z",fill:"currentColor"}),i.jsx("path",{d:"M13.5 22H10.5C10.2239 22 10 21.7761 10 21.5V20.5C10 20.2239 10.2239 20 10.5 20H11.5C11.7761 20 12 19.7761 12 19.5V18.5C12 18.2239 12.2239 18 12.5 18H15.5C15.7761 18 16 18.2239 16 18.5V19.5C16 19.7761 15.7761 20 15.5 20H14.5C14.2239 20 14 20.2239 14 20.5V21.5C14 21.7761 13.7761 22 13.5 22Z",fill:"currentColor"})]})},ee=({className:e="",size:r="md",color:s="currentColor"})=>{const o=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:s,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:o,"aria-label":"Delete",children:i.jsx("path",{d:"M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"})})},re=({size:e="h-12 w-12",className:r="text-gray-400",ariaLabel:s="Upload"})=>i.jsx("svg",{className:`${e} ${r}`,stroke:"currentColor",fill:"none",viewBox:"0 0 48 48","aria-hidden":"true","aria-label":s,children:i.jsx("path",{d:"M28 8H12a4 4 0 00-4 4v20m32-12v8m0 0v8a4 4 0 01-4 4H12a4 4 0 01-4-4v-4m32-4l-3.172-3.172a4 4 0 00-5.656 0L28 28M8 32l9.172-9.172a4 4 0 015.656 0L28 28m0 0l4 4m4-24h8m-4-4v8m-12 4h.02",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"})}),se=({className:e="",size:r="md",color:s="currentColor"})=>i.jsx("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",children:i.jsx("path",{stroke:s,strokeLinecap:"square",strokeLinejoin:"round",strokeWidth:"2",d:"M10 19H5a1 1 0 0 1-1-1v-1a3 3 0 0 1 3-3h2m10 1a3 3 0 0 1-3 3m3-3a3 3 0 0 0-3-3m3 3h1m-4 3a3 3 0 0 1-3-3m3 3v1m-3-4a3 3 0 0 1 3-3m-3 3h-1m4-3v-1m-2.121 1.879-.707-.707m5.656 5.656-.707-.707m-4.242 0-.707.707m5.656-5.656-.707.707M12 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"})}),oe=({className:e="",size:r="md",color:s="currentColor"})=>i.jsxs("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round",children:[i.jsx("path",{d:"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}),i.jsx("circle",{cx:"12",cy:"7",r:"4"})]}),te=({className:e="",size:r="md"})=>{const s=`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`;return i.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",className:s,"aria-label":"Users",children:[i.jsx("circle",{cx:"6",cy:"7",r:"2.5"}),i.jsx("path",{d:"M4 14c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2c0-1.1-.9-2-2-2H4z"}),i.jsx("circle",{cx:"12",cy:"6",r:"2.5"}),i.jsx("path",{d:"M10 13c-1.1 0-2 .9-2 2v3c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-3c0-1.1-.9-2-2-2h-4z"}),i.jsx("circle",{cx:"18",cy:"7",r:"2.5"}),i.jsx("path",{d:"M16 14c-1.1 0-2 .9-2 2v2c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2c0-1.1-.9-2-2-2h-4z"})]})},le=({className:e="",size:r="md",color:s="currentColor"})=>i.jsxs("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round","aria-label":"Zoom In",children:[i.jsx("circle",{cx:"11",cy:"11",r:"8"}),i.jsx("path",{d:"M21 21l-4.35-4.35"}),i.jsx("line",{x1:"11",y1:"8",x2:"11",y2:"14"}),i.jsx("line",{x1:"8",y1:"11",x2:"14",y2:"11"})]}),ne=({className:e="",size:r="md",color:s="currentColor"})=>i.jsxs("svg",{className:`${{sm:"w-4 h-4",md:"w-5 h-5",lg:"w-6 h-6"}[r]} ${e}`,fill:"none",stroke:s,viewBox:"0 0 24 24",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round","aria-label":"Zoom Out",children:[i.jsx("circle",{cx:"11",cy:"11",r:"8"}),i.jsx("path",{d:"M21 21l-4.35-4.35"}),i.jsx("line",{x1:"8",y1:"11",x2:"14",y2:"11"})]});export{c as ArrowDetailsIcon,h as BrandingIcon,d as CalendarIcon,m as CheckIcon,w as CheckmarkIcon,u as ChevronIcon,p as CityIcon,f as ClockIcon,g as CloseIcon,j as DocumentIcon,k as DownloadIcon,y as DragHandleIcon,L as EditIcon,C as EmailIcon,$ as ErrorIcon,b as EyeIcon,z as FilterIcon,M as HomeIcon,B as InfoIcon,W as LinkIcon,H as LocationIcon,V as ManualIdentifierIcon,O as MapIcon,R as MinusIcon,E as MoreIcon,P as NotificationIcon,T as PatientIcon,Z as PatientsIcon,I as PhoneIcon,U as PlusIcon,F as PrescriptionIcon,J as PrintIcon,K as RefreshIcon,X as SearchIcon,Y as SettingsIcon,q as SortIcon,G as SpinnerIcon,Q as SystemIdentifierIcon,ee as TrashIcon,re as UploadIcon,se as UserManagementIcon,oe as UserSelectIcon,te as UsersIcon,le as ZoomInIcon,ne as ZoomOutIcon};
|
|
11
11
|
//# sourceMappingURL=index.esm.js.map
|