@snapcall/design-system 1.1.1 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +75 -12
- package/dist/index.d.ts +75 -12
- package/dist/index.js +1032 -562
- package/dist/index.mjs +872 -430
- package/dist/tailwind.config.js +11 -1
- package/dist/tailwind.css +1 -1
- package/package.json +30 -22
package/dist/index.mjs
CHANGED
|
@@ -30,10 +30,41 @@ var __objRest = (source, exclude) => {
|
|
|
30
30
|
return target;
|
|
31
31
|
};
|
|
32
32
|
|
|
33
|
-
// src/components/
|
|
34
|
-
import
|
|
35
|
-
import
|
|
36
|
-
|
|
33
|
+
// src/components/Accordion/Accordion.tsx
|
|
34
|
+
import React from "react";
|
|
35
|
+
import * as AccordionPrimitive from "@radix-ui/react-accordion";
|
|
36
|
+
|
|
37
|
+
// src/icons/chevronDown.tsx
|
|
38
|
+
import { forwardRef } from "react";
|
|
39
|
+
import { jsx } from "react/jsx-runtime";
|
|
40
|
+
var ChevronDownIcon = forwardRef(
|
|
41
|
+
function ChevronDownIcon2(_a, ref) {
|
|
42
|
+
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
43
|
+
return /* @__PURE__ */ jsx(
|
|
44
|
+
"svg",
|
|
45
|
+
__spreadProps(__spreadValues({
|
|
46
|
+
ref,
|
|
47
|
+
width: size,
|
|
48
|
+
height: size,
|
|
49
|
+
viewBox: "0 0 24 24",
|
|
50
|
+
fill: "none",
|
|
51
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
52
|
+
className
|
|
53
|
+
}, other), {
|
|
54
|
+
children: /* @__PURE__ */ jsx(
|
|
55
|
+
"path",
|
|
56
|
+
{
|
|
57
|
+
d: "M6 9L12 15L18 9",
|
|
58
|
+
stroke: "currentColor",
|
|
59
|
+
strokeWidth: "2",
|
|
60
|
+
strokeLinecap: "round",
|
|
61
|
+
strokeLinejoin: "round"
|
|
62
|
+
}
|
|
63
|
+
)
|
|
64
|
+
})
|
|
65
|
+
);
|
|
66
|
+
}
|
|
67
|
+
);
|
|
37
68
|
|
|
38
69
|
// src/utils/cn.ts
|
|
39
70
|
import { clsx } from "clsx";
|
|
@@ -42,8 +73,66 @@ function cn(...inputs) {
|
|
|
42
73
|
return twMerge(clsx(inputs));
|
|
43
74
|
}
|
|
44
75
|
|
|
76
|
+
// src/components/Accordion/Accordion.tsx
|
|
77
|
+
import { jsx as jsx2, jsxs } from "react/jsx-runtime";
|
|
78
|
+
var AccordionItem = AccordionPrimitive.Item;
|
|
79
|
+
var Accordion = AccordionPrimitive.Root;
|
|
80
|
+
var AccordionTrigger2 = React.forwardRef((_a, forwardedRef) => {
|
|
81
|
+
var _b = _a, { children, className, icon } = _b, props = __objRest(_b, ["children", "className", "icon"]);
|
|
82
|
+
return /* @__PURE__ */ jsx2(AccordionPrimitive.Header, { children: /* @__PURE__ */ jsxs(
|
|
83
|
+
AccordionPrimitive.Trigger,
|
|
84
|
+
__spreadProps(__spreadValues({
|
|
85
|
+
className: cn(
|
|
86
|
+
"flex w-full rounded-lg items-center hover:bg-blue-100 group text-sm p-2 font-semibold text-gray-1000",
|
|
87
|
+
className
|
|
88
|
+
)
|
|
89
|
+
}, props), {
|
|
90
|
+
ref: forwardedRef,
|
|
91
|
+
children: [
|
|
92
|
+
icon && React.cloneElement(icon, {
|
|
93
|
+
size: 18,
|
|
94
|
+
className: cn("flex-shrink-0 mr-2.5", icon.props.className)
|
|
95
|
+
}),
|
|
96
|
+
/* @__PURE__ */ jsx2("span", { className: "text-left truncate grow", children }),
|
|
97
|
+
/* @__PURE__ */ jsx2(
|
|
98
|
+
ChevronDownIcon,
|
|
99
|
+
{
|
|
100
|
+
size: 16,
|
|
101
|
+
className: "flex-shrink-0 transition-transform text-gray-1000 group-data-[state=open]:rotate-180",
|
|
102
|
+
"aria-hidden": true
|
|
103
|
+
}
|
|
104
|
+
)
|
|
105
|
+
]
|
|
106
|
+
})
|
|
107
|
+
) });
|
|
108
|
+
});
|
|
109
|
+
AccordionTrigger2.displayName = AccordionPrimitive.AccordionTrigger.displayName;
|
|
110
|
+
var AccordionContent = React.forwardRef((_a, forwardedRef) => {
|
|
111
|
+
var _b = _a, { children, className } = _b, props = __objRest(_b, ["children", "className"]);
|
|
112
|
+
return /* @__PURE__ */ jsx2(
|
|
113
|
+
AccordionPrimitive.Content,
|
|
114
|
+
__spreadProps(__spreadValues({
|
|
115
|
+
className: cn(
|
|
116
|
+
"overflow-hidden data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down",
|
|
117
|
+
className
|
|
118
|
+
)
|
|
119
|
+
}, props), {
|
|
120
|
+
ref: forwardedRef,
|
|
121
|
+
children: /* @__PURE__ */ jsx2("div", { className: "pb-2", children })
|
|
122
|
+
})
|
|
123
|
+
);
|
|
124
|
+
});
|
|
125
|
+
AccordionContent.displayName = AccordionPrimitive.Content.displayName;
|
|
126
|
+
|
|
127
|
+
// src/components/AlertDialog/AlertDialog.tsx
|
|
128
|
+
import * as React3 from "react";
|
|
129
|
+
import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog";
|
|
130
|
+
|
|
45
131
|
// src/components/Button/Button.tsx
|
|
46
|
-
import
|
|
132
|
+
import * as React2 from "react";
|
|
133
|
+
import { Slot } from "@radix-ui/react-slot";
|
|
134
|
+
import { cva } from "class-variance-authority";
|
|
135
|
+
import { jsx as jsx3 } from "react/jsx-runtime";
|
|
47
136
|
var buttonVariants = cva(
|
|
48
137
|
"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",
|
|
49
138
|
{
|
|
@@ -92,12 +181,12 @@ var iconButtonSizes = cva("", {
|
|
|
92
181
|
size: "md"
|
|
93
182
|
}
|
|
94
183
|
});
|
|
95
|
-
var Button =
|
|
184
|
+
var Button = React2.forwardRef(
|
|
96
185
|
(_a, ref) => {
|
|
97
186
|
var _b = _a, { className, variant, size, icon = false, asChild = false } = _b, props = __objRest(_b, ["className", "variant", "size", "icon", "asChild"]);
|
|
98
187
|
const Comp = asChild ? Slot : "button";
|
|
99
188
|
const sizesStyle = icon ? iconButtonSizes : buttonSizes;
|
|
100
|
-
return /* @__PURE__ */
|
|
189
|
+
return /* @__PURE__ */ jsx3(
|
|
101
190
|
Comp,
|
|
102
191
|
__spreadValues({
|
|
103
192
|
className: cn(
|
|
@@ -111,14 +200,147 @@ var Button = React.forwardRef(
|
|
|
111
200
|
);
|
|
112
201
|
Button.displayName = "Button";
|
|
113
202
|
|
|
203
|
+
// src/components/AlertDialog/AlertDialog.tsx
|
|
204
|
+
import { jsx as jsx4, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
205
|
+
var AlertDialog = AlertDialogPrimitive.Root;
|
|
206
|
+
var AlertDialogTrigger = AlertDialogPrimitive.Trigger;
|
|
207
|
+
var AlertDialogPortal = (_a) => {
|
|
208
|
+
var _b = _a, {
|
|
209
|
+
className
|
|
210
|
+
} = _b, props = __objRest(_b, [
|
|
211
|
+
"className"
|
|
212
|
+
]);
|
|
213
|
+
return /* @__PURE__ */ jsx4(AlertDialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
|
|
214
|
+
};
|
|
215
|
+
AlertDialogPortal.displayName = AlertDialogPrimitive.Portal.displayName;
|
|
216
|
+
var AlertDialogOverlay = React3.forwardRef((_a, ref) => {
|
|
217
|
+
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
218
|
+
return /* @__PURE__ */ jsx4(
|
|
219
|
+
AlertDialogPrimitive.Overlay,
|
|
220
|
+
__spreadProps(__spreadValues({
|
|
221
|
+
className: cn(
|
|
222
|
+
"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",
|
|
223
|
+
className
|
|
224
|
+
)
|
|
225
|
+
}, props), {
|
|
226
|
+
ref
|
|
227
|
+
})
|
|
228
|
+
);
|
|
229
|
+
});
|
|
230
|
+
AlertDialogOverlay.displayName = AlertDialogPrimitive.Overlay.displayName;
|
|
231
|
+
var AlertDialogContent = React3.forwardRef((_a, ref) => {
|
|
232
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
233
|
+
return /* @__PURE__ */ jsxs2(AlertDialogPortal, { children: [
|
|
234
|
+
/* @__PURE__ */ jsx4(AlertDialogOverlay, {}),
|
|
235
|
+
/* @__PURE__ */ jsx4(
|
|
236
|
+
AlertDialogPrimitive.Content,
|
|
237
|
+
__spreadValues({
|
|
238
|
+
ref,
|
|
239
|
+
className: cn(
|
|
240
|
+
"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",
|
|
241
|
+
className
|
|
242
|
+
)
|
|
243
|
+
}, props)
|
|
244
|
+
)
|
|
245
|
+
] });
|
|
246
|
+
});
|
|
247
|
+
AlertDialogContent.displayName = AlertDialogPrimitive.Content.displayName;
|
|
248
|
+
var AlertDialogHeader = (_a) => {
|
|
249
|
+
var _b = _a, {
|
|
250
|
+
className
|
|
251
|
+
} = _b, props = __objRest(_b, [
|
|
252
|
+
"className"
|
|
253
|
+
]);
|
|
254
|
+
return /* @__PURE__ */ jsx4(
|
|
255
|
+
"div",
|
|
256
|
+
__spreadValues({
|
|
257
|
+
className: cn(
|
|
258
|
+
"flex flex-col space-y-5 text-center sm:text-left",
|
|
259
|
+
className
|
|
260
|
+
)
|
|
261
|
+
}, props)
|
|
262
|
+
);
|
|
263
|
+
};
|
|
264
|
+
AlertDialogHeader.displayName = "AlertDialogHeader";
|
|
265
|
+
var AlertDialogFooter = (_a) => {
|
|
266
|
+
var _b = _a, {
|
|
267
|
+
className
|
|
268
|
+
} = _b, props = __objRest(_b, [
|
|
269
|
+
"className"
|
|
270
|
+
]);
|
|
271
|
+
return /* @__PURE__ */ jsx4(
|
|
272
|
+
"div",
|
|
273
|
+
__spreadValues({
|
|
274
|
+
className: cn(
|
|
275
|
+
"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
|
|
276
|
+
className
|
|
277
|
+
)
|
|
278
|
+
}, props)
|
|
279
|
+
);
|
|
280
|
+
};
|
|
281
|
+
AlertDialogFooter.displayName = "AlertDialogFooter";
|
|
282
|
+
var AlertDialogTitle = React3.forwardRef((_a, ref) => {
|
|
283
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
284
|
+
return /* @__PURE__ */ jsx4(
|
|
285
|
+
AlertDialogPrimitive.Title,
|
|
286
|
+
__spreadValues({
|
|
287
|
+
ref,
|
|
288
|
+
className: cn("text-lg text-gray-1000 font-semibold", className)
|
|
289
|
+
}, props)
|
|
290
|
+
);
|
|
291
|
+
});
|
|
292
|
+
AlertDialogTitle.displayName = AlertDialogPrimitive.Title.displayName;
|
|
293
|
+
var AlertDialogDescription = React3.forwardRef((_a, ref) => {
|
|
294
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
295
|
+
return /* @__PURE__ */ jsx4(
|
|
296
|
+
AlertDialogPrimitive.Description,
|
|
297
|
+
__spreadValues({
|
|
298
|
+
ref,
|
|
299
|
+
className: cn("text-sm text-gray-700", className)
|
|
300
|
+
}, props)
|
|
301
|
+
);
|
|
302
|
+
});
|
|
303
|
+
AlertDialogDescription.displayName = AlertDialogPrimitive.Description.displayName;
|
|
304
|
+
var AlertDialogAction = React3.forwardRef((_a, ref) => {
|
|
305
|
+
var _b = _a, { className, variant = "primary" } = _b, props = __objRest(_b, ["className", "variant"]);
|
|
306
|
+
return /* @__PURE__ */ jsx4(
|
|
307
|
+
AlertDialogPrimitive.Action,
|
|
308
|
+
__spreadValues({
|
|
309
|
+
ref,
|
|
310
|
+
className: cn(
|
|
311
|
+
buttonVariants({ variant }),
|
|
312
|
+
buttonSizes({ size: "md" }),
|
|
313
|
+
className
|
|
314
|
+
)
|
|
315
|
+
}, props)
|
|
316
|
+
);
|
|
317
|
+
});
|
|
318
|
+
AlertDialogAction.displayName = AlertDialogPrimitive.Action.displayName;
|
|
319
|
+
var AlertDialogCancel = React3.forwardRef((_a, ref) => {
|
|
320
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
321
|
+
return /* @__PURE__ */ jsx4(
|
|
322
|
+
AlertDialogPrimitive.Cancel,
|
|
323
|
+
__spreadValues({
|
|
324
|
+
ref,
|
|
325
|
+
className: cn(
|
|
326
|
+
buttonVariants({ variant: "outline" }),
|
|
327
|
+
buttonSizes({ size: "md" }),
|
|
328
|
+
"mt-2 sm:mt-0",
|
|
329
|
+
className
|
|
330
|
+
)
|
|
331
|
+
}, props)
|
|
332
|
+
);
|
|
333
|
+
});
|
|
334
|
+
AlertDialogCancel.displayName = AlertDialogPrimitive.Cancel.displayName;
|
|
335
|
+
|
|
114
336
|
// src/components/Badge/Badge.tsx
|
|
115
337
|
import { cva as cva2 } from "class-variance-authority";
|
|
116
338
|
|
|
117
339
|
// src/utils/getLabelFromChildren.ts
|
|
118
|
-
import
|
|
340
|
+
import React4 from "react";
|
|
119
341
|
var getLabelFromChildren = (children) => {
|
|
120
342
|
let label = "";
|
|
121
|
-
|
|
343
|
+
React4.Children.map(children, (child) => {
|
|
122
344
|
if (typeof child === "string") {
|
|
123
345
|
label += child;
|
|
124
346
|
}
|
|
@@ -140,7 +362,7 @@ var randomPickFromArray = ({
|
|
|
140
362
|
};
|
|
141
363
|
|
|
142
364
|
// src/components/Badge/Badge.tsx
|
|
143
|
-
import { jsx as
|
|
365
|
+
import { jsx as jsx5 } from "react/jsx-runtime";
|
|
144
366
|
var colors = {
|
|
145
367
|
gray: "text-gray-900",
|
|
146
368
|
green: "text-green-700",
|
|
@@ -275,7 +497,7 @@ function Badge(_a) {
|
|
|
275
497
|
array: colorsArray
|
|
276
498
|
});
|
|
277
499
|
}
|
|
278
|
-
return /* @__PURE__ */
|
|
500
|
+
return /* @__PURE__ */ jsx5(
|
|
279
501
|
"div",
|
|
280
502
|
__spreadValues({
|
|
281
503
|
className: cn(badgeVariants({ variant, color }), className)
|
|
@@ -283,64 +505,16 @@ function Badge(_a) {
|
|
|
283
505
|
);
|
|
284
506
|
}
|
|
285
507
|
|
|
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;
|
|
508
|
+
// src/components/Calendar/Calendar.tsx
|
|
509
|
+
import { DayPicker } from "react-day-picker";
|
|
336
510
|
|
|
337
511
|
// src/icons/activity.tsx
|
|
338
|
-
import { forwardRef as
|
|
339
|
-
import { jsx as
|
|
340
|
-
var ActivityIcon =
|
|
512
|
+
import { forwardRef as forwardRef4 } from "react";
|
|
513
|
+
import { jsx as jsx6 } from "react/jsx-runtime";
|
|
514
|
+
var ActivityIcon = forwardRef4(
|
|
341
515
|
function ActivityIcon2(_a, ref) {
|
|
342
516
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
343
|
-
return /* @__PURE__ */
|
|
517
|
+
return /* @__PURE__ */ jsx6(
|
|
344
518
|
"svg",
|
|
345
519
|
__spreadProps(__spreadValues({
|
|
346
520
|
ref,
|
|
@@ -351,7 +525,7 @@ var ActivityIcon = forwardRef3(
|
|
|
351
525
|
xmlns: "http://www.w3.org/2000/svg",
|
|
352
526
|
className
|
|
353
527
|
}, other), {
|
|
354
|
-
children: /* @__PURE__ */
|
|
528
|
+
children: /* @__PURE__ */ jsx6(
|
|
355
529
|
"path",
|
|
356
530
|
{
|
|
357
531
|
d: "M22 12H18L15 21L9 3L6 12H2",
|
|
@@ -367,12 +541,12 @@ var ActivityIcon = forwardRef3(
|
|
|
367
541
|
);
|
|
368
542
|
|
|
369
543
|
// src/icons/alertCircle.tsx
|
|
370
|
-
import { forwardRef as
|
|
371
|
-
import { jsx as
|
|
372
|
-
var AlertCircleIcon =
|
|
544
|
+
import { forwardRef as forwardRef5 } from "react";
|
|
545
|
+
import { jsx as jsx7, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
546
|
+
var AlertCircleIcon = forwardRef5(
|
|
373
547
|
function AlertCircleIcon2(_a, ref) {
|
|
374
548
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
375
|
-
return /* @__PURE__ */
|
|
549
|
+
return /* @__PURE__ */ jsxs3(
|
|
376
550
|
"svg",
|
|
377
551
|
__spreadProps(__spreadValues({
|
|
378
552
|
ref,
|
|
@@ -384,7 +558,7 @@ var AlertCircleIcon = forwardRef4(
|
|
|
384
558
|
className
|
|
385
559
|
}, other), {
|
|
386
560
|
children: [
|
|
387
|
-
duotone && /* @__PURE__ */
|
|
561
|
+
duotone && /* @__PURE__ */ jsx7(
|
|
388
562
|
"path",
|
|
389
563
|
{
|
|
390
564
|
opacity: "0.12",
|
|
@@ -392,7 +566,7 @@ var AlertCircleIcon = forwardRef4(
|
|
|
392
566
|
fill: "currentColor"
|
|
393
567
|
}
|
|
394
568
|
),
|
|
395
|
-
/* @__PURE__ */
|
|
569
|
+
/* @__PURE__ */ jsx7(
|
|
396
570
|
"path",
|
|
397
571
|
{
|
|
398
572
|
d: "M12 8V12M12 16H12.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -409,12 +583,12 @@ var AlertCircleIcon = forwardRef4(
|
|
|
409
583
|
);
|
|
410
584
|
|
|
411
585
|
// src/icons/arrowDown.tsx
|
|
412
|
-
import { forwardRef as
|
|
413
|
-
import { jsx as
|
|
414
|
-
var ArrowDownIcon =
|
|
586
|
+
import { forwardRef as forwardRef6 } from "react";
|
|
587
|
+
import { jsx as jsx8 } from "react/jsx-runtime";
|
|
588
|
+
var ArrowDownIcon = forwardRef6(
|
|
415
589
|
function ArrowDownIcon2(_a, ref) {
|
|
416
590
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
417
|
-
return /* @__PURE__ */
|
|
591
|
+
return /* @__PURE__ */ jsx8(
|
|
418
592
|
"svg",
|
|
419
593
|
__spreadProps(__spreadValues({
|
|
420
594
|
ref,
|
|
@@ -425,7 +599,7 @@ var ArrowDownIcon = forwardRef5(
|
|
|
425
599
|
xmlns: "http://www.w3.org/2000/svg",
|
|
426
600
|
className
|
|
427
601
|
}, other), {
|
|
428
|
-
children: /* @__PURE__ */
|
|
602
|
+
children: /* @__PURE__ */ jsx8(
|
|
429
603
|
"path",
|
|
430
604
|
{
|
|
431
605
|
d: "M12 5V19M12 19L19 12M12 19L5 12",
|
|
@@ -441,12 +615,12 @@ var ArrowDownIcon = forwardRef5(
|
|
|
441
615
|
);
|
|
442
616
|
|
|
443
617
|
// src/icons/arrowLeft.tsx
|
|
444
|
-
import { forwardRef as
|
|
445
|
-
import { jsx as
|
|
446
|
-
var ArrowLeftIcon =
|
|
618
|
+
import { forwardRef as forwardRef7 } from "react";
|
|
619
|
+
import { jsx as jsx9 } from "react/jsx-runtime";
|
|
620
|
+
var ArrowLeftIcon = forwardRef7(
|
|
447
621
|
function ArrowLeftIcon2(_a, ref) {
|
|
448
622
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
449
|
-
return /* @__PURE__ */
|
|
623
|
+
return /* @__PURE__ */ jsx9(
|
|
450
624
|
"svg",
|
|
451
625
|
__spreadProps(__spreadValues({
|
|
452
626
|
ref,
|
|
@@ -457,7 +631,7 @@ var ArrowLeftIcon = forwardRef6(
|
|
|
457
631
|
xmlns: "http://www.w3.org/2000/svg",
|
|
458
632
|
className
|
|
459
633
|
}, other), {
|
|
460
|
-
children: /* @__PURE__ */
|
|
634
|
+
children: /* @__PURE__ */ jsx9(
|
|
461
635
|
"path",
|
|
462
636
|
{
|
|
463
637
|
d: "M19 12H5M5 12L12 19M5 12L12 5",
|
|
@@ -473,12 +647,12 @@ var ArrowLeftIcon = forwardRef6(
|
|
|
473
647
|
);
|
|
474
648
|
|
|
475
649
|
// src/icons/arrowRight.tsx
|
|
476
|
-
import { forwardRef as
|
|
477
|
-
import { jsx as
|
|
478
|
-
var ArrowRightIcon =
|
|
650
|
+
import { forwardRef as forwardRef8 } from "react";
|
|
651
|
+
import { jsx as jsx10 } from "react/jsx-runtime";
|
|
652
|
+
var ArrowRightIcon = forwardRef8(
|
|
479
653
|
function ArrowRightIcon2(_a, ref) {
|
|
480
654
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
481
|
-
return /* @__PURE__ */
|
|
655
|
+
return /* @__PURE__ */ jsx10(
|
|
482
656
|
"svg",
|
|
483
657
|
__spreadProps(__spreadValues({
|
|
484
658
|
ref,
|
|
@@ -489,7 +663,7 @@ var ArrowRightIcon = forwardRef7(
|
|
|
489
663
|
xmlns: "http://www.w3.org/2000/svg",
|
|
490
664
|
className
|
|
491
665
|
}, other), {
|
|
492
|
-
children: /* @__PURE__ */
|
|
666
|
+
children: /* @__PURE__ */ jsx10(
|
|
493
667
|
"path",
|
|
494
668
|
{
|
|
495
669
|
d: "M5 12H19M19 12L12 5M19 12L12 19",
|
|
@@ -505,12 +679,12 @@ var ArrowRightIcon = forwardRef7(
|
|
|
505
679
|
);
|
|
506
680
|
|
|
507
681
|
// src/icons/arrowUp.tsx
|
|
508
|
-
import { forwardRef as
|
|
509
|
-
import { jsx as
|
|
510
|
-
var ArrowUpIcon =
|
|
682
|
+
import { forwardRef as forwardRef9 } from "react";
|
|
683
|
+
import { jsx as jsx11 } from "react/jsx-runtime";
|
|
684
|
+
var ArrowUpIcon = forwardRef9(
|
|
511
685
|
function ArrowUpIcon2(_a, ref) {
|
|
512
686
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
513
|
-
return /* @__PURE__ */
|
|
687
|
+
return /* @__PURE__ */ jsx11(
|
|
514
688
|
"svg",
|
|
515
689
|
__spreadProps(__spreadValues({
|
|
516
690
|
ref,
|
|
@@ -521,7 +695,7 @@ var ArrowUpIcon = forwardRef8(
|
|
|
521
695
|
xmlns: "http://www.w3.org/2000/svg",
|
|
522
696
|
className
|
|
523
697
|
}, other), {
|
|
524
|
-
children: /* @__PURE__ */
|
|
698
|
+
children: /* @__PURE__ */ jsx11(
|
|
525
699
|
"path",
|
|
526
700
|
{
|
|
527
701
|
d: "M12 19V5M12 5L5 12M12 5L19 12",
|
|
@@ -537,11 +711,11 @@ var ArrowUpIcon = forwardRef8(
|
|
|
537
711
|
);
|
|
538
712
|
|
|
539
713
|
// src/icons/bell.tsx
|
|
540
|
-
import { forwardRef as
|
|
541
|
-
import { jsx as
|
|
542
|
-
var BellIcon =
|
|
714
|
+
import { forwardRef as forwardRef10 } from "react";
|
|
715
|
+
import { jsx as jsx12, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
716
|
+
var BellIcon = forwardRef10(function BellIcon2(_a, ref) {
|
|
543
717
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
544
|
-
return /* @__PURE__ */
|
|
718
|
+
return /* @__PURE__ */ jsxs4(
|
|
545
719
|
"svg",
|
|
546
720
|
__spreadProps(__spreadValues({
|
|
547
721
|
ref,
|
|
@@ -553,7 +727,7 @@ var BellIcon = forwardRef9(function BellIcon2(_a, ref) {
|
|
|
553
727
|
className
|
|
554
728
|
}, other), {
|
|
555
729
|
children: [
|
|
556
|
-
duotone && /* @__PURE__ */
|
|
730
|
+
duotone && /* @__PURE__ */ jsx12(
|
|
557
731
|
"path",
|
|
558
732
|
{
|
|
559
733
|
opacity: "0.12",
|
|
@@ -561,7 +735,7 @@ var BellIcon = forwardRef9(function BellIcon2(_a, ref) {
|
|
|
561
735
|
fill: "currentColor"
|
|
562
736
|
}
|
|
563
737
|
),
|
|
564
|
-
/* @__PURE__ */
|
|
738
|
+
/* @__PURE__ */ jsx12(
|
|
565
739
|
"path",
|
|
566
740
|
{
|
|
567
741
|
d: "M9.35419 21C10.0593 21.6224 10.9856 22 12 22C13.0145 22 13.9407 21.6224 14.6458 21M18 8C18 6.4087 17.3679 4.88258 16.2427 3.75736C15.1174 2.63214 13.5913 2 12 2C10.4087 2 8.8826 2.63214 7.75738 3.75736C6.63216 4.88258 6.00002 6.4087 6.00002 8C6.00002 11.0902 5.22049 13.206 4.34968 14.6054C3.61515 15.7859 3.24788 16.3761 3.26134 16.5408C3.27626 16.7231 3.31488 16.7926 3.46179 16.9016C3.59448 17 4.19261 17 5.38887 17H18.6112C19.8074 17 20.4056 17 20.5382 16.9016C20.6852 16.7926 20.7238 16.7231 20.7387 16.5408C20.7522 16.3761 20.3849 15.7859 19.6504 14.6054C18.7795 13.206 18 11.0902 18 8Z",
|
|
@@ -577,12 +751,12 @@ var BellIcon = forwardRef9(function BellIcon2(_a, ref) {
|
|
|
577
751
|
});
|
|
578
752
|
|
|
579
753
|
// src/icons/calendar.tsx
|
|
580
|
-
import { forwardRef as
|
|
581
|
-
import { jsx as
|
|
582
|
-
var CalendarIcon =
|
|
754
|
+
import { forwardRef as forwardRef11 } from "react";
|
|
755
|
+
import { jsx as jsx13, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
756
|
+
var CalendarIcon = forwardRef11(
|
|
583
757
|
function CalendarIcon2(_a, ref) {
|
|
584
758
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
585
|
-
return /* @__PURE__ */
|
|
759
|
+
return /* @__PURE__ */ jsxs5(
|
|
586
760
|
"svg",
|
|
587
761
|
__spreadProps(__spreadValues({
|
|
588
762
|
ref,
|
|
@@ -594,7 +768,7 @@ var CalendarIcon = forwardRef10(
|
|
|
594
768
|
className
|
|
595
769
|
}, other), {
|
|
596
770
|
children: [
|
|
597
|
-
duotone && /* @__PURE__ */
|
|
771
|
+
duotone && /* @__PURE__ */ jsx13(
|
|
598
772
|
"path",
|
|
599
773
|
{
|
|
600
774
|
opacity: "0.12",
|
|
@@ -602,7 +776,7 @@ var CalendarIcon = forwardRef10(
|
|
|
602
776
|
fill: "currentColor"
|
|
603
777
|
}
|
|
604
778
|
),
|
|
605
|
-
/* @__PURE__ */
|
|
779
|
+
/* @__PURE__ */ jsx13(
|
|
606
780
|
"path",
|
|
607
781
|
{
|
|
608
782
|
d: "M21 10H3M16 2V6M8 2V6M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z",
|
|
@@ -619,12 +793,12 @@ var CalendarIcon = forwardRef10(
|
|
|
619
793
|
);
|
|
620
794
|
|
|
621
795
|
// src/icons/calendarCheck.tsx
|
|
622
|
-
import { forwardRef as
|
|
623
|
-
import { jsx as
|
|
624
|
-
var CalendarCheckIcon =
|
|
796
|
+
import { forwardRef as forwardRef12 } from "react";
|
|
797
|
+
import { jsx as jsx14, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
798
|
+
var CalendarCheckIcon = forwardRef12(
|
|
625
799
|
function CalendarCheckIcon2(_a, ref) {
|
|
626
800
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
627
|
-
return /* @__PURE__ */
|
|
801
|
+
return /* @__PURE__ */ jsxs6(
|
|
628
802
|
"svg",
|
|
629
803
|
__spreadProps(__spreadValues({
|
|
630
804
|
ref,
|
|
@@ -636,7 +810,7 @@ var CalendarCheckIcon = forwardRef11(
|
|
|
636
810
|
className
|
|
637
811
|
}, other), {
|
|
638
812
|
children: [
|
|
639
|
-
duotone && /* @__PURE__ */
|
|
813
|
+
duotone && /* @__PURE__ */ jsx14(
|
|
640
814
|
"path",
|
|
641
815
|
{
|
|
642
816
|
opacity: "0.12",
|
|
@@ -644,7 +818,7 @@ var CalendarCheckIcon = forwardRef11(
|
|
|
644
818
|
fill: "currentColor"
|
|
645
819
|
}
|
|
646
820
|
),
|
|
647
|
-
/* @__PURE__ */
|
|
821
|
+
/* @__PURE__ */ jsx14(
|
|
648
822
|
"path",
|
|
649
823
|
{
|
|
650
824
|
d: "M21 10H3M16 2V6M8 2V6M9 16L11 18L15.5 13.5M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z",
|
|
@@ -661,12 +835,12 @@ var CalendarCheckIcon = forwardRef11(
|
|
|
661
835
|
);
|
|
662
836
|
|
|
663
837
|
// src/icons/calendarPlus.tsx
|
|
664
|
-
import { forwardRef as
|
|
665
|
-
import { jsx as
|
|
666
|
-
var CalendarPlusIcon =
|
|
838
|
+
import { forwardRef as forwardRef13 } from "react";
|
|
839
|
+
import { jsx as jsx15, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
840
|
+
var CalendarPlusIcon = forwardRef13(
|
|
667
841
|
function CalendarPlusIcon2(_a, ref) {
|
|
668
842
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
669
|
-
return /* @__PURE__ */
|
|
843
|
+
return /* @__PURE__ */ jsxs7(
|
|
670
844
|
"svg",
|
|
671
845
|
__spreadProps(__spreadValues({
|
|
672
846
|
ref,
|
|
@@ -678,7 +852,7 @@ var CalendarPlusIcon = forwardRef12(
|
|
|
678
852
|
className
|
|
679
853
|
}, other), {
|
|
680
854
|
children: [
|
|
681
|
-
duotone && /* @__PURE__ */
|
|
855
|
+
duotone && /* @__PURE__ */ jsx15(
|
|
682
856
|
"path",
|
|
683
857
|
{
|
|
684
858
|
opacity: "0.12",
|
|
@@ -686,7 +860,7 @@ var CalendarPlusIcon = forwardRef12(
|
|
|
686
860
|
fill: "currentColor"
|
|
687
861
|
}
|
|
688
862
|
),
|
|
689
|
-
/* @__PURE__ */
|
|
863
|
+
/* @__PURE__ */ jsx15(
|
|
690
864
|
"path",
|
|
691
865
|
{
|
|
692
866
|
d: "M21 8H3M16 2V5M8 2V5M12 18V12M9 15H15M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z",
|
|
@@ -703,12 +877,12 @@ var CalendarPlusIcon = forwardRef12(
|
|
|
703
877
|
);
|
|
704
878
|
|
|
705
879
|
// src/icons/camera.tsx
|
|
706
|
-
import { forwardRef as
|
|
707
|
-
import { jsx as
|
|
708
|
-
var CameraIcon =
|
|
880
|
+
import { forwardRef as forwardRef14 } from "react";
|
|
881
|
+
import { jsx as jsx16, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
882
|
+
var CameraIcon = forwardRef14(
|
|
709
883
|
function CameraIcon2(_a, ref) {
|
|
710
884
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
711
|
-
return /* @__PURE__ */
|
|
885
|
+
return /* @__PURE__ */ jsxs8(
|
|
712
886
|
"svg",
|
|
713
887
|
__spreadProps(__spreadValues({
|
|
714
888
|
ref,
|
|
@@ -720,7 +894,7 @@ var CameraIcon = forwardRef13(
|
|
|
720
894
|
className
|
|
721
895
|
}, other), {
|
|
722
896
|
children: [
|
|
723
|
-
duotone && /* @__PURE__ */
|
|
897
|
+
duotone && /* @__PURE__ */ jsx16(
|
|
724
898
|
"path",
|
|
725
899
|
{
|
|
726
900
|
opacity: "0.12",
|
|
@@ -728,7 +902,7 @@ var CameraIcon = forwardRef13(
|
|
|
728
902
|
fill: "currentColor"
|
|
729
903
|
}
|
|
730
904
|
),
|
|
731
|
-
/* @__PURE__ */
|
|
905
|
+
/* @__PURE__ */ jsx16(
|
|
732
906
|
"path",
|
|
733
907
|
{
|
|
734
908
|
d: "M2 8.37722C2 8.0269 2 7.85174 2.01462 7.70421C2.1556 6.28127 3.28127 5.1556 4.70421 5.01462C4.85174 5 5.03636 5 5.40558 5C5.54785 5 5.61899 5 5.67939 4.99634C6.45061 4.94963 7.12595 4.46288 7.41414 3.746C7.43671 3.68986 7.45781 3.62657 7.5 3.5C7.54219 3.37343 7.56329 3.31014 7.58586 3.254C7.87405 2.53712 8.54939 2.05037 9.32061 2.00366C9.38101 2 9.44772 2 9.58114 2H14.4189C14.5523 2 14.619 2 14.6794 2.00366C15.4506 2.05037 16.126 2.53712 16.4141 3.254C16.4367 3.31014 16.4578 3.37343 16.5 3.5C16.5422 3.62657 16.5633 3.68986 16.5859 3.746C16.874 4.46288 17.5494 4.94963 18.3206 4.99634C18.381 5 18.4521 5 18.5944 5C18.9636 5 19.1483 5 19.2958 5.01462C20.7187 5.1556 21.8444 6.28127 21.9854 7.70421C22 7.85174 22 8.0269 22 8.37722V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V8.37722Z",
|
|
@@ -739,7 +913,7 @@ var CameraIcon = forwardRef13(
|
|
|
739
913
|
}
|
|
740
914
|
),
|
|
741
915
|
",",
|
|
742
|
-
/* @__PURE__ */
|
|
916
|
+
/* @__PURE__ */ jsx16(
|
|
743
917
|
"path",
|
|
744
918
|
{
|
|
745
919
|
d: "M12 16.5C14.2091 16.5 16 14.7091 16 12.5C16 10.2909 14.2091 8.5 12 8.5C9.79086 8.5 8 10.2909 8 12.5C8 14.7091 9.79086 16.5 12 16.5Z",
|
|
@@ -756,12 +930,12 @@ var CameraIcon = forwardRef13(
|
|
|
756
930
|
);
|
|
757
931
|
|
|
758
932
|
// src/icons/cameraOff.tsx
|
|
759
|
-
import { forwardRef as
|
|
760
|
-
import { jsx as
|
|
761
|
-
var CameraOffIcon =
|
|
933
|
+
import { forwardRef as forwardRef15 } from "react";
|
|
934
|
+
import { jsx as jsx17, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
935
|
+
var CameraOffIcon = forwardRef15(
|
|
762
936
|
function CameraOffIcon2(_a, ref) {
|
|
763
937
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
764
|
-
return /* @__PURE__ */
|
|
938
|
+
return /* @__PURE__ */ jsxs9(
|
|
765
939
|
"svg",
|
|
766
940
|
__spreadProps(__spreadValues({
|
|
767
941
|
ref,
|
|
@@ -773,7 +947,7 @@ var CameraOffIcon = forwardRef14(
|
|
|
773
947
|
className
|
|
774
948
|
}, other), {
|
|
775
949
|
children: [
|
|
776
|
-
duotone && /* @__PURE__ */
|
|
950
|
+
duotone && /* @__PURE__ */ jsx17(
|
|
777
951
|
"path",
|
|
778
952
|
{
|
|
779
953
|
opacity: "0.12",
|
|
@@ -781,7 +955,7 @@ var CameraOffIcon = forwardRef14(
|
|
|
781
955
|
fill: "currentColor"
|
|
782
956
|
}
|
|
783
957
|
),
|
|
784
|
-
/* @__PURE__ */
|
|
958
|
+
/* @__PURE__ */ jsx17(
|
|
785
959
|
"path",
|
|
786
960
|
{
|
|
787
961
|
d: "M5 5H5.41886C5.55228 5 5.61899 5 5.67939 4.99634C6.45061 4.94963 7.12595 4.46288 7.41414 3.746C7.43671 3.68986 7.45781 3.62657 7.5 3.5C7.54219 3.37343 7.56329 3.31014 7.58586 3.254C7.87405 2.53712 8.54939 2.05037 9.32061 2.00366C9.38101 2 9.44772 2 9.58114 2H14.4189C14.5523 2 14.619 2 14.6794 2.00366C15.4506 2.05037 16.126 2.53712 16.4141 3.254C16.4367 3.31014 16.4578 3.37343 16.5 3.5C16.5422 3.62657 16.5633 3.68986 16.5859 3.746C16.874 4.46288 17.5494 4.94963 18.3206 4.99634C18.381 5 18.4521 5 18.5944 5C18.9636 5 19.1483 5 19.2958 5.01462C20.7187 5.1556 21.8444 6.28127 21.9854 7.70421C22 7.85174 22 8.0269 22 8.37722V18C22 19.0849 21.4241 20.0353 20.5613 20.5622M15.0641 15.0714C15.6482 14.3761 16 13.4791 16 12.5C16 10.2909 14.2091 8.5 12 8.5C11.0216 8.5 10.1252 8.8513 9.43012 9.43464M22 22L2 2M2 7.5V16.2C2 17.8802 2 18.7202 2.32698 19.362C2.6146 19.9265 3.07354 20.3854 3.63803 20.673C4.27976 21 5.11984 21 6.8 21H15.5M12 16.5C9.79086 16.5 8 14.7091 8 12.5",
|
|
@@ -798,12 +972,12 @@ var CameraOffIcon = forwardRef14(
|
|
|
798
972
|
);
|
|
799
973
|
|
|
800
974
|
// src/icons/checkCircle.tsx
|
|
801
|
-
import { forwardRef as
|
|
802
|
-
import { jsx as
|
|
803
|
-
var CheckCircleIcon =
|
|
975
|
+
import { forwardRef as forwardRef16 } from "react";
|
|
976
|
+
import { jsx as jsx18, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
977
|
+
var CheckCircleIcon = forwardRef16(
|
|
804
978
|
function CheckCircleIcon2(_a, ref) {
|
|
805
979
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
806
|
-
return /* @__PURE__ */
|
|
980
|
+
return /* @__PURE__ */ jsxs10(
|
|
807
981
|
"svg",
|
|
808
982
|
__spreadProps(__spreadValues({
|
|
809
983
|
ref,
|
|
@@ -815,7 +989,7 @@ var CheckCircleIcon = forwardRef15(
|
|
|
815
989
|
className
|
|
816
990
|
}, other), {
|
|
817
991
|
children: [
|
|
818
|
-
duotone && /* @__PURE__ */
|
|
992
|
+
duotone && /* @__PURE__ */ jsx18(
|
|
819
993
|
"path",
|
|
820
994
|
{
|
|
821
995
|
opacity: "0.12",
|
|
@@ -823,7 +997,7 @@ var CheckCircleIcon = forwardRef15(
|
|
|
823
997
|
fill: "currentColor"
|
|
824
998
|
}
|
|
825
999
|
),
|
|
826
|
-
/* @__PURE__ */
|
|
1000
|
+
/* @__PURE__ */ jsx18(
|
|
827
1001
|
"path",
|
|
828
1002
|
{
|
|
829
1003
|
d: "M7.5 12L10.5 15L16.5 9M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -839,45 +1013,13 @@ var CheckCircleIcon = forwardRef15(
|
|
|
839
1013
|
}
|
|
840
1014
|
);
|
|
841
1015
|
|
|
842
|
-
// src/icons/chevronDown.tsx
|
|
843
|
-
import { forwardRef as forwardRef16 } from "react";
|
|
844
|
-
import { jsx as jsx17 } from "react/jsx-runtime";
|
|
845
|
-
var ChevronDownIcon = forwardRef16(
|
|
846
|
-
function ChevronDownIcon2(_a, ref) {
|
|
847
|
-
var _b = _a, { size = 24, className = "text-gray-1000", duotone } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
848
|
-
return /* @__PURE__ */ jsx17(
|
|
849
|
-
"svg",
|
|
850
|
-
__spreadProps(__spreadValues({
|
|
851
|
-
ref,
|
|
852
|
-
width: size,
|
|
853
|
-
height: size,
|
|
854
|
-
viewBox: "0 0 24 24",
|
|
855
|
-
fill: "none",
|
|
856
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
857
|
-
className
|
|
858
|
-
}, other), {
|
|
859
|
-
children: /* @__PURE__ */ jsx17(
|
|
860
|
-
"path",
|
|
861
|
-
{
|
|
862
|
-
d: "M6 9L12 15L18 9",
|
|
863
|
-
stroke: "currentColor",
|
|
864
|
-
strokeWidth: "2",
|
|
865
|
-
strokeLinecap: "round",
|
|
866
|
-
strokeLinejoin: "round"
|
|
867
|
-
}
|
|
868
|
-
)
|
|
869
|
-
})
|
|
870
|
-
);
|
|
871
|
-
}
|
|
872
|
-
);
|
|
873
|
-
|
|
874
1016
|
// src/icons/chevronLeft.tsx
|
|
875
1017
|
import { forwardRef as forwardRef17 } from "react";
|
|
876
|
-
import { jsx as
|
|
1018
|
+
import { jsx as jsx19 } from "react/jsx-runtime";
|
|
877
1019
|
var ChevronLeftIcon = forwardRef17(
|
|
878
1020
|
function ChevronLeftIcon2(_a, ref) {
|
|
879
1021
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
880
|
-
return /* @__PURE__ */
|
|
1022
|
+
return /* @__PURE__ */ jsx19(
|
|
881
1023
|
"svg",
|
|
882
1024
|
__spreadProps(__spreadValues({
|
|
883
1025
|
ref,
|
|
@@ -888,7 +1030,7 @@ var ChevronLeftIcon = forwardRef17(
|
|
|
888
1030
|
xmlns: "http://www.w3.org/2000/svg",
|
|
889
1031
|
className
|
|
890
1032
|
}, other), {
|
|
891
|
-
children: /* @__PURE__ */
|
|
1033
|
+
children: /* @__PURE__ */ jsx19(
|
|
892
1034
|
"path",
|
|
893
1035
|
{
|
|
894
1036
|
d: "M15 18L9 12L15 6",
|
|
@@ -905,11 +1047,11 @@ var ChevronLeftIcon = forwardRef17(
|
|
|
905
1047
|
|
|
906
1048
|
// src/icons/chevronRight.tsx
|
|
907
1049
|
import { forwardRef as forwardRef18 } from "react";
|
|
908
|
-
import { jsx as
|
|
1050
|
+
import { jsx as jsx20 } from "react/jsx-runtime";
|
|
909
1051
|
var ChevronRightIcon = forwardRef18(
|
|
910
1052
|
function ChevronRightIcon2(_a, ref) {
|
|
911
1053
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
912
|
-
return /* @__PURE__ */
|
|
1054
|
+
return /* @__PURE__ */ jsx20(
|
|
913
1055
|
"svg",
|
|
914
1056
|
__spreadProps(__spreadValues({
|
|
915
1057
|
ref,
|
|
@@ -920,7 +1062,7 @@ var ChevronRightIcon = forwardRef18(
|
|
|
920
1062
|
xmlns: "http://www.w3.org/2000/svg",
|
|
921
1063
|
className
|
|
922
1064
|
}, other), {
|
|
923
|
-
children: /* @__PURE__ */
|
|
1065
|
+
children: /* @__PURE__ */ jsx20(
|
|
924
1066
|
"path",
|
|
925
1067
|
{
|
|
926
1068
|
d: "M9 18L15 12L9 6",
|
|
@@ -937,11 +1079,11 @@ var ChevronRightIcon = forwardRef18(
|
|
|
937
1079
|
|
|
938
1080
|
// src/icons/chevronUp.tsx
|
|
939
1081
|
import { forwardRef as forwardRef19 } from "react";
|
|
940
|
-
import { jsx as
|
|
1082
|
+
import { jsx as jsx21 } from "react/jsx-runtime";
|
|
941
1083
|
var ChevronUpIcon = forwardRef19(
|
|
942
1084
|
function ChevronUpIcon2(_a, ref) {
|
|
943
1085
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
944
|
-
return /* @__PURE__ */
|
|
1086
|
+
return /* @__PURE__ */ jsx21(
|
|
945
1087
|
"svg",
|
|
946
1088
|
__spreadProps(__spreadValues({
|
|
947
1089
|
ref,
|
|
@@ -952,7 +1094,7 @@ var ChevronUpIcon = forwardRef19(
|
|
|
952
1094
|
xmlns: "http://www.w3.org/2000/svg",
|
|
953
1095
|
className
|
|
954
1096
|
}, other), {
|
|
955
|
-
children: /* @__PURE__ */
|
|
1097
|
+
children: /* @__PURE__ */ jsx21(
|
|
956
1098
|
"path",
|
|
957
1099
|
{
|
|
958
1100
|
d: "M18 15L12 9L6 15",
|
|
@@ -969,10 +1111,10 @@ var ChevronUpIcon = forwardRef19(
|
|
|
969
1111
|
|
|
970
1112
|
// src/icons/copy.tsx
|
|
971
1113
|
import { forwardRef as forwardRef20 } from "react";
|
|
972
|
-
import { jsx as
|
|
1114
|
+
import { jsx as jsx22, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
973
1115
|
var CopyIcon = forwardRef20(function CopyIcon2(_a, ref) {
|
|
974
1116
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
975
|
-
return /* @__PURE__ */
|
|
1117
|
+
return /* @__PURE__ */ jsxs11(
|
|
976
1118
|
"svg",
|
|
977
1119
|
__spreadProps(__spreadValues({
|
|
978
1120
|
ref,
|
|
@@ -984,7 +1126,7 @@ var CopyIcon = forwardRef20(function CopyIcon2(_a, ref) {
|
|
|
984
1126
|
className
|
|
985
1127
|
}, other), {
|
|
986
1128
|
children: [
|
|
987
|
-
duotone && /* @__PURE__ */
|
|
1129
|
+
duotone && /* @__PURE__ */ jsx22(
|
|
988
1130
|
"path",
|
|
989
1131
|
{
|
|
990
1132
|
opacity: "0.12",
|
|
@@ -992,7 +1134,7 @@ var CopyIcon = forwardRef20(function CopyIcon2(_a, ref) {
|
|
|
992
1134
|
fill: "currentColor"
|
|
993
1135
|
}
|
|
994
1136
|
),
|
|
995
|
-
/* @__PURE__ */
|
|
1137
|
+
/* @__PURE__ */ jsx22(
|
|
996
1138
|
"path",
|
|
997
1139
|
{
|
|
998
1140
|
d: "M8 16V18.8C8 19.9201 8 20.4802 8.21799 20.908C8.40973 21.2843 8.71569 21.5903 9.09202 21.782C9.51984 22 10.0799 22 11.2 22H18.8C19.9201 22 20.4802 22 20.908 21.782C21.2843 21.5903 21.5903 21.2843 21.782 20.908C22 20.4802 22 19.9201 22 18.8V11.2C22 10.0799 22 9.51984 21.782 9.09202C21.5903 8.71569 21.2843 8.40973 20.908 8.21799C20.4802 8 19.9201 8 18.8 8H16M5.2 16H12.8C13.9201 16 14.4802 16 14.908 15.782C15.2843 15.5903 15.5903 15.2843 15.782 14.908C16 14.4802 16 13.9201 16 12.8V5.2C16 4.0799 16 3.51984 15.782 3.09202C15.5903 2.71569 15.2843 2.40973 14.908 2.21799C14.4802 2 13.9201 2 12.8 2H5.2C4.0799 2 3.51984 2 3.09202 2.21799C2.71569 2.40973 2.40973 2.71569 2.21799 3.09202C2 3.51984 2 4.07989 2 5.2V12.8C2 13.9201 2 14.4802 2.21799 14.908C2.40973 15.2843 2.71569 15.5903 3.09202 15.782C3.51984 16 4.07989 16 5.2 16Z",
|
|
@@ -1009,11 +1151,11 @@ var CopyIcon = forwardRef20(function CopyIcon2(_a, ref) {
|
|
|
1009
1151
|
|
|
1010
1152
|
// src/icons/cursorClick.tsx
|
|
1011
1153
|
import { forwardRef as forwardRef21 } from "react";
|
|
1012
|
-
import { jsx as
|
|
1154
|
+
import { jsx as jsx23, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
1013
1155
|
var CursorClickIcon = forwardRef21(
|
|
1014
1156
|
function CursorClickIcon2(_a, ref) {
|
|
1015
1157
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1016
|
-
return /* @__PURE__ */
|
|
1158
|
+
return /* @__PURE__ */ jsxs12(
|
|
1017
1159
|
"svg",
|
|
1018
1160
|
__spreadProps(__spreadValues({
|
|
1019
1161
|
ref,
|
|
@@ -1025,7 +1167,7 @@ var CursorClickIcon = forwardRef21(
|
|
|
1025
1167
|
className
|
|
1026
1168
|
}, other), {
|
|
1027
1169
|
children: [
|
|
1028
|
-
duotone && /* @__PURE__ */
|
|
1170
|
+
duotone && /* @__PURE__ */ jsx23(
|
|
1029
1171
|
"path",
|
|
1030
1172
|
{
|
|
1031
1173
|
opacity: "0.12",
|
|
@@ -1033,7 +1175,7 @@ var CursorClickIcon = forwardRef21(
|
|
|
1033
1175
|
fill: "currentColor"
|
|
1034
1176
|
}
|
|
1035
1177
|
),
|
|
1036
|
-
/* @__PURE__ */
|
|
1178
|
+
/* @__PURE__ */ jsx23(
|
|
1037
1179
|
"path",
|
|
1038
1180
|
{
|
|
1039
1181
|
d: "M9 3.5V2M5.06066 5.06066L4 4M5.06066 13L4 14.0607M13 5.06066L14.0607 4M3.5 9H2M15.8645 16.1896L13.3727 20.817C13.0881 21.3457 12.9457 21.61 12.7745 21.6769C12.6259 21.7349 12.4585 21.7185 12.324 21.6328C12.1689 21.534 12.0806 21.2471 11.9038 20.6733L8.44519 9.44525C8.3008 8.97651 8.2286 8.74213 8.28669 8.58383C8.33729 8.44595 8.44595 8.33729 8.58383 8.2867C8.74213 8.22861 8.9765 8.3008 9.44525 8.44519L20.6732 11.9038C21.247 12.0806 21.5339 12.169 21.6327 12.324C21.7185 12.4586 21.7348 12.6259 21.6768 12.7745C21.61 12.9458 21.3456 13.0881 20.817 13.3728L16.1896 15.8645C16.111 15.9068 16.0717 15.9279 16.0374 15.9551C16.0068 15.9792 15.9792 16.0068 15.9551 16.0374C15.9279 16.0717 15.9068 16.111 15.8645 16.1896Z",
|
|
@@ -1051,11 +1193,11 @@ var CursorClickIcon = forwardRef21(
|
|
|
1051
1193
|
|
|
1052
1194
|
// src/icons/download.tsx
|
|
1053
1195
|
import { forwardRef as forwardRef22 } from "react";
|
|
1054
|
-
import { jsx as
|
|
1196
|
+
import { jsx as jsx24, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
1055
1197
|
var DownloadIcon = forwardRef22(
|
|
1056
1198
|
function DownloadIcon2(_a, ref) {
|
|
1057
1199
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1058
|
-
return /* @__PURE__ */
|
|
1200
|
+
return /* @__PURE__ */ jsxs13(
|
|
1059
1201
|
"svg",
|
|
1060
1202
|
__spreadProps(__spreadValues({
|
|
1061
1203
|
ref,
|
|
@@ -1067,7 +1209,7 @@ var DownloadIcon = forwardRef22(
|
|
|
1067
1209
|
className
|
|
1068
1210
|
}, other), {
|
|
1069
1211
|
children: [
|
|
1070
|
-
duotone && /* @__PURE__ */
|
|
1212
|
+
duotone && /* @__PURE__ */ jsx24(
|
|
1071
1213
|
"path",
|
|
1072
1214
|
{
|
|
1073
1215
|
opacity: "0.12",
|
|
@@ -1075,7 +1217,7 @@ var DownloadIcon = forwardRef22(
|
|
|
1075
1217
|
fill: "currentColor"
|
|
1076
1218
|
}
|
|
1077
1219
|
),
|
|
1078
|
-
/* @__PURE__ */
|
|
1220
|
+
/* @__PURE__ */ jsx24(
|
|
1079
1221
|
"path",
|
|
1080
1222
|
{
|
|
1081
1223
|
d: "M8 12L12 16M12 16L16 12M12 16V8M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -1093,10 +1235,10 @@ var DownloadIcon = forwardRef22(
|
|
|
1093
1235
|
|
|
1094
1236
|
// src/icons/edit.tsx
|
|
1095
1237
|
import { forwardRef as forwardRef23 } from "react";
|
|
1096
|
-
import { jsx as
|
|
1238
|
+
import { jsx as jsx25, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
1097
1239
|
var EditIcon = forwardRef23(function EditIcon2(_a, ref) {
|
|
1098
1240
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1099
|
-
return /* @__PURE__ */
|
|
1241
|
+
return /* @__PURE__ */ jsxs14(
|
|
1100
1242
|
"svg",
|
|
1101
1243
|
__spreadProps(__spreadValues({
|
|
1102
1244
|
ref,
|
|
@@ -1108,7 +1250,7 @@ var EditIcon = forwardRef23(function EditIcon2(_a, ref) {
|
|
|
1108
1250
|
className
|
|
1109
1251
|
}, other), {
|
|
1110
1252
|
children: [
|
|
1111
|
-
duotone && /* @__PURE__ */
|
|
1253
|
+
duotone && /* @__PURE__ */ jsx25(
|
|
1112
1254
|
"path",
|
|
1113
1255
|
{
|
|
1114
1256
|
opacity: "0.12",
|
|
@@ -1116,7 +1258,7 @@ var EditIcon = forwardRef23(function EditIcon2(_a, ref) {
|
|
|
1116
1258
|
fill: "currentColor"
|
|
1117
1259
|
}
|
|
1118
1260
|
),
|
|
1119
|
-
/* @__PURE__ */
|
|
1261
|
+
/* @__PURE__ */ jsx25(
|
|
1120
1262
|
"path",
|
|
1121
1263
|
{
|
|
1122
1264
|
d: "M11 3.99998H6.8C5.11984 3.99998 4.27976 3.99998 3.63803 4.32696C3.07354 4.61458 2.6146 5.07353 2.32698 5.63801C2 6.27975 2 7.11983 2 8.79998V17.2C2 18.8801 2 19.7202 2.32698 20.362C2.6146 20.9264 3.07354 21.3854 3.63803 21.673C4.27976 22 5.11984 22 6.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9264 19.673 20.362C20 19.7202 20 18.8801 20 17.2V13M7.99997 16H9.67452C10.1637 16 10.4083 16 10.6385 15.9447C10.8425 15.8957 11.0376 15.8149 11.2166 15.7053C11.4184 15.5816 11.5914 15.4086 11.9373 15.0627L21.5 5.49998C22.3284 4.67156 22.3284 3.32841 21.5 2.49998C20.6716 1.67156 19.3284 1.67155 18.5 2.49998L8.93723 12.0627C8.59133 12.4086 8.41838 12.5816 8.29469 12.7834C8.18504 12.9624 8.10423 13.1574 8.05523 13.3615C7.99997 13.5917 7.99997 13.8363 7.99997 14.3255V16Z",
|
|
@@ -1133,11 +1275,11 @@ var EditIcon = forwardRef23(function EditIcon2(_a, ref) {
|
|
|
1133
1275
|
|
|
1134
1276
|
// src/icons/expand.tsx
|
|
1135
1277
|
import { forwardRef as forwardRef24 } from "react";
|
|
1136
|
-
import { jsx as
|
|
1278
|
+
import { jsx as jsx26 } from "react/jsx-runtime";
|
|
1137
1279
|
var ExpandIcon = forwardRef24(
|
|
1138
1280
|
function ExpandIcon2(_a, ref) {
|
|
1139
1281
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1140
|
-
return /* @__PURE__ */
|
|
1282
|
+
return /* @__PURE__ */ jsx26(
|
|
1141
1283
|
"svg",
|
|
1142
1284
|
__spreadProps(__spreadValues({
|
|
1143
1285
|
ref,
|
|
@@ -1148,7 +1290,7 @@ var ExpandIcon = forwardRef24(
|
|
|
1148
1290
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1149
1291
|
className
|
|
1150
1292
|
}, other), {
|
|
1151
|
-
children: /* @__PURE__ */
|
|
1293
|
+
children: /* @__PURE__ */ jsx26(
|
|
1152
1294
|
"path",
|
|
1153
1295
|
{
|
|
1154
1296
|
d: "M16 8L21 3M21 3H16M21 3V8M8 8L3 3M3 3L3 8M3 3L8 3M8 16L3 21M3 21H8M3 21L3 16M16 16L21 21M21 21V16M21 21H16",
|
|
@@ -1165,11 +1307,11 @@ var ExpandIcon = forwardRef24(
|
|
|
1165
1307
|
|
|
1166
1308
|
// src/icons/flipBackward.tsx
|
|
1167
1309
|
import { forwardRef as forwardRef25 } from "react";
|
|
1168
|
-
import { jsx as
|
|
1310
|
+
import { jsx as jsx27 } from "react/jsx-runtime";
|
|
1169
1311
|
var FlipBackwardIcon = forwardRef25(
|
|
1170
1312
|
function FlipBackwardIcon2(_a, ref) {
|
|
1171
1313
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1172
|
-
return /* @__PURE__ */
|
|
1314
|
+
return /* @__PURE__ */ jsx27(
|
|
1173
1315
|
"svg",
|
|
1174
1316
|
__spreadProps(__spreadValues({
|
|
1175
1317
|
ref,
|
|
@@ -1180,7 +1322,7 @@ var FlipBackwardIcon = forwardRef25(
|
|
|
1180
1322
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1181
1323
|
className
|
|
1182
1324
|
}, other), {
|
|
1183
|
-
children: /* @__PURE__ */
|
|
1325
|
+
children: /* @__PURE__ */ jsx27(
|
|
1184
1326
|
"path",
|
|
1185
1327
|
{
|
|
1186
1328
|
d: "M3 9H16.5C18.9853 9 21 11.0147 21 13.5C21 15.9853 18.9853 18 16.5 18H12M3 9L7 5M3 9L7 13",
|
|
@@ -1197,11 +1339,11 @@ var FlipBackwardIcon = forwardRef25(
|
|
|
1197
1339
|
|
|
1198
1340
|
// src/icons/flipForward.tsx
|
|
1199
1341
|
import { forwardRef as forwardRef26 } from "react";
|
|
1200
|
-
import { jsx as
|
|
1342
|
+
import { jsx as jsx28 } from "react/jsx-runtime";
|
|
1201
1343
|
var FlipForwardIcon = forwardRef26(
|
|
1202
1344
|
function FlipForwardIcon2(_a, ref) {
|
|
1203
1345
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1204
|
-
return /* @__PURE__ */
|
|
1346
|
+
return /* @__PURE__ */ jsx28(
|
|
1205
1347
|
"svg",
|
|
1206
1348
|
__spreadProps(__spreadValues({
|
|
1207
1349
|
ref,
|
|
@@ -1212,7 +1354,7 @@ var FlipForwardIcon = forwardRef26(
|
|
|
1212
1354
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1213
1355
|
className
|
|
1214
1356
|
}, other), {
|
|
1215
|
-
children: /* @__PURE__ */
|
|
1357
|
+
children: /* @__PURE__ */ jsx28(
|
|
1216
1358
|
"path",
|
|
1217
1359
|
{
|
|
1218
1360
|
d: "M21 9H7.5C5.01472 9 3 11.0147 3 13.5C3 15.9853 5.01472 18 7.5 18H12M21 9L17 5M21 9L17 13",
|
|
@@ -1229,11 +1371,11 @@ var FlipForwardIcon = forwardRef26(
|
|
|
1229
1371
|
|
|
1230
1372
|
// src/icons/helpCircle.tsx
|
|
1231
1373
|
import { forwardRef as forwardRef27 } from "react";
|
|
1232
|
-
import { jsx as
|
|
1374
|
+
import { jsx as jsx29, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
1233
1375
|
var HelpCircleIcon = forwardRef27(
|
|
1234
1376
|
function HelpCircleIcon2(_a, ref) {
|
|
1235
1377
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1236
|
-
return /* @__PURE__ */
|
|
1378
|
+
return /* @__PURE__ */ jsxs15(
|
|
1237
1379
|
"svg",
|
|
1238
1380
|
__spreadProps(__spreadValues({
|
|
1239
1381
|
ref,
|
|
@@ -1245,7 +1387,7 @@ var HelpCircleIcon = forwardRef27(
|
|
|
1245
1387
|
className
|
|
1246
1388
|
}, other), {
|
|
1247
1389
|
children: [
|
|
1248
|
-
duotone && /* @__PURE__ */
|
|
1390
|
+
duotone && /* @__PURE__ */ jsx29(
|
|
1249
1391
|
"path",
|
|
1250
1392
|
{
|
|
1251
1393
|
opacity: "0.12",
|
|
@@ -1253,7 +1395,7 @@ var HelpCircleIcon = forwardRef27(
|
|
|
1253
1395
|
fill: "currentColor"
|
|
1254
1396
|
}
|
|
1255
1397
|
),
|
|
1256
|
-
/* @__PURE__ */
|
|
1398
|
+
/* @__PURE__ */ jsx29(
|
|
1257
1399
|
"path",
|
|
1258
1400
|
{
|
|
1259
1401
|
d: "M9.09 9C9.3251 8.33167 9.78915 7.76811 10.4 7.40913C11.0108 7.05016 11.7289 6.91894 12.4272 7.03871C13.1255 7.15849 13.7588 7.52152 14.2151 8.06353C14.6713 8.60553 14.9211 9.29152 14.92 10C14.92 12 11.92 13 11.92 13M12 17H12.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -1271,10 +1413,10 @@ var HelpCircleIcon = forwardRef27(
|
|
|
1271
1413
|
|
|
1272
1414
|
// src/icons/home.tsx
|
|
1273
1415
|
import { forwardRef as forwardRef28 } from "react";
|
|
1274
|
-
import { jsx as
|
|
1416
|
+
import { jsx as jsx30, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
1275
1417
|
var HomeIcon = forwardRef28(function HomeIcon2(_a, ref) {
|
|
1276
1418
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1277
|
-
return /* @__PURE__ */
|
|
1419
|
+
return /* @__PURE__ */ jsxs16(
|
|
1278
1420
|
"svg",
|
|
1279
1421
|
__spreadProps(__spreadValues({
|
|
1280
1422
|
ref,
|
|
@@ -1286,8 +1428,8 @@ var HomeIcon = forwardRef28(function HomeIcon2(_a, ref) {
|
|
|
1286
1428
|
className
|
|
1287
1429
|
}, other), {
|
|
1288
1430
|
children: [
|
|
1289
|
-
duotone && /* @__PURE__ */
|
|
1290
|
-
/* @__PURE__ */
|
|
1431
|
+
duotone && /* @__PURE__ */ jsx30("path", { opacity: "0.12", d: "M9 21V12H15V21", fill: "currentColor" }),
|
|
1432
|
+
/* @__PURE__ */ jsx30(
|
|
1291
1433
|
"path",
|
|
1292
1434
|
{
|
|
1293
1435
|
d: "M9 21V13.6C9 13.0399 9 12.7599 9.10899 12.546C9.20487 12.3578 9.35785 12.2049 9.54601 12.109C9.75992 12 10.0399 12 10.6 12H13.4C13.9601 12 14.2401 12 14.454 12.109C14.6422 12.2049 14.7951 12.3578 14.891 12.546C15 12.7599 15 13.0399 15 13.6V21M11.0177 2.764L4.23539 8.03912C3.78202 8.39175 3.55534 8.56806 3.39203 8.78886C3.24737 8.98444 3.1396 9.20478 3.07403 9.43905C3 9.70352 3 9.9907 3 10.5651V17.8C3 18.9201 3 19.4801 3.21799 19.908C3.40973 20.2843 3.71569 20.5903 4.09202 20.782C4.51984 21 5.07989 21 6.2 21H17.8C18.9201 21 19.4802 21 19.908 20.782C20.2843 20.5903 20.5903 20.2843 20.782 19.908C21 19.4801 21 18.9201 21 17.8V10.5651C21 9.9907 21 9.70352 20.926 9.43905C20.8604 9.20478 20.7526 8.98444 20.608 8.78886C20.4447 8.56806 20.218 8.39175 19.7646 8.03913L12.9823 2.764C12.631 2.49075 12.4553 2.35412 12.2613 2.3016C12.0902 2.25526 11.9098 2.25526 11.7387 2.3016C11.5447 2.35412 11.369 2.49075 11.0177 2.764Z",
|
|
@@ -1304,11 +1446,11 @@ var HomeIcon = forwardRef28(function HomeIcon2(_a, ref) {
|
|
|
1304
1446
|
|
|
1305
1447
|
// src/icons/image.tsx
|
|
1306
1448
|
import { forwardRef as forwardRef29 } from "react";
|
|
1307
|
-
import { jsx as
|
|
1449
|
+
import { jsx as jsx31, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
1308
1450
|
var ImageIcon = forwardRef29(
|
|
1309
1451
|
function ImageIcon2(_a, ref) {
|
|
1310
1452
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1311
|
-
return /* @__PURE__ */
|
|
1453
|
+
return /* @__PURE__ */ jsxs17(
|
|
1312
1454
|
"svg",
|
|
1313
1455
|
__spreadProps(__spreadValues({
|
|
1314
1456
|
ref,
|
|
@@ -1320,15 +1462,15 @@ var ImageIcon = forwardRef29(
|
|
|
1320
1462
|
className
|
|
1321
1463
|
}, other), {
|
|
1322
1464
|
children: [
|
|
1323
|
-
duotone && /* @__PURE__ */
|
|
1324
|
-
/* @__PURE__ */
|
|
1465
|
+
duotone && /* @__PURE__ */ jsxs17("g", { opacity: "0.12", children: [
|
|
1466
|
+
/* @__PURE__ */ jsx31(
|
|
1325
1467
|
"path",
|
|
1326
1468
|
{
|
|
1327
1469
|
d: "M6.36567 19.6343L14.8686 11.1314C15.2646 10.7354 15.4626 10.5373 15.691 10.4632C15.8918 10.3979 16.1082 10.3979 16.309 10.4632C16.5373 10.5373 16.7353 10.7354 17.1314 11.1314L21 15V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9264 20.3854 19.362 20.673C18.7202 21 17.8801 21 16.2 21H6.93136C6.32554 21 6.02264 21 5.88237 20.8802C5.76067 20.7763 5.69608 20.6203 5.70864 20.4608C5.72311 20.2769 5.9373 20.0627 6.36567 19.6343Z",
|
|
1328
1470
|
fill: "currentColor"
|
|
1329
1471
|
}
|
|
1330
1472
|
),
|
|
1331
|
-
/* @__PURE__ */
|
|
1473
|
+
/* @__PURE__ */ jsx31(
|
|
1332
1474
|
"path",
|
|
1333
1475
|
{
|
|
1334
1476
|
d: "M8.49999 10.5C9.60456 10.5 10.5 9.60457 10.5 8.5C10.5 7.39543 9.60456 6.5 8.49999 6.5C7.39542 6.5 6.49999 7.39543 6.49999 8.5C6.49999 9.60457 7.39542 10.5 8.49999 10.5Z",
|
|
@@ -1336,7 +1478,7 @@ var ImageIcon = forwardRef29(
|
|
|
1336
1478
|
}
|
|
1337
1479
|
)
|
|
1338
1480
|
] }),
|
|
1339
|
-
/* @__PURE__ */
|
|
1481
|
+
/* @__PURE__ */ jsx31(
|
|
1340
1482
|
"path",
|
|
1341
1483
|
{
|
|
1342
1484
|
d: "M16.2 21H6.93137C6.32555 21 6.02265 21 5.88238 20.8802C5.76068 20.7763 5.69609 20.6203 5.70865 20.4608C5.72312 20.2769 5.93731 20.0627 6.36569 19.6343L14.8686 11.1314C15.2646 10.7354 15.4627 10.5373 15.691 10.4632C15.8918 10.3979 16.1082 10.3979 16.309 10.4632C16.5373 10.5373 16.7354 10.7354 17.1314 11.1314L21 15V16.2M16.2 21C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2M16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5Z",
|
|
@@ -1354,11 +1496,11 @@ var ImageIcon = forwardRef29(
|
|
|
1354
1496
|
|
|
1355
1497
|
// src/icons/imageDown.tsx
|
|
1356
1498
|
import { forwardRef as forwardRef30 } from "react";
|
|
1357
|
-
import { jsx as
|
|
1499
|
+
import { jsx as jsx32, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
1358
1500
|
var ImageDownIcon = forwardRef30(
|
|
1359
1501
|
function ImageDownIcon2(_a, ref) {
|
|
1360
1502
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1361
|
-
return /* @__PURE__ */
|
|
1503
|
+
return /* @__PURE__ */ jsxs18(
|
|
1362
1504
|
"svg",
|
|
1363
1505
|
__spreadProps(__spreadValues({
|
|
1364
1506
|
ref,
|
|
@@ -1370,15 +1512,15 @@ var ImageDownIcon = forwardRef30(
|
|
|
1370
1512
|
className
|
|
1371
1513
|
}, other), {
|
|
1372
1514
|
children: [
|
|
1373
|
-
duotone && /* @__PURE__ */
|
|
1374
|
-
/* @__PURE__ */
|
|
1515
|
+
duotone && /* @__PURE__ */ jsxs18("g", { opacity: "0.12", children: [
|
|
1516
|
+
/* @__PURE__ */ jsx32(
|
|
1375
1517
|
"path",
|
|
1376
1518
|
{
|
|
1377
1519
|
d: "M8.50004 10.5C9.60461 10.5 10.5 9.60457 10.5 8.5C10.5 7.39543 9.60461 6.5 8.50004 6.5C7.39547 6.5 6.50004 7.39543 6.50004 8.5C6.50004 9.60457 7.39547 10.5 8.50004 10.5Z",
|
|
1378
1520
|
fill: "currentColor"
|
|
1379
1521
|
}
|
|
1380
1522
|
),
|
|
1381
|
-
/* @__PURE__ */
|
|
1523
|
+
/* @__PURE__ */ jsx32(
|
|
1382
1524
|
"path",
|
|
1383
1525
|
{
|
|
1384
1526
|
d: "M6.53118 19.608L14.9901 11.9181C15.3487 11.5921 15.528 11.4291 15.7326 11.3627C15.9129 11.3041 16.1062 11.298 16.2898 11.3451C16.4982 11.3985 16.6874 11.5499 17.0659 11.8527L19.8631 14.0905C20.2412 14.3929 20.4303 14.5442 20.5733 14.7264C20.753 14.9554 20.8806 15.2208 20.9471 15.5042C21 15.7296 21 15.9717 21 16.456C21 17.8951 21 18.6147 20.7583 19.1799C20.4547 19.8894 19.8895 20.4547 19.18 20.7582C18.6148 21 17.8952 21 16.456 21H7.06932C6.42632 21 6.10481 21 5.96322 20.8755C5.84049 20.7676 5.77822 20.6066 5.79646 20.4442C5.81751 20.2568 6.0554 20.0406 6.53118 19.608Z",
|
|
@@ -1386,7 +1528,7 @@ var ImageDownIcon = forwardRef30(
|
|
|
1386
1528
|
}
|
|
1387
1529
|
)
|
|
1388
1530
|
] }),
|
|
1389
|
-
/* @__PURE__ */
|
|
1531
|
+
/* @__PURE__ */ jsx32(
|
|
1390
1532
|
"path",
|
|
1391
1533
|
{
|
|
1392
1534
|
d: "M16 5L19 8M19 8L22 5M19 8V2M12.5 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H17C17.93 21 18.395 21 18.7765 20.8978C19.8117 20.6204 20.6204 19.8117 20.8978 18.7765C21 18.395 21 17.93 21 17M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5ZM14.99 11.9181L6.53115 19.608C6.05536 20.0406 5.81747 20.2568 5.79643 20.4442C5.77819 20.6066 5.84045 20.7676 5.96319 20.8755C6.10478 21 6.42628 21 7.06929 21H16.456C17.8951 21 18.6147 21 19.1799 20.7582C19.8894 20.4547 20.4547 19.8894 20.7582 19.1799C21 18.6147 21 17.8951 21 16.456C21 15.9717 21 15.7296 20.9471 15.5042C20.8805 15.2208 20.753 14.9554 20.5733 14.7264C20.4303 14.5442 20.2412 14.3929 19.8631 14.0905L17.0658 11.8527C16.6874 11.5499 16.4982 11.3985 16.2898 11.3451C16.1061 11.298 15.9129 11.3041 15.7325 11.3627C15.5279 11.4291 15.3486 11.5921 14.99 11.9181Z",
|
|
@@ -1404,11 +1546,11 @@ var ImageDownIcon = forwardRef30(
|
|
|
1404
1546
|
|
|
1405
1547
|
// src/icons/imageX.tsx
|
|
1406
1548
|
import { forwardRef as forwardRef31 } from "react";
|
|
1407
|
-
import { jsx as
|
|
1549
|
+
import { jsx as jsx33, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
1408
1550
|
var ImageXIcon = forwardRef31(
|
|
1409
1551
|
function ImageXIcon2(_a, ref) {
|
|
1410
1552
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1411
|
-
return /* @__PURE__ */
|
|
1553
|
+
return /* @__PURE__ */ jsxs19(
|
|
1412
1554
|
"svg",
|
|
1413
1555
|
__spreadProps(__spreadValues({
|
|
1414
1556
|
ref,
|
|
@@ -1420,15 +1562,15 @@ var ImageXIcon = forwardRef31(
|
|
|
1420
1562
|
className
|
|
1421
1563
|
}, other), {
|
|
1422
1564
|
children: [
|
|
1423
|
-
duotone && /* @__PURE__ */
|
|
1424
|
-
/* @__PURE__ */
|
|
1565
|
+
duotone && /* @__PURE__ */ jsxs19("g", { opacity: "0.12", children: [
|
|
1566
|
+
/* @__PURE__ */ jsx33(
|
|
1425
1567
|
"path",
|
|
1426
1568
|
{
|
|
1427
1569
|
d: "M8.50016 10.5C9.60473 10.5 10.5002 9.60457 10.5002 8.5C10.5002 7.39543 9.60473 6.5 8.50016 6.5C7.39559 6.5 6.50016 7.39543 6.50016 8.5C6.50016 9.60457 7.39559 10.5 8.50016 10.5Z",
|
|
1428
1570
|
fill: "currentColor"
|
|
1429
1571
|
}
|
|
1430
1572
|
),
|
|
1431
|
-
/* @__PURE__ */
|
|
1573
|
+
/* @__PURE__ */ jsx33(
|
|
1432
1574
|
"path",
|
|
1433
1575
|
{
|
|
1434
1576
|
d: "M6.53131 19.608L14.9902 11.9181C15.3488 11.5921 15.5281 11.4291 15.7327 11.3627C15.913 11.3041 16.1063 11.298 16.29 11.3451C16.4983 11.3985 16.6875 11.5499 17.066 11.8527L19.8632 14.0905C20.2413 14.3929 20.4304 14.5442 20.5734 14.7264C20.7531 14.9554 20.8807 15.2208 20.9472 15.5042C21.0002 15.7296 21.0002 15.9717 21.0002 16.456C21.0002 17.8951 21.0002 18.6147 20.7584 19.1799C20.4549 19.8894 19.8896 20.4547 19.1801 20.7582C18.6149 21 17.8953 21 16.4561 21H7.06944C6.42644 21 6.10494 21 5.96334 20.8755C5.84061 20.7676 5.77835 20.6066 5.79659 20.4442C5.81763 20.2568 6.05552 20.0406 6.53131 19.608Z",
|
|
@@ -1436,7 +1578,7 @@ var ImageXIcon = forwardRef31(
|
|
|
1436
1578
|
}
|
|
1437
1579
|
)
|
|
1438
1580
|
] }),
|
|
1439
|
-
/* @__PURE__ */
|
|
1581
|
+
/* @__PURE__ */ jsx33(
|
|
1440
1582
|
"path",
|
|
1441
1583
|
{
|
|
1442
1584
|
d: "M16.5 2.5L21.5 7.5M21.5 2.5L16.5 7.5M12.5 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H17C17.93 21 18.395 21 18.7765 20.8978C19.8117 20.6204 20.6204 19.8117 20.8978 18.7765C21 18.395 21 17.93 21 17M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5ZM14.99 11.9181L6.53115 19.608C6.05536 20.0406 5.81747 20.2568 5.79643 20.4442C5.77819 20.6066 5.84045 20.7676 5.96319 20.8755C6.10478 21 6.42628 21 7.06929 21H16.456C17.8951 21 18.6147 21 19.1799 20.7582C19.8894 20.4547 20.4547 19.8894 20.7582 19.1799C21 18.6147 21 17.8951 21 16.456C21 15.9717 21 15.7296 20.9471 15.5042C20.8805 15.2208 20.753 14.9554 20.5733 14.7264C20.4303 14.5442 20.2412 14.3929 19.8631 14.0905L17.0658 11.8527C16.6874 11.5499 16.4982 11.3985 16.2898 11.3451C16.1061 11.298 15.9129 11.3041 15.7325 11.3627C15.5279 11.4291 15.3486 11.5921 14.99 11.9181Z",
|
|
@@ -1454,11 +1596,11 @@ var ImageXIcon = forwardRef31(
|
|
|
1454
1596
|
|
|
1455
1597
|
// src/icons/infoCircle.tsx
|
|
1456
1598
|
import { forwardRef as forwardRef32 } from "react";
|
|
1457
|
-
import { jsx as
|
|
1599
|
+
import { jsx as jsx34, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
1458
1600
|
var InfoCircleIcon = forwardRef32(
|
|
1459
1601
|
function InfoCircleIcon2(_a, ref) {
|
|
1460
1602
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1461
|
-
return /* @__PURE__ */
|
|
1603
|
+
return /* @__PURE__ */ jsxs20(
|
|
1462
1604
|
"svg",
|
|
1463
1605
|
__spreadProps(__spreadValues({
|
|
1464
1606
|
ref,
|
|
@@ -1470,7 +1612,7 @@ var InfoCircleIcon = forwardRef32(
|
|
|
1470
1612
|
className
|
|
1471
1613
|
}, other), {
|
|
1472
1614
|
children: [
|
|
1473
|
-
duotone && /* @__PURE__ */
|
|
1615
|
+
duotone && /* @__PURE__ */ jsx34(
|
|
1474
1616
|
"path",
|
|
1475
1617
|
{
|
|
1476
1618
|
opacity: "0.12",
|
|
@@ -1478,7 +1620,7 @@ var InfoCircleIcon = forwardRef32(
|
|
|
1478
1620
|
fill: "currentColor"
|
|
1479
1621
|
}
|
|
1480
1622
|
),
|
|
1481
|
-
/* @__PURE__ */
|
|
1623
|
+
/* @__PURE__ */ jsx34(
|
|
1482
1624
|
"path",
|
|
1483
1625
|
{
|
|
1484
1626
|
d: "M12 16V12M12 8H12.01M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -1496,11 +1638,11 @@ var InfoCircleIcon = forwardRef32(
|
|
|
1496
1638
|
|
|
1497
1639
|
// src/icons/lightbulb.tsx
|
|
1498
1640
|
import { forwardRef as forwardRef33 } from "react";
|
|
1499
|
-
import { jsx as
|
|
1641
|
+
import { jsx as jsx35, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
1500
1642
|
var LightbulbIcon = forwardRef33(
|
|
1501
1643
|
function LightbulbIcon2(_a, ref) {
|
|
1502
1644
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1503
|
-
return /* @__PURE__ */
|
|
1645
|
+
return /* @__PURE__ */ jsxs21(
|
|
1504
1646
|
"svg",
|
|
1505
1647
|
__spreadProps(__spreadValues({
|
|
1506
1648
|
ref,
|
|
@@ -1512,7 +1654,7 @@ var LightbulbIcon = forwardRef33(
|
|
|
1512
1654
|
className
|
|
1513
1655
|
}, other), {
|
|
1514
1656
|
children: [
|
|
1515
|
-
duotone && /* @__PURE__ */
|
|
1657
|
+
duotone && /* @__PURE__ */ jsx35(
|
|
1516
1658
|
"path",
|
|
1517
1659
|
{
|
|
1518
1660
|
opacity: "0.12",
|
|
@@ -1520,7 +1662,7 @@ var LightbulbIcon = forwardRef33(
|
|
|
1520
1662
|
fill: "currentColor"
|
|
1521
1663
|
}
|
|
1522
1664
|
),
|
|
1523
|
-
/* @__PURE__ */
|
|
1665
|
+
/* @__PURE__ */ jsx35(
|
|
1524
1666
|
"path",
|
|
1525
1667
|
{
|
|
1526
1668
|
d: "M9.5 22H14.5M10 10H14M12 10L12 16M15 15.3264C17.3649 14.2029 19 11.7924 19 9C19 5.13401 15.866 2 12 2C8.13401 2 5 5.13401 5 9C5 11.7924 6.63505 14.2029 9 15.3264V16C9 16.9319 9 17.3978 9.15224 17.7654C9.35523 18.2554 9.74458 18.6448 10.2346 18.8478C10.6022 19 11.0681 19 12 19C12.9319 19 13.3978 19 13.7654 18.8478C14.2554 18.6448 14.6448 18.2554 14.8478 17.7654C15 17.3978 15 16.9319 15 16V15.3264Z",
|
|
@@ -1538,10 +1680,10 @@ var LightbulbIcon = forwardRef33(
|
|
|
1538
1680
|
|
|
1539
1681
|
// src/icons/lock.tsx
|
|
1540
1682
|
import { forwardRef as forwardRef34 } from "react";
|
|
1541
|
-
import { jsx as
|
|
1683
|
+
import { jsx as jsx36, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
1542
1684
|
var LockIcon = forwardRef34(function LockIcon2(_a, ref) {
|
|
1543
1685
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1544
|
-
return /* @__PURE__ */
|
|
1686
|
+
return /* @__PURE__ */ jsxs22(
|
|
1545
1687
|
"svg",
|
|
1546
1688
|
__spreadProps(__spreadValues({
|
|
1547
1689
|
ref,
|
|
@@ -1553,7 +1695,7 @@ var LockIcon = forwardRef34(function LockIcon2(_a, ref) {
|
|
|
1553
1695
|
className
|
|
1554
1696
|
}, other), {
|
|
1555
1697
|
children: [
|
|
1556
|
-
duotone && /* @__PURE__ */
|
|
1698
|
+
duotone && /* @__PURE__ */ jsx36(
|
|
1557
1699
|
"path",
|
|
1558
1700
|
{
|
|
1559
1701
|
opacity: "0.12",
|
|
@@ -1561,7 +1703,7 @@ var LockIcon = forwardRef34(function LockIcon2(_a, ref) {
|
|
|
1561
1703
|
fill: "currentColor"
|
|
1562
1704
|
}
|
|
1563
1705
|
),
|
|
1564
|
-
/* @__PURE__ */
|
|
1706
|
+
/* @__PURE__ */ jsx36(
|
|
1565
1707
|
"path",
|
|
1566
1708
|
{
|
|
1567
1709
|
d: "M17 10V8C17 5.23858 14.7614 3 12 3C9.23858 3 7 5.23858 7 8V10M12 14.5V16.5M8.8 21H15.2C16.8802 21 17.7202 21 18.362 20.673C18.9265 20.3854 19.3854 19.9265 19.673 19.362C20 18.7202 20 17.8802 20 16.2V14.8C20 13.1198 20 12.2798 19.673 11.638C19.3854 11.0735 18.9265 10.6146 18.362 10.327C17.7202 10 16.8802 10 15.2 10H8.8C7.11984 10 6.27976 10 5.63803 10.327C5.07354 10.6146 4.6146 11.0735 4.32698 11.638C4 12.2798 4 13.1198 4 14.8V16.2C4 17.8802 4 18.7202 4.32698 19.362C4.6146 19.9265 5.07354 20.3854 5.63803 20.673C6.27976 21 7.11984 21 8.8 21Z",
|
|
@@ -1578,11 +1720,11 @@ var LockIcon = forwardRef34(function LockIcon2(_a, ref) {
|
|
|
1578
1720
|
|
|
1579
1721
|
// src/icons/logIn.tsx
|
|
1580
1722
|
import { forwardRef as forwardRef35 } from "react";
|
|
1581
|
-
import { jsx as
|
|
1723
|
+
import { jsx as jsx37, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
1582
1724
|
var LogInIcon = forwardRef35(
|
|
1583
1725
|
function LogInIcon2(_a, ref) {
|
|
1584
1726
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1585
|
-
return /* @__PURE__ */
|
|
1727
|
+
return /* @__PURE__ */ jsxs23(
|
|
1586
1728
|
"svg",
|
|
1587
1729
|
__spreadProps(__spreadValues({
|
|
1588
1730
|
ref,
|
|
@@ -1594,7 +1736,7 @@ var LogInIcon = forwardRef35(
|
|
|
1594
1736
|
className
|
|
1595
1737
|
}, other), {
|
|
1596
1738
|
children: [
|
|
1597
|
-
duotone && /* @__PURE__ */
|
|
1739
|
+
duotone && /* @__PURE__ */ jsx37(
|
|
1598
1740
|
"path",
|
|
1599
1741
|
{
|
|
1600
1742
|
opacity: "0.12",
|
|
@@ -1602,7 +1744,7 @@ var LogInIcon = forwardRef35(
|
|
|
1602
1744
|
fill: "currentColor"
|
|
1603
1745
|
}
|
|
1604
1746
|
),
|
|
1605
|
-
/* @__PURE__ */
|
|
1747
|
+
/* @__PURE__ */ jsx37(
|
|
1606
1748
|
"path",
|
|
1607
1749
|
{
|
|
1608
1750
|
d: "M6 17C6 17.93 6 18.395 6.10222 18.7765C6.37962 19.8117 7.18827 20.6204 8.22354 20.8978C8.60504 21 9.07003 21 10 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H10C9.07003 3 8.60504 3 8.22354 3.10222C7.18827 3.37962 6.37962 4.18827 6.10222 5.22354C6 5.60504 6 6.07003 6 7M12 8L16 12M16 12L12 16M16 12H3",
|
|
@@ -1620,11 +1762,11 @@ var LogInIcon = forwardRef35(
|
|
|
1620
1762
|
|
|
1621
1763
|
// src/icons/magicWand.tsx
|
|
1622
1764
|
import { forwardRef as forwardRef36 } from "react";
|
|
1623
|
-
import { jsx as
|
|
1765
|
+
import { jsx as jsx38, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
1624
1766
|
var MagicWandIcon = forwardRef36(
|
|
1625
1767
|
function MagicWandIcon2(_a, ref) {
|
|
1626
1768
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1627
|
-
return /* @__PURE__ */
|
|
1769
|
+
return /* @__PURE__ */ jsxs24(
|
|
1628
1770
|
"svg",
|
|
1629
1771
|
__spreadProps(__spreadValues({
|
|
1630
1772
|
ref,
|
|
@@ -1636,7 +1778,7 @@ var MagicWandIcon = forwardRef36(
|
|
|
1636
1778
|
className
|
|
1637
1779
|
}, other), {
|
|
1638
1780
|
children: [
|
|
1639
|
-
duotone && /* @__PURE__ */
|
|
1781
|
+
duotone && /* @__PURE__ */ jsx38(
|
|
1640
1782
|
"path",
|
|
1641
1783
|
{
|
|
1642
1784
|
opacity: "0.12",
|
|
@@ -1644,7 +1786,7 @@ var MagicWandIcon = forwardRef36(
|
|
|
1644
1786
|
fill: "currentColor"
|
|
1645
1787
|
}
|
|
1646
1788
|
),
|
|
1647
|
-
/* @__PURE__ */
|
|
1789
|
+
/* @__PURE__ */ jsx38(
|
|
1648
1790
|
"path",
|
|
1649
1791
|
{
|
|
1650
1792
|
d: "M13 14L9.99997 11M15.0103 3.5V2M18.9497 5.06066L20.0103 4M18.9497 13L20.0103 14.0607M11.0103 5.06066L9.94966 4M20.5103 9H22.0103M6.13134 20.8686L15.3686 11.6314C15.7646 11.2354 15.9626 11.0373 16.0368 10.809C16.1021 10.6082 16.1021 10.3918 16.0368 10.191C15.9626 9.96265 15.7646 9.76465 15.3686 9.36863L14.6313 8.63137C14.2353 8.23535 14.0373 8.03735 13.809 7.96316C13.6081 7.8979 13.3918 7.8979 13.191 7.96316C12.9626 8.03735 12.7646 8.23535 12.3686 8.63137L3.13134 17.8686C2.73532 18.2646 2.53732 18.4627 2.46313 18.691C2.39787 18.8918 2.39787 19.1082 2.46313 19.309C2.53732 19.5373 2.73533 19.7354 3.13134 20.1314L3.8686 20.8686C4.26462 21.2646 4.46263 21.4627 4.69095 21.5368C4.8918 21.6021 5.10814 21.6021 5.30899 21.5368C5.53732 21.4627 5.73533 21.2646 6.13134 20.8686Z",
|
|
@@ -1662,10 +1804,10 @@ var MagicWandIcon = forwardRef36(
|
|
|
1662
1804
|
|
|
1663
1805
|
// src/icons/mail.tsx
|
|
1664
1806
|
import { forwardRef as forwardRef37 } from "react";
|
|
1665
|
-
import { jsx as
|
|
1807
|
+
import { jsx as jsx39, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
1666
1808
|
var MailIcon = forwardRef37(function MailIcon2(_a, ref) {
|
|
1667
1809
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1668
|
-
return /* @__PURE__ */
|
|
1810
|
+
return /* @__PURE__ */ jsxs25(
|
|
1669
1811
|
"svg",
|
|
1670
1812
|
__spreadProps(__spreadValues({
|
|
1671
1813
|
ref,
|
|
@@ -1677,7 +1819,7 @@ var MailIcon = forwardRef37(function MailIcon2(_a, ref) {
|
|
|
1677
1819
|
className
|
|
1678
1820
|
}, other), {
|
|
1679
1821
|
children: [
|
|
1680
|
-
duotone && /* @__PURE__ */
|
|
1822
|
+
duotone && /* @__PURE__ */ jsx39(
|
|
1681
1823
|
"path",
|
|
1682
1824
|
{
|
|
1683
1825
|
opacity: "0.12",
|
|
@@ -1685,7 +1827,7 @@ var MailIcon = forwardRef37(function MailIcon2(_a, ref) {
|
|
|
1685
1827
|
fill: "currentColor"
|
|
1686
1828
|
}
|
|
1687
1829
|
),
|
|
1688
|
-
/* @__PURE__ */
|
|
1830
|
+
/* @__PURE__ */ jsx39(
|
|
1689
1831
|
"path",
|
|
1690
1832
|
{
|
|
1691
1833
|
d: "M2 7L10.1649 12.7154C10.8261 13.1783 11.1567 13.4097 11.5163 13.4993C11.8339 13.5785 12.1661 13.5785 12.4837 13.4993C12.8433 13.4097 13.1739 13.1783 13.8351 12.7154L22 7M6.8 20H17.2C18.8802 20 19.7202 20 20.362 19.673C20.9265 19.3854 21.3854 18.9265 21.673 18.362C22 17.7202 22 16.8802 22 15.2V8.8C22 7.11984 22 6.27976 21.673 5.63803C21.3854 5.07354 20.9265 4.6146 20.362 4.32698C19.7202 4 18.8802 4 17.2 4H6.8C5.11984 4 4.27976 4 3.63803 4.32698C3.07354 4.6146 2.6146 5.07354 2.32698 5.63803C2 6.27976 2 7.11984 2 8.8V15.2C2 16.8802 2 17.7202 2.32698 18.362C2.6146 18.9265 3.07354 19.3854 3.63803 19.673C4.27976 20 5.11984 20 6.8 20Z",
|
|
@@ -1702,10 +1844,10 @@ var MailIcon = forwardRef37(function MailIcon2(_a, ref) {
|
|
|
1702
1844
|
|
|
1703
1845
|
// src/icons/menu.tsx
|
|
1704
1846
|
import { forwardRef as forwardRef38 } from "react";
|
|
1705
|
-
import { jsx as
|
|
1847
|
+
import { jsx as jsx40 } from "react/jsx-runtime";
|
|
1706
1848
|
var MenuIcon = forwardRef38(function MenuIcon2(_a, ref) {
|
|
1707
1849
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1708
|
-
return /* @__PURE__ */
|
|
1850
|
+
return /* @__PURE__ */ jsx40(
|
|
1709
1851
|
"svg",
|
|
1710
1852
|
__spreadProps(__spreadValues({
|
|
1711
1853
|
ref,
|
|
@@ -1716,7 +1858,7 @@ var MenuIcon = forwardRef38(function MenuIcon2(_a, ref) {
|
|
|
1716
1858
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1717
1859
|
className
|
|
1718
1860
|
}, other), {
|
|
1719
|
-
children: /* @__PURE__ */
|
|
1861
|
+
children: /* @__PURE__ */ jsx40(
|
|
1720
1862
|
"path",
|
|
1721
1863
|
{
|
|
1722
1864
|
d: "M3 12H21M3 6H21M3 18H21",
|
|
@@ -1732,11 +1874,11 @@ var MenuIcon = forwardRef38(function MenuIcon2(_a, ref) {
|
|
|
1732
1874
|
|
|
1733
1875
|
// src/icons/messageChatSquare.tsx
|
|
1734
1876
|
import { forwardRef as forwardRef39 } from "react";
|
|
1735
|
-
import { jsx as
|
|
1877
|
+
import { jsx as jsx41, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
1736
1878
|
var MessageChatSquareIcon = forwardRef39(
|
|
1737
1879
|
function MessageChatSquareIcon2(_a, ref) {
|
|
1738
1880
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1739
|
-
return /* @__PURE__ */
|
|
1881
|
+
return /* @__PURE__ */ jsxs26(
|
|
1740
1882
|
"svg",
|
|
1741
1883
|
__spreadProps(__spreadValues({
|
|
1742
1884
|
ref,
|
|
@@ -1748,7 +1890,7 @@ var MessageChatSquareIcon = forwardRef39(
|
|
|
1748
1890
|
className
|
|
1749
1891
|
}, other), {
|
|
1750
1892
|
children: [
|
|
1751
|
-
duotone && /* @__PURE__ */
|
|
1893
|
+
duotone && /* @__PURE__ */ jsx41(
|
|
1752
1894
|
"path",
|
|
1753
1895
|
{
|
|
1754
1896
|
opacity: "0.12",
|
|
@@ -1756,7 +1898,7 @@ var MessageChatSquareIcon = forwardRef39(
|
|
|
1756
1898
|
fill: "currentColor"
|
|
1757
1899
|
}
|
|
1758
1900
|
),
|
|
1759
|
-
/* @__PURE__ */
|
|
1901
|
+
/* @__PURE__ */ jsx41(
|
|
1760
1902
|
"path",
|
|
1761
1903
|
{
|
|
1762
1904
|
d: "M10 15L6.92474 18.1137C6.49579 18.548 6.28131 18.7652 6.09695 18.7805C5.93701 18.7938 5.78042 18.7295 5.67596 18.6076C5.55556 18.4672 5.55556 18.162 5.55556 17.5515V15.9916C5.55556 15.444 5.10707 15.0477 4.5652 14.9683V14.9683C3.25374 14.7762 2.22378 13.7463 2.03168 12.4348C2 12.2186 2 11.9605 2 11.4444V6.8C2 5.11984 2 4.27976 2.32698 3.63803C2.6146 3.07354 3.07354 2.6146 3.63803 2.32698C4.27976 2 5.11984 2 6.8 2H14.2C15.8802 2 16.7202 2 17.362 2.32698C17.9265 2.6146 18.3854 3.07354 18.673 3.63803C19 4.27976 19 5.11984 19 6.8V11M19 22L16.8236 20.4869C16.5177 20.2742 16.3647 20.1678 16.1982 20.0924C16.0504 20.0255 15.8951 19.9768 15.7356 19.9474C15.5558 19.9143 15.3695 19.9143 14.9969 19.9143H13.2C12.0799 19.9143 11.5198 19.9143 11.092 19.6963C10.7157 19.5046 10.4097 19.1986 10.218 18.8223C10 18.3944 10 17.8344 10 16.7143V14.2C10 13.0799 10 12.5198 10.218 12.092C10.4097 11.7157 10.7157 11.4097 11.092 11.218C11.5198 11 12.0799 11 13.2 11H18.8C19.9201 11 20.4802 11 20.908 11.218C21.2843 11.4097 21.5903 11.7157 21.782 12.092C22 12.5198 22 13.0799 22 14.2V16.9143C22 17.8462 22 18.3121 21.8478 18.6797C21.6448 19.1697 21.2554 19.5591 20.7654 19.762C20.3978 19.9143 19.9319 19.9143 19 19.9143V22Z",
|
|
@@ -1774,11 +1916,11 @@ var MessageChatSquareIcon = forwardRef39(
|
|
|
1774
1916
|
|
|
1775
1917
|
// src/icons/messagePlusSquare.tsx
|
|
1776
1918
|
import { forwardRef as forwardRef40 } from "react";
|
|
1777
|
-
import { jsx as
|
|
1919
|
+
import { jsx as jsx42, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
1778
1920
|
var MessagePlusSquareIcon = forwardRef40(
|
|
1779
1921
|
function MessagePlusSquareIcon2(_a, ref) {
|
|
1780
1922
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1781
|
-
return /* @__PURE__ */
|
|
1923
|
+
return /* @__PURE__ */ jsxs27(
|
|
1782
1924
|
"svg",
|
|
1783
1925
|
__spreadProps(__spreadValues({
|
|
1784
1926
|
ref,
|
|
@@ -1790,7 +1932,7 @@ var MessagePlusSquareIcon = forwardRef40(
|
|
|
1790
1932
|
className
|
|
1791
1933
|
}, other), {
|
|
1792
1934
|
children: [
|
|
1793
|
-
duotone && /* @__PURE__ */
|
|
1935
|
+
duotone && /* @__PURE__ */ jsx42(
|
|
1794
1936
|
"path",
|
|
1795
1937
|
{
|
|
1796
1938
|
opacity: "0.12",
|
|
@@ -1798,7 +1940,7 @@ var MessagePlusSquareIcon = forwardRef40(
|
|
|
1798
1940
|
fill: "currentColor"
|
|
1799
1941
|
}
|
|
1800
1942
|
),
|
|
1801
|
-
/* @__PURE__ */
|
|
1943
|
+
/* @__PURE__ */ jsx42(
|
|
1802
1944
|
"path",
|
|
1803
1945
|
{
|
|
1804
1946
|
d: "M12 13.5V7.5M9 10.5H15M7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18Z",
|
|
@@ -1816,11 +1958,11 @@ var MessagePlusSquareIcon = forwardRef40(
|
|
|
1816
1958
|
|
|
1817
1959
|
// src/icons/messageTextSquare.tsx
|
|
1818
1960
|
import { forwardRef as forwardRef41 } from "react";
|
|
1819
|
-
import { jsx as
|
|
1961
|
+
import { jsx as jsx43, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
1820
1962
|
var MessageTextSquareIcon = forwardRef41(
|
|
1821
1963
|
function MessageTextSquareIcon2(_a, ref) {
|
|
1822
1964
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1823
|
-
return /* @__PURE__ */
|
|
1965
|
+
return /* @__PURE__ */ jsxs28(
|
|
1824
1966
|
"svg",
|
|
1825
1967
|
__spreadProps(__spreadValues({
|
|
1826
1968
|
ref,
|
|
@@ -1832,7 +1974,7 @@ var MessageTextSquareIcon = forwardRef41(
|
|
|
1832
1974
|
className
|
|
1833
1975
|
}, other), {
|
|
1834
1976
|
children: [
|
|
1835
|
-
duotone && /* @__PURE__ */
|
|
1977
|
+
duotone && /* @__PURE__ */ jsx43(
|
|
1836
1978
|
"path",
|
|
1837
1979
|
{
|
|
1838
1980
|
opacity: "0.12",
|
|
@@ -1840,7 +1982,7 @@ var MessageTextSquareIcon = forwardRef41(
|
|
|
1840
1982
|
fill: "currentColor"
|
|
1841
1983
|
}
|
|
1842
1984
|
),
|
|
1843
|
-
/* @__PURE__ */
|
|
1985
|
+
/* @__PURE__ */ jsx43(
|
|
1844
1986
|
"path",
|
|
1845
1987
|
{
|
|
1846
1988
|
d: "M7 8.5H12M7 12H15M7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18Z",
|
|
@@ -1858,11 +2000,11 @@ var MessageTextSquareIcon = forwardRef41(
|
|
|
1858
2000
|
|
|
1859
2001
|
// src/icons/microphone.tsx
|
|
1860
2002
|
import { forwardRef as forwardRef42 } from "react";
|
|
1861
|
-
import { jsx as
|
|
2003
|
+
import { jsx as jsx44, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
1862
2004
|
var MicrophoneIcon = forwardRef42(
|
|
1863
2005
|
function MicrophoneIcon2(_a, ref) {
|
|
1864
2006
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1865
|
-
return /* @__PURE__ */
|
|
2007
|
+
return /* @__PURE__ */ jsxs29(
|
|
1866
2008
|
"svg",
|
|
1867
2009
|
__spreadProps(__spreadValues({
|
|
1868
2010
|
ref,
|
|
@@ -1874,7 +2016,7 @@ var MicrophoneIcon = forwardRef42(
|
|
|
1874
2016
|
className
|
|
1875
2017
|
}, other), {
|
|
1876
2018
|
children: [
|
|
1877
|
-
duotone && /* @__PURE__ */
|
|
2019
|
+
duotone && /* @__PURE__ */ jsx44(
|
|
1878
2020
|
"path",
|
|
1879
2021
|
{
|
|
1880
2022
|
opacity: "0.12",
|
|
@@ -1882,7 +2024,7 @@ var MicrophoneIcon = forwardRef42(
|
|
|
1882
2024
|
fill: "currentColor"
|
|
1883
2025
|
}
|
|
1884
2026
|
),
|
|
1885
|
-
/* @__PURE__ */
|
|
2027
|
+
/* @__PURE__ */ jsx44(
|
|
1886
2028
|
"path",
|
|
1887
2029
|
{
|
|
1888
2030
|
d: "M19 10V12C19 15.866 15.866 19 12 19M5 10V12C5 15.866 8.13401 19 12 19M12 19V22M8 22H16M12 15C10.3431 15 9 13.6569 9 12V5C9 3.34315 10.3431 2 12 2C13.6569 2 15 3.34315 15 5V12C15 13.6569 13.6569 15 12 15Z",
|
|
@@ -1900,11 +2042,11 @@ var MicrophoneIcon = forwardRef42(
|
|
|
1900
2042
|
|
|
1901
2043
|
// src/icons/microphoneOff.tsx
|
|
1902
2044
|
import { forwardRef as forwardRef43 } from "react";
|
|
1903
|
-
import { jsx as
|
|
2045
|
+
import { jsx as jsx45, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
1904
2046
|
var MicrophoneOffIcon = forwardRef43(
|
|
1905
2047
|
function MicrophoneOffIcon2(_a, ref) {
|
|
1906
2048
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1907
|
-
return /* @__PURE__ */
|
|
2049
|
+
return /* @__PURE__ */ jsxs30(
|
|
1908
2050
|
"svg",
|
|
1909
2051
|
__spreadProps(__spreadValues({
|
|
1910
2052
|
ref,
|
|
@@ -1916,7 +2058,7 @@ var MicrophoneOffIcon = forwardRef43(
|
|
|
1916
2058
|
className
|
|
1917
2059
|
}, other), {
|
|
1918
2060
|
children: [
|
|
1919
|
-
duotone && /* @__PURE__ */
|
|
2061
|
+
duotone && /* @__PURE__ */ jsx45(
|
|
1920
2062
|
"path",
|
|
1921
2063
|
{
|
|
1922
2064
|
opacity: "0.12",
|
|
@@ -1924,7 +2066,7 @@ var MicrophoneOffIcon = forwardRef43(
|
|
|
1924
2066
|
fill: "currentColor"
|
|
1925
2067
|
}
|
|
1926
2068
|
),
|
|
1927
|
-
/* @__PURE__ */
|
|
2069
|
+
/* @__PURE__ */ jsx45(
|
|
1928
2070
|
"path",
|
|
1929
2071
|
{
|
|
1930
2072
|
d: "M15 9.4V5C15 3.34315 13.6569 2 12 2C10.8224 2 9.80325 2.67852 9.3122 3.66593M12 19V22M12 19C8.13401 19 5 15.866 5 12V10M12 19C15.866 19 19 15.866 19 12V10M8 22H16M2 2L22 22M12 15C10.3431 15 9 13.6569 9 12V9L14.1226 14.12C13.5796 14.6637 12.8291 15 12 15Z",
|
|
@@ -1942,11 +2084,11 @@ var MicrophoneOffIcon = forwardRef43(
|
|
|
1942
2084
|
|
|
1943
2085
|
// src/icons/monitor.tsx
|
|
1944
2086
|
import { forwardRef as forwardRef44 } from "react";
|
|
1945
|
-
import { jsx as
|
|
2087
|
+
import { jsx as jsx46, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
1946
2088
|
var MonitorIcon = forwardRef44(
|
|
1947
2089
|
function MonitorIcon2(_a, ref) {
|
|
1948
2090
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1949
|
-
return /* @__PURE__ */
|
|
2091
|
+
return /* @__PURE__ */ jsxs31(
|
|
1950
2092
|
"svg",
|
|
1951
2093
|
__spreadProps(__spreadValues({
|
|
1952
2094
|
ref,
|
|
@@ -1958,7 +2100,7 @@ var MonitorIcon = forwardRef44(
|
|
|
1958
2100
|
className
|
|
1959
2101
|
}, other), {
|
|
1960
2102
|
children: [
|
|
1961
|
-
duotone && /* @__PURE__ */
|
|
2103
|
+
duotone && /* @__PURE__ */ jsx46(
|
|
1962
2104
|
"path",
|
|
1963
2105
|
{
|
|
1964
2106
|
opacity: "0.12",
|
|
@@ -1966,7 +2108,7 @@ var MonitorIcon = forwardRef44(
|
|
|
1966
2108
|
fill: "currentColor"
|
|
1967
2109
|
}
|
|
1968
2110
|
),
|
|
1969
|
-
/* @__PURE__ */
|
|
2111
|
+
/* @__PURE__ */ jsx46(
|
|
1970
2112
|
"path",
|
|
1971
2113
|
{
|
|
1972
2114
|
d: "M7.57181 21C8.90661 20.3598 10.41 20 12 20C13.59 20 15.0934 20.3598 16.4282 21M6.8 17H17.2C18.8802 17 19.7202 17 20.362 16.673C20.9265 16.3854 21.3854 15.9265 21.673 15.362C22 14.7202 22 13.8802 22 12.2V7.8C22 6.11984 22 5.27976 21.673 4.63803C21.3854 4.07354 20.9265 3.6146 20.362 3.32698C19.7202 3 18.8802 3 17.2 3H6.8C5.11984 3 4.27976 3 3.63803 3.32698C3.07354 3.6146 2.6146 4.07354 2.32698 4.63803C2 5.27976 2 6.11984 2 7.8V12.2C2 13.8802 2 14.7202 2.32698 15.362C2.6146 15.9265 3.07354 16.3854 3.63803 16.673C4.27976 17 5.11984 17 6.8 17Z",
|
|
@@ -1984,11 +2126,11 @@ var MonitorIcon = forwardRef44(
|
|
|
1984
2126
|
|
|
1985
2127
|
// src/icons/notificationBox.tsx
|
|
1986
2128
|
import { forwardRef as forwardRef45 } from "react";
|
|
1987
|
-
import { jsx as
|
|
2129
|
+
import { jsx as jsx47, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
1988
2130
|
var NotificationBoxIcon = forwardRef45(
|
|
1989
2131
|
function NotificationBoxIcon2(_a, ref) {
|
|
1990
2132
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
1991
|
-
return /* @__PURE__ */
|
|
2133
|
+
return /* @__PURE__ */ jsxs32(
|
|
1992
2134
|
"svg",
|
|
1993
2135
|
__spreadProps(__spreadValues({
|
|
1994
2136
|
ref,
|
|
@@ -2000,7 +2142,7 @@ var NotificationBoxIcon = forwardRef45(
|
|
|
2000
2142
|
className
|
|
2001
2143
|
}, other), {
|
|
2002
2144
|
children: [
|
|
2003
|
-
duotone && /* @__PURE__ */
|
|
2145
|
+
duotone && /* @__PURE__ */ jsx47(
|
|
2004
2146
|
"path",
|
|
2005
2147
|
{
|
|
2006
2148
|
opacity: "0.12",
|
|
@@ -2008,7 +2150,7 @@ var NotificationBoxIcon = forwardRef45(
|
|
|
2008
2150
|
fill: "currentColor"
|
|
2009
2151
|
}
|
|
2010
2152
|
),
|
|
2011
|
-
/* @__PURE__ */
|
|
2153
|
+
/* @__PURE__ */ jsx47(
|
|
2012
2154
|
"path",
|
|
2013
2155
|
{
|
|
2014
2156
|
d: "M11 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H15.2C16.8802 21 17.7202 21 18.362 20.673C18.9265 20.3854 19.3854 19.9265 19.673 19.362C20 18.7202 20 17.8802 20 16.2V13M20.1213 3.87868C21.2929 5.05025 21.2929 6.94975 20.1213 8.12132C18.9497 9.29289 17.0503 9.29289 15.8787 8.12132C14.7071 6.94975 14.7071 5.05025 15.8787 3.87868C17.0503 2.70711 18.9497 2.70711 20.1213 3.87868Z",
|
|
@@ -2026,11 +2168,11 @@ var NotificationBoxIcon = forwardRef45(
|
|
|
2026
2168
|
|
|
2027
2169
|
// src/icons/pauseCircle.tsx
|
|
2028
2170
|
import { forwardRef as forwardRef46 } from "react";
|
|
2029
|
-
import { jsx as
|
|
2171
|
+
import { jsx as jsx48, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
2030
2172
|
var PauseCircleIcon = forwardRef46(
|
|
2031
2173
|
function PauseCircleIcon2(_a, ref) {
|
|
2032
2174
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2033
|
-
return /* @__PURE__ */
|
|
2175
|
+
return /* @__PURE__ */ jsxs33(
|
|
2034
2176
|
"svg",
|
|
2035
2177
|
__spreadProps(__spreadValues({
|
|
2036
2178
|
ref,
|
|
@@ -2042,7 +2184,7 @@ var PauseCircleIcon = forwardRef46(
|
|
|
2042
2184
|
className
|
|
2043
2185
|
}, other), {
|
|
2044
2186
|
children: [
|
|
2045
|
-
duotone && /* @__PURE__ */
|
|
2187
|
+
duotone && /* @__PURE__ */ jsx48(
|
|
2046
2188
|
"path",
|
|
2047
2189
|
{
|
|
2048
2190
|
opacity: "0.12",
|
|
@@ -2050,7 +2192,7 @@ var PauseCircleIcon = forwardRef46(
|
|
|
2050
2192
|
fill: "currentColor"
|
|
2051
2193
|
}
|
|
2052
2194
|
),
|
|
2053
|
-
/* @__PURE__ */
|
|
2195
|
+
/* @__PURE__ */ jsx48(
|
|
2054
2196
|
"path",
|
|
2055
2197
|
{
|
|
2056
2198
|
d: "M9.5 15V9M14.5 15V9M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -2068,11 +2210,11 @@ var PauseCircleIcon = forwardRef46(
|
|
|
2068
2210
|
|
|
2069
2211
|
// src/icons/phone.tsx
|
|
2070
2212
|
import { forwardRef as forwardRef47 } from "react";
|
|
2071
|
-
import { jsx as
|
|
2213
|
+
import { jsx as jsx49, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
2072
2214
|
var PhoneIcon = forwardRef47(
|
|
2073
2215
|
function PhoneIcon2(_a, ref) {
|
|
2074
2216
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2075
|
-
return /* @__PURE__ */
|
|
2217
|
+
return /* @__PURE__ */ jsxs34(
|
|
2076
2218
|
"svg",
|
|
2077
2219
|
__spreadProps(__spreadValues({
|
|
2078
2220
|
ref,
|
|
@@ -2084,7 +2226,7 @@ var PhoneIcon = forwardRef47(
|
|
|
2084
2226
|
className
|
|
2085
2227
|
}, other), {
|
|
2086
2228
|
children: [
|
|
2087
|
-
duotone && /* @__PURE__ */
|
|
2229
|
+
duotone && /* @__PURE__ */ jsx49(
|
|
2088
2230
|
"path",
|
|
2089
2231
|
{
|
|
2090
2232
|
opacity: "0.12",
|
|
@@ -2092,7 +2234,7 @@ var PhoneIcon = forwardRef47(
|
|
|
2092
2234
|
fill: "currentColor"
|
|
2093
2235
|
}
|
|
2094
2236
|
),
|
|
2095
|
-
/* @__PURE__ */
|
|
2237
|
+
/* @__PURE__ */ jsx49(
|
|
2096
2238
|
"path",
|
|
2097
2239
|
{
|
|
2098
2240
|
d: "M12 17.5H12.01M8.2 22H15.8C16.9201 22 17.4802 22 17.908 21.782C18.2843 21.5903 18.5903 21.2843 18.782 20.908C19 20.4802 19 19.9201 19 18.8V5.2C19 4.07989 19 3.51984 18.782 3.09202C18.5903 2.71569 18.2843 2.40973 17.908 2.21799C17.4802 2 16.9201 2 15.8 2H8.2C7.0799 2 6.51984 2 6.09202 2.21799C5.71569 2.40973 5.40973 2.71569 5.21799 3.09202C5 3.51984 5 4.0799 5 5.2V18.8C5 19.9201 5 20.4802 5.21799 20.908C5.40973 21.2843 5.71569 21.5903 6.09202 21.782C6.51984 22 7.07989 22 8.2 22ZM12.5 17.5C12.5 17.7761 12.2761 18 12 18C11.7239 18 11.5 17.7761 11.5 17.5C11.5 17.2239 11.7239 17 12 17C12.2761 17 12.5 17.2239 12.5 17.5Z",
|
|
@@ -2110,11 +2252,11 @@ var PhoneIcon = forwardRef47(
|
|
|
2110
2252
|
|
|
2111
2253
|
// src/icons/pieChart.tsx
|
|
2112
2254
|
import { forwardRef as forwardRef48 } from "react";
|
|
2113
|
-
import { jsx as
|
|
2255
|
+
import { jsx as jsx50, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
2114
2256
|
var PieChartIcon = forwardRef48(
|
|
2115
2257
|
function PieChartIcon2(_a, ref) {
|
|
2116
2258
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2117
|
-
return /* @__PURE__ */
|
|
2259
|
+
return /* @__PURE__ */ jsxs35(
|
|
2118
2260
|
"svg",
|
|
2119
2261
|
__spreadProps(__spreadValues({
|
|
2120
2262
|
ref,
|
|
@@ -2126,7 +2268,7 @@ var PieChartIcon = forwardRef48(
|
|
|
2126
2268
|
className
|
|
2127
2269
|
}, other), {
|
|
2128
2270
|
children: [
|
|
2129
|
-
duotone && /* @__PURE__ */
|
|
2271
|
+
duotone && /* @__PURE__ */ jsx50(
|
|
2130
2272
|
"path",
|
|
2131
2273
|
{
|
|
2132
2274
|
opacity: "0.12",
|
|
@@ -2134,7 +2276,7 @@ var PieChartIcon = forwardRef48(
|
|
|
2134
2276
|
fill: "currentColor"
|
|
2135
2277
|
}
|
|
2136
2278
|
),
|
|
2137
|
-
/* @__PURE__ */
|
|
2279
|
+
/* @__PURE__ */ jsx50(
|
|
2138
2280
|
"path",
|
|
2139
2281
|
{
|
|
2140
2282
|
d: "M17.2 14C17.477 14 17.6155 14 17.7278 14.0615C17.8204 14.1122 17.9065 14.2075 17.9478 14.3047C17.9978 14.4225 17.9852 14.5479 17.96 14.7987C17.8296 16.0987 17.3822 17.3514 16.6518 18.4445C15.7727 19.7601 14.5233 20.7855 13.0615 21.391C11.5997 21.9965 9.99113 22.155 8.43928 21.8463C6.88743 21.5376 5.46197 20.7757 4.34315 19.6568C3.22433 18.538 2.4624 17.1126 2.15372 15.5607C1.84504 14.0089 2.00347 12.4003 2.60897 10.9385C3.21447 9.47671 4.23985 8.22728 5.55544 7.34823C6.64856 6.61783 7.90125 6.17039 9.20131 6.03995C9.45207 6.01479 9.57745 6.00221 9.69528 6.0522C9.79249 6.09344 9.88776 6.17964 9.9385 6.27224C10 6.38449 10 6.52299 10 6.79999V13.2C10 13.48 10 13.62 10.0545 13.727C10.1024 13.8211 10.1789 13.8976 10.273 13.9455C10.38 14 10.52 14 10.8 14H17.2Z",
|
|
@@ -2145,7 +2287,7 @@ var PieChartIcon = forwardRef48(
|
|
|
2145
2287
|
}
|
|
2146
2288
|
),
|
|
2147
2289
|
",",
|
|
2148
|
-
/* @__PURE__ */
|
|
2290
|
+
/* @__PURE__ */ jsx50(
|
|
2149
2291
|
"path",
|
|
2150
2292
|
{
|
|
2151
2293
|
d: "M14 2.79999C14 2.52298 14 2.38448 14.0615 2.27223C14.1122 2.17963 14.2075 2.09344 14.3047 2.0522C14.4225 2.0022 14.5479 2.01478 14.7987 2.03993C16.6271 2.22333 18.346 3.03229 19.6569 4.34313C20.9677 5.65398 21.7767 7.37289 21.9601 9.20129C21.9852 9.45206 21.9978 9.57744 21.9478 9.69527C21.9066 9.79248 21.8204 9.88774 21.7278 9.93848C21.6155 9.99998 21.477 9.99999 21.2 9.99999L14.8 9.99999C14.52 9.99999 14.38 9.99999 14.273 9.94549C14.1789 9.89755 14.1024 9.82106 14.0545 9.72698C14 9.62003 14 9.48001 14 9.19999V2.79999Z",
|
|
@@ -2163,11 +2305,11 @@ var PieChartIcon = forwardRef48(
|
|
|
2163
2305
|
|
|
2164
2306
|
// src/icons/playCircle.tsx
|
|
2165
2307
|
import { forwardRef as forwardRef49 } from "react";
|
|
2166
|
-
import { jsx as
|
|
2308
|
+
import { jsx as jsx51, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
2167
2309
|
var PlayCircleIcon = forwardRef49(
|
|
2168
2310
|
function PlayCircleIcon2(_a, ref) {
|
|
2169
2311
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2170
|
-
return /* @__PURE__ */
|
|
2312
|
+
return /* @__PURE__ */ jsxs36(
|
|
2171
2313
|
"svg",
|
|
2172
2314
|
__spreadProps(__spreadValues({
|
|
2173
2315
|
ref,
|
|
@@ -2179,7 +2321,7 @@ var PlayCircleIcon = forwardRef49(
|
|
|
2179
2321
|
className
|
|
2180
2322
|
}, other), {
|
|
2181
2323
|
children: [
|
|
2182
|
-
duotone && /* @__PURE__ */
|
|
2324
|
+
duotone && /* @__PURE__ */ jsx51(
|
|
2183
2325
|
"path",
|
|
2184
2326
|
{
|
|
2185
2327
|
opacity: "0.12",
|
|
@@ -2187,7 +2329,7 @@ var PlayCircleIcon = forwardRef49(
|
|
|
2187
2329
|
fill: "currentColor"
|
|
2188
2330
|
}
|
|
2189
2331
|
),
|
|
2190
|
-
/* @__PURE__ */
|
|
2332
|
+
/* @__PURE__ */ jsx51(
|
|
2191
2333
|
"path",
|
|
2192
2334
|
{
|
|
2193
2335
|
d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z",
|
|
@@ -2198,7 +2340,7 @@ var PlayCircleIcon = forwardRef49(
|
|
|
2198
2340
|
}
|
|
2199
2341
|
),
|
|
2200
2342
|
",",
|
|
2201
|
-
/* @__PURE__ */
|
|
2343
|
+
/* @__PURE__ */ jsx51(
|
|
2202
2344
|
"path",
|
|
2203
2345
|
{
|
|
2204
2346
|
d: "M9.5 8.96533C9.5 8.48805 9.5 8.24941 9.59974 8.11618C9.68666 8.00007 9.81971 7.92744 9.96438 7.9171C10.1304 7.90525 10.3311 8.03429 10.7326 8.29239L15.4532 11.3271C15.8016 11.551 15.9758 11.663 16.0359 11.8054C16.0885 11.9298 16.0885 12.0702 16.0359 12.1946C15.9758 12.337 15.8016 12.449 15.4532 12.6729L10.7326 15.7076C10.3311 15.9657 10.1304 16.0948 9.96438 16.0829C9.81971 16.0726 9.68666 15.9999 9.59974 15.8838C9.5 15.7506 9.5 15.512 9.5 15.0347V8.96533Z",
|
|
@@ -2216,10 +2358,10 @@ var PlayCircleIcon = forwardRef49(
|
|
|
2216
2358
|
|
|
2217
2359
|
// src/icons/plus.tsx
|
|
2218
2360
|
import { forwardRef as forwardRef50 } from "react";
|
|
2219
|
-
import { jsx as
|
|
2361
|
+
import { jsx as jsx52 } from "react/jsx-runtime";
|
|
2220
2362
|
var PlusIcon = forwardRef50(function PlusIcon2(_a, ref) {
|
|
2221
2363
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2222
|
-
return /* @__PURE__ */
|
|
2364
|
+
return /* @__PURE__ */ jsx52(
|
|
2223
2365
|
"svg",
|
|
2224
2366
|
__spreadProps(__spreadValues({
|
|
2225
2367
|
ref,
|
|
@@ -2230,7 +2372,7 @@ var PlusIcon = forwardRef50(function PlusIcon2(_a, ref) {
|
|
|
2230
2372
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2231
2373
|
className
|
|
2232
2374
|
}, other), {
|
|
2233
|
-
children: /* @__PURE__ */
|
|
2375
|
+
children: /* @__PURE__ */ jsx52(
|
|
2234
2376
|
"path",
|
|
2235
2377
|
{
|
|
2236
2378
|
d: "M12 5V19M5 12H19",
|
|
@@ -2246,11 +2388,11 @@ var PlusIcon = forwardRef50(function PlusIcon2(_a, ref) {
|
|
|
2246
2388
|
|
|
2247
2389
|
// src/icons/plusCircle.tsx
|
|
2248
2390
|
import { forwardRef as forwardRef51 } from "react";
|
|
2249
|
-
import { jsx as
|
|
2391
|
+
import { jsx as jsx53, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
2250
2392
|
var PlusCircleIcon = forwardRef51(
|
|
2251
2393
|
function PlusCircleIcon2(_a, ref) {
|
|
2252
2394
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2253
|
-
return /* @__PURE__ */
|
|
2395
|
+
return /* @__PURE__ */ jsxs37(
|
|
2254
2396
|
"svg",
|
|
2255
2397
|
__spreadProps(__spreadValues({
|
|
2256
2398
|
ref,
|
|
@@ -2262,7 +2404,7 @@ var PlusCircleIcon = forwardRef51(
|
|
|
2262
2404
|
className
|
|
2263
2405
|
}, other), {
|
|
2264
2406
|
children: [
|
|
2265
|
-
duotone && /* @__PURE__ */
|
|
2407
|
+
duotone && /* @__PURE__ */ jsx53(
|
|
2266
2408
|
"path",
|
|
2267
2409
|
{
|
|
2268
2410
|
opacity: "0.12",
|
|
@@ -2270,7 +2412,7 @@ var PlusCircleIcon = forwardRef51(
|
|
|
2270
2412
|
fill: "currentColor"
|
|
2271
2413
|
}
|
|
2272
2414
|
),
|
|
2273
|
-
/* @__PURE__ */
|
|
2415
|
+
/* @__PURE__ */ jsx53(
|
|
2274
2416
|
"path",
|
|
2275
2417
|
{
|
|
2276
2418
|
d: "M12 8V16M8 12H16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -2288,11 +2430,11 @@ var PlusCircleIcon = forwardRef51(
|
|
|
2288
2430
|
|
|
2289
2431
|
// src/icons/puzzlePiece.tsx
|
|
2290
2432
|
import { forwardRef as forwardRef52 } from "react";
|
|
2291
|
-
import { jsx as
|
|
2433
|
+
import { jsx as jsx54, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
2292
2434
|
var PuzzlePieceIcon = forwardRef52(
|
|
2293
2435
|
function PuzzlePieceIcon2(_a, ref) {
|
|
2294
2436
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2295
|
-
return /* @__PURE__ */
|
|
2437
|
+
return /* @__PURE__ */ jsxs38(
|
|
2296
2438
|
"svg",
|
|
2297
2439
|
__spreadProps(__spreadValues({
|
|
2298
2440
|
ref,
|
|
@@ -2304,7 +2446,7 @@ var PuzzlePieceIcon = forwardRef52(
|
|
|
2304
2446
|
className
|
|
2305
2447
|
}, other), {
|
|
2306
2448
|
children: [
|
|
2307
|
-
duotone && /* @__PURE__ */
|
|
2449
|
+
duotone && /* @__PURE__ */ jsx54(
|
|
2308
2450
|
"path",
|
|
2309
2451
|
{
|
|
2310
2452
|
opacity: "0.12",
|
|
@@ -2312,7 +2454,7 @@ var PuzzlePieceIcon = forwardRef52(
|
|
|
2312
2454
|
fill: "currentColor"
|
|
2313
2455
|
}
|
|
2314
2456
|
),
|
|
2315
|
-
/* @__PURE__ */
|
|
2457
|
+
/* @__PURE__ */ jsx54(
|
|
2316
2458
|
"path",
|
|
2317
2459
|
{
|
|
2318
2460
|
d: "M7.5 4.5C7.5 3.11929 8.61929 2 10 2C11.3807 2 12.5 3.11929 12.5 4.5V6H13.5C14.8978 6 15.5967 6 16.1481 6.22836C16.8831 6.53284 17.4672 7.11687 17.7716 7.85195C18 8.40326 18 9.10218 18 10.5H19.5C20.8807 10.5 22 11.6193 22 13C22 14.3807 20.8807 15.5 19.5 15.5H18V17.2C18 18.8802 18 19.7202 17.673 20.362C17.3854 20.9265 16.9265 21.3854 16.362 21.673C15.7202 22 14.8802 22 13.2 22H12.5V20.25C12.5 19.0074 11.4926 18 10.25 18C9.00736 18 8 19.0074 8 20.25V22H6.8C5.11984 22 4.27976 22 3.63803 21.673C3.07354 21.3854 2.6146 20.9265 2.32698 20.362C2 19.7202 2 18.8802 2 17.2V15.5H3.5C4.88071 15.5 6 14.3807 6 13C6 11.6193 4.88071 10.5 3.5 10.5H2C2 9.10218 2 8.40326 2.22836 7.85195C2.53284 7.11687 3.11687 6.53284 3.85195 6.22836C4.40326 6 5.10218 6 6.5 6H7.5V4.5Z",
|
|
@@ -2330,11 +2472,11 @@ var PuzzlePieceIcon = forwardRef52(
|
|
|
2330
2472
|
|
|
2331
2473
|
// src/icons/qrCode.tsx
|
|
2332
2474
|
import { forwardRef as forwardRef53 } from "react";
|
|
2333
|
-
import { jsx as
|
|
2475
|
+
import { jsx as jsx55, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
2334
2476
|
var QrCodeIcon = forwardRef53(
|
|
2335
2477
|
function QrCodeIcon2(_a, ref) {
|
|
2336
2478
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2337
|
-
return /* @__PURE__ */
|
|
2479
|
+
return /* @__PURE__ */ jsxs39(
|
|
2338
2480
|
"svg",
|
|
2339
2481
|
__spreadProps(__spreadValues({
|
|
2340
2482
|
ref,
|
|
@@ -2346,7 +2488,7 @@ var QrCodeIcon = forwardRef53(
|
|
|
2346
2488
|
className
|
|
2347
2489
|
}, other), {
|
|
2348
2490
|
children: [
|
|
2349
|
-
duotone && /* @__PURE__ */
|
|
2491
|
+
duotone && /* @__PURE__ */ jsx55(
|
|
2350
2492
|
"path",
|
|
2351
2493
|
{
|
|
2352
2494
|
opacity: "0.4",
|
|
@@ -2357,7 +2499,7 @@ var QrCodeIcon = forwardRef53(
|
|
|
2357
2499
|
strokeLinejoin: "round"
|
|
2358
2500
|
}
|
|
2359
2501
|
),
|
|
2360
|
-
/* @__PURE__ */
|
|
2502
|
+
/* @__PURE__ */ jsx55(
|
|
2361
2503
|
"path",
|
|
2362
2504
|
{
|
|
2363
2505
|
d: "M7 12H12V17M17.6 21H19.4C19.9601 21 20.2401 21 20.454 20.891C20.6422 20.7951 20.7951 20.6422 20.891 20.454C21 20.2401 21 19.9601 21 19.4V17.6C21 17.0399 21 16.7599 20.891 16.546C20.7951 16.3578 20.6422 16.2049 20.454 16.109C20.2401 16 19.9601 16 19.4 16H17.6C17.0399 16 16.7599 16 16.546 16.109C16.3578 16.2049 16.2049 16.3578 16.109 16.546C16 16.7599 16 17.0399 16 17.6V19.4C16 19.9601 16 20.2401 16.109 20.454C16.2049 20.6422 16.3578 20.7951 16.546 20.891C16.7599 21 17.0399 21 17.6 21ZM17.6 8H19.4C19.9601 8 20.2401 8 20.454 7.89101C20.6422 7.79513 20.7951 7.64215 20.891 7.45399C21 7.24008 21 6.96005 21 6.4V4.6C21 4.03995 21 3.75992 20.891 3.54601C20.7951 3.35785 20.6422 3.20487 20.454 3.10899C20.2401 3 19.9601 3 19.4 3H17.6C17.0399 3 16.7599 3 16.546 3.10899C16.3578 3.20487 16.2049 3.35785 16.109 3.54601C16 3.75992 16 4.03995 16 4.6V6.4C16 6.96005 16 7.24008 16.109 7.45399C16.2049 7.64215 16.3578 7.79513 16.546 7.89101C16.7599 8 17.0399 8 17.6 8ZM4.6 8H6.4C6.96005 8 7.24008 8 7.45399 7.89101C7.64215 7.79513 7.79513 7.64215 7.89101 7.45399C8 7.24008 8 6.96005 8 6.4V4.6C8 4.03995 8 3.75992 7.89101 3.54601C7.79513 3.35785 7.64215 3.20487 7.45399 3.10899C7.24008 3 6.96005 3 6.4 3H4.6C4.03995 3 3.75992 3 3.54601 3.10899C3.35785 3.20487 3.20487 3.35785 3.10899 3.54601C3 3.75992 3 4.03995 3 4.6V6.4C3 6.96005 3 7.24008 3.10899 7.45399C3.20487 7.64215 3.35785 7.79513 3.54601 7.89101C3.75992 8 4.03995 8 4.6 8Z",
|
|
@@ -2375,11 +2517,11 @@ var QrCodeIcon = forwardRef53(
|
|
|
2375
2517
|
|
|
2376
2518
|
// src/icons/receiptCheck.tsx
|
|
2377
2519
|
import { forwardRef as forwardRef54 } from "react";
|
|
2378
|
-
import { jsx as
|
|
2520
|
+
import { jsx as jsx56, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
2379
2521
|
var ReceiptCheckIcon = forwardRef54(
|
|
2380
2522
|
function ReceiptCheckIcon2(_a, ref) {
|
|
2381
2523
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2382
|
-
return /* @__PURE__ */
|
|
2524
|
+
return /* @__PURE__ */ jsxs40(
|
|
2383
2525
|
"svg",
|
|
2384
2526
|
__spreadProps(__spreadValues({
|
|
2385
2527
|
ref,
|
|
@@ -2391,7 +2533,7 @@ var ReceiptCheckIcon = forwardRef54(
|
|
|
2391
2533
|
className
|
|
2392
2534
|
}, other), {
|
|
2393
2535
|
children: [
|
|
2394
|
-
duotone && /* @__PURE__ */
|
|
2536
|
+
duotone && /* @__PURE__ */ jsx56(
|
|
2395
2537
|
"path",
|
|
2396
2538
|
{
|
|
2397
2539
|
opacity: "0.12",
|
|
@@ -2399,7 +2541,7 @@ var ReceiptCheckIcon = forwardRef54(
|
|
|
2399
2541
|
fill: "currentColor"
|
|
2400
2542
|
}
|
|
2401
2543
|
),
|
|
2402
|
-
/* @__PURE__ */
|
|
2544
|
+
/* @__PURE__ */ jsx56(
|
|
2403
2545
|
"path",
|
|
2404
2546
|
{
|
|
2405
2547
|
d: "M9 10.5L11 12.5L15.5 8M20 21V7.8C20 6.11984 20 5.27976 19.673 4.63803C19.3854 4.07354 18.9265 3.6146 18.362 3.32698C17.7202 3 16.8802 3 15.2 3H8.8C7.11984 3 6.27976 3 5.63803 3.32698C5.07354 3.6146 4.6146 4.07354 4.32698 4.63803C4 5.27976 4 6.11984 4 7.8V21L6.75 19L9.25 21L12 19L14.75 21L17.25 19L20 21Z",
|
|
@@ -2417,11 +2559,11 @@ var ReceiptCheckIcon = forwardRef54(
|
|
|
2417
2559
|
|
|
2418
2560
|
// src/icons/recording.tsx
|
|
2419
2561
|
import { forwardRef as forwardRef55 } from "react";
|
|
2420
|
-
import { jsx as
|
|
2562
|
+
import { jsx as jsx57, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
2421
2563
|
var RecordingIcon = forwardRef55(
|
|
2422
2564
|
function RecordingIcon2(_a, ref) {
|
|
2423
2565
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2424
|
-
return /* @__PURE__ */
|
|
2566
|
+
return /* @__PURE__ */ jsxs41(
|
|
2425
2567
|
"svg",
|
|
2426
2568
|
__spreadProps(__spreadValues({
|
|
2427
2569
|
ref,
|
|
@@ -2433,7 +2575,7 @@ var RecordingIcon = forwardRef55(
|
|
|
2433
2575
|
className
|
|
2434
2576
|
}, other), {
|
|
2435
2577
|
children: [
|
|
2436
|
-
duotone && /* @__PURE__ */
|
|
2578
|
+
duotone && /* @__PURE__ */ jsx57(
|
|
2437
2579
|
"path",
|
|
2438
2580
|
{
|
|
2439
2581
|
opacity: "0.12",
|
|
@@ -2441,7 +2583,7 @@ var RecordingIcon = forwardRef55(
|
|
|
2441
2583
|
fill: "currentColor"
|
|
2442
2584
|
}
|
|
2443
2585
|
),
|
|
2444
|
-
/* @__PURE__ */
|
|
2586
|
+
/* @__PURE__ */ jsx57(
|
|
2445
2587
|
"path",
|
|
2446
2588
|
{
|
|
2447
2589
|
d: "M6 11V13M10 9V15M14 7V17M18 11V13M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -2459,11 +2601,11 @@ var RecordingIcon = forwardRef55(
|
|
|
2459
2601
|
|
|
2460
2602
|
// src/icons/refreshCcw.tsx
|
|
2461
2603
|
import { forwardRef as forwardRef56 } from "react";
|
|
2462
|
-
import { jsx as
|
|
2604
|
+
import { jsx as jsx58 } from "react/jsx-runtime";
|
|
2463
2605
|
var RefreshCcwIcon = forwardRef56(
|
|
2464
2606
|
function RefreshCcwIcon2(_a, ref) {
|
|
2465
2607
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2466
|
-
return /* @__PURE__ */
|
|
2608
|
+
return /* @__PURE__ */ jsx58(
|
|
2467
2609
|
"svg",
|
|
2468
2610
|
__spreadProps(__spreadValues({
|
|
2469
2611
|
ref,
|
|
@@ -2474,7 +2616,7 @@ var RefreshCcwIcon = forwardRef56(
|
|
|
2474
2616
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2475
2617
|
className
|
|
2476
2618
|
}, other), {
|
|
2477
|
-
children: /* @__PURE__ */
|
|
2619
|
+
children: /* @__PURE__ */ jsx58(
|
|
2478
2620
|
"path",
|
|
2479
2621
|
{
|
|
2480
2622
|
d: "M2 10C2 10 4.00498 7.26822 5.63384 5.63824C7.26269 4.00827 9.5136 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.89691 21 4.43511 18.2543 3.35177 14.5M2 10V4M2 10H8",
|
|
@@ -2491,11 +2633,11 @@ var RefreshCcwIcon = forwardRef56(
|
|
|
2491
2633
|
|
|
2492
2634
|
// src/icons/refreshCw.tsx
|
|
2493
2635
|
import { forwardRef as forwardRef57 } from "react";
|
|
2494
|
-
import { jsx as
|
|
2636
|
+
import { jsx as jsx59 } from "react/jsx-runtime";
|
|
2495
2637
|
var RefreshCwIcon = forwardRef57(
|
|
2496
2638
|
function RefreshCwIcon2(_a, ref) {
|
|
2497
2639
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2498
|
-
return /* @__PURE__ */
|
|
2640
|
+
return /* @__PURE__ */ jsx59(
|
|
2499
2641
|
"svg",
|
|
2500
2642
|
__spreadProps(__spreadValues({
|
|
2501
2643
|
ref,
|
|
@@ -2506,7 +2648,7 @@ var RefreshCwIcon = forwardRef57(
|
|
|
2506
2648
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2507
2649
|
className
|
|
2508
2650
|
}, other), {
|
|
2509
|
-
children: /* @__PURE__ */
|
|
2651
|
+
children: /* @__PURE__ */ jsx59(
|
|
2510
2652
|
"path",
|
|
2511
2653
|
{
|
|
2512
2654
|
d: "M14 22C14 22 14.8492 21.8787 18.364 18.364C21.8787 14.8492 21.8787 9.15076 18.364 5.63604C17.1187 4.39077 15.5993 3.58669 14 3.22383M14 22H20M14 22L14 16M10 2.00019C10 2.00019 9.15076 2.12152 5.63604 5.63624C2.12132 9.15095 2.12132 14.8494 5.63604 18.3642C6.88131 19.6094 8.40072 20.4135 10 20.7764M10 2.00019L4 2M10 2.00019L10 8",
|
|
@@ -2523,11 +2665,11 @@ var RefreshCwIcon = forwardRef57(
|
|
|
2523
2665
|
|
|
2524
2666
|
// src/icons/rocket.tsx
|
|
2525
2667
|
import { forwardRef as forwardRef58 } from "react";
|
|
2526
|
-
import { jsx as
|
|
2668
|
+
import { jsx as jsx60, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
2527
2669
|
var RocketIcon = forwardRef58(
|
|
2528
2670
|
function RocketIcon2(_a, ref) {
|
|
2529
2671
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2530
|
-
return /* @__PURE__ */
|
|
2672
|
+
return /* @__PURE__ */ jsxs42(
|
|
2531
2673
|
"svg",
|
|
2532
2674
|
__spreadProps(__spreadValues({
|
|
2533
2675
|
ref,
|
|
@@ -2539,7 +2681,7 @@ var RocketIcon = forwardRef58(
|
|
|
2539
2681
|
className
|
|
2540
2682
|
}, other), {
|
|
2541
2683
|
children: [
|
|
2542
|
-
duotone && /* @__PURE__ */
|
|
2684
|
+
duotone && /* @__PURE__ */ jsx60(
|
|
2543
2685
|
"path",
|
|
2544
2686
|
{
|
|
2545
2687
|
opacity: "0.12",
|
|
@@ -2547,7 +2689,7 @@ var RocketIcon = forwardRef58(
|
|
|
2547
2689
|
fill: "currentColor"
|
|
2548
2690
|
}
|
|
2549
2691
|
),
|
|
2550
|
-
/* @__PURE__ */
|
|
2692
|
+
/* @__PURE__ */ jsx60(
|
|
2551
2693
|
"path",
|
|
2552
2694
|
{
|
|
2553
2695
|
d: "M12 15L9 12M12 15C13.3968 14.4687 14.7369 13.7987 16 13M12 15V20C12 20 15.03 19.45 16 18C17.08 16.38 16 13 16 13M9 12C9.53214 10.6194 10.2022 9.29607 11 8.05C12.1652 6.18699 13.7876 4.65305 15.713 3.5941C17.6384 2.53514 19.8027 1.98637 22 2C22 4.72 21.22 9.5 16 13M9 12H4C4 12 4.55 8.97 6 8C7.62 6.92 11 8 11 8M4.5 16.5C3 17.76 2.5 21.5 2.5 21.5C2.5 21.5 6.24 21 7.5 19.5C8.21 18.66 8.2 17.37 7.41 16.59C7.02131 16.219 6.50929 16.0046 5.97223 15.988C5.43516 15.9714 4.91088 16.1537 4.5 16.5Z",
|
|
@@ -2565,10 +2707,10 @@ var RocketIcon = forwardRef58(
|
|
|
2565
2707
|
|
|
2566
2708
|
// src/icons/save.tsx
|
|
2567
2709
|
import { forwardRef as forwardRef59 } from "react";
|
|
2568
|
-
import { jsx as
|
|
2710
|
+
import { jsx as jsx61, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
2569
2711
|
var SaveIcon = forwardRef59(function SaveIcon2(_a, ref) {
|
|
2570
2712
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2571
|
-
return /* @__PURE__ */
|
|
2713
|
+
return /* @__PURE__ */ jsxs43(
|
|
2572
2714
|
"svg",
|
|
2573
2715
|
__spreadProps(__spreadValues({
|
|
2574
2716
|
ref,
|
|
@@ -2580,15 +2722,15 @@ var SaveIcon = forwardRef59(function SaveIcon2(_a, ref) {
|
|
|
2580
2722
|
className
|
|
2581
2723
|
}, other), {
|
|
2582
2724
|
children: [
|
|
2583
|
-
duotone && /* @__PURE__ */
|
|
2584
|
-
/* @__PURE__ */
|
|
2725
|
+
duotone && /* @__PURE__ */ jsxs43("g", { opacity: "0.12", children: [
|
|
2726
|
+
/* @__PURE__ */ jsx61(
|
|
2585
2727
|
"path",
|
|
2586
2728
|
{
|
|
2587
2729
|
d: "M7 3H15.2929C15.7456 3 16.1799 3.17986 16.5 3.5C16.8201 3.82014 17 4.25435 17 4.70711V6.4C17 6.96005 17 7.24008 16.891 7.45399C16.7951 7.64215 16.6422 7.79513 16.454 7.89101C16.2401 8 15.9601 8 15.4 8H8.6C8.03995 8 7.75992 8 7.54601 7.89101C7.35785 7.79513 7.20487 7.64215 7.10899 7.45399C7 7.24008 7 6.96005 7 6.4V3Z",
|
|
2588
2730
|
fill: "currentColor"
|
|
2589
2731
|
}
|
|
2590
2732
|
),
|
|
2591
|
-
/* @__PURE__ */
|
|
2733
|
+
/* @__PURE__ */ jsx61(
|
|
2592
2734
|
"path",
|
|
2593
2735
|
{
|
|
2594
2736
|
d: "M7 14.6C7 14.0399 7 13.7599 7.10899 13.546C7.20487 13.3578 7.35785 13.2049 7.54601 13.109C7.75992 13 8.03995 13 8.6 13H15.4C15.9601 13 16.2401 13 16.454 13.109C16.6422 13.2049 16.7951 13.3578 16.891 13.546C17 13.7599 17 14.0399 17 14.6V21H7V14.6Z",
|
|
@@ -2596,7 +2738,7 @@ var SaveIcon = forwardRef59(function SaveIcon2(_a, ref) {
|
|
|
2596
2738
|
}
|
|
2597
2739
|
)
|
|
2598
2740
|
] }),
|
|
2599
|
-
/* @__PURE__ */
|
|
2741
|
+
/* @__PURE__ */ jsx61(
|
|
2600
2742
|
"path",
|
|
2601
2743
|
{
|
|
2602
2744
|
d: "M7 3V6.4C7 6.96005 7 7.24008 7.10899 7.45399C7.20487 7.64215 7.35785 7.79513 7.54601 7.89101C7.75992 8 8.03995 8 8.6 8H15.4C15.9601 8 16.2401 8 16.454 7.89101C16.6422 7.79513 16.7951 7.64215 16.891 7.45399C17 7.24008 17 6.96005 17 6.4V4M17 21V14.6C17 14.0399 17 13.7599 16.891 13.546C16.7951 13.3578 16.6422 13.2049 16.454 13.109C16.2401 13 15.9601 13 15.4 13H8.6C8.03995 13 7.75992 13 7.54601 13.109C7.35785 13.2049 7.20487 13.3578 7.10899 13.546C7 13.7599 7 14.0399 7 14.6V21M21 9.32548V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H14.6745C15.1637 3 15.4083 3 15.6385 3.05526C15.8425 3.10425 16.0376 3.18506 16.2166 3.29472C16.4184 3.4184 16.5914 3.59135 16.9373 3.93726L20.0627 7.06274C20.4086 7.40865 20.5816 7.5816 20.7053 7.78343C20.8149 7.96237 20.8957 8.15746 20.9447 8.36154C21 8.59171 21 8.8363 21 9.32548Z",
|
|
@@ -2613,11 +2755,11 @@ var SaveIcon = forwardRef59(function SaveIcon2(_a, ref) {
|
|
|
2613
2755
|
|
|
2614
2756
|
// src/icons/search.tsx
|
|
2615
2757
|
import { forwardRef as forwardRef60 } from "react";
|
|
2616
|
-
import { jsx as
|
|
2758
|
+
import { jsx as jsx62, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
2617
2759
|
var SearchMdIcon = forwardRef60(
|
|
2618
2760
|
function SearchMdIcon2(_a, ref) {
|
|
2619
2761
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2620
|
-
return /* @__PURE__ */
|
|
2762
|
+
return /* @__PURE__ */ jsxs44(
|
|
2621
2763
|
"svg",
|
|
2622
2764
|
__spreadProps(__spreadValues({
|
|
2623
2765
|
ref,
|
|
@@ -2629,7 +2771,7 @@ var SearchMdIcon = forwardRef60(
|
|
|
2629
2771
|
className
|
|
2630
2772
|
}, other), {
|
|
2631
2773
|
children: [
|
|
2632
|
-
duotone && /* @__PURE__ */
|
|
2774
|
+
duotone && /* @__PURE__ */ jsx62(
|
|
2633
2775
|
"path",
|
|
2634
2776
|
{
|
|
2635
2777
|
opacity: "0.12",
|
|
@@ -2637,7 +2779,7 @@ var SearchMdIcon = forwardRef60(
|
|
|
2637
2779
|
fill: "currentColor"
|
|
2638
2780
|
}
|
|
2639
2781
|
),
|
|
2640
|
-
/* @__PURE__ */
|
|
2782
|
+
/* @__PURE__ */ jsx62(
|
|
2641
2783
|
"path",
|
|
2642
2784
|
{
|
|
2643
2785
|
d: "M21 21L16.65 16.65M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z",
|
|
@@ -2655,10 +2797,10 @@ var SearchMdIcon = forwardRef60(
|
|
|
2655
2797
|
|
|
2656
2798
|
// src/icons/send.tsx
|
|
2657
2799
|
import { forwardRef as forwardRef61 } from "react";
|
|
2658
|
-
import { jsx as
|
|
2800
|
+
import { jsx as jsx63, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
2659
2801
|
var SendIcon = forwardRef61(function SendIcon2(_a, ref) {
|
|
2660
2802
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2661
|
-
return /* @__PURE__ */
|
|
2803
|
+
return /* @__PURE__ */ jsxs45(
|
|
2662
2804
|
"svg",
|
|
2663
2805
|
__spreadProps(__spreadValues({
|
|
2664
2806
|
ref,
|
|
@@ -2670,7 +2812,7 @@ var SendIcon = forwardRef61(function SendIcon2(_a, ref) {
|
|
|
2670
2812
|
className
|
|
2671
2813
|
}, other), {
|
|
2672
2814
|
children: [
|
|
2673
|
-
duotone && /* @__PURE__ */
|
|
2815
|
+
duotone && /* @__PURE__ */ jsx63(
|
|
2674
2816
|
"path",
|
|
2675
2817
|
{
|
|
2676
2818
|
opacity: "0.12",
|
|
@@ -2678,7 +2820,7 @@ var SendIcon = forwardRef61(function SendIcon2(_a, ref) {
|
|
|
2678
2820
|
fill: "currentColor"
|
|
2679
2821
|
}
|
|
2680
2822
|
),
|
|
2681
|
-
/* @__PURE__ */
|
|
2823
|
+
/* @__PURE__ */ jsx63(
|
|
2682
2824
|
"path",
|
|
2683
2825
|
{
|
|
2684
2826
|
d: "M10.5 12H5M4.91534 12.2915L2.58042 19.2662C2.39699 19.8141 2.30527 20.0881 2.37109 20.2568C2.42825 20.4033 2.55102 20.5144 2.7025 20.5567C2.87693 20.6054 3.1404 20.4868 3.66733 20.2497L20.3788 12.7295C20.8931 12.4981 21.1503 12.3823 21.2298 12.2216C21.2988 12.0819 21.2988 11.918 21.2298 11.7784C21.1503 11.6176 20.8931 11.5019 20.3788 11.2704L3.66151 3.7477C3.13616 3.51129 2.87349 3.39309 2.69923 3.44158C2.54789 3.48369 2.42514 3.59448 2.36778 3.74072C2.30174 3.90911 2.39247 4.18249 2.57395 4.72924L4.91599 11.7855C4.94716 11.8794 4.96275 11.9264 4.9689 11.9744C4.97436 12.017 4.9743 12.0601 4.96873 12.1027C4.96246 12.1507 4.94675 12.1976 4.91534 12.2915Z",
|
|
@@ -2695,11 +2837,11 @@ var SendIcon = forwardRef61(function SendIcon2(_a, ref) {
|
|
|
2695
2837
|
|
|
2696
2838
|
// src/icons/settings.tsx
|
|
2697
2839
|
import { forwardRef as forwardRef62 } from "react";
|
|
2698
|
-
import { jsx as
|
|
2840
|
+
import { jsx as jsx64, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
2699
2841
|
var SettingsIcon = forwardRef62(
|
|
2700
2842
|
function SettingsIcon2(_a, ref) {
|
|
2701
2843
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2702
|
-
return /* @__PURE__ */
|
|
2844
|
+
return /* @__PURE__ */ jsxs46(
|
|
2703
2845
|
"svg",
|
|
2704
2846
|
__spreadProps(__spreadValues({
|
|
2705
2847
|
ref,
|
|
@@ -2711,7 +2853,7 @@ var SettingsIcon = forwardRef62(
|
|
|
2711
2853
|
className
|
|
2712
2854
|
}, other), {
|
|
2713
2855
|
children: [
|
|
2714
|
-
duotone && /* @__PURE__ */
|
|
2856
|
+
duotone && /* @__PURE__ */ jsx64(
|
|
2715
2857
|
"path",
|
|
2716
2858
|
{
|
|
2717
2859
|
opacity: "0.12",
|
|
@@ -2721,7 +2863,7 @@ var SettingsIcon = forwardRef62(
|
|
|
2721
2863
|
fill: "currentColor"
|
|
2722
2864
|
}
|
|
2723
2865
|
),
|
|
2724
|
-
/* @__PURE__ */
|
|
2866
|
+
/* @__PURE__ */ jsx64(
|
|
2725
2867
|
"path",
|
|
2726
2868
|
{
|
|
2727
2869
|
d: "M12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z",
|
|
@@ -2732,7 +2874,7 @@ var SettingsIcon = forwardRef62(
|
|
|
2732
2874
|
}
|
|
2733
2875
|
),
|
|
2734
2876
|
",",
|
|
2735
|
-
/* @__PURE__ */
|
|
2877
|
+
/* @__PURE__ */ jsx64(
|
|
2736
2878
|
"path",
|
|
2737
2879
|
{
|
|
2738
2880
|
d: "M18.7273 14.7273C18.6063 15.0015 18.5702 15.3056 18.6236 15.6005C18.6771 15.8954 18.8177 16.1676 19.0273 16.3818L19.0818 16.4364C19.2509 16.6052 19.385 16.8057 19.4765 17.0265C19.568 17.2472 19.6151 17.4838 19.6151 17.7227C19.6151 17.9617 19.568 18.1983 19.4765 18.419C19.385 18.6397 19.2509 18.8402 19.0818 19.0091C18.913 19.1781 18.7124 19.3122 18.4917 19.4037C18.271 19.4952 18.0344 19.5423 17.7955 19.5423C17.5565 19.5423 17.3199 19.4952 17.0992 19.4037C16.8785 19.3122 16.678 19.1781 16.5091 19.0091L16.4545 18.9545C16.2403 18.745 15.9682 18.6044 15.6733 18.5509C15.3784 18.4974 15.0742 18.5335 14.8 18.6545C14.5311 18.7698 14.3018 18.9611 14.1403 19.205C13.9788 19.4489 13.8921 19.7347 13.8909 20.0273V20.1818C13.8909 20.664 13.6994 21.1265 13.3584 21.4675C13.0174 21.8084 12.5549 22 12.0727 22C11.5905 22 11.1281 21.8084 10.7871 21.4675C10.4461 21.1265 10.2545 20.664 10.2545 20.1818V20.1C10.2475 19.7991 10.1501 19.5073 9.97501 19.2625C9.79991 19.0176 9.55521 18.8312 9.27273 18.7273C8.99853 18.6063 8.69437 18.5702 8.39947 18.6236C8.10456 18.6771 7.83244 18.8177 7.61818 19.0273L7.56364 19.0818C7.39478 19.2509 7.19425 19.385 6.97353 19.4765C6.7528 19.568 6.51621 19.6151 6.27727 19.6151C6.03834 19.6151 5.80174 19.568 5.58102 19.4765C5.36029 19.385 5.15977 19.2509 4.99091 19.0818C4.82186 18.913 4.68775 18.7124 4.59626 18.4917C4.50476 18.271 4.45766 18.0344 4.45766 17.7955C4.45766 17.5565 4.50476 17.3199 4.59626 17.0992C4.68775 16.8785 4.82186 16.678 4.99091 16.5091L5.04545 16.4545C5.25503 16.2403 5.39562 15.9682 5.4491 15.6733C5.50257 15.3784 5.46647 15.0742 5.34545 14.8C5.23022 14.5311 5.03887 14.3018 4.79497 14.1403C4.55107 13.9788 4.26526 13.8921 3.97273 13.8909H3.81818C3.33597 13.8909 2.87351 13.6994 2.53253 13.3584C2.19156 13.0174 2 12.5549 2 12.0727C2 11.5905 2.19156 11.1281 2.53253 10.7871C2.87351 10.4461 3.33597 10.2545 3.81818 10.2545H3.9C4.2009 10.2475 4.49273 10.1501 4.73754 9.97501C4.98236 9.79991 5.16883 9.55521 5.27273 9.27273C5.39374 8.99853 5.42984 8.69437 5.37637 8.39947C5.3229 8.10456 5.18231 7.83244 4.97273 7.61818L4.91818 7.56364C4.74913 7.39478 4.61503 7.19425 4.52353 6.97353C4.43203 6.7528 4.38493 6.51621 4.38493 6.27727C4.38493 6.03834 4.43203 5.80174 4.52353 5.58102C4.61503 5.36029 4.74913 5.15977 4.91818 4.99091C5.08704 4.82186 5.28757 4.68775 5.50829 4.59626C5.72901 4.50476 5.96561 4.45766 6.20455 4.45766C6.44348 4.45766 6.68008 4.50476 6.9008 4.59626C7.12152 4.68775 7.32205 4.82186 7.49091 4.99091L7.54545 5.04545C7.75971 5.25503 8.03183 5.39562 8.32674 5.4491C8.62164 5.50257 8.9258 5.46647 9.2 5.34545H9.27273C9.54161 5.23022 9.77093 5.03887 9.93245 4.79497C10.094 4.55107 10.1807 4.26526 10.1818 3.97273V3.81818C10.1818 3.33597 10.3734 2.87351 10.7144 2.53253C11.0553 2.19156 11.5178 2 12 2C12.4822 2 12.9447 2.19156 13.2856 2.53253C13.6266 2.87351 13.8182 3.33597 13.8182 3.81818V3.9C13.8193 4.19253 13.906 4.47834 14.0676 4.72224C14.2291 4.96614 14.4584 5.15749 14.7273 5.27273C15.0015 5.39374 15.3056 5.42984 15.6005 5.37637C15.8954 5.3229 16.1676 5.18231 16.3818 4.97273L16.4364 4.91818C16.6052 4.74913 16.8057 4.61503 17.0265 4.52353C17.2472 4.43203 17.4838 4.38493 17.7227 4.38493C17.9617 4.38493 18.1983 4.43203 18.419 4.52353C18.6397 4.61503 18.8402 4.74913 19.0091 4.91818C19.1781 5.08704 19.3122 5.28757 19.4037 5.50829C19.4952 5.72901 19.5423 5.96561 19.5423 6.20455C19.5423 6.44348 19.4952 6.68008 19.4037 6.9008C19.3122 7.12152 19.1781 7.32205 19.0091 7.49091L18.9545 7.54545C18.745 7.75971 18.6044 8.03183 18.5509 8.32674C18.4974 8.62164 18.5335 8.9258 18.6545 9.2V9.27273C18.7698 9.54161 18.9611 9.77093 19.205 9.93245C19.4489 10.094 19.7347 10.1807 20.0273 10.1818H20.1818C20.664 10.1818 21.1265 10.3734 21.4675 10.7144C21.8084 11.0553 22 11.5178 22 12C22 12.4822 21.8084 12.9447 21.4675 13.2856C21.1265 13.6266 20.664 13.8182 20.1818 13.8182H20.1C19.8075 13.8193 19.5217 13.906 19.2778 14.0676C19.0339 14.2291 18.8425 14.4584 18.7273 14.7273Z",
|
|
@@ -2750,11 +2892,11 @@ var SettingsIcon = forwardRef62(
|
|
|
2750
2892
|
|
|
2751
2893
|
// src/icons/share.tsx
|
|
2752
2894
|
import { forwardRef as forwardRef63 } from "react";
|
|
2753
|
-
import { jsx as
|
|
2895
|
+
import { jsx as jsx65, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
2754
2896
|
var ShareIcon = forwardRef63(
|
|
2755
2897
|
function ShareIcon2(_a, ref) {
|
|
2756
2898
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2757
|
-
return /* @__PURE__ */
|
|
2899
|
+
return /* @__PURE__ */ jsxs47(
|
|
2758
2900
|
"svg",
|
|
2759
2901
|
__spreadProps(__spreadValues({
|
|
2760
2902
|
ref,
|
|
@@ -2766,22 +2908,22 @@ var ShareIcon = forwardRef63(
|
|
|
2766
2908
|
className
|
|
2767
2909
|
}, other), {
|
|
2768
2910
|
children: [
|
|
2769
|
-
duotone && /* @__PURE__ */
|
|
2770
|
-
/* @__PURE__ */
|
|
2911
|
+
duotone && /* @__PURE__ */ jsxs47("g", { opacity: "0.12", children: [
|
|
2912
|
+
/* @__PURE__ */ jsx65(
|
|
2771
2913
|
"path",
|
|
2772
2914
|
{
|
|
2773
2915
|
d: "M18 8C19.6569 8 21 6.65685 21 5C21 3.34315 19.6569 2 18 2C16.3431 2 15 3.34315 15 5C15 6.65685 16.3431 8 18 8Z",
|
|
2774
2916
|
fill: "currentColor"
|
|
2775
2917
|
}
|
|
2776
2918
|
),
|
|
2777
|
-
/* @__PURE__ */
|
|
2919
|
+
/* @__PURE__ */ jsx65(
|
|
2778
2920
|
"path",
|
|
2779
2921
|
{
|
|
2780
2922
|
d: "M6 15C7.65685 15 9 13.6569 9 12C9 10.3431 7.65685 9 6 9C4.34315 9 3 10.3431 3 12C3 13.6569 4.34315 15 6 15Z",
|
|
2781
2923
|
fill: "currentColor"
|
|
2782
2924
|
}
|
|
2783
2925
|
),
|
|
2784
|
-
/* @__PURE__ */
|
|
2926
|
+
/* @__PURE__ */ jsx65(
|
|
2785
2927
|
"path",
|
|
2786
2928
|
{
|
|
2787
2929
|
d: "M18 22C19.6569 22 21 20.6569 21 19C21 17.3431 19.6569 16 18 16C16.3431 16 15 17.3431 15 19C15 20.6569 16.3431 22 18 22Z",
|
|
@@ -2789,7 +2931,7 @@ var ShareIcon = forwardRef63(
|
|
|
2789
2931
|
}
|
|
2790
2932
|
)
|
|
2791
2933
|
] }),
|
|
2792
|
-
/* @__PURE__ */
|
|
2934
|
+
/* @__PURE__ */ jsx65(
|
|
2793
2935
|
"path",
|
|
2794
2936
|
{
|
|
2795
2937
|
d: "M8.59 13.51L15.42 17.49M15.41 6.51L8.59 10.49M21 5C21 6.65685 19.6569 8 18 8C16.3431 8 15 6.65685 15 5C15 3.34315 16.3431 2 18 2C19.6569 2 21 3.34315 21 5ZM9 12C9 13.6569 7.65685 15 6 15C4.34315 15 3 13.6569 3 12C3 10.3431 4.34315 9 6 9C7.65685 9 9 10.3431 9 12ZM21 19C21 20.6569 19.6569 22 18 22C16.3431 22 15 20.6569 15 19C15 17.3431 16.3431 16 18 16C19.6569 16 21 17.3431 21 19Z",
|
|
@@ -2807,11 +2949,11 @@ var ShareIcon = forwardRef63(
|
|
|
2807
2949
|
|
|
2808
2950
|
// src/icons/skipBack.tsx
|
|
2809
2951
|
import { forwardRef as forwardRef64 } from "react";
|
|
2810
|
-
import { jsx as
|
|
2952
|
+
import { jsx as jsx66, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
2811
2953
|
var SkipBackIcon = forwardRef64(
|
|
2812
2954
|
function SkipBackIcon2(_a, ref) {
|
|
2813
2955
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2814
|
-
return /* @__PURE__ */
|
|
2956
|
+
return /* @__PURE__ */ jsxs48(
|
|
2815
2957
|
"svg",
|
|
2816
2958
|
__spreadProps(__spreadValues({
|
|
2817
2959
|
ref,
|
|
@@ -2823,7 +2965,7 @@ var SkipBackIcon = forwardRef64(
|
|
|
2823
2965
|
className
|
|
2824
2966
|
}, other), {
|
|
2825
2967
|
children: [
|
|
2826
|
-
duotone && /* @__PURE__ */
|
|
2968
|
+
duotone && /* @__PURE__ */ jsx66(
|
|
2827
2969
|
"path",
|
|
2828
2970
|
{
|
|
2829
2971
|
opacity: "0.12",
|
|
@@ -2831,7 +2973,7 @@ var SkipBackIcon = forwardRef64(
|
|
|
2831
2973
|
fill: "currentColor"
|
|
2832
2974
|
}
|
|
2833
2975
|
),
|
|
2834
|
-
/* @__PURE__ */
|
|
2976
|
+
/* @__PURE__ */ jsx66(
|
|
2835
2977
|
"path",
|
|
2836
2978
|
{
|
|
2837
2979
|
d: "M5 19V5M16.4005 6.07961L10.5617 10.7506C10.0279 11.1777 9.76097 11.3912 9.66433 11.6492C9.5796 11.8754 9.5796 12.1246 9.66433 12.3508C9.76097 12.6088 10.0279 12.8223 10.5617 13.2494L16.4005 17.9204C17.2327 18.5861 17.6487 18.919 17.9989 18.9194C18.3035 18.9197 18.5916 18.7812 18.7815 18.5432C19 18.2695 19 17.7367 19 16.671V7.329C19 6.2633 19 5.73045 18.7815 5.45677C18.5916 5.21876 18.3035 5.0803 17.9989 5.08063C17.6487 5.081 17.2327 5.41387 16.4005 6.07961Z",
|
|
@@ -2849,11 +2991,11 @@ var SkipBackIcon = forwardRef64(
|
|
|
2849
2991
|
|
|
2850
2992
|
// src/icons/skipForward.tsx
|
|
2851
2993
|
import { forwardRef as forwardRef65 } from "react";
|
|
2852
|
-
import { jsx as
|
|
2994
|
+
import { jsx as jsx67, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
2853
2995
|
var SkipForwardIcon = forwardRef65(
|
|
2854
2996
|
function SkipForwardIcon2(_a, ref) {
|
|
2855
2997
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2856
|
-
return /* @__PURE__ */
|
|
2998
|
+
return /* @__PURE__ */ jsxs49(
|
|
2857
2999
|
"svg",
|
|
2858
3000
|
__spreadProps(__spreadValues({
|
|
2859
3001
|
ref,
|
|
@@ -2865,7 +3007,7 @@ var SkipForwardIcon = forwardRef65(
|
|
|
2865
3007
|
className
|
|
2866
3008
|
}, other), {
|
|
2867
3009
|
children: [
|
|
2868
|
-
duotone && /* @__PURE__ */
|
|
3010
|
+
duotone && /* @__PURE__ */ jsx67(
|
|
2869
3011
|
"path",
|
|
2870
3012
|
{
|
|
2871
3013
|
opacity: "0.12",
|
|
@@ -2873,7 +3015,7 @@ var SkipForwardIcon = forwardRef65(
|
|
|
2873
3015
|
fill: "currentColor"
|
|
2874
3016
|
}
|
|
2875
3017
|
),
|
|
2876
|
-
/* @__PURE__ */
|
|
3018
|
+
/* @__PURE__ */ jsx67(
|
|
2877
3019
|
"path",
|
|
2878
3020
|
{
|
|
2879
3021
|
d: "M19 5V19M7.59951 17.9204L13.4383 13.2494C13.9721 12.8223 14.239 12.6088 14.3357 12.3508C14.4204 12.1246 14.4204 11.8754 14.3357 11.6492C14.239 11.3912 13.9721 11.1777 13.4383 10.7506L7.59951 6.07961C6.76734 5.41387 6.35125 5.081 6.00108 5.08063C5.69654 5.0803 5.40845 5.21876 5.21846 5.45677C5 5.73045 5 6.2633 5 7.329V16.671C5 17.7367 5 18.2695 5.21846 18.5432C5.40845 18.7812 5.69654 18.9197 6.00108 18.9194C6.35125 18.919 6.76734 18.5861 7.59951 17.9204Z",
|
|
@@ -2891,11 +3033,11 @@ var SkipForwardIcon = forwardRef65(
|
|
|
2891
3033
|
|
|
2892
3034
|
// src/icons/stars.tsx
|
|
2893
3035
|
import { forwardRef as forwardRef66 } from "react";
|
|
2894
|
-
import { jsx as
|
|
3036
|
+
import { jsx as jsx68, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
2895
3037
|
var StarsIcon = forwardRef66(
|
|
2896
3038
|
function StarsIcon2(_a, ref) {
|
|
2897
3039
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2898
|
-
return /* @__PURE__ */
|
|
3040
|
+
return /* @__PURE__ */ jsxs50(
|
|
2899
3041
|
"svg",
|
|
2900
3042
|
__spreadProps(__spreadValues({
|
|
2901
3043
|
ref,
|
|
@@ -2907,7 +3049,7 @@ var StarsIcon = forwardRef66(
|
|
|
2907
3049
|
className
|
|
2908
3050
|
}, other), {
|
|
2909
3051
|
children: [
|
|
2910
|
-
duotone && /* @__PURE__ */
|
|
3052
|
+
duotone && /* @__PURE__ */ jsx68(
|
|
2911
3053
|
"path",
|
|
2912
3054
|
{
|
|
2913
3055
|
opacity: "0.12",
|
|
@@ -2915,7 +3057,7 @@ var StarsIcon = forwardRef66(
|
|
|
2915
3057
|
fill: "currentColor"
|
|
2916
3058
|
}
|
|
2917
3059
|
),
|
|
2918
|
-
/* @__PURE__ */
|
|
3060
|
+
/* @__PURE__ */ jsx68(
|
|
2919
3061
|
"path",
|
|
2920
3062
|
{
|
|
2921
3063
|
d: "M4.5 22V17M4.5 7V2M2 4.5H7M2 19.5H7M13 3L11.2658 7.50886C10.9838 8.24209 10.8428 8.60871 10.6235 8.91709C10.4292 9.1904 10.1904 9.42919 9.91709 9.62353C9.60871 9.8428 9.24209 9.98381 8.50886 10.2658L4 12L8.50886 13.7342C9.24209 14.0162 9.60871 14.1572 9.91709 14.3765C10.1904 14.5708 10.4292 14.8096 10.6235 15.0829C10.8428 15.3913 10.9838 15.7579 11.2658 16.4911L13 21L14.7342 16.4911C15.0162 15.7579 15.1572 15.3913 15.3765 15.0829C15.5708 14.8096 15.8096 14.5708 16.0829 14.3765C16.3913 14.1572 16.7579 14.0162 17.4911 13.7342L22 12L17.4911 10.2658C16.7579 9.98381 16.3913 9.8428 16.0829 9.62353C15.8096 9.42919 15.5708 9.1904 15.3765 8.91709C15.1572 8.60871 15.0162 8.24209 14.7342 7.50886L13 3Z",
|
|
@@ -2933,11 +3075,11 @@ var StarsIcon = forwardRef66(
|
|
|
2933
3075
|
|
|
2934
3076
|
// src/icons/trash.tsx
|
|
2935
3077
|
import { forwardRef as forwardRef67 } from "react";
|
|
2936
|
-
import { jsx as
|
|
3078
|
+
import { jsx as jsx69, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
2937
3079
|
var TrashIcon = forwardRef67(
|
|
2938
3080
|
function TrashIcon2(_a, ref) {
|
|
2939
3081
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2940
|
-
return /* @__PURE__ */
|
|
3082
|
+
return /* @__PURE__ */ jsxs51(
|
|
2941
3083
|
"svg",
|
|
2942
3084
|
__spreadProps(__spreadValues({
|
|
2943
3085
|
ref,
|
|
@@ -2949,7 +3091,7 @@ var TrashIcon = forwardRef67(
|
|
|
2949
3091
|
className
|
|
2950
3092
|
}, other), {
|
|
2951
3093
|
children: [
|
|
2952
|
-
duotone && /* @__PURE__ */
|
|
3094
|
+
duotone && /* @__PURE__ */ jsx69(
|
|
2953
3095
|
"path",
|
|
2954
3096
|
{
|
|
2955
3097
|
opacity: "0.12",
|
|
@@ -2957,7 +3099,7 @@ var TrashIcon = forwardRef67(
|
|
|
2957
3099
|
fill: "currentColor"
|
|
2958
3100
|
}
|
|
2959
3101
|
),
|
|
2960
|
-
/* @__PURE__ */
|
|
3102
|
+
/* @__PURE__ */ jsx69(
|
|
2961
3103
|
"path",
|
|
2962
3104
|
{
|
|
2963
3105
|
d: "M9 3H15M3 6H21M19 6L18.2987 16.5193C18.1935 18.0975 18.1409 18.8867 17.8 19.485C17.4999 20.0118 17.0472 20.4353 16.5017 20.6997C15.882 21 15.0911 21 13.5093 21H10.4907C8.90891 21 8.11803 21 7.49834 20.6997C6.95276 20.4353 6.50009 20.0118 6.19998 19.485C5.85911 18.8867 5.8065 18.0975 5.70129 16.5193L5 6M10 10.5V15.5M14 10.5V15.5",
|
|
@@ -2975,11 +3117,11 @@ var TrashIcon = forwardRef67(
|
|
|
2975
3117
|
|
|
2976
3118
|
// src/icons/trendDown.tsx
|
|
2977
3119
|
import { forwardRef as forwardRef68 } from "react";
|
|
2978
|
-
import { jsx as
|
|
3120
|
+
import { jsx as jsx70 } from "react/jsx-runtime";
|
|
2979
3121
|
var TrendDownIcon = forwardRef68(
|
|
2980
3122
|
function TrendDownIcon2(_a, ref) {
|
|
2981
3123
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
2982
|
-
return /* @__PURE__ */
|
|
3124
|
+
return /* @__PURE__ */ jsx70(
|
|
2983
3125
|
"svg",
|
|
2984
3126
|
__spreadProps(__spreadValues({
|
|
2985
3127
|
ref,
|
|
@@ -2990,7 +3132,7 @@ var TrendDownIcon = forwardRef68(
|
|
|
2990
3132
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2991
3133
|
className
|
|
2992
3134
|
}, other), {
|
|
2993
|
-
children: /* @__PURE__ */
|
|
3135
|
+
children: /* @__PURE__ */ jsx70(
|
|
2994
3136
|
"path",
|
|
2995
3137
|
{
|
|
2996
3138
|
d: "M22 17L14.1314 9.13137C13.7354 8.73535 13.5373 8.53735 13.309 8.46316C13.1082 8.3979 12.8918 8.3979 12.691 8.46316C12.4627 8.53735 12.2646 8.73535 11.8686 9.13137L9.13137 11.8686C8.73535 12.2646 8.53735 12.4627 8.30902 12.5368C8.10817 12.6021 7.89183 12.6021 7.69098 12.5368C7.46265 12.4627 7.26465 12.2646 6.86863 11.8686L2 7M22 17H15M22 17V10",
|
|
@@ -3007,11 +3149,11 @@ var TrendDownIcon = forwardRef68(
|
|
|
3007
3149
|
|
|
3008
3150
|
// src/icons/trendUp.tsx
|
|
3009
3151
|
import { forwardRef as forwardRef69 } from "react";
|
|
3010
|
-
import { jsx as
|
|
3152
|
+
import { jsx as jsx71 } from "react/jsx-runtime";
|
|
3011
3153
|
var TrendUpIcon = forwardRef69(
|
|
3012
3154
|
function TrendUpIcon2(_a, ref) {
|
|
3013
3155
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3014
|
-
return /* @__PURE__ */
|
|
3156
|
+
return /* @__PURE__ */ jsx71(
|
|
3015
3157
|
"svg",
|
|
3016
3158
|
__spreadProps(__spreadValues({
|
|
3017
3159
|
ref,
|
|
@@ -3022,7 +3164,7 @@ var TrendUpIcon = forwardRef69(
|
|
|
3022
3164
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3023
3165
|
className
|
|
3024
3166
|
}, other), {
|
|
3025
|
-
children: /* @__PURE__ */
|
|
3167
|
+
children: /* @__PURE__ */ jsx71(
|
|
3026
3168
|
"path",
|
|
3027
3169
|
{
|
|
3028
3170
|
d: "M22 7L14.1314 14.8686C13.7354 15.2646 13.5373 15.4627 13.309 15.5368C13.1082 15.6021 12.8918 15.6021 12.691 15.5368C12.4627 15.4627 12.2646 15.2646 11.8686 14.8686L9.13137 12.1314C8.73535 11.7354 8.53735 11.5373 8.30902 11.4632C8.10817 11.3979 7.89183 11.3979 7.69098 11.4632C7.46265 11.5373 7.26465 11.7354 6.86863 12.1314L2 17M22 7H15M22 7V14",
|
|
@@ -3039,10 +3181,10 @@ var TrendUpIcon = forwardRef69(
|
|
|
3039
3181
|
|
|
3040
3182
|
// src/icons/user.tsx
|
|
3041
3183
|
import { forwardRef as forwardRef70 } from "react";
|
|
3042
|
-
import { jsx as
|
|
3184
|
+
import { jsx as jsx72, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
3043
3185
|
var UserIcon = forwardRef70(function UserIcon2(_a, ref) {
|
|
3044
3186
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3045
|
-
return /* @__PURE__ */
|
|
3187
|
+
return /* @__PURE__ */ jsxs52(
|
|
3046
3188
|
"svg",
|
|
3047
3189
|
__spreadProps(__spreadValues({
|
|
3048
3190
|
ref,
|
|
@@ -3054,7 +3196,7 @@ var UserIcon = forwardRef70(function UserIcon2(_a, ref) {
|
|
|
3054
3196
|
className
|
|
3055
3197
|
}, other), {
|
|
3056
3198
|
children: [
|
|
3057
|
-
duotone && /* @__PURE__ */
|
|
3199
|
+
duotone && /* @__PURE__ */ jsx72(
|
|
3058
3200
|
"path",
|
|
3059
3201
|
{
|
|
3060
3202
|
opacity: "0.12",
|
|
@@ -3062,7 +3204,7 @@ var UserIcon = forwardRef70(function UserIcon2(_a, ref) {
|
|
|
3062
3204
|
fill: "currentColor"
|
|
3063
3205
|
}
|
|
3064
3206
|
),
|
|
3065
|
-
/* @__PURE__ */
|
|
3207
|
+
/* @__PURE__ */ jsx72(
|
|
3066
3208
|
"path",
|
|
3067
3209
|
{
|
|
3068
3210
|
d: "M20 21C20 19.6044 20 18.9067 19.8278 18.3389C19.44 17.0605 18.4395 16.06 17.1611 15.6722C16.5933 15.5 15.8956 15.5 14.5 15.5H9.5C8.10444 15.5 7.40665 15.5 6.83886 15.6722C5.56045 16.06 4.56004 17.0605 4.17224 18.3389C4 18.9067 4 19.6044 4 21M16.5 7.5C16.5 9.98528 14.4853 12 12 12C9.51472 12 7.5 9.98528 7.5 7.5C7.5 5.01472 9.51472 3 12 3C14.4853 3 16.5 5.01472 16.5 7.5Z",
|
|
@@ -3079,11 +3221,11 @@ var UserIcon = forwardRef70(function UserIcon2(_a, ref) {
|
|
|
3079
3221
|
|
|
3080
3222
|
// src/icons/userPlus.tsx
|
|
3081
3223
|
import { forwardRef as forwardRef71 } from "react";
|
|
3082
|
-
import { jsx as
|
|
3224
|
+
import { jsx as jsx73, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
3083
3225
|
var UserPlusIcon = forwardRef71(
|
|
3084
3226
|
function UserPlusIcon2(_a, ref) {
|
|
3085
3227
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3086
|
-
return /* @__PURE__ */
|
|
3228
|
+
return /* @__PURE__ */ jsxs53(
|
|
3087
3229
|
"svg",
|
|
3088
3230
|
__spreadProps(__spreadValues({
|
|
3089
3231
|
ref,
|
|
@@ -3095,7 +3237,7 @@ var UserPlusIcon = forwardRef71(
|
|
|
3095
3237
|
className
|
|
3096
3238
|
}, other), {
|
|
3097
3239
|
children: [
|
|
3098
|
-
duotone && /* @__PURE__ */
|
|
3240
|
+
duotone && /* @__PURE__ */ jsx73(
|
|
3099
3241
|
"path",
|
|
3100
3242
|
{
|
|
3101
3243
|
opacity: "0.12",
|
|
@@ -3103,7 +3245,7 @@ var UserPlusIcon = forwardRef71(
|
|
|
3103
3245
|
fill: "currentColor"
|
|
3104
3246
|
}
|
|
3105
3247
|
),
|
|
3106
|
-
/* @__PURE__ */
|
|
3248
|
+
/* @__PURE__ */ jsx73(
|
|
3107
3249
|
"path",
|
|
3108
3250
|
{
|
|
3109
3251
|
d: "M12 15.5H7.5C6.10444 15.5 5.40665 15.5 4.83886 15.6722C3.56045 16.06 2.56004 17.0605 2.17224 18.3389C2 18.9067 2 19.6044 2 21M19 21V15M16 18H22M14.5 7.5C14.5 9.98528 12.4853 12 10 12C7.51472 12 5.5 9.98528 5.5 7.5C5.5 5.01472 7.51472 3 10 3C12.4853 3 14.5 5.01472 14.5 7.5Z",
|
|
@@ -3121,11 +3263,11 @@ var UserPlusIcon = forwardRef71(
|
|
|
3121
3263
|
|
|
3122
3264
|
// src/icons/userX.tsx
|
|
3123
3265
|
import { forwardRef as forwardRef72 } from "react";
|
|
3124
|
-
import { jsx as
|
|
3266
|
+
import { jsx as jsx74, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
3125
3267
|
var UserXIcon = forwardRef72(
|
|
3126
3268
|
function UserXIcon2(_a, ref) {
|
|
3127
3269
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3128
|
-
return /* @__PURE__ */
|
|
3270
|
+
return /* @__PURE__ */ jsxs54(
|
|
3129
3271
|
"svg",
|
|
3130
3272
|
__spreadProps(__spreadValues({
|
|
3131
3273
|
ref,
|
|
@@ -3137,7 +3279,7 @@ var UserXIcon = forwardRef72(
|
|
|
3137
3279
|
className
|
|
3138
3280
|
}, other), {
|
|
3139
3281
|
children: [
|
|
3140
|
-
duotone && /* @__PURE__ */
|
|
3282
|
+
duotone && /* @__PURE__ */ jsx74(
|
|
3141
3283
|
"path",
|
|
3142
3284
|
{
|
|
3143
3285
|
opacity: "0.12",
|
|
@@ -3145,7 +3287,7 @@ var UserXIcon = forwardRef72(
|
|
|
3145
3287
|
fill: "currentColor"
|
|
3146
3288
|
}
|
|
3147
3289
|
),
|
|
3148
|
-
/* @__PURE__ */
|
|
3290
|
+
/* @__PURE__ */ jsx74(
|
|
3149
3291
|
"path",
|
|
3150
3292
|
{
|
|
3151
3293
|
d: "M16.5 16L21.5 21M21.5 16L16.5 21M12 15.5H7.5C6.10444 15.5 5.40665 15.5 4.83886 15.6722C3.56045 16.06 2.56004 17.0605 2.17224 18.3389C2 18.9067 2 19.6044 2 21M14.5 7.5C14.5 9.98528 12.4853 12 10 12C7.51472 12 5.5 9.98528 5.5 7.5C5.5 5.01472 7.51472 3 10 3C12.4853 3 14.5 5.01472 14.5 7.5Z",
|
|
@@ -3163,11 +3305,11 @@ var UserXIcon = forwardRef72(
|
|
|
3163
3305
|
|
|
3164
3306
|
// src/icons/users.tsx
|
|
3165
3307
|
import { forwardRef as forwardRef73 } from "react";
|
|
3166
|
-
import { jsx as
|
|
3308
|
+
import { jsx as jsx75, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
3167
3309
|
var UsersIcon = forwardRef73(
|
|
3168
3310
|
function UsersIcon2(_a, ref) {
|
|
3169
3311
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3170
|
-
return /* @__PURE__ */
|
|
3312
|
+
return /* @__PURE__ */ jsxs55(
|
|
3171
3313
|
"svg",
|
|
3172
3314
|
__spreadProps(__spreadValues({
|
|
3173
3315
|
ref,
|
|
@@ -3179,7 +3321,7 @@ var UsersIcon = forwardRef73(
|
|
|
3179
3321
|
className
|
|
3180
3322
|
}, other), {
|
|
3181
3323
|
children: [
|
|
3182
|
-
duotone && /* @__PURE__ */
|
|
3324
|
+
duotone && /* @__PURE__ */ jsx75(
|
|
3183
3325
|
"path",
|
|
3184
3326
|
{
|
|
3185
3327
|
opacity: "0.12",
|
|
@@ -3187,7 +3329,7 @@ var UsersIcon = forwardRef73(
|
|
|
3187
3329
|
fill: "currentColor"
|
|
3188
3330
|
}
|
|
3189
3331
|
),
|
|
3190
|
-
/* @__PURE__ */
|
|
3332
|
+
/* @__PURE__ */ jsx75(
|
|
3191
3333
|
"path",
|
|
3192
3334
|
{
|
|
3193
3335
|
d: "M22 21V19C22 17.1362 20.7252 15.5701 19 15.126M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M17 21C17 19.1362 17 18.2044 16.6955 17.4693C16.2895 16.4892 15.5108 15.7105 14.5307 15.3045C13.7956 15 12.8638 15 11 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z",
|
|
@@ -3205,11 +3347,11 @@ var UsersIcon = forwardRef73(
|
|
|
3205
3347
|
|
|
3206
3348
|
// src/icons/usersPlus.tsx
|
|
3207
3349
|
import { forwardRef as forwardRef74 } from "react";
|
|
3208
|
-
import { jsx as
|
|
3350
|
+
import { jsx as jsx76, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
3209
3351
|
var UsersPlusIcon = forwardRef74(
|
|
3210
3352
|
function UsersPlusIcon2(_a, ref) {
|
|
3211
3353
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3212
|
-
return /* @__PURE__ */
|
|
3354
|
+
return /* @__PURE__ */ jsxs56(
|
|
3213
3355
|
"svg",
|
|
3214
3356
|
__spreadProps(__spreadValues({
|
|
3215
3357
|
ref,
|
|
@@ -3221,7 +3363,7 @@ var UsersPlusIcon = forwardRef74(
|
|
|
3221
3363
|
className
|
|
3222
3364
|
}, other), {
|
|
3223
3365
|
children: [
|
|
3224
|
-
duotone && /* @__PURE__ */
|
|
3366
|
+
duotone && /* @__PURE__ */ jsx76(
|
|
3225
3367
|
"path",
|
|
3226
3368
|
{
|
|
3227
3369
|
opacity: "0.12",
|
|
@@ -3229,7 +3371,7 @@ var UsersPlusIcon = forwardRef74(
|
|
|
3229
3371
|
fill: "currentColor"
|
|
3230
3372
|
}
|
|
3231
3373
|
),
|
|
3232
|
-
/* @__PURE__ */
|
|
3374
|
+
/* @__PURE__ */ jsx76(
|
|
3233
3375
|
"path",
|
|
3234
3376
|
{
|
|
3235
3377
|
d: "M19 21V15M16 18H22M12 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z",
|
|
@@ -3247,11 +3389,11 @@ var UsersPlusIcon = forwardRef74(
|
|
|
3247
3389
|
|
|
3248
3390
|
// src/icons/usersX.tsx
|
|
3249
3391
|
import { forwardRef as forwardRef75 } from "react";
|
|
3250
|
-
import { jsx as
|
|
3392
|
+
import { jsx as jsx77, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
3251
3393
|
var UsersXIcon = forwardRef75(
|
|
3252
3394
|
function UsersXIcon2(_a, ref) {
|
|
3253
3395
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3254
|
-
return /* @__PURE__ */
|
|
3396
|
+
return /* @__PURE__ */ jsxs57(
|
|
3255
3397
|
"svg",
|
|
3256
3398
|
__spreadProps(__spreadValues({
|
|
3257
3399
|
ref,
|
|
@@ -3263,7 +3405,7 @@ var UsersXIcon = forwardRef75(
|
|
|
3263
3405
|
className
|
|
3264
3406
|
}, other), {
|
|
3265
3407
|
children: [
|
|
3266
|
-
duotone && /* @__PURE__ */
|
|
3408
|
+
duotone && /* @__PURE__ */ jsx77(
|
|
3267
3409
|
"path",
|
|
3268
3410
|
{
|
|
3269
3411
|
opacity: "0.12",
|
|
@@ -3271,7 +3413,7 @@ var UsersXIcon = forwardRef75(
|
|
|
3271
3413
|
fill: "currentColor"
|
|
3272
3414
|
}
|
|
3273
3415
|
),
|
|
3274
|
-
/* @__PURE__ */
|
|
3416
|
+
/* @__PURE__ */ jsx77(
|
|
3275
3417
|
"path",
|
|
3276
3418
|
{
|
|
3277
3419
|
d: "M16.5 16L21.5 21M21.5 16L16.5 21M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M12 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z",
|
|
@@ -3289,11 +3431,11 @@ var UsersXIcon = forwardRef75(
|
|
|
3289
3431
|
|
|
3290
3432
|
// src/icons/videoRecorder.tsx
|
|
3291
3433
|
import { forwardRef as forwardRef76 } from "react";
|
|
3292
|
-
import { jsx as
|
|
3434
|
+
import { jsx as jsx78, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
3293
3435
|
var VideoRecorderIcon = forwardRef76(
|
|
3294
3436
|
function VideoRecorderIcon2(_a, ref) {
|
|
3295
3437
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3296
|
-
return /* @__PURE__ */
|
|
3438
|
+
return /* @__PURE__ */ jsxs58(
|
|
3297
3439
|
"svg",
|
|
3298
3440
|
__spreadProps(__spreadValues({
|
|
3299
3441
|
ref,
|
|
@@ -3305,7 +3447,7 @@ var VideoRecorderIcon = forwardRef76(
|
|
|
3305
3447
|
className
|
|
3306
3448
|
}, other), {
|
|
3307
3449
|
children: [
|
|
3308
|
-
duotone && /* @__PURE__ */
|
|
3450
|
+
duotone && /* @__PURE__ */ jsx78(
|
|
3309
3451
|
"path",
|
|
3310
3452
|
{
|
|
3311
3453
|
opacity: "0.12",
|
|
@@ -3317,7 +3459,7 @@ var VideoRecorderIcon = forwardRef76(
|
|
|
3317
3459
|
strokeLinejoin: "round"
|
|
3318
3460
|
}
|
|
3319
3461
|
),
|
|
3320
|
-
/* @__PURE__ */
|
|
3462
|
+
/* @__PURE__ */ jsx78(
|
|
3321
3463
|
"path",
|
|
3322
3464
|
{
|
|
3323
3465
|
d: "M22 8.93137C22 8.32555 22 8.02265 21.8802 7.88238C21.7763 7.76068 21.6203 7.69609 21.4608 7.70865C21.2769 7.72312 21.0627 7.93731 20.6343 8.36569L17 12L20.6343 15.6343C21.0627 16.0627 21.2769 16.2769 21.4608 16.2914C21.6203 16.3039 21.7763 16.2393 21.8802 16.1176C22 15.9774 22 15.6744 22 15.0686V8.93137Z",
|
|
@@ -3328,7 +3470,7 @@ var VideoRecorderIcon = forwardRef76(
|
|
|
3328
3470
|
}
|
|
3329
3471
|
),
|
|
3330
3472
|
",",
|
|
3331
|
-
/* @__PURE__ */
|
|
3473
|
+
/* @__PURE__ */ jsx78(
|
|
3332
3474
|
"path",
|
|
3333
3475
|
{
|
|
3334
3476
|
d: "M2 9.8C2 8.11984 2 7.27976 2.32698 6.63803C2.6146 6.07354 3.07354 5.6146 3.63803 5.32698C4.27976 5 5.11984 5 6.8 5H12.2C13.8802 5 14.7202 5 15.362 5.32698C15.9265 5.6146 16.3854 6.07354 16.673 6.63803C17 7.27976 17 8.11984 17 9.8V14.2C17 15.8802 17 16.7202 16.673 17.362C16.3854 17.9265 15.9265 18.3854 15.362 18.673C14.7202 19 13.8802 19 12.2 19H6.8C5.11984 19 4.27976 19 3.63803 18.673C3.07354 18.3854 2.6146 17.9265 2.32698 17.362C2 16.7202 2 15.8802 2 14.2V9.8Z",
|
|
@@ -3346,11 +3488,11 @@ var VideoRecorderIcon = forwardRef76(
|
|
|
3346
3488
|
|
|
3347
3489
|
// src/icons/videoRecorderOff.tsx
|
|
3348
3490
|
import { forwardRef as forwardRef77 } from "react";
|
|
3349
|
-
import { jsx as
|
|
3491
|
+
import { jsx as jsx79, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
3350
3492
|
var VideoRecorderOffIcon = forwardRef77(
|
|
3351
3493
|
function VideoRecorderOffIcon2(_a, ref) {
|
|
3352
3494
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3353
|
-
return /* @__PURE__ */
|
|
3495
|
+
return /* @__PURE__ */ jsxs59(
|
|
3354
3496
|
"svg",
|
|
3355
3497
|
__spreadProps(__spreadValues({
|
|
3356
3498
|
ref,
|
|
@@ -3362,7 +3504,7 @@ var VideoRecorderOffIcon = forwardRef77(
|
|
|
3362
3504
|
className
|
|
3363
3505
|
}, other), {
|
|
3364
3506
|
children: [
|
|
3365
|
-
duotone && /* @__PURE__ */
|
|
3507
|
+
duotone && /* @__PURE__ */ jsx79(
|
|
3366
3508
|
"path",
|
|
3367
3509
|
{
|
|
3368
3510
|
opacity: "0.12",
|
|
@@ -3374,7 +3516,7 @@ var VideoRecorderOffIcon = forwardRef77(
|
|
|
3374
3516
|
strokeLinejoin: "round"
|
|
3375
3517
|
}
|
|
3376
3518
|
),
|
|
3377
|
-
/* @__PURE__ */
|
|
3519
|
+
/* @__PURE__ */ jsx79(
|
|
3378
3520
|
"path",
|
|
3379
3521
|
{
|
|
3380
3522
|
d: "M5 5C3.34315 5 2 6.34315 2 8V16C2 17.6569 3.34315 19 5 19H14C15.3527 19 16.4962 18.1048 16.8705 16.8745M17 12L20.6343 8.36569C21.0627 7.93731 21.2769 7.72312 21.4608 7.70865C21.6203 7.69609 21.7763 7.76068 21.8802 7.88238C22 8.02265 22 8.32556 22 8.93137V15.0686C22 15.6744 22 15.9774 21.8802 16.1176C21.7763 16.2393 21.6203 16.3039 21.4608 16.2914C21.2769 16.2769 21.0627 16.0627 20.6343 15.6343L17 12ZM17 12V9.8C17 8.11984 17 7.27976 16.673 6.63803C16.3854 6.07354 15.9265 5.6146 15.362 5.32698C14.7202 5 13.8802 5 12.2 5H9.5M2 2L22 22",
|
|
@@ -3392,11 +3534,11 @@ var VideoRecorderOffIcon = forwardRef77(
|
|
|
3392
3534
|
|
|
3393
3535
|
// src/icons/volumeMax.tsx
|
|
3394
3536
|
import { forwardRef as forwardRef78 } from "react";
|
|
3395
|
-
import { jsx as
|
|
3537
|
+
import { jsx as jsx80, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
3396
3538
|
var VolumeMaxIcon = forwardRef78(
|
|
3397
3539
|
function VolumeMaxIcon2(_a, ref) {
|
|
3398
3540
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3399
|
-
return /* @__PURE__ */
|
|
3541
|
+
return /* @__PURE__ */ jsxs60(
|
|
3400
3542
|
"svg",
|
|
3401
3543
|
__spreadProps(__spreadValues({
|
|
3402
3544
|
ref,
|
|
@@ -3408,7 +3550,7 @@ var VolumeMaxIcon = forwardRef78(
|
|
|
3408
3550
|
className
|
|
3409
3551
|
}, other), {
|
|
3410
3552
|
children: [
|
|
3411
|
-
duotone && /* @__PURE__ */
|
|
3553
|
+
duotone && /* @__PURE__ */ jsx80(
|
|
3412
3554
|
"path",
|
|
3413
3555
|
{
|
|
3414
3556
|
opacity: "0.12",
|
|
@@ -3416,7 +3558,7 @@ var VolumeMaxIcon = forwardRef78(
|
|
|
3416
3558
|
fill: "currentColor"
|
|
3417
3559
|
}
|
|
3418
3560
|
),
|
|
3419
|
-
/* @__PURE__ */
|
|
3561
|
+
/* @__PURE__ */ jsx80(
|
|
3420
3562
|
"path",
|
|
3421
3563
|
{
|
|
3422
3564
|
d: "M19.7479 4.99999C21.1652 6.97023 22 9.38762 22 12C22 14.6124 21.1652 17.0298 19.7479 19M15.7453 7.99999C16.5362 9.13382 17 10.5127 17 12C17 13.4872 16.5362 14.8662 15.7453 16M9.63432 4.36567L6.46863 7.53136C6.29568 7.70431 6.2092 7.79079 6.10828 7.85263C6.01881 7.90746 5.92127 7.94786 5.81923 7.97236C5.70414 7.99999 5.58185 7.99999 5.33726 7.99999H3.6C3.03995 7.99999 2.75992 7.99999 2.54601 8.10898C2.35785 8.20485 2.20487 8.35784 2.10899 8.546C2 8.75991 2 9.03994 2 9.59999V14.4C2 14.96 2 15.2401 2.10899 15.454C2.20487 15.6421 2.35785 15.7951 2.54601 15.891C2.75992 16 3.03995 16 3.6 16H5.33726C5.58185 16 5.70414 16 5.81923 16.0276C5.92127 16.0521 6.01881 16.0925 6.10828 16.1473C6.2092 16.2092 6.29568 16.2957 6.46863 16.4686L9.63431 19.6343C10.0627 20.0627 10.2769 20.2769 10.4608 20.2913C10.6203 20.3039 10.7763 20.2393 10.8802 20.1176C11 19.9773 11 19.6744 11 19.0686V4.93136C11 4.32554 11 4.02264 10.8802 3.88237C10.7763 3.76067 10.6203 3.69608 10.4608 3.70864C10.2769 3.72311 10.0627 3.9373 9.63432 4.36567Z",
|
|
@@ -3434,11 +3576,11 @@ var VolumeMaxIcon = forwardRef78(
|
|
|
3434
3576
|
|
|
3435
3577
|
// src/icons/volumeX.tsx
|
|
3436
3578
|
import { forwardRef as forwardRef79 } from "react";
|
|
3437
|
-
import { jsx as
|
|
3579
|
+
import { jsx as jsx81, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
3438
3580
|
var VolumeXIcon = forwardRef79(
|
|
3439
3581
|
function VolumeXIcon2(_a, ref) {
|
|
3440
3582
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3441
|
-
return /* @__PURE__ */
|
|
3583
|
+
return /* @__PURE__ */ jsxs61(
|
|
3442
3584
|
"svg",
|
|
3443
3585
|
__spreadProps(__spreadValues({
|
|
3444
3586
|
ref,
|
|
@@ -3450,7 +3592,7 @@ var VolumeXIcon = forwardRef79(
|
|
|
3450
3592
|
className
|
|
3451
3593
|
}, other), {
|
|
3452
3594
|
children: [
|
|
3453
|
-
duotone && /* @__PURE__ */
|
|
3595
|
+
duotone && /* @__PURE__ */ jsx81(
|
|
3454
3596
|
"path",
|
|
3455
3597
|
{
|
|
3456
3598
|
opacity: "0.12",
|
|
@@ -3458,7 +3600,7 @@ var VolumeXIcon = forwardRef79(
|
|
|
3458
3600
|
fill: "currentColor"
|
|
3459
3601
|
}
|
|
3460
3602
|
),
|
|
3461
|
-
/* @__PURE__ */
|
|
3603
|
+
/* @__PURE__ */ jsx81(
|
|
3462
3604
|
"path",
|
|
3463
3605
|
{
|
|
3464
3606
|
d: "M22 8.99999L16 15M16 8.99999L22 15M9.63432 4.36567L6.46863 7.53136C6.29568 7.70431 6.2092 7.79079 6.10828 7.85263C6.01881 7.90746 5.92127 7.94786 5.81923 7.97236C5.70414 7.99999 5.58185 7.99999 5.33726 7.99999H3.6C3.03995 7.99999 2.75992 7.99999 2.54601 8.10898C2.35785 8.20485 2.20487 8.35784 2.10899 8.546C2 8.75991 2 9.03994 2 9.59999V14.4C2 14.96 2 15.2401 2.10899 15.454C2.20487 15.6421 2.35785 15.7951 2.54601 15.891C2.75992 16 3.03995 16 3.6 16H5.33726C5.58185 16 5.70414 16 5.81923 16.0276C5.92127 16.0521 6.01881 16.0925 6.10828 16.1473C6.2092 16.2092 6.29568 16.2957 6.46863 16.4686L9.63431 19.6343C10.0627 20.0627 10.2769 20.2769 10.4608 20.2913C10.6203 20.3039 10.7763 20.2393 10.8802 20.1176C11 19.9773 11 19.6744 11 19.0686V4.93136C11 4.32554 11 4.02264 10.8802 3.88237C10.7763 3.76067 10.6203 3.69608 10.4608 3.70864C10.2769 3.72311 10.0627 3.9373 9.63432 4.36567Z",
|
|
@@ -3476,11 +3618,11 @@ var VolumeXIcon = forwardRef79(
|
|
|
3476
3618
|
|
|
3477
3619
|
// src/icons/xCircle.tsx
|
|
3478
3620
|
import { forwardRef as forwardRef80 } from "react";
|
|
3479
|
-
import { jsx as
|
|
3621
|
+
import { jsx as jsx82, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
3480
3622
|
var XCircleIcon = forwardRef80(
|
|
3481
3623
|
function XCircleIcon2(_a, ref) {
|
|
3482
3624
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3483
|
-
return /* @__PURE__ */
|
|
3625
|
+
return /* @__PURE__ */ jsxs62(
|
|
3484
3626
|
"svg",
|
|
3485
3627
|
__spreadProps(__spreadValues({
|
|
3486
3628
|
ref,
|
|
@@ -3492,7 +3634,7 @@ var XCircleIcon = forwardRef80(
|
|
|
3492
3634
|
className
|
|
3493
3635
|
}, other), {
|
|
3494
3636
|
children: [
|
|
3495
|
-
duotone && /* @__PURE__ */
|
|
3637
|
+
duotone && /* @__PURE__ */ jsx82(
|
|
3496
3638
|
"path",
|
|
3497
3639
|
{
|
|
3498
3640
|
opacity: "0.12",
|
|
@@ -3500,7 +3642,7 @@ var XCircleIcon = forwardRef80(
|
|
|
3500
3642
|
fill: "currentColor"
|
|
3501
3643
|
}
|
|
3502
3644
|
),
|
|
3503
|
-
/* @__PURE__ */
|
|
3645
|
+
/* @__PURE__ */ jsx82(
|
|
3504
3646
|
"path",
|
|
3505
3647
|
{
|
|
3506
3648
|
d: "M15 9L9 15M9 9L15 15M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
@@ -3518,11 +3660,11 @@ var XCircleIcon = forwardRef80(
|
|
|
3518
3660
|
|
|
3519
3661
|
// src/icons/xClose.tsx
|
|
3520
3662
|
import { forwardRef as forwardRef81 } from "react";
|
|
3521
|
-
import { jsx as
|
|
3663
|
+
import { jsx as jsx83 } from "react/jsx-runtime";
|
|
3522
3664
|
var XCloseIcon = forwardRef81(
|
|
3523
3665
|
function XCloseIcon2(_a, ref) {
|
|
3524
3666
|
var _b = _a, { size = 24, className = "text-gray-1000", duotone = false } = _b, other = __objRest(_b, ["size", "className", "duotone"]);
|
|
3525
|
-
return /* @__PURE__ */
|
|
3667
|
+
return /* @__PURE__ */ jsx83(
|
|
3526
3668
|
"svg",
|
|
3527
3669
|
__spreadProps(__spreadValues({
|
|
3528
3670
|
ref,
|
|
@@ -3533,7 +3675,7 @@ var XCloseIcon = forwardRef81(
|
|
|
3533
3675
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3534
3676
|
className
|
|
3535
3677
|
}, other), {
|
|
3536
|
-
children: /* @__PURE__ */
|
|
3678
|
+
children: /* @__PURE__ */ jsx83(
|
|
3537
3679
|
"path",
|
|
3538
3680
|
{
|
|
3539
3681
|
d: "M18 6L6 18M6 6L18 18",
|
|
@@ -3547,9 +3689,294 @@ var XCloseIcon = forwardRef81(
|
|
|
3547
3689
|
);
|
|
3548
3690
|
}
|
|
3549
3691
|
);
|
|
3692
|
+
|
|
3693
|
+
// src/components/Calendar/Calendar.tsx
|
|
3694
|
+
import { jsx as jsx84 } from "react/jsx-runtime";
|
|
3695
|
+
function Calendar(_a) {
|
|
3696
|
+
var _b = _a, {
|
|
3697
|
+
className,
|
|
3698
|
+
classNames,
|
|
3699
|
+
showOutsideDays = true
|
|
3700
|
+
} = _b, props = __objRest(_b, [
|
|
3701
|
+
"className",
|
|
3702
|
+
"classNames",
|
|
3703
|
+
"showOutsideDays"
|
|
3704
|
+
]);
|
|
3705
|
+
return /* @__PURE__ */ jsx84(
|
|
3706
|
+
DayPicker,
|
|
3707
|
+
__spreadValues({
|
|
3708
|
+
showOutsideDays,
|
|
3709
|
+
className: cn("p-4", className),
|
|
3710
|
+
classNames: __spreadValues({
|
|
3711
|
+
months: "flex flex-col sm:flex-row space-y-4 sm:space-x-4 sm:space-y-0",
|
|
3712
|
+
month: "space-y-4",
|
|
3713
|
+
caption: "flex justify-center pt-1 relative items-center",
|
|
3714
|
+
caption_label: "text-sm font-medium",
|
|
3715
|
+
nav: "space-x-1 flex items-center",
|
|
3716
|
+
nav_button: cn(
|
|
3717
|
+
buttonVariants({ variant: "outline" }),
|
|
3718
|
+
iconButtonSizes({ size: "xs" })
|
|
3719
|
+
),
|
|
3720
|
+
nav_button_previous: "absolute left-1",
|
|
3721
|
+
nav_button_next: "absolute right-1",
|
|
3722
|
+
table: "w-full border-collapse space-y-1",
|
|
3723
|
+
head_row: "flex",
|
|
3724
|
+
head_cell: "text-xs text-gray-700 rounded-md w-8 font-normal",
|
|
3725
|
+
row: "flex w-full mt-2",
|
|
3726
|
+
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",
|
|
3727
|
+
day: "h-8 w-8 p-0 cursor-pointer rounded-md [&:not([aria-selected])]:hover:bg-gray-100 aria-selected:opacity-100",
|
|
3728
|
+
day_selected: "bg-blue-700 text-white hover:bg-blue-700 hover:text-white",
|
|
3729
|
+
day_outside: "text-gray-700 opacity-50",
|
|
3730
|
+
day_disabled: "text-gray-700 opacity-50",
|
|
3731
|
+
day_range_middle: "aria-selected:bg-blue-100 aria-selected:text-blue-700",
|
|
3732
|
+
day_hidden: "invisible"
|
|
3733
|
+
}, classNames),
|
|
3734
|
+
components: {
|
|
3735
|
+
IconLeft: (_a2) => {
|
|
3736
|
+
var props2 = __objRest(_a2, []);
|
|
3737
|
+
return /* @__PURE__ */ jsx84(ChevronLeftIcon, { className: "h-3 w-3" });
|
|
3738
|
+
},
|
|
3739
|
+
IconRight: (_b2) => {
|
|
3740
|
+
var props2 = __objRest(_b2, []);
|
|
3741
|
+
return /* @__PURE__ */ jsx84(ChevronRightIcon, { className: "h-3 w-3" });
|
|
3742
|
+
}
|
|
3743
|
+
}
|
|
3744
|
+
}, props)
|
|
3745
|
+
);
|
|
3746
|
+
}
|
|
3747
|
+
Calendar.displayName = "Calendar";
|
|
3748
|
+
|
|
3749
|
+
// src/components/Dialog/Dialog.tsx
|
|
3750
|
+
import * as React5 from "react";
|
|
3751
|
+
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
3752
|
+
import { jsx as jsx85, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
3753
|
+
var Dialog = DialogPrimitive.Root;
|
|
3754
|
+
var DialogTrigger = DialogPrimitive.Trigger;
|
|
3755
|
+
var DialogPortal = (_a) => {
|
|
3756
|
+
var _b = _a, {
|
|
3757
|
+
className
|
|
3758
|
+
} = _b, props = __objRest(_b, [
|
|
3759
|
+
"className"
|
|
3760
|
+
]);
|
|
3761
|
+
return /* @__PURE__ */ jsx85(DialogPrimitive.Portal, __spreadValues({ className: cn(className) }, props));
|
|
3762
|
+
};
|
|
3763
|
+
DialogPortal.displayName = DialogPrimitive.Portal.displayName;
|
|
3764
|
+
var DialogOverlay = React5.forwardRef((_a, ref) => {
|
|
3765
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3766
|
+
return /* @__PURE__ */ jsx85(
|
|
3767
|
+
DialogPrimitive.Overlay,
|
|
3768
|
+
__spreadValues({
|
|
3769
|
+
ref,
|
|
3770
|
+
className: cn(
|
|
3771
|
+
"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",
|
|
3772
|
+
className
|
|
3773
|
+
)
|
|
3774
|
+
}, props)
|
|
3775
|
+
);
|
|
3776
|
+
});
|
|
3777
|
+
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
|
|
3778
|
+
var DialogContent = React5.forwardRef((_a, ref) => {
|
|
3779
|
+
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
|
3780
|
+
return /* @__PURE__ */ jsxs63(DialogPortal, { children: [
|
|
3781
|
+
/* @__PURE__ */ jsx85(DialogOverlay, {}),
|
|
3782
|
+
/* @__PURE__ */ jsxs63(
|
|
3783
|
+
DialogPrimitive.Content,
|
|
3784
|
+
__spreadProps(__spreadValues({
|
|
3785
|
+
ref,
|
|
3786
|
+
className: cn(
|
|
3787
|
+
"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",
|
|
3788
|
+
className
|
|
3789
|
+
)
|
|
3790
|
+
}, props), {
|
|
3791
|
+
children: [
|
|
3792
|
+
children,
|
|
3793
|
+
/* @__PURE__ */ jsxs63(
|
|
3794
|
+
DialogPrimitive.Close,
|
|
3795
|
+
{
|
|
3796
|
+
className: cn(
|
|
3797
|
+
buttonVariants({ variant: "secondary" }),
|
|
3798
|
+
iconButtonSizes({ size: "xs" }),
|
|
3799
|
+
"absolute right-6 top-6"
|
|
3800
|
+
),
|
|
3801
|
+
children: [
|
|
3802
|
+
/* @__PURE__ */ jsx85(XCloseIcon, { className: "h-3 w-3" }),
|
|
3803
|
+
/* @__PURE__ */ jsx85("span", { className: "sr-only", children: "Close" })
|
|
3804
|
+
]
|
|
3805
|
+
}
|
|
3806
|
+
)
|
|
3807
|
+
]
|
|
3808
|
+
})
|
|
3809
|
+
)
|
|
3810
|
+
] });
|
|
3811
|
+
});
|
|
3812
|
+
DialogContent.displayName = DialogPrimitive.Content.displayName;
|
|
3813
|
+
var DialogHeader = (_a) => {
|
|
3814
|
+
var _b = _a, {
|
|
3815
|
+
className
|
|
3816
|
+
} = _b, props = __objRest(_b, [
|
|
3817
|
+
"className"
|
|
3818
|
+
]);
|
|
3819
|
+
return /* @__PURE__ */ jsx85(
|
|
3820
|
+
"div",
|
|
3821
|
+
__spreadValues({
|
|
3822
|
+
className: cn(
|
|
3823
|
+
"flex flex-col space-y-1.5 text-center sm:text-left",
|
|
3824
|
+
className
|
|
3825
|
+
)
|
|
3826
|
+
}, props)
|
|
3827
|
+
);
|
|
3828
|
+
};
|
|
3829
|
+
DialogHeader.displayName = "DialogHeader";
|
|
3830
|
+
var DialogFooter = (_a) => {
|
|
3831
|
+
var _b = _a, {
|
|
3832
|
+
className
|
|
3833
|
+
} = _b, props = __objRest(_b, [
|
|
3834
|
+
"className"
|
|
3835
|
+
]);
|
|
3836
|
+
return /* @__PURE__ */ jsx85(
|
|
3837
|
+
"div",
|
|
3838
|
+
__spreadValues({
|
|
3839
|
+
className: cn(
|
|
3840
|
+
"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
|
|
3841
|
+
className
|
|
3842
|
+
)
|
|
3843
|
+
}, props)
|
|
3844
|
+
);
|
|
3845
|
+
};
|
|
3846
|
+
DialogFooter.displayName = "DialogFooter";
|
|
3847
|
+
var DialogTitle = React5.forwardRef((_a, ref) => {
|
|
3848
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3849
|
+
return /* @__PURE__ */ jsx85(
|
|
3850
|
+
DialogPrimitive.Title,
|
|
3851
|
+
__spreadValues({
|
|
3852
|
+
ref,
|
|
3853
|
+
className: cn("text-lg text-gray-1000 font-semibold", className)
|
|
3854
|
+
}, props)
|
|
3855
|
+
);
|
|
3856
|
+
});
|
|
3857
|
+
DialogTitle.displayName = DialogPrimitive.Title.displayName;
|
|
3858
|
+
var DialogDescription = React5.forwardRef((_a, ref) => {
|
|
3859
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3860
|
+
return /* @__PURE__ */ jsx85(
|
|
3861
|
+
DialogPrimitive.Description,
|
|
3862
|
+
__spreadValues({
|
|
3863
|
+
ref,
|
|
3864
|
+
className: cn("text-sm text-gray-700", className)
|
|
3865
|
+
}, props)
|
|
3866
|
+
);
|
|
3867
|
+
});
|
|
3868
|
+
DialogDescription.displayName = DialogPrimitive.Description.displayName;
|
|
3869
|
+
|
|
3870
|
+
// src/components/Popover/Popover.tsx
|
|
3871
|
+
import * as React6 from "react";
|
|
3872
|
+
import * as PopoverPrimitive from "@radix-ui/react-popover";
|
|
3873
|
+
import { jsx as jsx86 } from "react/jsx-runtime";
|
|
3874
|
+
var Popover = PopoverPrimitive.Root;
|
|
3875
|
+
var PopoverTrigger = PopoverPrimitive.Trigger;
|
|
3876
|
+
var PopoverContent = React6.forwardRef((_a, ref) => {
|
|
3877
|
+
var _b = _a, { className, align = "center", sideOffset = 4 } = _b, props = __objRest(_b, ["className", "align", "sideOffset"]);
|
|
3878
|
+
return /* @__PURE__ */ jsx86(PopoverPrimitive.Portal, { children: /* @__PURE__ */ jsx86(
|
|
3879
|
+
PopoverPrimitive.Content,
|
|
3880
|
+
__spreadValues({
|
|
3881
|
+
ref,
|
|
3882
|
+
align,
|
|
3883
|
+
sideOffset,
|
|
3884
|
+
className: cn(
|
|
3885
|
+
"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",
|
|
3886
|
+
className
|
|
3887
|
+
)
|
|
3888
|
+
}, props)
|
|
3889
|
+
) });
|
|
3890
|
+
});
|
|
3891
|
+
PopoverContent.displayName = PopoverPrimitive.Content.displayName;
|
|
3892
|
+
|
|
3893
|
+
// src/components/Switch/Switch.tsx
|
|
3894
|
+
import * as React7 from "react";
|
|
3895
|
+
import * as SwitchPrimitive from "@radix-ui/react-switch";
|
|
3896
|
+
import { jsx as jsx87 } from "react/jsx-runtime";
|
|
3897
|
+
var Switch = React7.forwardRef((_a, ref) => {
|
|
3898
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3899
|
+
return /* @__PURE__ */ jsx87(
|
|
3900
|
+
SwitchPrimitive.Root,
|
|
3901
|
+
__spreadProps(__spreadValues({
|
|
3902
|
+
className: cn(
|
|
3903
|
+
"box-border text-left relative w-[42px] h-6 bg-transparent border-2 border-gray-600 rounded-full data-[state=checked]:border-blue-700 data-[state=checked]:bg-blue-700 data-[disabled]:data-[state=unchecked]:bg-gray-300 data-[disabled]:opacity-50 data-[disabled]:cursor-not-allowed",
|
|
3904
|
+
className
|
|
3905
|
+
)
|
|
3906
|
+
}, props), {
|
|
3907
|
+
ref,
|
|
3908
|
+
children: /* @__PURE__ */ jsx87(SwitchPrimitive.Thumb, { className: "inline-block w-4 h-4 bg-gray-600 rounded-full translate-x-0.5 data-[state=checked]:translate-x-5 data-[state=checked]:bg-white transition-transform ease-linear will-change-transform" })
|
|
3909
|
+
})
|
|
3910
|
+
);
|
|
3911
|
+
});
|
|
3912
|
+
Switch.displayName = SwitchPrimitive.Root.displayName;
|
|
3913
|
+
|
|
3914
|
+
// src/components/Tabs/Tabs.tsx
|
|
3915
|
+
import * as React8 from "react";
|
|
3916
|
+
import * as TabsPrimitive from "@radix-ui/react-tabs";
|
|
3917
|
+
import { jsx as jsx88 } from "react/jsx-runtime";
|
|
3918
|
+
var Tabs = TabsPrimitive.Root;
|
|
3919
|
+
var TabsList = React8.forwardRef((_a, ref) => {
|
|
3920
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3921
|
+
return /* @__PURE__ */ jsx88(
|
|
3922
|
+
TabsPrimitive.List,
|
|
3923
|
+
__spreadValues({
|
|
3924
|
+
ref,
|
|
3925
|
+
className: cn(
|
|
3926
|
+
"inline-flex items-center justify-center gap-2 rounded-lg p-1.5 bg-gray-50 text-gray-700",
|
|
3927
|
+
className
|
|
3928
|
+
)
|
|
3929
|
+
}, props)
|
|
3930
|
+
);
|
|
3931
|
+
});
|
|
3932
|
+
TabsList.displayName = TabsPrimitive.List.displayName;
|
|
3933
|
+
var TabsTrigger = React8.forwardRef((_a, ref) => {
|
|
3934
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3935
|
+
return /* @__PURE__ */ jsx88(
|
|
3936
|
+
TabsPrimitive.Trigger,
|
|
3937
|
+
__spreadValues({
|
|
3938
|
+
ref,
|
|
3939
|
+
className: cn(
|
|
3940
|
+
"inline-flex items-center justify-center whitespace-nowrap rounded-md px-3 py-1.5 text-sm font-semibold ring-offset-white transition-all",
|
|
3941
|
+
"hover:bg-gray-100 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-blue-700 focus-visible:ring-offset-2",
|
|
3942
|
+
"data-[state=active]:bg-white data-[state=active]:text-blue-700 data-[state=active]:shadow-sm",
|
|
3943
|
+
"disabled:pointer-events-none disabled:opacity-50",
|
|
3944
|
+
className
|
|
3945
|
+
)
|
|
3946
|
+
}, props)
|
|
3947
|
+
);
|
|
3948
|
+
});
|
|
3949
|
+
TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
|
|
3950
|
+
var TabsContent = React8.forwardRef((_a, ref) => {
|
|
3951
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
3952
|
+
return /* @__PURE__ */ jsx88(
|
|
3953
|
+
TabsPrimitive.Content,
|
|
3954
|
+
__spreadValues({
|
|
3955
|
+
ref,
|
|
3956
|
+
className: cn(
|
|
3957
|
+
"mt-2 ring-offset-white focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-blue-700 focus-visible:ring-offset-2",
|
|
3958
|
+
className
|
|
3959
|
+
)
|
|
3960
|
+
}, props)
|
|
3961
|
+
);
|
|
3962
|
+
});
|
|
3963
|
+
TabsContent.displayName = TabsPrimitive.Content.displayName;
|
|
3550
3964
|
export {
|
|
3965
|
+
Accordion,
|
|
3966
|
+
AccordionContent,
|
|
3967
|
+
AccordionItem,
|
|
3968
|
+
AccordionTrigger2 as AccordionTrigger,
|
|
3551
3969
|
ActivityIcon,
|
|
3552
3970
|
AlertCircleIcon,
|
|
3971
|
+
AlertDialog,
|
|
3972
|
+
AlertDialogAction,
|
|
3973
|
+
AlertDialogCancel,
|
|
3974
|
+
AlertDialogContent,
|
|
3975
|
+
AlertDialogDescription,
|
|
3976
|
+
AlertDialogFooter,
|
|
3977
|
+
AlertDialogHeader,
|
|
3978
|
+
AlertDialogTitle,
|
|
3979
|
+
AlertDialogTrigger,
|
|
3553
3980
|
ArrowDownIcon,
|
|
3554
3981
|
ArrowLeftIcon,
|
|
3555
3982
|
ArrowRightIcon,
|
|
@@ -3557,6 +3984,7 @@ export {
|
|
|
3557
3984
|
Badge,
|
|
3558
3985
|
BellIcon,
|
|
3559
3986
|
Button,
|
|
3987
|
+
Calendar,
|
|
3560
3988
|
CalendarCheckIcon,
|
|
3561
3989
|
CalendarIcon,
|
|
3562
3990
|
CalendarPlusIcon,
|
|
@@ -3569,6 +3997,13 @@ export {
|
|
|
3569
3997
|
ChevronUpIcon,
|
|
3570
3998
|
CopyIcon,
|
|
3571
3999
|
CursorClickIcon,
|
|
4000
|
+
Dialog,
|
|
4001
|
+
DialogContent,
|
|
4002
|
+
DialogDescription,
|
|
4003
|
+
DialogFooter,
|
|
4004
|
+
DialogHeader,
|
|
4005
|
+
DialogTitle,
|
|
4006
|
+
DialogTrigger,
|
|
3572
4007
|
DownloadIcon,
|
|
3573
4008
|
EditIcon,
|
|
3574
4009
|
ExpandIcon,
|
|
@@ -3599,6 +4034,9 @@ export {
|
|
|
3599
4034
|
PlayCircleIcon,
|
|
3600
4035
|
PlusCircleIcon,
|
|
3601
4036
|
PlusIcon,
|
|
4037
|
+
Popover,
|
|
4038
|
+
PopoverContent,
|
|
4039
|
+
PopoverTrigger,
|
|
3602
4040
|
PuzzlePieceIcon,
|
|
3603
4041
|
QrCodeIcon,
|
|
3604
4042
|
ReceiptCheckIcon,
|
|
@@ -3614,6 +4052,7 @@ export {
|
|
|
3614
4052
|
SkipBackIcon,
|
|
3615
4053
|
SkipForwardIcon,
|
|
3616
4054
|
StarsIcon,
|
|
4055
|
+
Switch,
|
|
3617
4056
|
Tabs,
|
|
3618
4057
|
TabsContent,
|
|
3619
4058
|
TabsList,
|
|
@@ -3632,5 +4071,8 @@ export {
|
|
|
3632
4071
|
VolumeMaxIcon,
|
|
3633
4072
|
VolumeXIcon,
|
|
3634
4073
|
XCircleIcon,
|
|
3635
|
-
XCloseIcon
|
|
4074
|
+
XCloseIcon,
|
|
4075
|
+
buttonSizes,
|
|
4076
|
+
buttonVariants,
|
|
4077
|
+
iconButtonSizes
|
|
3636
4078
|
};
|