@ai-matrx/tap-target 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +35 -0
- package/dist/buttons.cjs +253 -288
- package/dist/buttons.cjs.map +1 -1
- package/dist/buttons.js +213 -234
- package/dist/buttons.js.map +1 -1
- package/dist/index.cjs +28 -68
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -19
- package/dist/index.d.ts +1 -19
- package/dist/index.js +41 -62
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/dist/buttons.js
CHANGED
|
@@ -1,46 +1,25 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
|
|
3
3
|
// src/tap-buttons.tsx
|
|
4
|
-
import { forwardRef as
|
|
4
|
+
import { forwardRef as forwardRef2 } from "react";
|
|
5
5
|
|
|
6
6
|
// src/tap-target-button.tsx
|
|
7
7
|
import {
|
|
8
8
|
cloneElement,
|
|
9
|
-
forwardRef
|
|
9
|
+
forwardRef,
|
|
10
10
|
isValidElement
|
|
11
11
|
} from "react";
|
|
12
|
-
import
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
import {
|
|
13
|
+
Tooltip,
|
|
14
|
+
TooltipContent,
|
|
15
|
+
TooltipTrigger
|
|
16
|
+
} from "@ai-matrx/design-system";
|
|
17
17
|
|
|
18
18
|
// src/cn.ts
|
|
19
19
|
function cn(...values) {
|
|
20
20
|
return values.filter(Boolean).join(" ").trim();
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
// src/tooltip.tsx
|
|
24
|
-
import { jsx } from "react/jsx-runtime";
|
|
25
|
-
var TooltipTrigger = TooltipPrimitive.Trigger;
|
|
26
|
-
var TooltipContent = React.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsx(TooltipPrimitive.Portal, { children: /* @__PURE__ */ jsx(
|
|
27
|
-
TooltipPrimitive.Content,
|
|
28
|
-
{
|
|
29
|
-
ref,
|
|
30
|
-
sideOffset,
|
|
31
|
-
className: cn(
|
|
32
|
-
// Neutral, theme-aware surface (popover tokens) so tooltip text is
|
|
33
|
-
// ALWAYS legible in both light and dark mode — including rich content
|
|
34
|
-
// that uses `text-muted-foreground`. A brand-colored `bg-primary`
|
|
35
|
-
// background broke legibility for any non-default content.
|
|
36
|
-
"z-[10001] overflow-hidden rounded-md border border-border bg-popover px-3 py-1.5 text-xs text-popover-foreground shadow-md animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-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",
|
|
37
|
-
className
|
|
38
|
-
),
|
|
39
|
-
...props
|
|
40
|
-
}
|
|
41
|
-
) }));
|
|
42
|
-
TooltipContent.displayName = TooltipPrimitive.Content.displayName;
|
|
43
|
-
|
|
44
23
|
// src/link.ts
|
|
45
24
|
var LINK_SLOT = /* @__PURE__ */ Symbol.for("@ai-matrx/tap-target:link-component");
|
|
46
25
|
function getTapTargetLinkComponent() {
|
|
@@ -48,7 +27,7 @@ function getTapTargetLinkComponent() {
|
|
|
48
27
|
}
|
|
49
28
|
|
|
50
29
|
// src/tap-target-button.tsx
|
|
51
|
-
import { jsx
|
|
30
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
52
31
|
var EXTERNAL_RE = /^(https?:|mailto:|tel:)/i;
|
|
53
32
|
var TAP_OUTER_CLASS = "matrx-tap-target group";
|
|
54
33
|
var TAP_GROUP_OUTER_CLASS = "matrx-tap-target matrx-tap-target-sm group";
|
|
@@ -64,9 +43,9 @@ function IconContent({
|
|
|
64
43
|
className: cn(className, icon.props.className)
|
|
65
44
|
});
|
|
66
45
|
}
|
|
67
|
-
return /* @__PURE__ */
|
|
46
|
+
return /* @__PURE__ */ jsx("span", { className, children: icon });
|
|
68
47
|
}
|
|
69
|
-
return /* @__PURE__ */
|
|
48
|
+
return /* @__PURE__ */ jsx(
|
|
70
49
|
"svg",
|
|
71
50
|
{
|
|
72
51
|
className,
|
|
@@ -101,7 +80,7 @@ function buildTapInner({
|
|
|
101
80
|
children,
|
|
102
81
|
strokeWidth = 2
|
|
103
82
|
}) {
|
|
104
|
-
const iconEl = /* @__PURE__ */
|
|
83
|
+
const iconEl = /* @__PURE__ */ jsx(
|
|
105
84
|
IconContent,
|
|
106
85
|
{
|
|
107
86
|
icon,
|
|
@@ -112,11 +91,11 @@ function buildTapInner({
|
|
|
112
91
|
);
|
|
113
92
|
const pillClasses = label ? `${pillClassName} ${inlineModifier}`.trim() : pillClassName;
|
|
114
93
|
if (!label) {
|
|
115
|
-
return /* @__PURE__ */
|
|
94
|
+
return /* @__PURE__ */ jsx("div", { className: pillClasses, children: iconEl });
|
|
116
95
|
}
|
|
117
96
|
return /* @__PURE__ */ jsxs("div", { className: pillClasses, children: [
|
|
118
97
|
iconEl,
|
|
119
|
-
/* @__PURE__ */
|
|
98
|
+
/* @__PURE__ */ jsx("span", { className: labelClassName ?? "matrx-tap-label", children: label })
|
|
120
99
|
] });
|
|
121
100
|
}
|
|
122
101
|
function renderTapTarget({
|
|
@@ -204,7 +183,7 @@ function renderTrigger({
|
|
|
204
183
|
buttonRef
|
|
205
184
|
}) {
|
|
206
185
|
if (disabled && href) {
|
|
207
|
-
return /* @__PURE__ */
|
|
186
|
+
return /* @__PURE__ */ jsx(
|
|
208
187
|
"span",
|
|
209
188
|
{
|
|
210
189
|
"aria-disabled": "true",
|
|
@@ -217,7 +196,7 @@ function renderTrigger({
|
|
|
217
196
|
if (href) {
|
|
218
197
|
const isExternal = EXTERNAL_RE.test(href);
|
|
219
198
|
if (isExternal) {
|
|
220
|
-
return /* @__PURE__ */
|
|
199
|
+
return /* @__PURE__ */ jsx(
|
|
221
200
|
"a",
|
|
222
201
|
{
|
|
223
202
|
href,
|
|
@@ -231,7 +210,7 @@ function renderTrigger({
|
|
|
231
210
|
}
|
|
232
211
|
const Link = linkComponent ?? getTapTargetLinkComponent();
|
|
233
212
|
if (Link) {
|
|
234
|
-
return /* @__PURE__ */
|
|
213
|
+
return /* @__PURE__ */ jsx(
|
|
235
214
|
Link,
|
|
236
215
|
{
|
|
237
216
|
href,
|
|
@@ -244,7 +223,7 @@ function renderTrigger({
|
|
|
244
223
|
}
|
|
245
224
|
);
|
|
246
225
|
}
|
|
247
|
-
return /* @__PURE__ */
|
|
226
|
+
return /* @__PURE__ */ jsx(
|
|
248
227
|
"a",
|
|
249
228
|
{
|
|
250
229
|
href,
|
|
@@ -257,7 +236,7 @@ function renderTrigger({
|
|
|
257
236
|
);
|
|
258
237
|
}
|
|
259
238
|
if (as === "label") {
|
|
260
|
-
return /* @__PURE__ */
|
|
239
|
+
return /* @__PURE__ */ jsx(
|
|
261
240
|
"label",
|
|
262
241
|
{
|
|
263
242
|
htmlFor,
|
|
@@ -267,7 +246,7 @@ function renderTrigger({
|
|
|
267
246
|
}
|
|
268
247
|
);
|
|
269
248
|
}
|
|
270
|
-
return /* @__PURE__ */
|
|
249
|
+
return /* @__PURE__ */ jsx(
|
|
271
250
|
"button",
|
|
272
251
|
{
|
|
273
252
|
ref: buttonRef,
|
|
@@ -291,17 +270,17 @@ function withTooltip(trigger, {
|
|
|
291
270
|
if (tooltip === false) return trigger;
|
|
292
271
|
const label = typeof tooltip === "string" && tooltip.length > 0 ? tooltip : ariaLabel;
|
|
293
272
|
if (!label) return trigger;
|
|
294
|
-
return /* @__PURE__ */ jsxs(
|
|
295
|
-
/* @__PURE__ */
|
|
273
|
+
return /* @__PURE__ */ jsxs(Tooltip, { children: [
|
|
274
|
+
/* @__PURE__ */ jsx(TooltipTrigger, { asChild: true, children: disabled ? (
|
|
296
275
|
// Radix Tooltip triggers need a hoverable element; a disabled button
|
|
297
276
|
// does not dispatch pointer events, so we wrap in a span for the
|
|
298
277
|
// trigger target while keeping the disabled visual state.
|
|
299
|
-
/* @__PURE__ */
|
|
278
|
+
/* @__PURE__ */ jsx("span", { className: "inline-flex", children: trigger })
|
|
300
279
|
) : trigger }),
|
|
301
|
-
/* @__PURE__ */
|
|
280
|
+
/* @__PURE__ */ jsx(TooltipContent, { side: tooltipSide, align: tooltipAlign, children: label })
|
|
302
281
|
] });
|
|
303
282
|
}
|
|
304
|
-
var TapTargetButton =
|
|
283
|
+
var TapTargetButton = forwardRef(function TapTargetButton2({
|
|
305
284
|
icon,
|
|
306
285
|
children,
|
|
307
286
|
strokeWidth = 2,
|
|
@@ -349,7 +328,7 @@ var TapTargetButton = forwardRef2(function TapTargetButton2({
|
|
|
349
328
|
buttonRef: ref
|
|
350
329
|
});
|
|
351
330
|
});
|
|
352
|
-
var TapTargetButtonTransparent =
|
|
331
|
+
var TapTargetButtonTransparent = forwardRef(function TapTargetButtonTransparent2({
|
|
353
332
|
icon,
|
|
354
333
|
children,
|
|
355
334
|
strokeWidth = 2,
|
|
@@ -397,7 +376,7 @@ var TapTargetButtonTransparent = forwardRef2(function TapTargetButtonTransparent
|
|
|
397
376
|
buttonRef: ref
|
|
398
377
|
});
|
|
399
378
|
});
|
|
400
|
-
var TapTargetButtonSolid =
|
|
379
|
+
var TapTargetButtonSolid = forwardRef(function TapTargetButtonSolid2({
|
|
401
380
|
icon,
|
|
402
381
|
children,
|
|
403
382
|
strokeWidth = 2,
|
|
@@ -448,13 +427,13 @@ var TapTargetButtonSolid = forwardRef2(function TapTargetButtonSolid2({
|
|
|
448
427
|
buttonRef: ref
|
|
449
428
|
});
|
|
450
429
|
});
|
|
451
|
-
var TapTargetButtonDestructive =
|
|
430
|
+
var TapTargetButtonDestructive = forwardRef(function TapTargetButtonDestructive2({
|
|
452
431
|
bgColor = "bg-destructive",
|
|
453
432
|
iconColor = "text-destructive-foreground",
|
|
454
433
|
hoverBgColor = "hover:bg-destructive/90",
|
|
455
434
|
...rest
|
|
456
435
|
}, ref) {
|
|
457
|
-
return /* @__PURE__ */
|
|
436
|
+
return /* @__PURE__ */ jsx(
|
|
458
437
|
TapTargetButtonSolid,
|
|
459
438
|
{
|
|
460
439
|
ref,
|
|
@@ -465,7 +444,7 @@ var TapTargetButtonDestructive = forwardRef2(function TapTargetButtonDestructive
|
|
|
465
444
|
}
|
|
466
445
|
);
|
|
467
446
|
});
|
|
468
|
-
var TapTargetButtonForGroup =
|
|
447
|
+
var TapTargetButtonForGroup = forwardRef(function TapTargetButtonForGroup2({
|
|
469
448
|
icon,
|
|
470
449
|
children,
|
|
471
450
|
strokeWidth = 2,
|
|
@@ -517,8 +496,8 @@ var TapTargetButtonForGroup = forwardRef2(function TapTargetButtonForGroup2({
|
|
|
517
496
|
});
|
|
518
497
|
|
|
519
498
|
// src/tap-buttons.tsx
|
|
520
|
-
import { jsx as
|
|
521
|
-
var Wrap =
|
|
499
|
+
import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
500
|
+
var Wrap = forwardRef2(function Wrap2({
|
|
522
501
|
variant = "glass",
|
|
523
502
|
children,
|
|
524
503
|
bgColor,
|
|
@@ -531,9 +510,9 @@ var Wrap = forwardRef3(function Wrap2({
|
|
|
531
510
|
}, ref) {
|
|
532
511
|
switch (variant) {
|
|
533
512
|
case "transparent":
|
|
534
|
-
return /* @__PURE__ */
|
|
513
|
+
return /* @__PURE__ */ jsx2(TapTargetButtonTransparent, { ref, ...props, children });
|
|
535
514
|
case "solid":
|
|
536
|
-
return /* @__PURE__ */
|
|
515
|
+
return /* @__PURE__ */ jsx2(
|
|
537
516
|
TapTargetButtonSolid,
|
|
538
517
|
{
|
|
539
518
|
ref,
|
|
@@ -546,13 +525,13 @@ var Wrap = forwardRef3(function Wrap2({
|
|
|
546
525
|
}
|
|
547
526
|
);
|
|
548
527
|
case "group":
|
|
549
|
-
return /* @__PURE__ */
|
|
528
|
+
return /* @__PURE__ */ jsx2(TapTargetButtonForGroup, { ref, ...props, children });
|
|
550
529
|
default:
|
|
551
|
-
return /* @__PURE__ */
|
|
530
|
+
return /* @__PURE__ */ jsx2(TapTargetButton, { ref, ...props, children });
|
|
552
531
|
}
|
|
553
532
|
});
|
|
554
533
|
function MenuTapButton(props) {
|
|
555
|
-
return /* @__PURE__ */
|
|
534
|
+
return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Menu", strokeWidth: 1.75, ...props, children: /* @__PURE__ */ jsx2(
|
|
556
535
|
"path",
|
|
557
536
|
{
|
|
558
537
|
strokeLinecap: "round",
|
|
@@ -562,7 +541,7 @@ function MenuTapButton(props) {
|
|
|
562
541
|
) });
|
|
563
542
|
}
|
|
564
543
|
function PlusTapButton(props) {
|
|
565
|
-
return /* @__PURE__ */
|
|
544
|
+
return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Add", ...props, children: /* @__PURE__ */ jsx2(
|
|
566
545
|
"path",
|
|
567
546
|
{
|
|
568
547
|
strokeLinecap: "round",
|
|
@@ -573,12 +552,12 @@ function PlusTapButton(props) {
|
|
|
573
552
|
}
|
|
574
553
|
function SearchTapButton(props) {
|
|
575
554
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Search", ...props, children: [
|
|
576
|
-
/* @__PURE__ */
|
|
577
|
-
/* @__PURE__ */
|
|
555
|
+
/* @__PURE__ */ jsx2("circle", { cx: "11", cy: "11", r: "8" }),
|
|
556
|
+
/* @__PURE__ */ jsx2("path", { d: "m21 21-4.34-4.34" })
|
|
578
557
|
] });
|
|
579
558
|
}
|
|
580
559
|
function SettingsTapButton(props) {
|
|
581
|
-
return /* @__PURE__ */
|
|
560
|
+
return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Settings", ...props, children: /* @__PURE__ */ jsx2(
|
|
582
561
|
"path",
|
|
583
562
|
{
|
|
584
563
|
strokeLinecap: "round",
|
|
@@ -588,7 +567,7 @@ function SettingsTapButton(props) {
|
|
|
588
567
|
) });
|
|
589
568
|
}
|
|
590
569
|
function MaximizeTapButton(props) {
|
|
591
|
-
return /* @__PURE__ */
|
|
570
|
+
return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Fullscreen", ...props, children: /* @__PURE__ */ jsx2(
|
|
592
571
|
"path",
|
|
593
572
|
{
|
|
594
573
|
strokeLinecap: "round",
|
|
@@ -599,30 +578,30 @@ function MaximizeTapButton(props) {
|
|
|
599
578
|
}
|
|
600
579
|
function HomeTapButton(props) {
|
|
601
580
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Hub", ...props, children: [
|
|
602
|
-
/* @__PURE__ */
|
|
603
|
-
/* @__PURE__ */
|
|
581
|
+
/* @__PURE__ */ jsx2("path", { d: "M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8" }),
|
|
582
|
+
/* @__PURE__ */ jsx2("path", { d: "M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" })
|
|
604
583
|
] });
|
|
605
584
|
}
|
|
606
585
|
function LayoutGridTapButton(props) {
|
|
607
586
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Card view", ...props, children: [
|
|
608
|
-
/* @__PURE__ */
|
|
609
|
-
/* @__PURE__ */
|
|
610
|
-
/* @__PURE__ */
|
|
611
|
-
/* @__PURE__ */
|
|
587
|
+
/* @__PURE__ */ jsx2("rect", { width: "7", height: "7", x: "3", y: "3", rx: "1" }),
|
|
588
|
+
/* @__PURE__ */ jsx2("rect", { width: "7", height: "7", x: "14", y: "3", rx: "1" }),
|
|
589
|
+
/* @__PURE__ */ jsx2("rect", { width: "7", height: "7", x: "14", y: "14", rx: "1" }),
|
|
590
|
+
/* @__PURE__ */ jsx2("rect", { width: "7", height: "7", x: "3", y: "14", rx: "1" })
|
|
612
591
|
] });
|
|
613
592
|
}
|
|
614
593
|
function ListTapButton(props) {
|
|
615
594
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Table view", ...props, children: [
|
|
616
|
-
/* @__PURE__ */
|
|
617
|
-
/* @__PURE__ */
|
|
618
|
-
/* @__PURE__ */
|
|
619
|
-
/* @__PURE__ */
|
|
620
|
-
/* @__PURE__ */
|
|
621
|
-
/* @__PURE__ */
|
|
595
|
+
/* @__PURE__ */ jsx2("path", { d: "M3 5h.01" }),
|
|
596
|
+
/* @__PURE__ */ jsx2("path", { d: "M3 12h.01" }),
|
|
597
|
+
/* @__PURE__ */ jsx2("path", { d: "M3 19h.01" }),
|
|
598
|
+
/* @__PURE__ */ jsx2("path", { d: "M8 5h13" }),
|
|
599
|
+
/* @__PURE__ */ jsx2("path", { d: "M8 12h13" }),
|
|
600
|
+
/* @__PURE__ */ jsx2("path", { d: "M8 19h13" })
|
|
622
601
|
] });
|
|
623
602
|
}
|
|
624
603
|
function ArrowDownUpTapButton(props) {
|
|
625
|
-
return /* @__PURE__ */
|
|
604
|
+
return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Sort", ...props, children: /* @__PURE__ */ jsx2(
|
|
626
605
|
"path",
|
|
627
606
|
{
|
|
628
607
|
strokeLinecap: "round",
|
|
@@ -633,189 +612,189 @@ function ArrowDownUpTapButton(props) {
|
|
|
633
612
|
}
|
|
634
613
|
function BellTapButton(props) {
|
|
635
614
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Notifications", ...props, children: [
|
|
636
|
-
/* @__PURE__ */
|
|
637
|
-
/* @__PURE__ */
|
|
615
|
+
/* @__PURE__ */ jsx2("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
|
|
616
|
+
/* @__PURE__ */ jsx2("path", { d: "M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326" })
|
|
638
617
|
] });
|
|
639
618
|
}
|
|
640
619
|
function BellRingTapButton(props) {
|
|
641
620
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Notifications", ...props, children: [
|
|
642
|
-
/* @__PURE__ */
|
|
643
|
-
/* @__PURE__ */
|
|
644
|
-
/* @__PURE__ */
|
|
645
|
-
/* @__PURE__ */
|
|
621
|
+
/* @__PURE__ */ jsx2("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
|
|
622
|
+
/* @__PURE__ */ jsx2("path", { d: "M22 8c0-2.3-.8-4.3-2-6" }),
|
|
623
|
+
/* @__PURE__ */ jsx2("path", { d: "M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326" }),
|
|
624
|
+
/* @__PURE__ */ jsx2("path", { d: "M4 2C2.8 3.7 2 5.7 2 8" })
|
|
646
625
|
] });
|
|
647
626
|
}
|
|
648
627
|
function ZapTapButton(props) {
|
|
649
|
-
return /* @__PURE__ */
|
|
628
|
+
return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Quick actions", ...props, children: /* @__PURE__ */ jsx2("path", { d: "M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z" }) });
|
|
650
629
|
}
|
|
651
630
|
function UploadTapButton(props) {
|
|
652
631
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Upload", ...props, children: [
|
|
653
|
-
/* @__PURE__ */
|
|
654
|
-
/* @__PURE__ */
|
|
655
|
-
/* @__PURE__ */
|
|
632
|
+
/* @__PURE__ */ jsx2("path", { d: "M12 3v12" }),
|
|
633
|
+
/* @__PURE__ */ jsx2("path", { d: "m17 8-5-5-5 5" }),
|
|
634
|
+
/* @__PURE__ */ jsx2("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" })
|
|
656
635
|
] });
|
|
657
636
|
}
|
|
658
637
|
function DownloadTapButton(props) {
|
|
659
638
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Download", ...props, children: [
|
|
660
|
-
/* @__PURE__ */
|
|
661
|
-
/* @__PURE__ */
|
|
662
|
-
/* @__PURE__ */
|
|
639
|
+
/* @__PURE__ */ jsx2("path", { d: "M12 15V3" }),
|
|
640
|
+
/* @__PURE__ */ jsx2("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
641
|
+
/* @__PURE__ */ jsx2("path", { d: "m7 10 5 5 5-5" })
|
|
663
642
|
] });
|
|
664
643
|
}
|
|
665
644
|
function ShareTapButton(props) {
|
|
666
645
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Share", ...props, children: [
|
|
667
|
-
/* @__PURE__ */
|
|
668
|
-
/* @__PURE__ */
|
|
669
|
-
/* @__PURE__ */
|
|
670
|
-
/* @__PURE__ */
|
|
671
|
-
/* @__PURE__ */
|
|
646
|
+
/* @__PURE__ */ jsx2("circle", { cx: "18", cy: "5", r: "3" }),
|
|
647
|
+
/* @__PURE__ */ jsx2("circle", { cx: "6", cy: "12", r: "3" }),
|
|
648
|
+
/* @__PURE__ */ jsx2("circle", { cx: "18", cy: "19", r: "3" }),
|
|
649
|
+
/* @__PURE__ */ jsx2("line", { x1: "8.59", x2: "15.42", y1: "13.51", y2: "17.49" }),
|
|
650
|
+
/* @__PURE__ */ jsx2("line", { x1: "15.41", x2: "8.59", y1: "6.51", y2: "10.49" })
|
|
672
651
|
] });
|
|
673
652
|
}
|
|
674
653
|
function UndoTapButton(props) {
|
|
675
654
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Undo", ...props, children: [
|
|
676
|
-
/* @__PURE__ */
|
|
677
|
-
/* @__PURE__ */
|
|
655
|
+
/* @__PURE__ */ jsx2("path", { d: "M3 7v6h6" }),
|
|
656
|
+
/* @__PURE__ */ jsx2("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
|
|
678
657
|
] });
|
|
679
658
|
}
|
|
680
659
|
function RedoTapButton(props) {
|
|
681
660
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Redo", ...props, children: [
|
|
682
|
-
/* @__PURE__ */
|
|
683
|
-
/* @__PURE__ */
|
|
661
|
+
/* @__PURE__ */ jsx2("path", { d: "M21 7v6h-6" }),
|
|
662
|
+
/* @__PURE__ */ jsx2("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
|
|
684
663
|
] });
|
|
685
664
|
}
|
|
686
665
|
function CopyTapButton(props) {
|
|
687
666
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Copy", ...props, children: [
|
|
688
|
-
/* @__PURE__ */
|
|
689
|
-
/* @__PURE__ */
|
|
667
|
+
/* @__PURE__ */ jsx2("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
|
|
668
|
+
/* @__PURE__ */ jsx2("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
|
|
690
669
|
] });
|
|
691
670
|
}
|
|
692
671
|
function TrashTapButton(props) {
|
|
693
672
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Delete", ...props, children: [
|
|
694
|
-
/* @__PURE__ */
|
|
695
|
-
/* @__PURE__ */
|
|
696
|
-
/* @__PURE__ */
|
|
673
|
+
/* @__PURE__ */ jsx2("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
|
|
674
|
+
/* @__PURE__ */ jsx2("path", { d: "M3 6h18" }),
|
|
675
|
+
/* @__PURE__ */ jsx2("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
|
|
697
676
|
] });
|
|
698
677
|
}
|
|
699
678
|
function FilesTapButton(props) {
|
|
700
679
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Copy all", ...props, children: [
|
|
701
|
-
/* @__PURE__ */
|
|
702
|
-
/* @__PURE__ */
|
|
703
|
-
/* @__PURE__ */
|
|
680
|
+
/* @__PURE__ */ jsx2("path", { d: "M20 7h-3a2 2 0 0 1-2-2V2" }),
|
|
681
|
+
/* @__PURE__ */ jsx2("path", { d: "M9 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7l4 4v10a2 2 0 0 1-2 2Z" }),
|
|
682
|
+
/* @__PURE__ */ jsx2("path", { d: "M3 7.6v12.8A1.6 1.6 0 0 0 4.6 22h9.8" })
|
|
704
683
|
] });
|
|
705
684
|
}
|
|
706
685
|
function ChevronLeftTapButton(props) {
|
|
707
|
-
return /* @__PURE__ */
|
|
686
|
+
return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Back", ...props, children: /* @__PURE__ */ jsx2("path", { d: "m16 19-7-7 7-7" }) });
|
|
708
687
|
}
|
|
709
688
|
function ChevronRightTapButton(props) {
|
|
710
|
-
return /* @__PURE__ */
|
|
689
|
+
return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Next", ...props, children: /* @__PURE__ */ jsx2("path", { d: "m9 18 6-6-6-6" }) });
|
|
711
690
|
}
|
|
712
691
|
function PanelLeftTapButton(props) {
|
|
713
692
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Toggle sidebar", ...props, children: [
|
|
714
|
-
/* @__PURE__ */
|
|
715
|
-
/* @__PURE__ */
|
|
693
|
+
/* @__PURE__ */ jsx2("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
694
|
+
/* @__PURE__ */ jsx2("path", { d: "M9 3v18" })
|
|
716
695
|
] });
|
|
717
696
|
}
|
|
718
697
|
function PanelRightTapButton(props) {
|
|
719
698
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Toggle sidebar", ...props, children: [
|
|
720
|
-
/* @__PURE__ */
|
|
721
|
-
/* @__PURE__ */
|
|
699
|
+
/* @__PURE__ */ jsx2("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
700
|
+
/* @__PURE__ */ jsx2("path", { d: "M15 3v18" })
|
|
722
701
|
] });
|
|
723
702
|
}
|
|
724
703
|
function SquarePenTapButton(props) {
|
|
725
704
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "New chat", ...props, children: [
|
|
726
|
-
/* @__PURE__ */
|
|
727
|
-
/* @__PURE__ */
|
|
705
|
+
/* @__PURE__ */ jsx2("path", { d: "M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" }),
|
|
706
|
+
/* @__PURE__ */ jsx2("path", { d: "M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z" })
|
|
728
707
|
] });
|
|
729
708
|
}
|
|
730
709
|
function XTapButton(props) {
|
|
731
710
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Close", ...props, children: [
|
|
732
|
-
/* @__PURE__ */
|
|
733
|
-
/* @__PURE__ */
|
|
711
|
+
/* @__PURE__ */ jsx2("path", { d: "M18 6 6 18" }),
|
|
712
|
+
/* @__PURE__ */ jsx2("path", { d: "m6 6 12 12" })
|
|
734
713
|
] });
|
|
735
714
|
}
|
|
736
715
|
function FilterTapButton(props) {
|
|
737
|
-
return /* @__PURE__ */
|
|
716
|
+
return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Filter", ...props, children: /* @__PURE__ */ jsx2("path", { d: "M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z" }) });
|
|
738
717
|
}
|
|
739
718
|
function PlayTapButton(props) {
|
|
740
|
-
return /* @__PURE__ */
|
|
719
|
+
return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Play", ...props, children: /* @__PURE__ */ jsx2("path", { d: "M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z" }) });
|
|
741
720
|
}
|
|
742
721
|
function PauseTapButton(props) {
|
|
743
722
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Pause", ...props, children: [
|
|
744
|
-
/* @__PURE__ */
|
|
745
|
-
/* @__PURE__ */
|
|
723
|
+
/* @__PURE__ */ jsx2("rect", { x: "14", y: "3", width: "5", height: "18", rx: "1" }),
|
|
724
|
+
/* @__PURE__ */ jsx2("rect", { x: "5", y: "3", width: "5", height: "18", rx: "1" })
|
|
746
725
|
] });
|
|
747
726
|
}
|
|
748
727
|
function StopTapButton(props) {
|
|
749
|
-
return /* @__PURE__ */
|
|
728
|
+
return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Stop", ...props, children: /* @__PURE__ */ jsx2("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }) });
|
|
750
729
|
}
|
|
751
730
|
function Volume2TapButton(props) {
|
|
752
731
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Speaker", ...props, children: [
|
|
753
|
-
/* @__PURE__ */
|
|
754
|
-
/* @__PURE__ */
|
|
755
|
-
/* @__PURE__ */
|
|
732
|
+
/* @__PURE__ */ jsx2("path", { d: "M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z" }),
|
|
733
|
+
/* @__PURE__ */ jsx2("path", { d: "M16 9a5 5 0 0 1 0 6" }),
|
|
734
|
+
/* @__PURE__ */ jsx2("path", { d: "M19.364 18.364a9 9 0 0 0 0-12.728" })
|
|
756
735
|
] });
|
|
757
736
|
}
|
|
758
737
|
function ArrowUpTapButton(props) {
|
|
759
738
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Send", ...props, children: [
|
|
760
|
-
/* @__PURE__ */
|
|
761
|
-
/* @__PURE__ */
|
|
739
|
+
/* @__PURE__ */ jsx2("path", { d: "m5 12 7-7 7 7" }),
|
|
740
|
+
/* @__PURE__ */ jsx2("path", { d: "M12 19V5" })
|
|
762
741
|
] });
|
|
763
742
|
}
|
|
764
743
|
function MicTapButton(props) {
|
|
765
744
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Start recording", ...props, children: [
|
|
766
|
-
/* @__PURE__ */
|
|
767
|
-
/* @__PURE__ */
|
|
768
|
-
/* @__PURE__ */
|
|
745
|
+
/* @__PURE__ */ jsx2("path", { d: "M12 19v3" }),
|
|
746
|
+
/* @__PURE__ */ jsx2("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
|
|
747
|
+
/* @__PURE__ */ jsx2("rect", { x: "9", y: "2", width: "6", height: "13", rx: "3" })
|
|
769
748
|
] });
|
|
770
749
|
}
|
|
771
750
|
function MicOffTapButton(props) {
|
|
772
751
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Stop recording", ...props, children: [
|
|
773
|
-
/* @__PURE__ */
|
|
774
|
-
/* @__PURE__ */
|
|
775
|
-
/* @__PURE__ */
|
|
776
|
-
/* @__PURE__ */
|
|
777
|
-
/* @__PURE__ */
|
|
778
|
-
/* @__PURE__ */
|
|
752
|
+
/* @__PURE__ */ jsx2("path", { d: "M12 19v3" }),
|
|
753
|
+
/* @__PURE__ */ jsx2("path", { d: "M15 9.34V5a3 3 0 0 0-5.68-1.33" }),
|
|
754
|
+
/* @__PURE__ */ jsx2("path", { d: "M16.95 16.95A7 7 0 0 1 5 12v-2" }),
|
|
755
|
+
/* @__PURE__ */ jsx2("path", { d: "M18.89 13.23A7 7 0 0 0 19 12v-2" }),
|
|
756
|
+
/* @__PURE__ */ jsx2("path", { d: "m2 2 20 20" }),
|
|
757
|
+
/* @__PURE__ */ jsx2("path", { d: "M9 9v3a3 3 0 0 0 5.12 2.12" })
|
|
779
758
|
] });
|
|
780
759
|
}
|
|
781
760
|
function TriangleAlertTapButton(props) {
|
|
782
761
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Alert", ...props, children: [
|
|
783
|
-
/* @__PURE__ */
|
|
784
|
-
/* @__PURE__ */
|
|
785
|
-
/* @__PURE__ */
|
|
762
|
+
/* @__PURE__ */ jsx2("path", { d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3" }),
|
|
763
|
+
/* @__PURE__ */ jsx2("path", { d: "M12 9v4" }),
|
|
764
|
+
/* @__PURE__ */ jsx2("path", { d: "M12 17h.01" })
|
|
786
765
|
] });
|
|
787
766
|
}
|
|
788
767
|
function ShieldCheckTapButton(props) {
|
|
789
768
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Context set", ...props, children: [
|
|
790
|
-
/* @__PURE__ */
|
|
791
|
-
/* @__PURE__ */
|
|
769
|
+
/* @__PURE__ */ jsx2("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
|
|
770
|
+
/* @__PURE__ */ jsx2("path", { d: "m9 12 2 2 4-4" })
|
|
792
771
|
] });
|
|
793
772
|
}
|
|
794
773
|
function ShieldAlertTapButton(props) {
|
|
795
774
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "No context", ...props, children: [
|
|
796
|
-
/* @__PURE__ */
|
|
797
|
-
/* @__PURE__ */
|
|
798
|
-
/* @__PURE__ */
|
|
775
|
+
/* @__PURE__ */ jsx2("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
|
|
776
|
+
/* @__PURE__ */ jsx2("path", { d: "M12 8v4" }),
|
|
777
|
+
/* @__PURE__ */ jsx2("path", { d: "M12 16h.01" })
|
|
799
778
|
] });
|
|
800
779
|
}
|
|
801
780
|
function BugTapButton(props) {
|
|
802
781
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Debug", ...props, children: [
|
|
803
|
-
/* @__PURE__ */
|
|
804
|
-
/* @__PURE__ */
|
|
805
|
-
/* @__PURE__ */
|
|
806
|
-
/* @__PURE__ */
|
|
807
|
-
/* @__PURE__ */
|
|
808
|
-
/* @__PURE__ */
|
|
809
|
-
/* @__PURE__ */
|
|
810
|
-
/* @__PURE__ */
|
|
811
|
-
/* @__PURE__ */
|
|
812
|
-
/* @__PURE__ */
|
|
813
|
-
/* @__PURE__ */
|
|
782
|
+
/* @__PURE__ */ jsx2("path", { d: "M12 20v-9" }),
|
|
783
|
+
/* @__PURE__ */ jsx2("path", { d: "M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z" }),
|
|
784
|
+
/* @__PURE__ */ jsx2("path", { d: "M14.12 3.88 16 2" }),
|
|
785
|
+
/* @__PURE__ */ jsx2("path", { d: "M21 21a4 4 0 0 0-3.81-4" }),
|
|
786
|
+
/* @__PURE__ */ jsx2("path", { d: "M21 5a4 4 0 0 1-3.55 3.97" }),
|
|
787
|
+
/* @__PURE__ */ jsx2("path", { d: "M22 13h-4" }),
|
|
788
|
+
/* @__PURE__ */ jsx2("path", { d: "M3 21a4 4 0 0 1 3.81-4" }),
|
|
789
|
+
/* @__PURE__ */ jsx2("path", { d: "M3 5a4 4 0 0 0 3.55 3.97" }),
|
|
790
|
+
/* @__PURE__ */ jsx2("path", { d: "M6 13H2" }),
|
|
791
|
+
/* @__PURE__ */ jsx2("path", { d: "m8 2 1.88 1.88" }),
|
|
792
|
+
/* @__PURE__ */ jsx2("path", { d: "M9 7.13V6a3 3 0 1 1 6 0v1.13" })
|
|
814
793
|
] });
|
|
815
794
|
}
|
|
816
795
|
function Settings2TapButton(props) {
|
|
817
796
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Settings", ...props, children: [
|
|
818
|
-
/* @__PURE__ */
|
|
797
|
+
/* @__PURE__ */ jsx2(
|
|
819
798
|
"path",
|
|
820
799
|
{
|
|
821
800
|
strokeLinecap: "round",
|
|
@@ -823,7 +802,7 @@ function Settings2TapButton(props) {
|
|
|
823
802
|
d: "M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z"
|
|
824
803
|
}
|
|
825
804
|
),
|
|
826
|
-
/* @__PURE__ */
|
|
805
|
+
/* @__PURE__ */ jsx2(
|
|
827
806
|
"path",
|
|
828
807
|
{
|
|
829
808
|
strokeLinecap: "round",
|
|
@@ -835,7 +814,7 @@ function Settings2TapButton(props) {
|
|
|
835
814
|
}
|
|
836
815
|
function SaveTapButton(props) {
|
|
837
816
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Save", ...props, children: [
|
|
838
|
-
/* @__PURE__ */
|
|
817
|
+
/* @__PURE__ */ jsx2(
|
|
839
818
|
"path",
|
|
840
819
|
{
|
|
841
820
|
strokeLinecap: "round",
|
|
@@ -843,7 +822,7 @@ function SaveTapButton(props) {
|
|
|
843
822
|
d: "M4.5 6a2 2 0 012-2h9.25L20.5 9v9a2 2 0 01-2 2h-12a2 2 0 01-2-2V6z"
|
|
844
823
|
}
|
|
845
824
|
),
|
|
846
|
-
/* @__PURE__ */
|
|
825
|
+
/* @__PURE__ */ jsx2(
|
|
847
826
|
"path",
|
|
848
827
|
{
|
|
849
828
|
strokeLinecap: "round",
|
|
@@ -851,7 +830,7 @@ function SaveTapButton(props) {
|
|
|
851
830
|
d: "M8.5 4v4.5a.5.5 0 00.5.5h6a.5.5 0 00.5-.5V4"
|
|
852
831
|
}
|
|
853
832
|
),
|
|
854
|
-
/* @__PURE__ */
|
|
833
|
+
/* @__PURE__ */ jsx2(
|
|
855
834
|
"rect",
|
|
856
835
|
{
|
|
857
836
|
x: "8",
|
|
@@ -866,65 +845,65 @@ function SaveTapButton(props) {
|
|
|
866
845
|
}
|
|
867
846
|
function SendTapButton(props) {
|
|
868
847
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Send", ...props, children: [
|
|
869
|
-
/* @__PURE__ */
|
|
870
|
-
/* @__PURE__ */
|
|
848
|
+
/* @__PURE__ */ jsx2("path", { d: "M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z" }),
|
|
849
|
+
/* @__PURE__ */ jsx2("path", { d: "m21.854 2.147-10.94 10.939" })
|
|
871
850
|
] });
|
|
872
851
|
}
|
|
873
852
|
function MessageTapButton(props) {
|
|
874
|
-
return /* @__PURE__ */
|
|
853
|
+
return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Message", ...props, children: /* @__PURE__ */ jsx2("path", { d: "M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z" }) });
|
|
875
854
|
}
|
|
876
855
|
function VariableTapButton(props) {
|
|
877
856
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Variable", ...props, children: [
|
|
878
|
-
/* @__PURE__ */
|
|
879
|
-
/* @__PURE__ */
|
|
880
|
-
/* @__PURE__ */
|
|
881
|
-
/* @__PURE__ */
|
|
857
|
+
/* @__PURE__ */ jsx2("path", { d: "M8 21s-4-3-4-9 4-9 4-9" }),
|
|
858
|
+
/* @__PURE__ */ jsx2("path", { d: "M16 3s4 3 4 9-4 9-4 9" }),
|
|
859
|
+
/* @__PURE__ */ jsx2("line", { x1: "15", x2: "9", y1: "9", y2: "15" }),
|
|
860
|
+
/* @__PURE__ */ jsx2("line", { x1: "9", x2: "15", y1: "9", y2: "15" })
|
|
882
861
|
] });
|
|
883
862
|
}
|
|
884
863
|
function WrenchTapButton(props) {
|
|
885
|
-
return /* @__PURE__ */
|
|
864
|
+
return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Tool", ...props, children: /* @__PURE__ */ jsx2("path", { d: "M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z" }) });
|
|
886
865
|
}
|
|
887
866
|
function CommandTapButton(props) {
|
|
888
|
-
return /* @__PURE__ */
|
|
867
|
+
return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Command", ...props, children: /* @__PURE__ */ jsx2("path", { d: "M15 6v12a3 3 0 1 0 3-3H6a3 3 0 1 0 3 3V6a3 3 0 1 0-3 3h12a3 3 0 1 0-3-3" }) });
|
|
889
868
|
}
|
|
890
869
|
function TerminalTapButton(props) {
|
|
891
870
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Terminal", ...props, children: [
|
|
892
|
-
/* @__PURE__ */
|
|
893
|
-
/* @__PURE__ */
|
|
871
|
+
/* @__PURE__ */ jsx2("path", { d: "M12 19h8" }),
|
|
872
|
+
/* @__PURE__ */ jsx2("path", { d: "m4 17 6-6-6-6" })
|
|
894
873
|
] });
|
|
895
874
|
}
|
|
896
875
|
function TestTubeTapButton(props) {
|
|
897
876
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Test", ...props, children: [
|
|
898
|
-
/* @__PURE__ */
|
|
899
|
-
/* @__PURE__ */
|
|
900
|
-
/* @__PURE__ */
|
|
877
|
+
/* @__PURE__ */ jsx2("path", { d: "M14.5 2v17.5c0 1.4-1.1 2.5-2.5 2.5c-1.4 0-2.5-1.1-2.5-2.5V2" }),
|
|
878
|
+
/* @__PURE__ */ jsx2("path", { d: "M8.5 2h7" }),
|
|
879
|
+
/* @__PURE__ */ jsx2("path", { d: "M14.5 16h-5" })
|
|
901
880
|
] });
|
|
902
881
|
}
|
|
903
882
|
function ResetTapButton(props) {
|
|
904
883
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Reset", ...props, children: [
|
|
905
|
-
/* @__PURE__ */
|
|
906
|
-
/* @__PURE__ */
|
|
884
|
+
/* @__PURE__ */ jsx2("path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" }),
|
|
885
|
+
/* @__PURE__ */ jsx2("path", { d: "M3 3v5h5" })
|
|
907
886
|
] });
|
|
908
887
|
}
|
|
909
888
|
function ClearTapButton(props) {
|
|
910
889
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Clear", ...props, children: [
|
|
911
|
-
/* @__PURE__ */
|
|
912
|
-
/* @__PURE__ */
|
|
890
|
+
/* @__PURE__ */ jsx2("path", { d: "M21 21H8a2 2 0 0 1-1.42-.587l-3.994-3.999a2 2 0 0 1 0-2.828l10-10a2 2 0 0 1 2.829 0l5.999 6a2 2 0 0 1 0 2.828L12.834 21" }),
|
|
891
|
+
/* @__PURE__ */ jsx2("path", { d: "m5.082 11.09 8.828 8.828" })
|
|
913
892
|
] });
|
|
914
893
|
}
|
|
915
894
|
function RetryTapButton(props) {
|
|
916
895
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Retry", ...props, children: [
|
|
917
|
-
/* @__PURE__ */
|
|
918
|
-
/* @__PURE__ */
|
|
919
|
-
/* @__PURE__ */
|
|
920
|
-
/* @__PURE__ */
|
|
896
|
+
/* @__PURE__ */ jsx2("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
|
|
897
|
+
/* @__PURE__ */ jsx2("path", { d: "M21 3v5h-5" }),
|
|
898
|
+
/* @__PURE__ */ jsx2("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
|
|
899
|
+
/* @__PURE__ */ jsx2("path", { d: "M8 16H3v5" })
|
|
921
900
|
] });
|
|
922
901
|
}
|
|
923
902
|
function RefreshCwTapButton(props) {
|
|
924
|
-
return /* @__PURE__ */
|
|
903
|
+
return /* @__PURE__ */ jsx2(RetryTapButton, { ariaLabel: "Refresh", ...props });
|
|
925
904
|
}
|
|
926
905
|
function LoadingTapButton(props) {
|
|
927
|
-
return /* @__PURE__ */
|
|
906
|
+
return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Loading", ...props, children: /* @__PURE__ */ jsx2(
|
|
928
907
|
"circle",
|
|
929
908
|
{
|
|
930
909
|
className: "animate-spin",
|
|
@@ -939,7 +918,7 @@ function LoadingTapButton(props) {
|
|
|
939
918
|
) });
|
|
940
919
|
}
|
|
941
920
|
function RobotTapButton(props) {
|
|
942
|
-
return /* @__PURE__ */
|
|
921
|
+
return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "AI Agent", ...props, children: /* @__PURE__ */ jsx2(
|
|
943
922
|
"path",
|
|
944
923
|
{
|
|
945
924
|
strokeLinecap: "round",
|
|
@@ -950,119 +929,119 @@ function RobotTapButton(props) {
|
|
|
950
929
|
}
|
|
951
930
|
function WebhookTapButton(props) {
|
|
952
931
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Webhook", ...props, children: [
|
|
953
|
-
/* @__PURE__ */
|
|
954
|
-
/* @__PURE__ */
|
|
955
|
-
/* @__PURE__ */
|
|
932
|
+
/* @__PURE__ */ jsx2("path", { d: "M18 16.98h-5.99c-1.1 0-1.95.94-2.48 1.9A4 4 0 0 1 2 17c.01-.7.2-1.4.57-2" }),
|
|
933
|
+
/* @__PURE__ */ jsx2("path", { d: "m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06" }),
|
|
934
|
+
/* @__PURE__ */ jsx2("path", { d: "m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8" })
|
|
956
935
|
] });
|
|
957
936
|
}
|
|
958
937
|
function ViewTapButton(props) {
|
|
959
938
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "View", ...props, children: [
|
|
960
|
-
/* @__PURE__ */
|
|
961
|
-
/* @__PURE__ */
|
|
939
|
+
/* @__PURE__ */ jsx2("path", { d: "M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0" }),
|
|
940
|
+
/* @__PURE__ */ jsx2("circle", { cx: "12", cy: "12", r: "3" })
|
|
962
941
|
] });
|
|
963
942
|
}
|
|
964
943
|
function BuildTapButton(props) {
|
|
965
944
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Build", ...props, children: [
|
|
966
|
-
/* @__PURE__ */
|
|
967
|
-
/* @__PURE__ */
|
|
968
|
-
/* @__PURE__ */
|
|
945
|
+
/* @__PURE__ */ jsx2("path", { d: "m15 12-9.373 9.373a1 1 0 0 1-3.001-3L12 9" }),
|
|
946
|
+
/* @__PURE__ */ jsx2("path", { d: "m18 15 4-4" }),
|
|
947
|
+
/* @__PURE__ */ jsx2("path", { d: "m21.5 11.5-1.914-1.914A2 2 0 0 1 19 8.172v-.344a2 2 0 0 0-.586-1.414l-1.657-1.657A6 6 0 0 0 12.516 3H9l1.243 1.243A6 6 0 0 1 12 8.485V10l2 2h1.172a2 2 0 0 1 1.414.586L18.5 14.5" })
|
|
969
948
|
] });
|
|
970
949
|
}
|
|
971
950
|
function RunTapButton(props) {
|
|
972
|
-
return /* @__PURE__ */
|
|
951
|
+
return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Run", ...props, children: /* @__PURE__ */ jsx2("path", { d: "M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z" }) });
|
|
973
952
|
}
|
|
974
953
|
function HistoryTapButton(props) {
|
|
975
954
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "History", ...props, children: [
|
|
976
|
-
/* @__PURE__ */
|
|
977
|
-
/* @__PURE__ */
|
|
978
|
-
/* @__PURE__ */
|
|
955
|
+
/* @__PURE__ */ jsx2("path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" }),
|
|
956
|
+
/* @__PURE__ */ jsx2("path", { d: "M3 3v5h5" }),
|
|
957
|
+
/* @__PURE__ */ jsx2("path", { d: "M12 7v5l4 2" })
|
|
979
958
|
] });
|
|
980
959
|
}
|
|
981
960
|
function PaperclipTapButton(props) {
|
|
982
|
-
return /* @__PURE__ */
|
|
961
|
+
return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Attach file", ...props, children: /* @__PURE__ */ jsx2("path", { d: "m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551" }) });
|
|
983
962
|
}
|
|
984
963
|
function ThumbsUpTapButton(props) {
|
|
985
964
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Like", ...props, children: [
|
|
986
|
-
/* @__PURE__ */
|
|
987
|
-
/* @__PURE__ */
|
|
965
|
+
/* @__PURE__ */ jsx2("path", { d: "M7 10v12" }),
|
|
966
|
+
/* @__PURE__ */ jsx2("path", { d: "M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z" })
|
|
988
967
|
] });
|
|
989
968
|
}
|
|
990
969
|
function ThumbsDownTapButton(props) {
|
|
991
970
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Dislike", ...props, children: [
|
|
992
|
-
/* @__PURE__ */
|
|
993
|
-
/* @__PURE__ */
|
|
971
|
+
/* @__PURE__ */ jsx2("path", { d: "M17 14V2" }),
|
|
972
|
+
/* @__PURE__ */ jsx2("path", { d: "M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z" })
|
|
994
973
|
] });
|
|
995
974
|
}
|
|
996
975
|
function CheckTapButton(props) {
|
|
997
|
-
return /* @__PURE__ */
|
|
976
|
+
return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Done", ...props, children: /* @__PURE__ */ jsx2("path", { d: "M20 6 9 17l-5-5" }) });
|
|
998
977
|
}
|
|
999
978
|
function PencilTapButton(props) {
|
|
1000
979
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Edit", ...props, children: [
|
|
1001
|
-
/* @__PURE__ */
|
|
1002
|
-
/* @__PURE__ */
|
|
980
|
+
/* @__PURE__ */ jsx2("path", { d: "M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z" }),
|
|
981
|
+
/* @__PURE__ */ jsx2("path", { d: "m15 5 4 4" })
|
|
1003
982
|
] });
|
|
1004
983
|
}
|
|
1005
984
|
function MoreHorizontalTapButton(props) {
|
|
1006
985
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "More options", ...props, children: [
|
|
1007
|
-
/* @__PURE__ */
|
|
1008
|
-
/* @__PURE__ */
|
|
1009
|
-
/* @__PURE__ */
|
|
986
|
+
/* @__PURE__ */ jsx2("circle", { cx: "12", cy: "12", r: "1" }),
|
|
987
|
+
/* @__PURE__ */ jsx2("circle", { cx: "19", cy: "12", r: "1" }),
|
|
988
|
+
/* @__PURE__ */ jsx2("circle", { cx: "5", cy: "12", r: "1" })
|
|
1010
989
|
] });
|
|
1011
990
|
}
|
|
1012
991
|
function CheckSquareTapButton(props) {
|
|
1013
992
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Task", ...props, children: [
|
|
1014
|
-
/* @__PURE__ */
|
|
1015
|
-
/* @__PURE__ */
|
|
993
|
+
/* @__PURE__ */ jsx2("path", { d: "m9 11 3 3L22 4" }),
|
|
994
|
+
/* @__PURE__ */ jsx2("path", { d: "M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11" })
|
|
1016
995
|
] });
|
|
1017
996
|
}
|
|
1018
997
|
function GhostTapButton(props) {
|
|
1019
998
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Incognito chat", ...props, children: [
|
|
1020
|
-
/* @__PURE__ */
|
|
1021
|
-
/* @__PURE__ */
|
|
1022
|
-
/* @__PURE__ */
|
|
999
|
+
/* @__PURE__ */ jsx2("path", { d: "M9 10h.01" }),
|
|
1000
|
+
/* @__PURE__ */ jsx2("path", { d: "M15 10h.01" }),
|
|
1001
|
+
/* @__PURE__ */ jsx2("path", { d: "M12 2a8 8 0 0 0-8 8v12l3-3 2.5 2.5L12 19l2.5 2.5L17 19l3 3V10a8 8 0 0 0-8-8z" })
|
|
1023
1002
|
] });
|
|
1024
1003
|
}
|
|
1025
1004
|
function LinkTapButton(props) {
|
|
1026
1005
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Attach", ...props, children: [
|
|
1027
|
-
/* @__PURE__ */
|
|
1028
|
-
/* @__PURE__ */
|
|
1006
|
+
/* @__PURE__ */ jsx2("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
|
|
1007
|
+
/* @__PURE__ */ jsx2("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
|
|
1029
1008
|
] });
|
|
1030
1009
|
}
|
|
1031
1010
|
function ExternalLinkTapButton(props) {
|
|
1032
1011
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Open source", ...props, children: [
|
|
1033
|
-
/* @__PURE__ */
|
|
1034
|
-
/* @__PURE__ */
|
|
1035
|
-
/* @__PURE__ */
|
|
1012
|
+
/* @__PURE__ */ jsx2("path", { d: "M15 3h6v6" }),
|
|
1013
|
+
/* @__PURE__ */ jsx2("path", { d: "M10 14 21 3" }),
|
|
1014
|
+
/* @__PURE__ */ jsx2("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" })
|
|
1036
1015
|
] });
|
|
1037
1016
|
}
|
|
1038
1017
|
function ClipboardListTapButton(props) {
|
|
1039
1018
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Copy Pages", ...props, children: [
|
|
1040
|
-
/* @__PURE__ */
|
|
1041
|
-
/* @__PURE__ */
|
|
1042
|
-
/* @__PURE__ */
|
|
1043
|
-
/* @__PURE__ */
|
|
1044
|
-
/* @__PURE__ */
|
|
1045
|
-
/* @__PURE__ */
|
|
1019
|
+
/* @__PURE__ */ jsx2("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
|
|
1020
|
+
/* @__PURE__ */ jsx2("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }),
|
|
1021
|
+
/* @__PURE__ */ jsx2("path", { d: "M12 11h4" }),
|
|
1022
|
+
/* @__PURE__ */ jsx2("path", { d: "M12 16h4" }),
|
|
1023
|
+
/* @__PURE__ */ jsx2("path", { d: "M8 11h.01" }),
|
|
1024
|
+
/* @__PURE__ */ jsx2("path", { d: "M8 16h.01" })
|
|
1046
1025
|
] });
|
|
1047
1026
|
}
|
|
1048
1027
|
function PartyPopperTapButton(props) {
|
|
1049
1028
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "AI Clean", ...props, children: [
|
|
1050
|
-
/* @__PURE__ */
|
|
1051
|
-
/* @__PURE__ */
|
|
1052
|
-
/* @__PURE__ */
|
|
1053
|
-
/* @__PURE__ */
|
|
1054
|
-
/* @__PURE__ */
|
|
1055
|
-
/* @__PURE__ */
|
|
1056
|
-
/* @__PURE__ */
|
|
1057
|
-
/* @__PURE__ */
|
|
1058
|
-
/* @__PURE__ */
|
|
1029
|
+
/* @__PURE__ */ jsx2("path", { d: "M5.8 11.3 2 22l10.7-3.79" }),
|
|
1030
|
+
/* @__PURE__ */ jsx2("path", { d: "M4 3h.01" }),
|
|
1031
|
+
/* @__PURE__ */ jsx2("path", { d: "M22 8h.01" }),
|
|
1032
|
+
/* @__PURE__ */ jsx2("path", { d: "M15 2h.01" }),
|
|
1033
|
+
/* @__PURE__ */ jsx2("path", { d: "M22 20h.01" }),
|
|
1034
|
+
/* @__PURE__ */ jsx2("path", { d: "m22 2-2.24.75a2.9 2.9 0 0 0-1.96 3.12c.1.86-.57 1.63-1.45 1.63h-.38c-.86 0-1.6.6-1.76 1.44L14 10" }),
|
|
1035
|
+
/* @__PURE__ */ jsx2("path", { d: "m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17" }),
|
|
1036
|
+
/* @__PURE__ */ jsx2("path", { d: "m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7" }),
|
|
1037
|
+
/* @__PURE__ */ jsx2("path", { d: "M11 13c1.93 1.93 2.83 4.17 2 5-.83.83-3.07-.07-5-2-1.93-1.93-2.83-4.17-2-5 .83-.83 3.07.07 5 2Z" })
|
|
1059
1038
|
] });
|
|
1060
1039
|
}
|
|
1061
1040
|
function LayersTapButton(props) {
|
|
1062
1041
|
return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Open this PDF in another surface", ...props, children: [
|
|
1063
|
-
/* @__PURE__ */
|
|
1064
|
-
/* @__PURE__ */
|
|
1065
|
-
/* @__PURE__ */
|
|
1042
|
+
/* @__PURE__ */ jsx2("path", { d: "M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z" }),
|
|
1043
|
+
/* @__PURE__ */ jsx2("path", { d: "M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12" }),
|
|
1044
|
+
/* @__PURE__ */ jsx2("path", { d: "M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17" })
|
|
1066
1045
|
] });
|
|
1067
1046
|
}
|
|
1068
1047
|
export {
|