@snapcall/design-system 1.1.1 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +55 -4
- package/dist/index.d.ts +55 -4
- package/dist/index.js +442 -58
- package/dist/index.mjs +545 -184
- package/dist/tailwind.config.js +1 -1
- package/dist/tailwind.css +1 -1
- package/package.json +28 -22
package/dist/index.mjs
CHANGED
|
@@ -30,10 +30,9 @@ var __objRest = (source, exclude) => {
|
|
|
30
30
|
return target;
|
|
31
31
|
};
|
|
32
32
|
|
|
33
|
-
// src/components/
|
|
34
|
-
import * as
|
|
35
|
-
import
|
|
36
|
-
import { cva } from "class-variance-authority";
|
|
33
|
+
// src/components/AlertDialog/AlertDialog.tsx
|
|
34
|
+
import * as React2 from "react";
|
|
35
|
+
import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog";
|
|
37
36
|
|
|
38
37
|
// src/utils/cn.ts
|
|
39
38
|
import { clsx } from "clsx";
|
|
@@ -43,6 +42,9 @@ function cn(...inputs) {
|
|
|
43
42
|
}
|
|
44
43
|
|
|
45
44
|
// src/components/Button/Button.tsx
|
|
45
|
+
import * as React from "react";
|
|
46
|
+
import { Slot } from "@radix-ui/react-slot";
|
|
47
|
+
import { cva } from "class-variance-authority";
|
|
46
48
|
import { jsx } from "react/jsx-runtime";
|
|
47
49
|
var buttonVariants = cva(
|
|
48
50
|
"inline-flex items-center justify-center gap-2 rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 disabled:pointer-events-none disabled:opacity-40",
|
|
@@ -111,14 +113,147 @@ var Button = React.forwardRef(
|
|
|
111
113
|
);
|
|
112
114
|
Button.displayName = "Button";
|
|
113
115
|
|
|
116
|
+
// src/components/AlertDialog/AlertDialog.tsx
|
|
117
|
+
import { jsx as jsx2, jsxs } from "react/jsx-runtime";
|
|
118
|
+
var AlertDialog = AlertDialogPrimitive.Root;
|
|
119
|
+
var AlertDialogTrigger = AlertDialogPrimitive.Trigger;
|
|
120
|
+
var AlertDialogPortal = (_a) => {
|
|
121
|
+
var _b = _a, {
|
|
122
|
+
className
|
|
123
|
+
} = _b, props = __objRest(_b, [
|
|
124
|
+
"className"
|
|
125
|
+
]);
|
|
126
|
+
return /* @__PURE__ */ jsx2(AlertDialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
|
|
127
|
+
};
|
|
128
|
+
AlertDialogPortal.displayName = AlertDialogPrimitive.Portal.displayName;
|
|
129
|
+
var AlertDialogOverlay = React2.forwardRef((_a, ref) => {
|
|
130
|
+
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
131
|
+
return /* @__PURE__ */ jsx2(
|
|
132
|
+
AlertDialogPrimitive.Overlay,
|
|
133
|
+
__spreadProps(__spreadValues({
|
|
134
|
+
className: cn(
|
|
135
|
+
"fixed inset-0 z-50 bg-black/25 backdrop-blur-sm data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
|
|
136
|
+
className
|
|
137
|
+
)
|
|
138
|
+
}, props), {
|
|
139
|
+
ref
|
|
140
|
+
})
|
|
141
|
+
);
|
|
142
|
+
});
|
|
143
|
+
AlertDialogOverlay.displayName = AlertDialogPrimitive.Overlay.displayName;
|
|
144
|
+
var AlertDialogContent = React2.forwardRef((_a, ref) => {
|
|
145
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
146
|
+
return /* @__PURE__ */ jsxs(AlertDialogPortal, { children: [
|
|
147
|
+
/* @__PURE__ */ jsx2(AlertDialogOverlay, {}),
|
|
148
|
+
/* @__PURE__ */ jsx2(
|
|
149
|
+
AlertDialogPrimitive.Content,
|
|
150
|
+
__spreadValues({
|
|
151
|
+
ref,
|
|
152
|
+
className: cn(
|
|
153
|
+
"fixed left-[50%] top-[50%] z-50 grid w-full max-w-[400px] translate-x-[-50%] translate-y-[-50%] gap-6 border bg-white p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-xl md:w-full",
|
|
154
|
+
className
|
|
155
|
+
)
|
|
156
|
+
}, props)
|
|
157
|
+
)
|
|
158
|
+
] });
|
|
159
|
+
});
|
|
160
|
+
AlertDialogContent.displayName = AlertDialogPrimitive.Content.displayName;
|
|
161
|
+
var AlertDialogHeader = (_a) => {
|
|
162
|
+
var _b = _a, {
|
|
163
|
+
className
|
|
164
|
+
} = _b, props = __objRest(_b, [
|
|
165
|
+
"className"
|
|
166
|
+
]);
|
|
167
|
+
return /* @__PURE__ */ jsx2(
|
|
168
|
+
"div",
|
|
169
|
+
__spreadValues({
|
|
170
|
+
className: cn(
|
|
171
|
+
"flex flex-col space-y-5 text-center sm:text-left",
|
|
172
|
+
className
|
|
173
|
+
)
|
|
174
|
+
}, props)
|
|
175
|
+
);
|
|
176
|
+
};
|
|
177
|
+
AlertDialogHeader.displayName = "AlertDialogHeader";
|
|
178
|
+
var AlertDialogFooter = (_a) => {
|
|
179
|
+
var _b = _a, {
|
|
180
|
+
className
|
|
181
|
+
} = _b, props = __objRest(_b, [
|
|
182
|
+
"className"
|
|
183
|
+
]);
|
|
184
|
+
return /* @__PURE__ */ jsx2(
|
|
185
|
+
"div",
|
|
186
|
+
__spreadValues({
|
|
187
|
+
className: cn(
|
|
188
|
+
"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
|
|
189
|
+
className
|
|
190
|
+
)
|
|
191
|
+
}, props)
|
|
192
|
+
);
|
|
193
|
+
};
|
|
194
|
+
AlertDialogFooter.displayName = "AlertDialogFooter";
|
|
195
|
+
var AlertDialogTitle = React2.forwardRef((_a, ref) => {
|
|
196
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
197
|
+
return /* @__PURE__ */ jsx2(
|
|
198
|
+
AlertDialogPrimitive.Title,
|
|
199
|
+
__spreadValues({
|
|
200
|
+
ref,
|
|
201
|
+
className: cn("text-lg text-gray-1000 font-semibold", className)
|
|
202
|
+
}, props)
|
|
203
|
+
);
|
|
204
|
+
});
|
|
205
|
+
AlertDialogTitle.displayName = AlertDialogPrimitive.Title.displayName;
|
|
206
|
+
var AlertDialogDescription = React2.forwardRef((_a, ref) => {
|
|
207
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
208
|
+
return /* @__PURE__ */ jsx2(
|
|
209
|
+
AlertDialogPrimitive.Description,
|
|
210
|
+
__spreadValues({
|
|
211
|
+
ref,
|
|
212
|
+
className: cn("text-sm text-gray-700", className)
|
|
213
|
+
}, props)
|
|
214
|
+
);
|
|
215
|
+
});
|
|
216
|
+
AlertDialogDescription.displayName = AlertDialogPrimitive.Description.displayName;
|
|
217
|
+
var AlertDialogAction = React2.forwardRef((_a, ref) => {
|
|
218
|
+
var _b = _a, { className, variant = "primary" } = _b, props = __objRest(_b, ["className", "variant"]);
|
|
219
|
+
return /* @__PURE__ */ jsx2(
|
|
220
|
+
AlertDialogPrimitive.Action,
|
|
221
|
+
__spreadValues({
|
|
222
|
+
ref,
|
|
223
|
+
className: cn(
|
|
224
|
+
buttonVariants({ variant }),
|
|
225
|
+
buttonSizes({ size: "md" }),
|
|
226
|
+
className
|
|
227
|
+
)
|
|
228
|
+
}, props)
|
|
229
|
+
);
|
|
230
|
+
});
|
|
231
|
+
AlertDialogAction.displayName = AlertDialogPrimitive.Action.displayName;
|
|
232
|
+
var AlertDialogCancel = React2.forwardRef((_a, ref) => {
|
|
233
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
234
|
+
return /* @__PURE__ */ jsx2(
|
|
235
|
+
AlertDialogPrimitive.Cancel,
|
|
236
|
+
__spreadValues({
|
|
237
|
+
ref,
|
|
238
|
+
className: cn(
|
|
239
|
+
buttonVariants({ variant: "outline" }),
|
|
240
|
+
buttonSizes({ size: "md" }),
|
|
241
|
+
"mt-2 sm:mt-0",
|
|
242
|
+
className
|
|
243
|
+
)
|
|
244
|
+
}, props)
|
|
245
|
+
);
|
|
246
|
+
});
|
|
247
|
+
AlertDialogCancel.displayName = AlertDialogPrimitive.Cancel.displayName;
|
|
248
|
+
|
|
114
249
|
// src/components/Badge/Badge.tsx
|
|
115
250
|
import { cva as cva2 } from "class-variance-authority";
|
|
116
251
|
|
|
117
252
|
// src/utils/getLabelFromChildren.ts
|
|
118
|
-
import
|
|
253
|
+
import React3 from "react";
|
|
119
254
|
var getLabelFromChildren = (children) => {
|
|
120
255
|
let label = "";
|
|
121
|
-
|
|
256
|
+
React3.Children.map(children, (child) => {
|
|
122
257
|
if (typeof child === "string") {
|
|
123
258
|
label += child;
|
|
124
259
|
}
|
|
@@ -140,7 +275,7 @@ var randomPickFromArray = ({
|
|
|
140
275
|
};
|
|
141
276
|
|
|
142
277
|
// src/components/Badge/Badge.tsx
|
|
143
|
-
import { jsx as
|
|
278
|
+
import { jsx as jsx3 } from "react/jsx-runtime";
|
|
144
279
|
var colors = {
|
|
145
280
|
gray: "text-gray-900",
|
|
146
281
|
green: "text-green-700",
|
|
@@ -275,7 +410,7 @@ function Badge(_a) {
|
|
|
275
410
|
array: colorsArray
|
|
276
411
|
});
|
|
277
412
|
}
|
|
278
|
-
return /* @__PURE__ */
|
|
413
|
+
return /* @__PURE__ */ jsx3(
|
|
279
414
|
"div",
|
|
280
415
|
__spreadValues({
|
|
281
416
|
className: cn(badgeVariants({ variant, color }), className)
|
|
@@ -283,56 +418,8 @@ function Badge(_a) {
|
|
|
283
418
|
);
|
|
284
419
|
}
|
|
285
420
|
|
|
286
|
-
// src/components/
|
|
287
|
-
import
|
|
288
|
-
import * as TabsPrimitive from "@radix-ui/react-tabs";
|
|
289
|
-
import { jsx as jsx3 } from "react/jsx-runtime";
|
|
290
|
-
var Tabs = TabsPrimitive.Root;
|
|
291
|
-
var TabsList = React3.forwardRef((_a, ref) => {
|
|
292
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
293
|
-
return /* @__PURE__ */ jsx3(
|
|
294
|
-
TabsPrimitive.List,
|
|
295
|
-
__spreadValues({
|
|
296
|
-
ref,
|
|
297
|
-
className: cn(
|
|
298
|
-
"inline-flex items-center justify-center gap-2 rounded-lg p-1.5 bg-gray-50 text-gray-700",
|
|
299
|
-
className
|
|
300
|
-
)
|
|
301
|
-
}, props)
|
|
302
|
-
);
|
|
303
|
-
});
|
|
304
|
-
TabsList.displayName = TabsPrimitive.List.displayName;
|
|
305
|
-
var TabsTrigger = React3.forwardRef((_a, ref) => {
|
|
306
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
307
|
-
return /* @__PURE__ */ jsx3(
|
|
308
|
-
TabsPrimitive.Trigger,
|
|
309
|
-
__spreadValues({
|
|
310
|
-
ref,
|
|
311
|
-
className: cn(
|
|
312
|
-
"inline-flex items-center justify-center whitespace-nowrap rounded-md px-3 py-1.5 text-sm font-semibold ring-offset-white transition-all",
|
|
313
|
-
"hover:bg-gray-100 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-blue-700 focus-visible:ring-offset-2",
|
|
314
|
-
"data-[state=active]:bg-white data-[state=active]:text-blue-700 data-[state=active]:shadow-sm",
|
|
315
|
-
"disabled:pointer-events-none disabled:opacity-50",
|
|
316
|
-
className
|
|
317
|
-
)
|
|
318
|
-
}, props)
|
|
319
|
-
);
|
|
320
|
-
});
|
|
321
|
-
TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
|
|
322
|
-
var TabsContent = React3.forwardRef((_a, ref) => {
|
|
323
|
-
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
324
|
-
return /* @__PURE__ */ jsx3(
|
|
325
|
-
TabsPrimitive.Content,
|
|
326
|
-
__spreadValues({
|
|
327
|
-
ref,
|
|
328
|
-
className: cn(
|
|
329
|
-
"mt-2 ring-offset-white focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-blue-700 focus-visible:ring-offset-2",
|
|
330
|
-
className
|
|
331
|
-
)
|
|
332
|
-
}, props)
|
|
333
|
-
);
|
|
334
|
-
});
|
|
335
|
-
TabsContent.displayName = TabsPrimitive.Content.displayName;
|
|
421
|
+
// src/components/Calendar/Calendar.tsx
|
|
422
|
+
import { DayPicker } from "react-day-picker";
|
|
336
423
|
|
|
337
424
|
// src/icons/activity.tsx
|
|
338
425
|
import { forwardRef as forwardRef3 } from "react";
|
|
@@ -368,11 +455,11 @@ var ActivityIcon = forwardRef3(
|
|
|
368
455
|
|
|
369
456
|
// src/icons/alertCircle.tsx
|
|
370
457
|
import { forwardRef as forwardRef4 } from "react";
|
|
371
|
-
import { jsx as jsx5, jsxs } from "react/jsx-runtime";
|
|
458
|
+
import { jsx as jsx5, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
372
459
|
var AlertCircleIcon = forwardRef4(
|
|
373
460
|
function AlertCircleIcon2(_a, ref) {
|
|
374
461
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
375
|
-
return /* @__PURE__ */
|
|
462
|
+
return /* @__PURE__ */ jsxs2(
|
|
376
463
|
"svg",
|
|
377
464
|
__spreadProps(__spreadValues({
|
|
378
465
|
ref,
|
|
@@ -538,10 +625,10 @@ var ArrowUpIcon = forwardRef8(
|
|
|
538
625
|
|
|
539
626
|
// src/icons/bell.tsx
|
|
540
627
|
import { forwardRef as forwardRef9 } from "react";
|
|
541
|
-
import { jsx as jsx10, jsxs as
|
|
628
|
+
import { jsx as jsx10, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
542
629
|
var BellIcon = forwardRef9(function BellIcon2(_a, ref) {
|
|
543
630
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
544
|
-
return /* @__PURE__ */
|
|
631
|
+
return /* @__PURE__ */ jsxs3(
|
|
545
632
|
"svg",
|
|
546
633
|
__spreadProps(__spreadValues({
|
|
547
634
|
ref,
|
|
@@ -578,11 +665,11 @@ var BellIcon = forwardRef9(function BellIcon2(_a, ref) {
|
|
|
578
665
|
|
|
579
666
|
// src/icons/calendar.tsx
|
|
580
667
|
import { forwardRef as forwardRef10 } from "react";
|
|
581
|
-
import { jsx as jsx11, jsxs as
|
|
668
|
+
import { jsx as jsx11, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
582
669
|
var CalendarIcon = forwardRef10(
|
|
583
670
|
function CalendarIcon2(_a, ref) {
|
|
584
671
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
585
|
-
return /* @__PURE__ */
|
|
672
|
+
return /* @__PURE__ */ jsxs4(
|
|
586
673
|
"svg",
|
|
587
674
|
__spreadProps(__spreadValues({
|
|
588
675
|
ref,
|
|
@@ -620,11 +707,11 @@ var CalendarIcon = forwardRef10(
|
|
|
620
707
|
|
|
621
708
|
// src/icons/calendarCheck.tsx
|
|
622
709
|
import { forwardRef as forwardRef11 } from "react";
|
|
623
|
-
import { jsx as jsx12, jsxs as
|
|
710
|
+
import { jsx as jsx12, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
624
711
|
var CalendarCheckIcon = forwardRef11(
|
|
625
712
|
function CalendarCheckIcon2(_a, ref) {
|
|
626
713
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
627
|
-
return /* @__PURE__ */
|
|
714
|
+
return /* @__PURE__ */ jsxs5(
|
|
628
715
|
"svg",
|
|
629
716
|
__spreadProps(__spreadValues({
|
|
630
717
|
ref,
|
|
@@ -662,11 +749,11 @@ var CalendarCheckIcon = forwardRef11(
|
|
|
662
749
|
|
|
663
750
|
// src/icons/calendarPlus.tsx
|
|
664
751
|
import { forwardRef as forwardRef12 } from "react";
|
|
665
|
-
import { jsx as jsx13, jsxs as
|
|
752
|
+
import { jsx as jsx13, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
666
753
|
var CalendarPlusIcon = forwardRef12(
|
|
667
754
|
function CalendarPlusIcon2(_a, ref) {
|
|
668
755
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
669
|
-
return /* @__PURE__ */
|
|
756
|
+
return /* @__PURE__ */ jsxs6(
|
|
670
757
|
"svg",
|
|
671
758
|
__spreadProps(__spreadValues({
|
|
672
759
|
ref,
|
|
@@ -704,11 +791,11 @@ var CalendarPlusIcon = forwardRef12(
|
|
|
704
791
|
|
|
705
792
|
// src/icons/camera.tsx
|
|
706
793
|
import { forwardRef as forwardRef13 } from "react";
|
|
707
|
-
import { jsx as jsx14, jsxs as
|
|
794
|
+
import { jsx as jsx14, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
708
795
|
var CameraIcon = forwardRef13(
|
|
709
796
|
function CameraIcon2(_a, ref) {
|
|
710
797
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
711
|
-
return /* @__PURE__ */
|
|
798
|
+
return /* @__PURE__ */ jsxs7(
|
|
712
799
|
"svg",
|
|
713
800
|
__spreadProps(__spreadValues({
|
|
714
801
|
ref,
|
|
@@ -757,11 +844,11 @@ var CameraIcon = forwardRef13(
|
|
|
757
844
|
|
|
758
845
|
// src/icons/cameraOff.tsx
|
|
759
846
|
import { forwardRef as forwardRef14 } from "react";
|
|
760
|
-
import { jsx as jsx15, jsxs as
|
|
847
|
+
import { jsx as jsx15, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
761
848
|
var CameraOffIcon = forwardRef14(
|
|
762
849
|
function CameraOffIcon2(_a, ref) {
|
|
763
850
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
764
|
-
return /* @__PURE__ */
|
|
851
|
+
return /* @__PURE__ */ jsxs8(
|
|
765
852
|
"svg",
|
|
766
853
|
__spreadProps(__spreadValues({
|
|
767
854
|
ref,
|
|
@@ -799,11 +886,11 @@ var CameraOffIcon = forwardRef14(
|
|
|
799
886
|
|
|
800
887
|
// src/icons/checkCircle.tsx
|
|
801
888
|
import { forwardRef as forwardRef15 } from "react";
|
|
802
|
-
import { jsx as jsx16, jsxs as
|
|
889
|
+
import { jsx as jsx16, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
803
890
|
var CheckCircleIcon = forwardRef15(
|
|
804
891
|
function CheckCircleIcon2(_a, ref) {
|
|
805
892
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
806
|
-
return /* @__PURE__ */
|
|
893
|
+
return /* @__PURE__ */ jsxs9(
|
|
807
894
|
"svg",
|
|
808
895
|
__spreadProps(__spreadValues({
|
|
809
896
|
ref,
|
|
@@ -969,10 +1056,10 @@ var ChevronUpIcon = forwardRef19(
|
|
|
969
1056
|
|
|
970
1057
|
// src/icons/copy.tsx
|
|
971
1058
|
import { forwardRef as forwardRef20 } from "react";
|
|
972
|
-
import { jsx as jsx21, jsxs as
|
|
1059
|
+
import { jsx as jsx21, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
973
1060
|
var CopyIcon = forwardRef20(function CopyIcon2(_a, ref) {
|
|
974
1061
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
975
|
-
return /* @__PURE__ */
|
|
1062
|
+
return /* @__PURE__ */ jsxs10(
|
|
976
1063
|
"svg",
|
|
977
1064
|
__spreadProps(__spreadValues({
|
|
978
1065
|
ref,
|
|
@@ -1009,11 +1096,11 @@ var CopyIcon = forwardRef20(function CopyIcon2(_a, ref) {
|
|
|
1009
1096
|
|
|
1010
1097
|
// src/icons/cursorClick.tsx
|
|
1011
1098
|
import { forwardRef as forwardRef21 } from "react";
|
|
1012
|
-
import { jsx as jsx22, jsxs as
|
|
1099
|
+
import { jsx as jsx22, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
1013
1100
|
var CursorClickIcon = forwardRef21(
|
|
1014
1101
|
function CursorClickIcon2(_a, ref) {
|
|
1015
1102
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1016
|
-
return /* @__PURE__ */
|
|
1103
|
+
return /* @__PURE__ */ jsxs11(
|
|
1017
1104
|
"svg",
|
|
1018
1105
|
__spreadProps(__spreadValues({
|
|
1019
1106
|
ref,
|
|
@@ -1051,11 +1138,11 @@ var CursorClickIcon = forwardRef21(
|
|
|
1051
1138
|
|
|
1052
1139
|
// src/icons/download.tsx
|
|
1053
1140
|
import { forwardRef as forwardRef22 } from "react";
|
|
1054
|
-
import { jsx as jsx23, jsxs as
|
|
1141
|
+
import { jsx as jsx23, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
1055
1142
|
var DownloadIcon = forwardRef22(
|
|
1056
1143
|
function DownloadIcon2(_a, ref) {
|
|
1057
1144
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1058
|
-
return /* @__PURE__ */
|
|
1145
|
+
return /* @__PURE__ */ jsxs12(
|
|
1059
1146
|
"svg",
|
|
1060
1147
|
__spreadProps(__spreadValues({
|
|
1061
1148
|
ref,
|
|
@@ -1093,10 +1180,10 @@ var DownloadIcon = forwardRef22(
|
|
|
1093
1180
|
|
|
1094
1181
|
// src/icons/edit.tsx
|
|
1095
1182
|
import { forwardRef as forwardRef23 } from "react";
|
|
1096
|
-
import { jsx as jsx24, jsxs as
|
|
1183
|
+
import { jsx as jsx24, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
1097
1184
|
var EditIcon = forwardRef23(function EditIcon2(_a, ref) {
|
|
1098
1185
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1099
|
-
return /* @__PURE__ */
|
|
1186
|
+
return /* @__PURE__ */ jsxs13(
|
|
1100
1187
|
"svg",
|
|
1101
1188
|
__spreadProps(__spreadValues({
|
|
1102
1189
|
ref,
|
|
@@ -1229,11 +1316,11 @@ var FlipForwardIcon = forwardRef26(
|
|
|
1229
1316
|
|
|
1230
1317
|
// src/icons/helpCircle.tsx
|
|
1231
1318
|
import { forwardRef as forwardRef27 } from "react";
|
|
1232
|
-
import { jsx as jsx28, jsxs as
|
|
1319
|
+
import { jsx as jsx28, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
1233
1320
|
var HelpCircleIcon = forwardRef27(
|
|
1234
1321
|
function HelpCircleIcon2(_a, ref) {
|
|
1235
1322
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1236
|
-
return /* @__PURE__ */
|
|
1323
|
+
return /* @__PURE__ */ jsxs14(
|
|
1237
1324
|
"svg",
|
|
1238
1325
|
__spreadProps(__spreadValues({
|
|
1239
1326
|
ref,
|
|
@@ -1271,10 +1358,10 @@ var HelpCircleIcon = forwardRef27(
|
|
|
1271
1358
|
|
|
1272
1359
|
// src/icons/home.tsx
|
|
1273
1360
|
import { forwardRef as forwardRef28 } from "react";
|
|
1274
|
-
import { jsx as jsx29, jsxs as
|
|
1361
|
+
import { jsx as jsx29, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
1275
1362
|
var HomeIcon = forwardRef28(function HomeIcon2(_a, ref) {
|
|
1276
1363
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1277
|
-
return /* @__PURE__ */
|
|
1364
|
+
return /* @__PURE__ */ jsxs15(
|
|
1278
1365
|
"svg",
|
|
1279
1366
|
__spreadProps(__spreadValues({
|
|
1280
1367
|
ref,
|
|
@@ -1304,11 +1391,11 @@ var HomeIcon = forwardRef28(function HomeIcon2(_a, ref) {
|
|
|
1304
1391
|
|
|
1305
1392
|
// src/icons/image.tsx
|
|
1306
1393
|
import { forwardRef as forwardRef29 } from "react";
|
|
1307
|
-
import { jsx as jsx30, jsxs as
|
|
1394
|
+
import { jsx as jsx30, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
1308
1395
|
var ImageIcon = forwardRef29(
|
|
1309
1396
|
function ImageIcon2(_a, ref) {
|
|
1310
1397
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1311
|
-
return /* @__PURE__ */
|
|
1398
|
+
return /* @__PURE__ */ jsxs16(
|
|
1312
1399
|
"svg",
|
|
1313
1400
|
__spreadProps(__spreadValues({
|
|
1314
1401
|
ref,
|
|
@@ -1320,7 +1407,7 @@ var ImageIcon = forwardRef29(
|
|
|
1320
1407
|
className
|
|
1321
1408
|
}, other), {
|
|
1322
1409
|
children: [
|
|
1323
|
-
duotone && /* @__PURE__ */
|
|
1410
|
+
duotone && /* @__PURE__ */ jsxs16("g", { opacity: "0.12", children: [
|
|
1324
1411
|
/* @__PURE__ */ jsx30(
|
|
1325
1412
|
"path",
|
|
1326
1413
|
{
|
|
@@ -1354,11 +1441,11 @@ var ImageIcon = forwardRef29(
|
|
|
1354
1441
|
|
|
1355
1442
|
// src/icons/imageDown.tsx
|
|
1356
1443
|
import { forwardRef as forwardRef30 } from "react";
|
|
1357
|
-
import { jsx as jsx31, jsxs as
|
|
1444
|
+
import { jsx as jsx31, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
1358
1445
|
var ImageDownIcon = forwardRef30(
|
|
1359
1446
|
function ImageDownIcon2(_a, ref) {
|
|
1360
1447
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1361
|
-
return /* @__PURE__ */
|
|
1448
|
+
return /* @__PURE__ */ jsxs17(
|
|
1362
1449
|
"svg",
|
|
1363
1450
|
__spreadProps(__spreadValues({
|
|
1364
1451
|
ref,
|
|
@@ -1370,7 +1457,7 @@ var ImageDownIcon = forwardRef30(
|
|
|
1370
1457
|
className
|
|
1371
1458
|
}, other), {
|
|
1372
1459
|
children: [
|
|
1373
|
-
duotone && /* @__PURE__ */
|
|
1460
|
+
duotone && /* @__PURE__ */ jsxs17("g", { opacity: "0.12", children: [
|
|
1374
1461
|
/* @__PURE__ */ jsx31(
|
|
1375
1462
|
"path",
|
|
1376
1463
|
{
|
|
@@ -1404,11 +1491,11 @@ var ImageDownIcon = forwardRef30(
|
|
|
1404
1491
|
|
|
1405
1492
|
// src/icons/imageX.tsx
|
|
1406
1493
|
import { forwardRef as forwardRef31 } from "react";
|
|
1407
|
-
import { jsx as jsx32, jsxs as
|
|
1494
|
+
import { jsx as jsx32, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
1408
1495
|
var ImageXIcon = forwardRef31(
|
|
1409
1496
|
function ImageXIcon2(_a, ref) {
|
|
1410
1497
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1411
|
-
return /* @__PURE__ */
|
|
1498
|
+
return /* @__PURE__ */ jsxs18(
|
|
1412
1499
|
"svg",
|
|
1413
1500
|
__spreadProps(__spreadValues({
|
|
1414
1501
|
ref,
|
|
@@ -1420,7 +1507,7 @@ var ImageXIcon = forwardRef31(
|
|
|
1420
1507
|
className
|
|
1421
1508
|
}, other), {
|
|
1422
1509
|
children: [
|
|
1423
|
-
duotone && /* @__PURE__ */
|
|
1510
|
+
duotone && /* @__PURE__ */ jsxs18("g", { opacity: "0.12", children: [
|
|
1424
1511
|
/* @__PURE__ */ jsx32(
|
|
1425
1512
|
"path",
|
|
1426
1513
|
{
|
|
@@ -1454,11 +1541,11 @@ var ImageXIcon = forwardRef31(
|
|
|
1454
1541
|
|
|
1455
1542
|
// src/icons/infoCircle.tsx
|
|
1456
1543
|
import { forwardRef as forwardRef32 } from "react";
|
|
1457
|
-
import { jsx as jsx33, jsxs as
|
|
1544
|
+
import { jsx as jsx33, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
1458
1545
|
var InfoCircleIcon = forwardRef32(
|
|
1459
1546
|
function InfoCircleIcon2(_a, ref) {
|
|
1460
1547
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1461
|
-
return /* @__PURE__ */
|
|
1548
|
+
return /* @__PURE__ */ jsxs19(
|
|
1462
1549
|
"svg",
|
|
1463
1550
|
__spreadProps(__spreadValues({
|
|
1464
1551
|
ref,
|
|
@@ -1496,11 +1583,11 @@ var InfoCircleIcon = forwardRef32(
|
|
|
1496
1583
|
|
|
1497
1584
|
// src/icons/lightbulb.tsx
|
|
1498
1585
|
import { forwardRef as forwardRef33 } from "react";
|
|
1499
|
-
import { jsx as jsx34, jsxs as
|
|
1586
|
+
import { jsx as jsx34, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
1500
1587
|
var LightbulbIcon = forwardRef33(
|
|
1501
1588
|
function LightbulbIcon2(_a, ref) {
|
|
1502
1589
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1503
|
-
return /* @__PURE__ */
|
|
1590
|
+
return /* @__PURE__ */ jsxs20(
|
|
1504
1591
|
"svg",
|
|
1505
1592
|
__spreadProps(__spreadValues({
|
|
1506
1593
|
ref,
|
|
@@ -1538,10 +1625,10 @@ var LightbulbIcon = forwardRef33(
|
|
|
1538
1625
|
|
|
1539
1626
|
// src/icons/lock.tsx
|
|
1540
1627
|
import { forwardRef as forwardRef34 } from "react";
|
|
1541
|
-
import { jsx as jsx35, jsxs as
|
|
1628
|
+
import { jsx as jsx35, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
1542
1629
|
var LockIcon = forwardRef34(function LockIcon2(_a, ref) {
|
|
1543
1630
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1544
|
-
return /* @__PURE__ */
|
|
1631
|
+
return /* @__PURE__ */ jsxs21(
|
|
1545
1632
|
"svg",
|
|
1546
1633
|
__spreadProps(__spreadValues({
|
|
1547
1634
|
ref,
|
|
@@ -1578,11 +1665,11 @@ var LockIcon = forwardRef34(function LockIcon2(_a, ref) {
|
|
|
1578
1665
|
|
|
1579
1666
|
// src/icons/logIn.tsx
|
|
1580
1667
|
import { forwardRef as forwardRef35 } from "react";
|
|
1581
|
-
import { jsx as jsx36, jsxs as
|
|
1668
|
+
import { jsx as jsx36, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
1582
1669
|
var LogInIcon = forwardRef35(
|
|
1583
1670
|
function LogInIcon2(_a, ref) {
|
|
1584
1671
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1585
|
-
return /* @__PURE__ */
|
|
1672
|
+
return /* @__PURE__ */ jsxs22(
|
|
1586
1673
|
"svg",
|
|
1587
1674
|
__spreadProps(__spreadValues({
|
|
1588
1675
|
ref,
|
|
@@ -1620,11 +1707,11 @@ var LogInIcon = forwardRef35(
|
|
|
1620
1707
|
|
|
1621
1708
|
// src/icons/magicWand.tsx
|
|
1622
1709
|
import { forwardRef as forwardRef36 } from "react";
|
|
1623
|
-
import { jsx as jsx37, jsxs as
|
|
1710
|
+
import { jsx as jsx37, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
1624
1711
|
var MagicWandIcon = forwardRef36(
|
|
1625
1712
|
function MagicWandIcon2(_a, ref) {
|
|
1626
1713
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1627
|
-
return /* @__PURE__ */
|
|
1714
|
+
return /* @__PURE__ */ jsxs23(
|
|
1628
1715
|
"svg",
|
|
1629
1716
|
__spreadProps(__spreadValues({
|
|
1630
1717
|
ref,
|
|
@@ -1662,10 +1749,10 @@ var MagicWandIcon = forwardRef36(
|
|
|
1662
1749
|
|
|
1663
1750
|
// src/icons/mail.tsx
|
|
1664
1751
|
import { forwardRef as forwardRef37 } from "react";
|
|
1665
|
-
import { jsx as jsx38, jsxs as
|
|
1752
|
+
import { jsx as jsx38, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
1666
1753
|
var MailIcon = forwardRef37(function MailIcon2(_a, ref) {
|
|
1667
1754
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1668
|
-
return /* @__PURE__ */
|
|
1755
|
+
return /* @__PURE__ */ jsxs24(
|
|
1669
1756
|
"svg",
|
|
1670
1757
|
__spreadProps(__spreadValues({
|
|
1671
1758
|
ref,
|
|
@@ -1732,11 +1819,11 @@ var MenuIcon = forwardRef38(function MenuIcon2(_a, ref) {
|
|
|
1732
1819
|
|
|
1733
1820
|
// src/icons/messageChatSquare.tsx
|
|
1734
1821
|
import { forwardRef as forwardRef39 } from "react";
|
|
1735
|
-
import { jsx as jsx40, jsxs as
|
|
1822
|
+
import { jsx as jsx40, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
1736
1823
|
var MessageChatSquareIcon = forwardRef39(
|
|
1737
1824
|
function MessageChatSquareIcon2(_a, ref) {
|
|
1738
1825
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1739
|
-
return /* @__PURE__ */
|
|
1826
|
+
return /* @__PURE__ */ jsxs25(
|
|
1740
1827
|
"svg",
|
|
1741
1828
|
__spreadProps(__spreadValues({
|
|
1742
1829
|
ref,
|
|
@@ -1774,11 +1861,11 @@ var MessageChatSquareIcon = forwardRef39(
|
|
|
1774
1861
|
|
|
1775
1862
|
// src/icons/messagePlusSquare.tsx
|
|
1776
1863
|
import { forwardRef as forwardRef40 } from "react";
|
|
1777
|
-
import { jsx as jsx41, jsxs as
|
|
1864
|
+
import { jsx as jsx41, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
1778
1865
|
var MessagePlusSquareIcon = forwardRef40(
|
|
1779
1866
|
function MessagePlusSquareIcon2(_a, ref) {
|
|
1780
1867
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1781
|
-
return /* @__PURE__ */
|
|
1868
|
+
return /* @__PURE__ */ jsxs26(
|
|
1782
1869
|
"svg",
|
|
1783
1870
|
__spreadProps(__spreadValues({
|
|
1784
1871
|
ref,
|
|
@@ -1816,11 +1903,11 @@ var MessagePlusSquareIcon = forwardRef40(
|
|
|
1816
1903
|
|
|
1817
1904
|
// src/icons/messageTextSquare.tsx
|
|
1818
1905
|
import { forwardRef as forwardRef41 } from "react";
|
|
1819
|
-
import { jsx as jsx42, jsxs as
|
|
1906
|
+
import { jsx as jsx42, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
1820
1907
|
var MessageTextSquareIcon = forwardRef41(
|
|
1821
1908
|
function MessageTextSquareIcon2(_a, ref) {
|
|
1822
1909
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1823
|
-
return /* @__PURE__ */
|
|
1910
|
+
return /* @__PURE__ */ jsxs27(
|
|
1824
1911
|
"svg",
|
|
1825
1912
|
__spreadProps(__spreadValues({
|
|
1826
1913
|
ref,
|
|
@@ -1858,11 +1945,11 @@ var MessageTextSquareIcon = forwardRef41(
|
|
|
1858
1945
|
|
|
1859
1946
|
// src/icons/microphone.tsx
|
|
1860
1947
|
import { forwardRef as forwardRef42 } from "react";
|
|
1861
|
-
import { jsx as jsx43, jsxs as
|
|
1948
|
+
import { jsx as jsx43, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
1862
1949
|
var MicrophoneIcon = forwardRef42(
|
|
1863
1950
|
function MicrophoneIcon2(_a, ref) {
|
|
1864
1951
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1865
|
-
return /* @__PURE__ */
|
|
1952
|
+
return /* @__PURE__ */ jsxs28(
|
|
1866
1953
|
"svg",
|
|
1867
1954
|
__spreadProps(__spreadValues({
|
|
1868
1955
|
ref,
|
|
@@ -1900,11 +1987,11 @@ var MicrophoneIcon = forwardRef42(
|
|
|
1900
1987
|
|
|
1901
1988
|
// src/icons/microphoneOff.tsx
|
|
1902
1989
|
import { forwardRef as forwardRef43 } from "react";
|
|
1903
|
-
import { jsx as jsx44, jsxs as
|
|
1990
|
+
import { jsx as jsx44, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
1904
1991
|
var MicrophoneOffIcon = forwardRef43(
|
|
1905
1992
|
function MicrophoneOffIcon2(_a, ref) {
|
|
1906
1993
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1907
|
-
return /* @__PURE__ */
|
|
1994
|
+
return /* @__PURE__ */ jsxs29(
|
|
1908
1995
|
"svg",
|
|
1909
1996
|
__spreadProps(__spreadValues({
|
|
1910
1997
|
ref,
|
|
@@ -1942,11 +2029,11 @@ var MicrophoneOffIcon = forwardRef43(
|
|
|
1942
2029
|
|
|
1943
2030
|
// src/icons/monitor.tsx
|
|
1944
2031
|
import { forwardRef as forwardRef44 } from "react";
|
|
1945
|
-
import { jsx as jsx45, jsxs as
|
|
2032
|
+
import { jsx as jsx45, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
1946
2033
|
var MonitorIcon = forwardRef44(
|
|
1947
2034
|
function MonitorIcon2(_a, ref) {
|
|
1948
2035
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1949
|
-
return /* @__PURE__ */
|
|
2036
|
+
return /* @__PURE__ */ jsxs30(
|
|
1950
2037
|
"svg",
|
|
1951
2038
|
__spreadProps(__spreadValues({
|
|
1952
2039
|
ref,
|
|
@@ -1984,11 +2071,11 @@ var MonitorIcon = forwardRef44(
|
|
|
1984
2071
|
|
|
1985
2072
|
// src/icons/notificationBox.tsx
|
|
1986
2073
|
import { forwardRef as forwardRef45 } from "react";
|
|
1987
|
-
import { jsx as jsx46, jsxs as
|
|
2074
|
+
import { jsx as jsx46, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
1988
2075
|
var NotificationBoxIcon = forwardRef45(
|
|
1989
2076
|
function NotificationBoxIcon2(_a, ref) {
|
|
1990
2077
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1991
|
-
return /* @__PURE__ */
|
|
2078
|
+
return /* @__PURE__ */ jsxs31(
|
|
1992
2079
|
"svg",
|
|
1993
2080
|
__spreadProps(__spreadValues({
|
|
1994
2081
|
ref,
|
|
@@ -2026,11 +2113,11 @@ var NotificationBoxIcon = forwardRef45(
|
|
|
2026
2113
|
|
|
2027
2114
|
// src/icons/pauseCircle.tsx
|
|
2028
2115
|
import { forwardRef as forwardRef46 } from "react";
|
|
2029
|
-
import { jsx as jsx47, jsxs as
|
|
2116
|
+
import { jsx as jsx47, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
2030
2117
|
var PauseCircleIcon = forwardRef46(
|
|
2031
2118
|
function PauseCircleIcon2(_a, ref) {
|
|
2032
2119
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2033
|
-
return /* @__PURE__ */
|
|
2120
|
+
return /* @__PURE__ */ jsxs32(
|
|
2034
2121
|
"svg",
|
|
2035
2122
|
__spreadProps(__spreadValues({
|
|
2036
2123
|
ref,
|
|
@@ -2068,11 +2155,11 @@ var PauseCircleIcon = forwardRef46(
|
|
|
2068
2155
|
|
|
2069
2156
|
// src/icons/phone.tsx
|
|
2070
2157
|
import { forwardRef as forwardRef47 } from "react";
|
|
2071
|
-
import { jsx as jsx48, jsxs as
|
|
2158
|
+
import { jsx as jsx48, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
2072
2159
|
var PhoneIcon = forwardRef47(
|
|
2073
2160
|
function PhoneIcon2(_a, ref) {
|
|
2074
2161
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2075
|
-
return /* @__PURE__ */
|
|
2162
|
+
return /* @__PURE__ */ jsxs33(
|
|
2076
2163
|
"svg",
|
|
2077
2164
|
__spreadProps(__spreadValues({
|
|
2078
2165
|
ref,
|
|
@@ -2110,11 +2197,11 @@ var PhoneIcon = forwardRef47(
|
|
|
2110
2197
|
|
|
2111
2198
|
// src/icons/pieChart.tsx
|
|
2112
2199
|
import { forwardRef as forwardRef48 } from "react";
|
|
2113
|
-
import { jsx as jsx49, jsxs as
|
|
2200
|
+
import { jsx as jsx49, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
2114
2201
|
var PieChartIcon = forwardRef48(
|
|
2115
2202
|
function PieChartIcon2(_a, ref) {
|
|
2116
2203
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2117
|
-
return /* @__PURE__ */
|
|
2204
|
+
return /* @__PURE__ */ jsxs34(
|
|
2118
2205
|
"svg",
|
|
2119
2206
|
__spreadProps(__spreadValues({
|
|
2120
2207
|
ref,
|
|
@@ -2163,11 +2250,11 @@ var PieChartIcon = forwardRef48(
|
|
|
2163
2250
|
|
|
2164
2251
|
// src/icons/playCircle.tsx
|
|
2165
2252
|
import { forwardRef as forwardRef49 } from "react";
|
|
2166
|
-
import { jsx as jsx50, jsxs as
|
|
2253
|
+
import { jsx as jsx50, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
2167
2254
|
var PlayCircleIcon = forwardRef49(
|
|
2168
2255
|
function PlayCircleIcon2(_a, ref) {
|
|
2169
2256
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2170
|
-
return /* @__PURE__ */
|
|
2257
|
+
return /* @__PURE__ */ jsxs35(
|
|
2171
2258
|
"svg",
|
|
2172
2259
|
__spreadProps(__spreadValues({
|
|
2173
2260
|
ref,
|
|
@@ -2246,11 +2333,11 @@ var PlusIcon = forwardRef50(function PlusIcon2(_a, ref) {
|
|
|
2246
2333
|
|
|
2247
2334
|
// src/icons/plusCircle.tsx
|
|
2248
2335
|
import { forwardRef as forwardRef51 } from "react";
|
|
2249
|
-
import { jsx as jsx52, jsxs as
|
|
2336
|
+
import { jsx as jsx52, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
2250
2337
|
var PlusCircleIcon = forwardRef51(
|
|
2251
2338
|
function PlusCircleIcon2(_a, ref) {
|
|
2252
2339
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2253
|
-
return /* @__PURE__ */
|
|
2340
|
+
return /* @__PURE__ */ jsxs36(
|
|
2254
2341
|
"svg",
|
|
2255
2342
|
__spreadProps(__spreadValues({
|
|
2256
2343
|
ref,
|
|
@@ -2288,11 +2375,11 @@ var PlusCircleIcon = forwardRef51(
|
|
|
2288
2375
|
|
|
2289
2376
|
// src/icons/puzzlePiece.tsx
|
|
2290
2377
|
import { forwardRef as forwardRef52 } from "react";
|
|
2291
|
-
import { jsx as jsx53, jsxs as
|
|
2378
|
+
import { jsx as jsx53, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
2292
2379
|
var PuzzlePieceIcon = forwardRef52(
|
|
2293
2380
|
function PuzzlePieceIcon2(_a, ref) {
|
|
2294
2381
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2295
|
-
return /* @__PURE__ */
|
|
2382
|
+
return /* @__PURE__ */ jsxs37(
|
|
2296
2383
|
"svg",
|
|
2297
2384
|
__spreadProps(__spreadValues({
|
|
2298
2385
|
ref,
|
|
@@ -2330,11 +2417,11 @@ var PuzzlePieceIcon = forwardRef52(
|
|
|
2330
2417
|
|
|
2331
2418
|
// src/icons/qrCode.tsx
|
|
2332
2419
|
import { forwardRef as forwardRef53 } from "react";
|
|
2333
|
-
import { jsx as jsx54, jsxs as
|
|
2420
|
+
import { jsx as jsx54, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
2334
2421
|
var QrCodeIcon = forwardRef53(
|
|
2335
2422
|
function QrCodeIcon2(_a, ref) {
|
|
2336
2423
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2337
|
-
return /* @__PURE__ */
|
|
2424
|
+
return /* @__PURE__ */ jsxs38(
|
|
2338
2425
|
"svg",
|
|
2339
2426
|
__spreadProps(__spreadValues({
|
|
2340
2427
|
ref,
|
|
@@ -2375,11 +2462,11 @@ var QrCodeIcon = forwardRef53(
|
|
|
2375
2462
|
|
|
2376
2463
|
// src/icons/receiptCheck.tsx
|
|
2377
2464
|
import { forwardRef as forwardRef54 } from "react";
|
|
2378
|
-
import { jsx as jsx55, jsxs as
|
|
2465
|
+
import { jsx as jsx55, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
2379
2466
|
var ReceiptCheckIcon = forwardRef54(
|
|
2380
2467
|
function ReceiptCheckIcon2(_a, ref) {
|
|
2381
2468
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2382
|
-
return /* @__PURE__ */
|
|
2469
|
+
return /* @__PURE__ */ jsxs39(
|
|
2383
2470
|
"svg",
|
|
2384
2471
|
__spreadProps(__spreadValues({
|
|
2385
2472
|
ref,
|
|
@@ -2417,11 +2504,11 @@ var ReceiptCheckIcon = forwardRef54(
|
|
|
2417
2504
|
|
|
2418
2505
|
// src/icons/recording.tsx
|
|
2419
2506
|
import { forwardRef as forwardRef55 } from "react";
|
|
2420
|
-
import { jsx as jsx56, jsxs as
|
|
2507
|
+
import { jsx as jsx56, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
2421
2508
|
var RecordingIcon = forwardRef55(
|
|
2422
2509
|
function RecordingIcon2(_a, ref) {
|
|
2423
2510
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2424
|
-
return /* @__PURE__ */
|
|
2511
|
+
return /* @__PURE__ */ jsxs40(
|
|
2425
2512
|
"svg",
|
|
2426
2513
|
__spreadProps(__spreadValues({
|
|
2427
2514
|
ref,
|
|
@@ -2523,11 +2610,11 @@ var RefreshCwIcon = forwardRef57(
|
|
|
2523
2610
|
|
|
2524
2611
|
// src/icons/rocket.tsx
|
|
2525
2612
|
import { forwardRef as forwardRef58 } from "react";
|
|
2526
|
-
import { jsx as jsx59, jsxs as
|
|
2613
|
+
import { jsx as jsx59, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
2527
2614
|
var RocketIcon = forwardRef58(
|
|
2528
2615
|
function RocketIcon2(_a, ref) {
|
|
2529
2616
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2530
|
-
return /* @__PURE__ */
|
|
2617
|
+
return /* @__PURE__ */ jsxs41(
|
|
2531
2618
|
"svg",
|
|
2532
2619
|
__spreadProps(__spreadValues({
|
|
2533
2620
|
ref,
|
|
@@ -2565,10 +2652,10 @@ var RocketIcon = forwardRef58(
|
|
|
2565
2652
|
|
|
2566
2653
|
// src/icons/save.tsx
|
|
2567
2654
|
import { forwardRef as forwardRef59 } from "react";
|
|
2568
|
-
import { jsx as jsx60, jsxs as
|
|
2655
|
+
import { jsx as jsx60, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
2569
2656
|
var SaveIcon = forwardRef59(function SaveIcon2(_a, ref) {
|
|
2570
2657
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2571
|
-
return /* @__PURE__ */
|
|
2658
|
+
return /* @__PURE__ */ jsxs42(
|
|
2572
2659
|
"svg",
|
|
2573
2660
|
__spreadProps(__spreadValues({
|
|
2574
2661
|
ref,
|
|
@@ -2580,7 +2667,7 @@ var SaveIcon = forwardRef59(function SaveIcon2(_a, ref) {
|
|
|
2580
2667
|
className
|
|
2581
2668
|
}, other), {
|
|
2582
2669
|
children: [
|
|
2583
|
-
duotone && /* @__PURE__ */
|
|
2670
|
+
duotone && /* @__PURE__ */ jsxs42("g", { opacity: "0.12", children: [
|
|
2584
2671
|
/* @__PURE__ */ jsx60(
|
|
2585
2672
|
"path",
|
|
2586
2673
|
{
|
|
@@ -2613,11 +2700,11 @@ var SaveIcon = forwardRef59(function SaveIcon2(_a, ref) {
|
|
|
2613
2700
|
|
|
2614
2701
|
// src/icons/search.tsx
|
|
2615
2702
|
import { forwardRef as forwardRef60 } from "react";
|
|
2616
|
-
import { jsx as jsx61, jsxs as
|
|
2703
|
+
import { jsx as jsx61, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
2617
2704
|
var SearchMdIcon = forwardRef60(
|
|
2618
2705
|
function SearchMdIcon2(_a, ref) {
|
|
2619
2706
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2620
|
-
return /* @__PURE__ */
|
|
2707
|
+
return /* @__PURE__ */ jsxs43(
|
|
2621
2708
|
"svg",
|
|
2622
2709
|
__spreadProps(__spreadValues({
|
|
2623
2710
|
ref,
|
|
@@ -2655,10 +2742,10 @@ var SearchMdIcon = forwardRef60(
|
|
|
2655
2742
|
|
|
2656
2743
|
// src/icons/send.tsx
|
|
2657
2744
|
import { forwardRef as forwardRef61 } from "react";
|
|
2658
|
-
import { jsx as jsx62, jsxs as
|
|
2745
|
+
import { jsx as jsx62, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
2659
2746
|
var SendIcon = forwardRef61(function SendIcon2(_a, ref) {
|
|
2660
2747
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2661
|
-
return /* @__PURE__ */
|
|
2748
|
+
return /* @__PURE__ */ jsxs44(
|
|
2662
2749
|
"svg",
|
|
2663
2750
|
__spreadProps(__spreadValues({
|
|
2664
2751
|
ref,
|
|
@@ -2695,11 +2782,11 @@ var SendIcon = forwardRef61(function SendIcon2(_a, ref) {
|
|
|
2695
2782
|
|
|
2696
2783
|
// src/icons/settings.tsx
|
|
2697
2784
|
import { forwardRef as forwardRef62 } from "react";
|
|
2698
|
-
import { jsx as jsx63, jsxs as
|
|
2785
|
+
import { jsx as jsx63, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
2699
2786
|
var SettingsIcon = forwardRef62(
|
|
2700
2787
|
function SettingsIcon2(_a, ref) {
|
|
2701
2788
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2702
|
-
return /* @__PURE__ */
|
|
2789
|
+
return /* @__PURE__ */ jsxs45(
|
|
2703
2790
|
"svg",
|
|
2704
2791
|
__spreadProps(__spreadValues({
|
|
2705
2792
|
ref,
|
|
@@ -2750,11 +2837,11 @@ var SettingsIcon = forwardRef62(
|
|
|
2750
2837
|
|
|
2751
2838
|
// src/icons/share.tsx
|
|
2752
2839
|
import { forwardRef as forwardRef63 } from "react";
|
|
2753
|
-
import { jsx as jsx64, jsxs as
|
|
2840
|
+
import { jsx as jsx64, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
2754
2841
|
var ShareIcon = forwardRef63(
|
|
2755
2842
|
function ShareIcon2(_a, ref) {
|
|
2756
2843
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2757
|
-
return /* @__PURE__ */
|
|
2844
|
+
return /* @__PURE__ */ jsxs46(
|
|
2758
2845
|
"svg",
|
|
2759
2846
|
__spreadProps(__spreadValues({
|
|
2760
2847
|
ref,
|
|
@@ -2766,7 +2853,7 @@ var ShareIcon = forwardRef63(
|
|
|
2766
2853
|
className
|
|
2767
2854
|
}, other), {
|
|
2768
2855
|
children: [
|
|
2769
|
-
duotone && /* @__PURE__ */
|
|
2856
|
+
duotone && /* @__PURE__ */ jsxs46("g", { opacity: "0.12", children: [
|
|
2770
2857
|
/* @__PURE__ */ jsx64(
|
|
2771
2858
|
"path",
|
|
2772
2859
|
{
|
|
@@ -2807,11 +2894,11 @@ var ShareIcon = forwardRef63(
|
|
|
2807
2894
|
|
|
2808
2895
|
// src/icons/skipBack.tsx
|
|
2809
2896
|
import { forwardRef as forwardRef64 } from "react";
|
|
2810
|
-
import { jsx as jsx65, jsxs as
|
|
2897
|
+
import { jsx as jsx65, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
2811
2898
|
var SkipBackIcon = forwardRef64(
|
|
2812
2899
|
function SkipBackIcon2(_a, ref) {
|
|
2813
2900
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2814
|
-
return /* @__PURE__ */
|
|
2901
|
+
return /* @__PURE__ */ jsxs47(
|
|
2815
2902
|
"svg",
|
|
2816
2903
|
__spreadProps(__spreadValues({
|
|
2817
2904
|
ref,
|
|
@@ -2849,11 +2936,11 @@ var SkipBackIcon = forwardRef64(
|
|
|
2849
2936
|
|
|
2850
2937
|
// src/icons/skipForward.tsx
|
|
2851
2938
|
import { forwardRef as forwardRef65 } from "react";
|
|
2852
|
-
import { jsx as jsx66, jsxs as
|
|
2939
|
+
import { jsx as jsx66, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
2853
2940
|
var SkipForwardIcon = forwardRef65(
|
|
2854
2941
|
function SkipForwardIcon2(_a, ref) {
|
|
2855
2942
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2856
|
-
return /* @__PURE__ */
|
|
2943
|
+
return /* @__PURE__ */ jsxs48(
|
|
2857
2944
|
"svg",
|
|
2858
2945
|
__spreadProps(__spreadValues({
|
|
2859
2946
|
ref,
|
|
@@ -2891,11 +2978,11 @@ var SkipForwardIcon = forwardRef65(
|
|
|
2891
2978
|
|
|
2892
2979
|
// src/icons/stars.tsx
|
|
2893
2980
|
import { forwardRef as forwardRef66 } from "react";
|
|
2894
|
-
import { jsx as jsx67, jsxs as
|
|
2981
|
+
import { jsx as jsx67, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
2895
2982
|
var StarsIcon = forwardRef66(
|
|
2896
2983
|
function StarsIcon2(_a, ref) {
|
|
2897
2984
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2898
|
-
return /* @__PURE__ */
|
|
2985
|
+
return /* @__PURE__ */ jsxs49(
|
|
2899
2986
|
"svg",
|
|
2900
2987
|
__spreadProps(__spreadValues({
|
|
2901
2988
|
ref,
|
|
@@ -2933,11 +3020,11 @@ var StarsIcon = forwardRef66(
|
|
|
2933
3020
|
|
|
2934
3021
|
// src/icons/trash.tsx
|
|
2935
3022
|
import { forwardRef as forwardRef67 } from "react";
|
|
2936
|
-
import { jsx as jsx68, jsxs as
|
|
3023
|
+
import { jsx as jsx68, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
2937
3024
|
var TrashIcon = forwardRef67(
|
|
2938
3025
|
function TrashIcon2(_a, ref) {
|
|
2939
3026
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2940
|
-
return /* @__PURE__ */
|
|
3027
|
+
return /* @__PURE__ */ jsxs50(
|
|
2941
3028
|
"svg",
|
|
2942
3029
|
__spreadProps(__spreadValues({
|
|
2943
3030
|
ref,
|
|
@@ -3039,10 +3126,10 @@ var TrendUpIcon = forwardRef69(
|
|
|
3039
3126
|
|
|
3040
3127
|
// src/icons/user.tsx
|
|
3041
3128
|
import { forwardRef as forwardRef70 } from "react";
|
|
3042
|
-
import { jsx as jsx71, jsxs as
|
|
3129
|
+
import { jsx as jsx71, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
3043
3130
|
var UserIcon = forwardRef70(function UserIcon2(_a, ref) {
|
|
3044
3131
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3045
|
-
return /* @__PURE__ */
|
|
3132
|
+
return /* @__PURE__ */ jsxs51(
|
|
3046
3133
|
"svg",
|
|
3047
3134
|
__spreadProps(__spreadValues({
|
|
3048
3135
|
ref,
|
|
@@ -3079,11 +3166,11 @@ var UserIcon = forwardRef70(function UserIcon2(_a, ref) {
|
|
|
3079
3166
|
|
|
3080
3167
|
// src/icons/userPlus.tsx
|
|
3081
3168
|
import { forwardRef as forwardRef71 } from "react";
|
|
3082
|
-
import { jsx as jsx72, jsxs as
|
|
3169
|
+
import { jsx as jsx72, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
3083
3170
|
var UserPlusIcon = forwardRef71(
|
|
3084
3171
|
function UserPlusIcon2(_a, ref) {
|
|
3085
3172
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3086
|
-
return /* @__PURE__ */
|
|
3173
|
+
return /* @__PURE__ */ jsxs52(
|
|
3087
3174
|
"svg",
|
|
3088
3175
|
__spreadProps(__spreadValues({
|
|
3089
3176
|
ref,
|
|
@@ -3121,11 +3208,11 @@ var UserPlusIcon = forwardRef71(
|
|
|
3121
3208
|
|
|
3122
3209
|
// src/icons/userX.tsx
|
|
3123
3210
|
import { forwardRef as forwardRef72 } from "react";
|
|
3124
|
-
import { jsx as jsx73, jsxs as
|
|
3211
|
+
import { jsx as jsx73, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
3125
3212
|
var UserXIcon = forwardRef72(
|
|
3126
3213
|
function UserXIcon2(_a, ref) {
|
|
3127
3214
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3128
|
-
return /* @__PURE__ */
|
|
3215
|
+
return /* @__PURE__ */ jsxs53(
|
|
3129
3216
|
"svg",
|
|
3130
3217
|
__spreadProps(__spreadValues({
|
|
3131
3218
|
ref,
|
|
@@ -3163,11 +3250,11 @@ var UserXIcon = forwardRef72(
|
|
|
3163
3250
|
|
|
3164
3251
|
// src/icons/users.tsx
|
|
3165
3252
|
import { forwardRef as forwardRef73 } from "react";
|
|
3166
|
-
import { jsx as jsx74, jsxs as
|
|
3253
|
+
import { jsx as jsx74, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
3167
3254
|
var UsersIcon = forwardRef73(
|
|
3168
3255
|
function UsersIcon2(_a, ref) {
|
|
3169
3256
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3170
|
-
return /* @__PURE__ */
|
|
3257
|
+
return /* @__PURE__ */ jsxs54(
|
|
3171
3258
|
"svg",
|
|
3172
3259
|
__spreadProps(__spreadValues({
|
|
3173
3260
|
ref,
|
|
@@ -3205,11 +3292,11 @@ var UsersIcon = forwardRef73(
|
|
|
3205
3292
|
|
|
3206
3293
|
// src/icons/usersPlus.tsx
|
|
3207
3294
|
import { forwardRef as forwardRef74 } from "react";
|
|
3208
|
-
import { jsx as jsx75, jsxs as
|
|
3295
|
+
import { jsx as jsx75, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
3209
3296
|
var UsersPlusIcon = forwardRef74(
|
|
3210
3297
|
function UsersPlusIcon2(_a, ref) {
|
|
3211
3298
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3212
|
-
return /* @__PURE__ */
|
|
3299
|
+
return /* @__PURE__ */ jsxs55(
|
|
3213
3300
|
"svg",
|
|
3214
3301
|
__spreadProps(__spreadValues({
|
|
3215
3302
|
ref,
|
|
@@ -3247,11 +3334,11 @@ var UsersPlusIcon = forwardRef74(
|
|
|
3247
3334
|
|
|
3248
3335
|
// src/icons/usersX.tsx
|
|
3249
3336
|
import { forwardRef as forwardRef75 } from "react";
|
|
3250
|
-
import { jsx as jsx76, jsxs as
|
|
3337
|
+
import { jsx as jsx76, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
3251
3338
|
var UsersXIcon = forwardRef75(
|
|
3252
3339
|
function UsersXIcon2(_a, ref) {
|
|
3253
3340
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3254
|
-
return /* @__PURE__ */
|
|
3341
|
+
return /* @__PURE__ */ jsxs56(
|
|
3255
3342
|
"svg",
|
|
3256
3343
|
__spreadProps(__spreadValues({
|
|
3257
3344
|
ref,
|
|
@@ -3289,11 +3376,11 @@ var UsersXIcon = forwardRef75(
|
|
|
3289
3376
|
|
|
3290
3377
|
// src/icons/videoRecorder.tsx
|
|
3291
3378
|
import { forwardRef as forwardRef76 } from "react";
|
|
3292
|
-
import { jsx as jsx77, jsxs as
|
|
3379
|
+
import { jsx as jsx77, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
3293
3380
|
var VideoRecorderIcon = forwardRef76(
|
|
3294
3381
|
function VideoRecorderIcon2(_a, ref) {
|
|
3295
3382
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3296
|
-
return /* @__PURE__ */
|
|
3383
|
+
return /* @__PURE__ */ jsxs57(
|
|
3297
3384
|
"svg",
|
|
3298
3385
|
__spreadProps(__spreadValues({
|
|
3299
3386
|
ref,
|
|
@@ -3346,11 +3433,11 @@ var VideoRecorderIcon = forwardRef76(
|
|
|
3346
3433
|
|
|
3347
3434
|
// src/icons/videoRecorderOff.tsx
|
|
3348
3435
|
import { forwardRef as forwardRef77 } from "react";
|
|
3349
|
-
import { jsx as jsx78, jsxs as
|
|
3436
|
+
import { jsx as jsx78, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
3350
3437
|
var VideoRecorderOffIcon = forwardRef77(
|
|
3351
3438
|
function VideoRecorderOffIcon2(_a, ref) {
|
|
3352
3439
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3353
|
-
return /* @__PURE__ */
|
|
3440
|
+
return /* @__PURE__ */ jsxs58(
|
|
3354
3441
|
"svg",
|
|
3355
3442
|
__spreadProps(__spreadValues({
|
|
3356
3443
|
ref,
|
|
@@ -3392,11 +3479,11 @@ var VideoRecorderOffIcon = forwardRef77(
|
|
|
3392
3479
|
|
|
3393
3480
|
// src/icons/volumeMax.tsx
|
|
3394
3481
|
import { forwardRef as forwardRef78 } from "react";
|
|
3395
|
-
import { jsx as jsx79, jsxs as
|
|
3482
|
+
import { jsx as jsx79, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
3396
3483
|
var VolumeMaxIcon = forwardRef78(
|
|
3397
3484
|
function VolumeMaxIcon2(_a, ref) {
|
|
3398
3485
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3399
|
-
return /* @__PURE__ */
|
|
3486
|
+
return /* @__PURE__ */ jsxs59(
|
|
3400
3487
|
"svg",
|
|
3401
3488
|
__spreadProps(__spreadValues({
|
|
3402
3489
|
ref,
|
|
@@ -3434,11 +3521,11 @@ var VolumeMaxIcon = forwardRef78(
|
|
|
3434
3521
|
|
|
3435
3522
|
// src/icons/volumeX.tsx
|
|
3436
3523
|
import { forwardRef as forwardRef79 } from "react";
|
|
3437
|
-
import { jsx as jsx80, jsxs as
|
|
3524
|
+
import { jsx as jsx80, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
3438
3525
|
var VolumeXIcon = forwardRef79(
|
|
3439
3526
|
function VolumeXIcon2(_a, ref) {
|
|
3440
3527
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3441
|
-
return /* @__PURE__ */
|
|
3528
|
+
return /* @__PURE__ */ jsxs60(
|
|
3442
3529
|
"svg",
|
|
3443
3530
|
__spreadProps(__spreadValues({
|
|
3444
3531
|
ref,
|
|
@@ -3476,11 +3563,11 @@ var VolumeXIcon = forwardRef79(
|
|
|
3476
3563
|
|
|
3477
3564
|
// src/icons/xCircle.tsx
|
|
3478
3565
|
import { forwardRef as forwardRef80 } from "react";
|
|
3479
|
-
import { jsx as jsx81, jsxs as
|
|
3566
|
+
import { jsx as jsx81, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
3480
3567
|
var XCircleIcon = forwardRef80(
|
|
3481
3568
|
function XCircleIcon2(_a, ref) {
|
|
3482
3569
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3483
|
-
return /* @__PURE__ */
|
|
3570
|
+
return /* @__PURE__ */ jsxs61(
|
|
3484
3571
|
"svg",
|
|
3485
3572
|
__spreadProps(__spreadValues({
|
|
3486
3573
|
ref,
|
|
@@ -3547,9 +3634,269 @@ var XCloseIcon = forwardRef81(
|
|
|
3547
3634
|
);
|
|
3548
3635
|
}
|
|
3549
3636
|
);
|
|
3637
|
+
|
|
3638
|
+
// src/components/Calendar/Calendar.tsx
|
|
3639
|
+
import { jsx as jsx83 } from "react/jsx-runtime";
|
|
3640
|
+
function Calendar(_a) {
|
|
3641
|
+
var _b = _a, {
|
|
3642
|
+
className,
|
|
3643
|
+
classNames,
|
|
3644
|
+
showOutsideDays = true
|
|
3645
|
+
} = _b, props = __objRest(_b, [
|
|
3646
|
+
"className",
|
|
3647
|
+
"classNames",
|
|
3648
|
+
"showOutsideDays"
|
|
3649
|
+
]);
|
|
3650
|
+
return /* @__PURE__ */ jsx83(
|
|
3651
|
+
DayPicker,
|
|
3652
|
+
__spreadValues({
|
|
3653
|
+
showOutsideDays,
|
|
3654
|
+
className: cn("p-4", className),
|
|
3655
|
+
classNames: __spreadValues({
|
|
3656
|
+
months: "flex flex-col sm:flex-row space-y-4 sm:space-x-4 sm:space-y-0",
|
|
3657
|
+
month: "space-y-4",
|
|
3658
|
+
caption: "flex justify-center pt-1 relative items-center",
|
|
3659
|
+
caption_label: "text-sm font-medium",
|
|
3660
|
+
nav: "space-x-1 flex items-center",
|
|
3661
|
+
nav_button: cn(
|
|
3662
|
+
buttonVariants({ variant: "outline" }),
|
|
3663
|
+
iconButtonSizes({ size: "xs" })
|
|
3664
|
+
),
|
|
3665
|
+
nav_button_previous: "absolute left-1",
|
|
3666
|
+
nav_button_next: "absolute right-1",
|
|
3667
|
+
table: "w-full border-collapse space-y-1",
|
|
3668
|
+
head_row: "flex",
|
|
3669
|
+
head_cell: "text-xs text-gray-700 rounded-md w-8 font-normal",
|
|
3670
|
+
row: "flex w-full mt-2",
|
|
3671
|
+
cell: "text-center text-sm text-gray-1000 p-0 relative [&:has([aria-selected])]:bg-blue-100 first:[&:has([aria-selected])]:rounded-l-md last:[&:has([aria-selected])]:rounded-r-md focus-within:relative focus-within:z-20",
|
|
3672
|
+
day: "h-8 w-8 p-0 cursor-pointer rounded-md [&:not([aria-selected])]:hover:bg-gray-100 aria-selected:opacity-100",
|
|
3673
|
+
day_selected: "bg-blue-700 text-white hover:bg-blue-700 hover:text-white",
|
|
3674
|
+
day_outside: "text-gray-700 opacity-50",
|
|
3675
|
+
day_disabled: "text-gray-700 opacity-50",
|
|
3676
|
+
day_range_middle: "aria-selected:bg-blue-100 aria-selected:text-blue-700",
|
|
3677
|
+
day_hidden: "invisible"
|
|
3678
|
+
}, classNames),
|
|
3679
|
+
components: {
|
|
3680
|
+
IconLeft: (_a2) => {
|
|
3681
|
+
var props2 = __objRest(_a2, []);
|
|
3682
|
+
return /* @__PURE__ */ jsx83(ChevronLeftIcon, { className: "h-3 w-3" });
|
|
3683
|
+
},
|
|
3684
|
+
IconRight: (_b2) => {
|
|
3685
|
+
var props2 = __objRest(_b2, []);
|
|
3686
|
+
return /* @__PURE__ */ jsx83(ChevronRightIcon, { className: "h-3 w-3" });
|
|
3687
|
+
}
|
|
3688
|
+
}
|
|
3689
|
+
}, props)
|
|
3690
|
+
);
|
|
3691
|
+
}
|
|
3692
|
+
Calendar.displayName = "Calendar";
|
|
3693
|
+
|
|
3694
|
+
// src/components/Dialog/Dialog.tsx
|
|
3695
|
+
import * as React4 from "react";
|
|
3696
|
+
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
3697
|
+
import { jsx as jsx84, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
3698
|
+
var Dialog = DialogPrimitive.Root;
|
|
3699
|
+
var DialogTrigger = DialogPrimitive.Trigger;
|
|
3700
|
+
var DialogPortal = (_a) => {
|
|
3701
|
+
var _b = _a, {
|
|
3702
|
+
className
|
|
3703
|
+
} = _b, props = __objRest(_b, [
|
|
3704
|
+
"className"
|
|
3705
|
+
]);
|
|
3706
|
+
return /* @__PURE__ */ jsx84(DialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
|
|
3707
|
+
};
|
|
3708
|
+
DialogPortal.displayName = DialogPrimitive.Portal.displayName;
|
|
3709
|
+
var DialogOverlay = React4.forwardRef((_a, ref) => {
|
|
3710
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3711
|
+
return /* @__PURE__ */ jsx84(
|
|
3712
|
+
DialogPrimitive.Overlay,
|
|
3713
|
+
__spreadValues({
|
|
3714
|
+
ref,
|
|
3715
|
+
className: cn(
|
|
3716
|
+
"fixed inset-0 z-50 bg-gray-1000/25 backdrop-blur-sm data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
|
|
3717
|
+
className
|
|
3718
|
+
)
|
|
3719
|
+
}, props)
|
|
3720
|
+
);
|
|
3721
|
+
});
|
|
3722
|
+
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
|
|
3723
|
+
var DialogContent = React4.forwardRef((_a, ref) => {
|
|
3724
|
+
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
3725
|
+
return /* @__PURE__ */ jsxs62(DialogPortal, { children: [
|
|
3726
|
+
/* @__PURE__ */ jsx84(DialogOverlay, {}),
|
|
3727
|
+
/* @__PURE__ */ jsxs62(
|
|
3728
|
+
DialogPrimitive.Content,
|
|
3729
|
+
__spreadProps(__spreadValues({
|
|
3730
|
+
ref,
|
|
3731
|
+
className: cn(
|
|
3732
|
+
"fixed left-[50%] top-[50%] z-50 grid w-full max-w-[400px] translate-x-[-50%] translate-y-[-50%] gap-6 border bg-white p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg md:w-full",
|
|
3733
|
+
className
|
|
3734
|
+
)
|
|
3735
|
+
}, props), {
|
|
3736
|
+
children: [
|
|
3737
|
+
children,
|
|
3738
|
+
/* @__PURE__ */ jsxs62(
|
|
3739
|
+
DialogPrimitive.Close,
|
|
3740
|
+
{
|
|
3741
|
+
className: cn(
|
|
3742
|
+
buttonVariants({ variant: "secondary" }),
|
|
3743
|
+
iconButtonSizes({ size: "xs" }),
|
|
3744
|
+
"absolute right-6 top-6"
|
|
3745
|
+
),
|
|
3746
|
+
children: [
|
|
3747
|
+
/* @__PURE__ */ jsx84(XCloseIcon, { className: "h-3 w-3" }),
|
|
3748
|
+
/* @__PURE__ */ jsx84("span", { className: "sr-only", children: "Close" })
|
|
3749
|
+
]
|
|
3750
|
+
}
|
|
3751
|
+
)
|
|
3752
|
+
]
|
|
3753
|
+
})
|
|
3754
|
+
)
|
|
3755
|
+
] });
|
|
3756
|
+
});
|
|
3757
|
+
DialogContent.displayName = DialogPrimitive.Content.displayName;
|
|
3758
|
+
var DialogHeader = (_a) => {
|
|
3759
|
+
var _b = _a, {
|
|
3760
|
+
className
|
|
3761
|
+
} = _b, props = __objRest(_b, [
|
|
3762
|
+
"className"
|
|
3763
|
+
]);
|
|
3764
|
+
return /* @__PURE__ */ jsx84(
|
|
3765
|
+
"div",
|
|
3766
|
+
__spreadValues({
|
|
3767
|
+
className: cn(
|
|
3768
|
+
"flex flex-col space-y-1.5 text-center sm:text-left",
|
|
3769
|
+
className
|
|
3770
|
+
)
|
|
3771
|
+
}, props)
|
|
3772
|
+
);
|
|
3773
|
+
};
|
|
3774
|
+
DialogHeader.displayName = "DialogHeader";
|
|
3775
|
+
var DialogFooter = (_a) => {
|
|
3776
|
+
var _b = _a, {
|
|
3777
|
+
className
|
|
3778
|
+
} = _b, props = __objRest(_b, [
|
|
3779
|
+
"className"
|
|
3780
|
+
]);
|
|
3781
|
+
return /* @__PURE__ */ jsx84(
|
|
3782
|
+
"div",
|
|
3783
|
+
__spreadValues({
|
|
3784
|
+
className: cn(
|
|
3785
|
+
"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
|
|
3786
|
+
className
|
|
3787
|
+
)
|
|
3788
|
+
}, props)
|
|
3789
|
+
);
|
|
3790
|
+
};
|
|
3791
|
+
DialogFooter.displayName = "DialogFooter";
|
|
3792
|
+
var DialogTitle = React4.forwardRef((_a, ref) => {
|
|
3793
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3794
|
+
return /* @__PURE__ */ jsx84(
|
|
3795
|
+
DialogPrimitive.Title,
|
|
3796
|
+
__spreadValues({
|
|
3797
|
+
ref,
|
|
3798
|
+
className: cn("text-lg text-gray-1000 font-semibold", className)
|
|
3799
|
+
}, props)
|
|
3800
|
+
);
|
|
3801
|
+
});
|
|
3802
|
+
DialogTitle.displayName = DialogPrimitive.Title.displayName;
|
|
3803
|
+
var DialogDescription = React4.forwardRef((_a, ref) => {
|
|
3804
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3805
|
+
return /* @__PURE__ */ jsx84(
|
|
3806
|
+
DialogPrimitive.Description,
|
|
3807
|
+
__spreadValues({
|
|
3808
|
+
ref,
|
|
3809
|
+
className: cn("text-sm text-gray-700", className)
|
|
3810
|
+
}, props)
|
|
3811
|
+
);
|
|
3812
|
+
});
|
|
3813
|
+
DialogDescription.displayName = DialogPrimitive.Description.displayName;
|
|
3814
|
+
|
|
3815
|
+
// src/components/Popover/Popover.tsx
|
|
3816
|
+
import * as React5 from "react";
|
|
3817
|
+
import * as PopoverPrimitive from "@radix-ui/react-popover";
|
|
3818
|
+
import { jsx as jsx85 } from "react/jsx-runtime";
|
|
3819
|
+
var Popover = PopoverPrimitive.Root;
|
|
3820
|
+
var PopoverTrigger = PopoverPrimitive.Trigger;
|
|
3821
|
+
var PopoverContent = React5.forwardRef((_a, ref) => {
|
|
3822
|
+
var _b = _a, { className, align = "center", sideOffset = 4 } = _b, props = __objRest(_b, ["className", "align", "sideOffset"]);
|
|
3823
|
+
return /* @__PURE__ */ jsx85(PopoverPrimitive.Portal, { children: /* @__PURE__ */ jsx85(
|
|
3824
|
+
PopoverPrimitive.Content,
|
|
3825
|
+
__spreadValues({
|
|
3826
|
+
ref,
|
|
3827
|
+
align,
|
|
3828
|
+
sideOffset,
|
|
3829
|
+
className: cn(
|
|
3830
|
+
"z-50 w-72 rounded-md border bg-white p-4 text-gray-1000 shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
|
|
3831
|
+
className
|
|
3832
|
+
)
|
|
3833
|
+
}, props)
|
|
3834
|
+
) });
|
|
3835
|
+
});
|
|
3836
|
+
PopoverContent.displayName = PopoverPrimitive.Content.displayName;
|
|
3837
|
+
|
|
3838
|
+
// src/components/Tabs/Tabs.tsx
|
|
3839
|
+
import * as React6 from "react";
|
|
3840
|
+
import * as TabsPrimitive from "@radix-ui/react-tabs";
|
|
3841
|
+
import { jsx as jsx86 } from "react/jsx-runtime";
|
|
3842
|
+
var Tabs = TabsPrimitive.Root;
|
|
3843
|
+
var TabsList = React6.forwardRef((_a, ref) => {
|
|
3844
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3845
|
+
return /* @__PURE__ */ jsx86(
|
|
3846
|
+
TabsPrimitive.List,
|
|
3847
|
+
__spreadValues({
|
|
3848
|
+
ref,
|
|
3849
|
+
className: cn(
|
|
3850
|
+
"inline-flex items-center justify-center gap-2 rounded-lg p-1.5 bg-gray-50 text-gray-700",
|
|
3851
|
+
className
|
|
3852
|
+
)
|
|
3853
|
+
}, props)
|
|
3854
|
+
);
|
|
3855
|
+
});
|
|
3856
|
+
TabsList.displayName = TabsPrimitive.List.displayName;
|
|
3857
|
+
var TabsTrigger = React6.forwardRef((_a, ref) => {
|
|
3858
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3859
|
+
return /* @__PURE__ */ jsx86(
|
|
3860
|
+
TabsPrimitive.Trigger,
|
|
3861
|
+
__spreadValues({
|
|
3862
|
+
ref,
|
|
3863
|
+
className: cn(
|
|
3864
|
+
"inline-flex items-center justify-center whitespace-nowrap rounded-md px-3 py-1.5 text-sm font-semibold ring-offset-white transition-all",
|
|
3865
|
+
"hover:bg-gray-100 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-blue-700 focus-visible:ring-offset-2",
|
|
3866
|
+
"data-[state=active]:bg-white data-[state=active]:text-blue-700 data-[state=active]:shadow-sm",
|
|
3867
|
+
"disabled:pointer-events-none disabled:opacity-50",
|
|
3868
|
+
className
|
|
3869
|
+
)
|
|
3870
|
+
}, props)
|
|
3871
|
+
);
|
|
3872
|
+
});
|
|
3873
|
+
TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
|
|
3874
|
+
var TabsContent = React6.forwardRef((_a, ref) => {
|
|
3875
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3876
|
+
return /* @__PURE__ */ jsx86(
|
|
3877
|
+
TabsPrimitive.Content,
|
|
3878
|
+
__spreadValues({
|
|
3879
|
+
ref,
|
|
3880
|
+
className: cn(
|
|
3881
|
+
"mt-2 ring-offset-white focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-blue-700 focus-visible:ring-offset-2",
|
|
3882
|
+
className
|
|
3883
|
+
)
|
|
3884
|
+
}, props)
|
|
3885
|
+
);
|
|
3886
|
+
});
|
|
3887
|
+
TabsContent.displayName = TabsPrimitive.Content.displayName;
|
|
3550
3888
|
export {
|
|
3551
3889
|
ActivityIcon,
|
|
3552
3890
|
AlertCircleIcon,
|
|
3891
|
+
AlertDialog,
|
|
3892
|
+
AlertDialogAction,
|
|
3893
|
+
AlertDialogCancel,
|
|
3894
|
+
AlertDialogContent,
|
|
3895
|
+
AlertDialogDescription,
|
|
3896
|
+
AlertDialogFooter,
|
|
3897
|
+
AlertDialogHeader,
|
|
3898
|
+
AlertDialogTitle,
|
|
3899
|
+
AlertDialogTrigger,
|
|
3553
3900
|
ArrowDownIcon,
|
|
3554
3901
|
ArrowLeftIcon,
|
|
3555
3902
|
ArrowRightIcon,
|
|
@@ -3557,6 +3904,7 @@ export {
|
|
|
3557
3904
|
Badge,
|
|
3558
3905
|
BellIcon,
|
|
3559
3906
|
Button,
|
|
3907
|
+
Calendar,
|
|
3560
3908
|
CalendarCheckIcon,
|
|
3561
3909
|
CalendarIcon,
|
|
3562
3910
|
CalendarPlusIcon,
|
|
@@ -3569,6 +3917,13 @@ export {
|
|
|
3569
3917
|
ChevronUpIcon,
|
|
3570
3918
|
CopyIcon,
|
|
3571
3919
|
CursorClickIcon,
|
|
3920
|
+
Dialog,
|
|
3921
|
+
DialogContent,
|
|
3922
|
+
DialogDescription,
|
|
3923
|
+
DialogFooter,
|
|
3924
|
+
DialogHeader,
|
|
3925
|
+
DialogTitle,
|
|
3926
|
+
DialogTrigger,
|
|
3572
3927
|
DownloadIcon,
|
|
3573
3928
|
EditIcon,
|
|
3574
3929
|
ExpandIcon,
|
|
@@ -3599,6 +3954,9 @@ export {
|
|
|
3599
3954
|
PlayCircleIcon,
|
|
3600
3955
|
PlusCircleIcon,
|
|
3601
3956
|
PlusIcon,
|
|
3957
|
+
Popover,
|
|
3958
|
+
PopoverContent,
|
|
3959
|
+
PopoverTrigger,
|
|
3602
3960
|
PuzzlePieceIcon,
|
|
3603
3961
|
QrCodeIcon,
|
|
3604
3962
|
ReceiptCheckIcon,
|
|
@@ -3632,5 +3990,8 @@ export {
|
|
|
3632
3990
|
VolumeMaxIcon,
|
|
3633
3991
|
VolumeXIcon,
|
|
3634
3992
|
XCircleIcon,
|
|
3635
|
-
XCloseIcon
|
|
3993
|
+
XCloseIcon,
|
|
3994
|
+
buttonSizes,
|
|
3995
|
+
buttonVariants,
|
|
3996
|
+
iconButtonSizes
|
|
3636
3997
|
};
|