@ai-matrx/tap-target 0.1.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.
@@ -0,0 +1,1127 @@
1
+ "use client";
2
+
3
+ // src/tap-buttons.tsx
4
+ import { forwardRef as forwardRef3 } from "react";
5
+
6
+ // src/tap-target-button.tsx
7
+ import {
8
+ cloneElement,
9
+ forwardRef as forwardRef2,
10
+ isValidElement
11
+ } from "react";
12
+ import * as TooltipPrimitive2 from "@radix-ui/react-tooltip";
13
+
14
+ // src/tooltip.tsx
15
+ import * as React from "react";
16
+ import * as TooltipPrimitive from "@radix-ui/react-tooltip";
17
+
18
+ // src/cn.ts
19
+ function cn(...values) {
20
+ return values.filter(Boolean).join(" ").trim();
21
+ }
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
+ // src/link.ts
45
+ var LINK_SLOT = /* @__PURE__ */ Symbol.for("@ai-matrx/tap-target:link-component");
46
+ function getTapTargetLinkComponent() {
47
+ return globalThis[LINK_SLOT] ?? null;
48
+ }
49
+
50
+ // src/tap-target-button.tsx
51
+ import { jsx as jsx2, jsxs } from "react/jsx-runtime";
52
+ var EXTERNAL_RE = /^(https?:|mailto:|tel:)/i;
53
+ var TAP_OUTER_CLASS = "matrx-tap-target group";
54
+ var TAP_GROUP_OUTER_CLASS = "matrx-tap-target matrx-tap-target-sm group";
55
+ function IconContent({
56
+ icon,
57
+ children,
58
+ strokeWidth = 2,
59
+ className
60
+ }) {
61
+ if (icon) {
62
+ if (isValidElement(icon)) {
63
+ return cloneElement(icon, {
64
+ className: cn(className, icon.props.className)
65
+ });
66
+ }
67
+ return /* @__PURE__ */ jsx2("span", { className, children: icon });
68
+ }
69
+ return /* @__PURE__ */ jsx2(
70
+ "svg",
71
+ {
72
+ className,
73
+ fill: "none",
74
+ viewBox: "0 0 24 24",
75
+ stroke: "currentColor",
76
+ strokeWidth,
77
+ children
78
+ }
79
+ );
80
+ }
81
+ function resolveTapGeometry(label, size) {
82
+ const inline = Boolean(label);
83
+ if (size === "sm") {
84
+ return {
85
+ outerClassName: inline ? "matrx-tap-target matrx-tap-target-sm matrx-tap-target-inline-sm group" : TAP_GROUP_OUTER_CLASS,
86
+ inlineModifier: "matrx-tap-pill-inline-sm"
87
+ };
88
+ }
89
+ return {
90
+ outerClassName: inline ? `${TAP_OUTER_CLASS} matrx-tap-target-inline` : TAP_OUTER_CLASS,
91
+ inlineModifier: "matrx-tap-pill-inline"
92
+ };
93
+ }
94
+ function buildTapInner({
95
+ label,
96
+ pillClassName,
97
+ iconClassName,
98
+ labelClassName,
99
+ inlineModifier,
100
+ icon,
101
+ children,
102
+ strokeWidth = 2
103
+ }) {
104
+ const iconEl = /* @__PURE__ */ jsx2(
105
+ IconContent,
106
+ {
107
+ icon,
108
+ strokeWidth,
109
+ className: iconClassName,
110
+ children
111
+ }
112
+ );
113
+ const pillClasses = label ? `${pillClassName} ${inlineModifier}`.trim() : pillClassName;
114
+ if (!label) {
115
+ return /* @__PURE__ */ jsx2("div", { className: pillClasses, children: iconEl });
116
+ }
117
+ return /* @__PURE__ */ jsxs("div", { className: pillClasses, children: [
118
+ iconEl,
119
+ /* @__PURE__ */ jsx2("span", { className: labelClassName ?? "matrx-tap-label", children: label })
120
+ ] });
121
+ }
122
+ function renderTapTarget({
123
+ size = "default",
124
+ pillClassName,
125
+ iconClassName,
126
+ labelClassName,
127
+ icon,
128
+ children,
129
+ strokeWidth,
130
+ label,
131
+ onClick,
132
+ as,
133
+ htmlFor,
134
+ ariaLabel,
135
+ disabled,
136
+ href,
137
+ target,
138
+ rel,
139
+ prefetch,
140
+ linkComponent,
141
+ tooltip,
142
+ tooltipSide,
143
+ tooltipAlign,
144
+ rest,
145
+ buttonRef
146
+ }) {
147
+ const { outerClassName, inlineModifier } = resolveTapGeometry(label, size);
148
+ const inner = buildTapInner({
149
+ label,
150
+ pillClassName,
151
+ iconClassName,
152
+ labelClassName,
153
+ inlineModifier: label ? inlineModifier : "",
154
+ icon,
155
+ children,
156
+ strokeWidth
157
+ });
158
+ const resolvedTooltip = tooltip !== void 0 ? tooltip : label ? false : void 0;
159
+ const triggerAriaLabel = label ? void 0 : ariaLabel;
160
+ const trigger = renderTrigger({
161
+ href,
162
+ target,
163
+ rel,
164
+ prefetch,
165
+ linkComponent,
166
+ as,
167
+ htmlFor,
168
+ onClick,
169
+ ariaLabel: triggerAriaLabel,
170
+ disabled,
171
+ outerClassName,
172
+ children: inner,
173
+ rest,
174
+ buttonRef
175
+ });
176
+ return withTooltip(trigger, {
177
+ tooltip: resolvedTooltip,
178
+ ariaLabel: triggerAriaLabel,
179
+ disabled,
180
+ tooltipSide,
181
+ tooltipAlign
182
+ });
183
+ }
184
+ function renderTrigger({
185
+ href,
186
+ target,
187
+ rel,
188
+ prefetch,
189
+ linkComponent,
190
+ as,
191
+ htmlFor,
192
+ onClick,
193
+ ariaLabel,
194
+ disabled,
195
+ outerClassName,
196
+ children,
197
+ rest,
198
+ buttonRef
199
+ }) {
200
+ if (disabled && href) {
201
+ return /* @__PURE__ */ jsx2(
202
+ "span",
203
+ {
204
+ "aria-disabled": "true",
205
+ "aria-label": ariaLabel,
206
+ className: `${outerClassName} opacity-40 pointer-events-none`,
207
+ children
208
+ }
209
+ );
210
+ }
211
+ if (href) {
212
+ const isExternal = EXTERNAL_RE.test(href);
213
+ if (isExternal) {
214
+ return /* @__PURE__ */ jsx2(
215
+ "a",
216
+ {
217
+ href,
218
+ target: target ?? "_blank",
219
+ rel: rel ?? "noopener noreferrer",
220
+ "aria-label": ariaLabel,
221
+ className: outerClassName,
222
+ children
223
+ }
224
+ );
225
+ }
226
+ const Link = linkComponent ?? getTapTargetLinkComponent();
227
+ if (Link) {
228
+ return /* @__PURE__ */ jsx2(
229
+ Link,
230
+ {
231
+ href,
232
+ target,
233
+ rel,
234
+ prefetch,
235
+ "aria-label": ariaLabel,
236
+ className: outerClassName,
237
+ children
238
+ }
239
+ );
240
+ }
241
+ return /* @__PURE__ */ jsx2(
242
+ "a",
243
+ {
244
+ href,
245
+ target,
246
+ rel,
247
+ "aria-label": ariaLabel,
248
+ className: outerClassName,
249
+ children
250
+ }
251
+ );
252
+ }
253
+ if (as === "label") {
254
+ return /* @__PURE__ */ jsx2(
255
+ "label",
256
+ {
257
+ htmlFor,
258
+ "aria-label": ariaLabel,
259
+ className: outerClassName,
260
+ children
261
+ }
262
+ );
263
+ }
264
+ return /* @__PURE__ */ jsx2(
265
+ "button",
266
+ {
267
+ ref: buttonRef,
268
+ type: "button",
269
+ onClick,
270
+ "aria-label": ariaLabel,
271
+ disabled,
272
+ ...rest,
273
+ className: outerClassName,
274
+ children
275
+ }
276
+ );
277
+ }
278
+ function withTooltip(trigger, {
279
+ tooltip,
280
+ ariaLabel,
281
+ disabled,
282
+ tooltipSide = "top",
283
+ tooltipAlign = "center"
284
+ }) {
285
+ if (tooltip === false) return trigger;
286
+ const label = typeof tooltip === "string" && tooltip.length > 0 ? tooltip : ariaLabel;
287
+ if (!label) return trigger;
288
+ return /* @__PURE__ */ jsxs(TooltipPrimitive2.Root, { children: [
289
+ /* @__PURE__ */ jsx2(TooltipTrigger, { asChild: true, children: disabled ? (
290
+ // Radix Tooltip triggers need a hoverable element; a disabled button
291
+ // does not dispatch pointer events, so we wrap in a span for the
292
+ // trigger target while keeping the disabled visual state.
293
+ /* @__PURE__ */ jsx2("span", { className: "inline-flex", children: trigger })
294
+ ) : trigger }),
295
+ /* @__PURE__ */ jsx2(TooltipContent, { side: tooltipSide, align: tooltipAlign, children: label })
296
+ ] });
297
+ }
298
+ var TapTargetButton = forwardRef2(function TapTargetButton2({
299
+ icon,
300
+ children,
301
+ strokeWidth = 2,
302
+ onClick,
303
+ className,
304
+ as,
305
+ htmlFor,
306
+ ariaLabel,
307
+ disabled,
308
+ href,
309
+ target,
310
+ rel,
311
+ prefetch,
312
+ linkComponent,
313
+ tooltip,
314
+ tooltipSide,
315
+ tooltipAlign,
316
+ label,
317
+ ...rest
318
+ }, ref) {
319
+ const color = className ?? "text-foreground";
320
+ return renderTapTarget({
321
+ icon,
322
+ children,
323
+ strokeWidth,
324
+ onClick,
325
+ as,
326
+ htmlFor,
327
+ ariaLabel,
328
+ disabled,
329
+ href,
330
+ target,
331
+ rel,
332
+ prefetch,
333
+ linkComponent,
334
+ tooltip,
335
+ tooltipSide,
336
+ tooltipAlign,
337
+ label,
338
+ pillClassName: "matrx-tap-pill matrx-glass-thin-border",
339
+ iconClassName: `matrx-tap-icon ${color}`,
340
+ rest,
341
+ buttonRef: ref
342
+ });
343
+ });
344
+ var TapTargetButtonTransparent = forwardRef2(function TapTargetButtonTransparent2({
345
+ icon,
346
+ children,
347
+ strokeWidth = 2,
348
+ onClick,
349
+ className,
350
+ as,
351
+ htmlFor,
352
+ ariaLabel,
353
+ disabled,
354
+ href,
355
+ target,
356
+ rel,
357
+ prefetch,
358
+ linkComponent,
359
+ tooltip,
360
+ tooltipSide,
361
+ tooltipAlign,
362
+ label,
363
+ ...rest
364
+ }, ref) {
365
+ const color = className ?? "text-foreground";
366
+ return renderTapTarget({
367
+ icon,
368
+ children,
369
+ strokeWidth,
370
+ onClick,
371
+ as,
372
+ htmlFor,
373
+ ariaLabel,
374
+ disabled,
375
+ href,
376
+ target,
377
+ rel,
378
+ prefetch,
379
+ linkComponent,
380
+ tooltip,
381
+ tooltipSide,
382
+ tooltipAlign,
383
+ label,
384
+ pillClassName: "matrx-tap-pill hover:bg-muted active:bg-muted-foreground/15",
385
+ iconClassName: `matrx-tap-icon ${color}`,
386
+ rest,
387
+ buttonRef: ref
388
+ });
389
+ });
390
+ var TapTargetButtonSolid = forwardRef2(function TapTargetButtonSolid2({
391
+ icon,
392
+ children,
393
+ strokeWidth = 2,
394
+ onClick,
395
+ as,
396
+ htmlFor,
397
+ ariaLabel,
398
+ disabled,
399
+ href,
400
+ target,
401
+ rel,
402
+ prefetch,
403
+ linkComponent,
404
+ bgColor = "bg-primary",
405
+ iconColor = "text-primary-foreground",
406
+ hoverBgColor = "hover:bg-primary/80",
407
+ activeBgColor = "active:brightness-90",
408
+ tooltip,
409
+ tooltipSide,
410
+ tooltipAlign,
411
+ label,
412
+ ...rest
413
+ }, ref) {
414
+ return renderTapTarget({
415
+ icon,
416
+ children,
417
+ strokeWidth,
418
+ onClick,
419
+ as,
420
+ htmlFor,
421
+ ariaLabel,
422
+ disabled,
423
+ href,
424
+ target,
425
+ rel,
426
+ prefetch,
427
+ linkComponent,
428
+ tooltip,
429
+ tooltipSide,
430
+ tooltipAlign,
431
+ label,
432
+ pillClassName: `matrx-tap-pill ${bgColor} ${iconColor} ${hoverBgColor} ${activeBgColor}`,
433
+ iconClassName: `matrx-tap-icon ${iconColor}`,
434
+ labelClassName: `matrx-tap-label ${iconColor}`,
435
+ rest,
436
+ buttonRef: ref
437
+ });
438
+ });
439
+ var TapTargetButtonDestructive = forwardRef2(function TapTargetButtonDestructive2({
440
+ bgColor = "bg-destructive",
441
+ iconColor = "text-destructive-foreground",
442
+ hoverBgColor = "hover:bg-destructive/90",
443
+ ...rest
444
+ }, ref) {
445
+ return /* @__PURE__ */ jsx2(
446
+ TapTargetButtonSolid,
447
+ {
448
+ ref,
449
+ bgColor,
450
+ iconColor,
451
+ hoverBgColor,
452
+ ...rest
453
+ }
454
+ );
455
+ });
456
+ var TapTargetButtonForGroup = forwardRef2(function TapTargetButtonForGroup2({
457
+ icon,
458
+ children,
459
+ strokeWidth = 2,
460
+ onClick,
461
+ className,
462
+ as,
463
+ htmlFor,
464
+ ariaLabel,
465
+ disabled,
466
+ href,
467
+ target,
468
+ rel,
469
+ prefetch,
470
+ linkComponent,
471
+ tooltip,
472
+ tooltipSide,
473
+ tooltipAlign,
474
+ label,
475
+ ...rest
476
+ }, ref) {
477
+ const color = className ?? "text-foreground";
478
+ return renderTapTarget({
479
+ size: "sm",
480
+ icon,
481
+ children,
482
+ strokeWidth,
483
+ onClick,
484
+ as,
485
+ htmlFor,
486
+ ariaLabel,
487
+ disabled,
488
+ href,
489
+ target,
490
+ rel,
491
+ prefetch,
492
+ linkComponent,
493
+ tooltip,
494
+ tooltipSide,
495
+ tooltipAlign,
496
+ label,
497
+ pillClassName: "matrx-tap-pill matrx-tap-pill-sm matrx-glass-interactive",
498
+ iconClassName: `matrx-tap-icon ${color}`,
499
+ labelClassName: `matrx-tap-label ${color}`,
500
+ rest,
501
+ buttonRef: ref
502
+ });
503
+ });
504
+
505
+ // src/tap-buttons.tsx
506
+ import { jsx as jsx3, jsxs as jsxs2 } from "react/jsx-runtime";
507
+ var Wrap = forwardRef3(function Wrap2({
508
+ variant = "glass",
509
+ children,
510
+ bgColor,
511
+ iconColor,
512
+ hoverBgColor,
513
+ activeBgColor,
514
+ // AITapButtonProps passthrough — not a DOM attribute (see ai-tap-buttons Wrap)
515
+ colored: _colored,
516
+ ...props
517
+ }, ref) {
518
+ switch (variant) {
519
+ case "transparent":
520
+ return /* @__PURE__ */ jsx3(TapTargetButtonTransparent, { ref, ...props, children });
521
+ case "solid":
522
+ return /* @__PURE__ */ jsx3(
523
+ TapTargetButtonSolid,
524
+ {
525
+ ref,
526
+ bgColor,
527
+ iconColor,
528
+ hoverBgColor,
529
+ activeBgColor,
530
+ ...props,
531
+ children
532
+ }
533
+ );
534
+ case "group":
535
+ return /* @__PURE__ */ jsx3(TapTargetButtonForGroup, { ref, ...props, children });
536
+ default:
537
+ return /* @__PURE__ */ jsx3(TapTargetButton, { ref, ...props, children });
538
+ }
539
+ });
540
+ function MenuTapButton(props) {
541
+ return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Menu", strokeWidth: 1.75, ...props, children: /* @__PURE__ */ jsx3(
542
+ "path",
543
+ {
544
+ strokeLinecap: "round",
545
+ strokeLinejoin: "round",
546
+ d: "M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"
547
+ }
548
+ ) });
549
+ }
550
+ function PlusTapButton(props) {
551
+ return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Add", ...props, children: /* @__PURE__ */ jsx3(
552
+ "path",
553
+ {
554
+ strokeLinecap: "round",
555
+ strokeLinejoin: "round",
556
+ d: "M12 4.5v15m7.5-7.5h-15"
557
+ }
558
+ ) });
559
+ }
560
+ function SearchTapButton(props) {
561
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Search", ...props, children: [
562
+ /* @__PURE__ */ jsx3("circle", { cx: "11", cy: "11", r: "8" }),
563
+ /* @__PURE__ */ jsx3("path", { d: "m21 21-4.34-4.34" })
564
+ ] });
565
+ }
566
+ function SettingsTapButton(props) {
567
+ return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Settings", ...props, children: /* @__PURE__ */ jsx3(
568
+ "path",
569
+ {
570
+ strokeLinecap: "round",
571
+ strokeLinejoin: "round",
572
+ 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"
573
+ }
574
+ ) });
575
+ }
576
+ function MaximizeTapButton(props) {
577
+ return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Fullscreen", ...props, children: /* @__PURE__ */ jsx3(
578
+ "path",
579
+ {
580
+ strokeLinecap: "round",
581
+ strokeLinejoin: "round",
582
+ d: "M3.75 3.75v4.5m0-4.5h4.5m-4.5 0L9 9M3.75 20.25v-4.5m0 4.5h4.5m-4.5 0L9 15M20.25 3.75h-4.5m4.5 0v4.5m0-4.5L15 9m5.25 11.25h-4.5m4.5 0v-4.5m0 4.5L15 15"
583
+ }
584
+ ) });
585
+ }
586
+ function HomeTapButton(props) {
587
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Hub", ...props, children: [
588
+ /* @__PURE__ */ jsx3("path", { d: "M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8" }),
589
+ /* @__PURE__ */ jsx3("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" })
590
+ ] });
591
+ }
592
+ function LayoutGridTapButton(props) {
593
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Card view", ...props, children: [
594
+ /* @__PURE__ */ jsx3("rect", { width: "7", height: "7", x: "3", y: "3", rx: "1" }),
595
+ /* @__PURE__ */ jsx3("rect", { width: "7", height: "7", x: "14", y: "3", rx: "1" }),
596
+ /* @__PURE__ */ jsx3("rect", { width: "7", height: "7", x: "14", y: "14", rx: "1" }),
597
+ /* @__PURE__ */ jsx3("rect", { width: "7", height: "7", x: "3", y: "14", rx: "1" })
598
+ ] });
599
+ }
600
+ function ListTapButton(props) {
601
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Table view", ...props, children: [
602
+ /* @__PURE__ */ jsx3("path", { d: "M3 5h.01" }),
603
+ /* @__PURE__ */ jsx3("path", { d: "M3 12h.01" }),
604
+ /* @__PURE__ */ jsx3("path", { d: "M3 19h.01" }),
605
+ /* @__PURE__ */ jsx3("path", { d: "M8 5h13" }),
606
+ /* @__PURE__ */ jsx3("path", { d: "M8 12h13" }),
607
+ /* @__PURE__ */ jsx3("path", { d: "M8 19h13" })
608
+ ] });
609
+ }
610
+ function ArrowDownUpTapButton(props) {
611
+ return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Sort", ...props, children: /* @__PURE__ */ jsx3(
612
+ "path",
613
+ {
614
+ strokeLinecap: "round",
615
+ strokeLinejoin: "round",
616
+ d: "M3 4.5h14.25M3 9h9.75M3 13.5h5.25m5.25-.75L17.25 9m0 0L21 12.75M17.25 9v10.5"
617
+ }
618
+ ) });
619
+ }
620
+ function BellTapButton(props) {
621
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Notifications", ...props, children: [
622
+ /* @__PURE__ */ jsx3("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
623
+ /* @__PURE__ */ jsx3("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
+ ] });
625
+ }
626
+ function BellRingTapButton(props) {
627
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Notifications", ...props, children: [
628
+ /* @__PURE__ */ jsx3("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
629
+ /* @__PURE__ */ jsx3("path", { d: "M22 8c0-2.3-.8-4.3-2-6" }),
630
+ /* @__PURE__ */ jsx3("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" }),
631
+ /* @__PURE__ */ jsx3("path", { d: "M4 2C2.8 3.7 2 5.7 2 8" })
632
+ ] });
633
+ }
634
+ function ZapTapButton(props) {
635
+ return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Quick actions", ...props, children: /* @__PURE__ */ jsx3("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" }) });
636
+ }
637
+ function UploadTapButton(props) {
638
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Upload", ...props, children: [
639
+ /* @__PURE__ */ jsx3("path", { d: "M12 3v12" }),
640
+ /* @__PURE__ */ jsx3("path", { d: "m17 8-5-5-5 5" }),
641
+ /* @__PURE__ */ jsx3("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" })
642
+ ] });
643
+ }
644
+ function DownloadTapButton(props) {
645
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Download", ...props, children: [
646
+ /* @__PURE__ */ jsx3("path", { d: "M12 15V3" }),
647
+ /* @__PURE__ */ jsx3("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
648
+ /* @__PURE__ */ jsx3("path", { d: "m7 10 5 5 5-5" })
649
+ ] });
650
+ }
651
+ function ShareTapButton(props) {
652
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Share", ...props, children: [
653
+ /* @__PURE__ */ jsx3("circle", { cx: "18", cy: "5", r: "3" }),
654
+ /* @__PURE__ */ jsx3("circle", { cx: "6", cy: "12", r: "3" }),
655
+ /* @__PURE__ */ jsx3("circle", { cx: "18", cy: "19", r: "3" }),
656
+ /* @__PURE__ */ jsx3("line", { x1: "8.59", x2: "15.42", y1: "13.51", y2: "17.49" }),
657
+ /* @__PURE__ */ jsx3("line", { x1: "15.41", x2: "8.59", y1: "6.51", y2: "10.49" })
658
+ ] });
659
+ }
660
+ function UndoTapButton(props) {
661
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Undo", ...props, children: [
662
+ /* @__PURE__ */ jsx3("path", { d: "M3 7v6h6" }),
663
+ /* @__PURE__ */ jsx3("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
664
+ ] });
665
+ }
666
+ function RedoTapButton(props) {
667
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Redo", ...props, children: [
668
+ /* @__PURE__ */ jsx3("path", { d: "M21 7v6h-6" }),
669
+ /* @__PURE__ */ jsx3("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
670
+ ] });
671
+ }
672
+ function CopyTapButton(props) {
673
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Copy", ...props, children: [
674
+ /* @__PURE__ */ jsx3("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
675
+ /* @__PURE__ */ jsx3("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
676
+ ] });
677
+ }
678
+ function TrashTapButton(props) {
679
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Delete", ...props, children: [
680
+ /* @__PURE__ */ jsx3("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
681
+ /* @__PURE__ */ jsx3("path", { d: "M3 6h18" }),
682
+ /* @__PURE__ */ jsx3("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
683
+ ] });
684
+ }
685
+ function FilesTapButton(props) {
686
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Copy all", ...props, children: [
687
+ /* @__PURE__ */ jsx3("path", { d: "M20 7h-3a2 2 0 0 1-2-2V2" }),
688
+ /* @__PURE__ */ jsx3("path", { d: "M9 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7l4 4v10a2 2 0 0 1-2 2Z" }),
689
+ /* @__PURE__ */ jsx3("path", { d: "M3 7.6v12.8A1.6 1.6 0 0 0 4.6 22h9.8" })
690
+ ] });
691
+ }
692
+ function ChevronLeftTapButton(props) {
693
+ return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Back", ...props, children: /* @__PURE__ */ jsx3("path", { d: "m16 19-7-7 7-7" }) });
694
+ }
695
+ function ChevronRightTapButton(props) {
696
+ return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Next", ...props, children: /* @__PURE__ */ jsx3("path", { d: "m9 18 6-6-6-6" }) });
697
+ }
698
+ function PanelLeftTapButton(props) {
699
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Toggle sidebar", ...props, children: [
700
+ /* @__PURE__ */ jsx3("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
701
+ /* @__PURE__ */ jsx3("path", { d: "M9 3v18" })
702
+ ] });
703
+ }
704
+ function PanelRightTapButton(props) {
705
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Toggle sidebar", ...props, children: [
706
+ /* @__PURE__ */ jsx3("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
707
+ /* @__PURE__ */ jsx3("path", { d: "M15 3v18" })
708
+ ] });
709
+ }
710
+ function SquarePenTapButton(props) {
711
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "New chat", ...props, children: [
712
+ /* @__PURE__ */ jsx3("path", { d: "M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" }),
713
+ /* @__PURE__ */ jsx3("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" })
714
+ ] });
715
+ }
716
+ function XTapButton(props) {
717
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Close", ...props, children: [
718
+ /* @__PURE__ */ jsx3("path", { d: "M18 6 6 18" }),
719
+ /* @__PURE__ */ jsx3("path", { d: "m6 6 12 12" })
720
+ ] });
721
+ }
722
+ function FilterTapButton(props) {
723
+ return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Filter", ...props, children: /* @__PURE__ */ jsx3("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" }) });
724
+ }
725
+ function PlayTapButton(props) {
726
+ return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Play", ...props, children: /* @__PURE__ */ jsx3("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" }) });
727
+ }
728
+ function PauseTapButton(props) {
729
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Pause", ...props, children: [
730
+ /* @__PURE__ */ jsx3("rect", { x: "14", y: "3", width: "5", height: "18", rx: "1" }),
731
+ /* @__PURE__ */ jsx3("rect", { x: "5", y: "3", width: "5", height: "18", rx: "1" })
732
+ ] });
733
+ }
734
+ function StopTapButton(props) {
735
+ return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Stop", ...props, children: /* @__PURE__ */ jsx3("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }) });
736
+ }
737
+ function Volume2TapButton(props) {
738
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Speaker", ...props, children: [
739
+ /* @__PURE__ */ jsx3("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" }),
740
+ /* @__PURE__ */ jsx3("path", { d: "M16 9a5 5 0 0 1 0 6" }),
741
+ /* @__PURE__ */ jsx3("path", { d: "M19.364 18.364a9 9 0 0 0 0-12.728" })
742
+ ] });
743
+ }
744
+ function ArrowUpTapButton(props) {
745
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Send", ...props, children: [
746
+ /* @__PURE__ */ jsx3("path", { d: "m5 12 7-7 7 7" }),
747
+ /* @__PURE__ */ jsx3("path", { d: "M12 19V5" })
748
+ ] });
749
+ }
750
+ function MicTapButton(props) {
751
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Start recording", ...props, children: [
752
+ /* @__PURE__ */ jsx3("path", { d: "M12 19v3" }),
753
+ /* @__PURE__ */ jsx3("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
754
+ /* @__PURE__ */ jsx3("rect", { x: "9", y: "2", width: "6", height: "13", rx: "3" })
755
+ ] });
756
+ }
757
+ function MicOffTapButton(props) {
758
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Stop recording", ...props, children: [
759
+ /* @__PURE__ */ jsx3("path", { d: "M12 19v3" }),
760
+ /* @__PURE__ */ jsx3("path", { d: "M15 9.34V5a3 3 0 0 0-5.68-1.33" }),
761
+ /* @__PURE__ */ jsx3("path", { d: "M16.95 16.95A7 7 0 0 1 5 12v-2" }),
762
+ /* @__PURE__ */ jsx3("path", { d: "M18.89 13.23A7 7 0 0 0 19 12v-2" }),
763
+ /* @__PURE__ */ jsx3("path", { d: "m2 2 20 20" }),
764
+ /* @__PURE__ */ jsx3("path", { d: "M9 9v3a3 3 0 0 0 5.12 2.12" })
765
+ ] });
766
+ }
767
+ function TriangleAlertTapButton(props) {
768
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Alert", ...props, children: [
769
+ /* @__PURE__ */ jsx3("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" }),
770
+ /* @__PURE__ */ jsx3("path", { d: "M12 9v4" }),
771
+ /* @__PURE__ */ jsx3("path", { d: "M12 17h.01" })
772
+ ] });
773
+ }
774
+ function ShieldCheckTapButton(props) {
775
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Context set", ...props, children: [
776
+ /* @__PURE__ */ jsx3("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" }),
777
+ /* @__PURE__ */ jsx3("path", { d: "m9 12 2 2 4-4" })
778
+ ] });
779
+ }
780
+ function ShieldAlertTapButton(props) {
781
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "No context", ...props, children: [
782
+ /* @__PURE__ */ jsx3("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" }),
783
+ /* @__PURE__ */ jsx3("path", { d: "M12 8v4" }),
784
+ /* @__PURE__ */ jsx3("path", { d: "M12 16h.01" })
785
+ ] });
786
+ }
787
+ function BugTapButton(props) {
788
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Debug", ...props, children: [
789
+ /* @__PURE__ */ jsx3("path", { d: "M12 20v-9" }),
790
+ /* @__PURE__ */ jsx3("path", { d: "M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z" }),
791
+ /* @__PURE__ */ jsx3("path", { d: "M14.12 3.88 16 2" }),
792
+ /* @__PURE__ */ jsx3("path", { d: "M21 21a4 4 0 0 0-3.81-4" }),
793
+ /* @__PURE__ */ jsx3("path", { d: "M21 5a4 4 0 0 1-3.55 3.97" }),
794
+ /* @__PURE__ */ jsx3("path", { d: "M22 13h-4" }),
795
+ /* @__PURE__ */ jsx3("path", { d: "M3 21a4 4 0 0 1 3.81-4" }),
796
+ /* @__PURE__ */ jsx3("path", { d: "M3 5a4 4 0 0 0 3.55 3.97" }),
797
+ /* @__PURE__ */ jsx3("path", { d: "M6 13H2" }),
798
+ /* @__PURE__ */ jsx3("path", { d: "m8 2 1.88 1.88" }),
799
+ /* @__PURE__ */ jsx3("path", { d: "M9 7.13V6a3 3 0 1 1 6 0v1.13" })
800
+ ] });
801
+ }
802
+ function Settings2TapButton(props) {
803
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Settings", ...props, children: [
804
+ /* @__PURE__ */ jsx3(
805
+ "path",
806
+ {
807
+ strokeLinecap: "round",
808
+ strokeLinejoin: "round",
809
+ 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"
810
+ }
811
+ ),
812
+ /* @__PURE__ */ jsx3(
813
+ "path",
814
+ {
815
+ strokeLinecap: "round",
816
+ strokeLinejoin: "round",
817
+ d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z"
818
+ }
819
+ )
820
+ ] });
821
+ }
822
+ function SaveTapButton(props) {
823
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Save", ...props, children: [
824
+ /* @__PURE__ */ jsx3(
825
+ "path",
826
+ {
827
+ strokeLinecap: "round",
828
+ strokeLinejoin: "round",
829
+ d: "M4.5 6a2 2 0 012-2h9.25L20.5 9v9a2 2 0 01-2 2h-12a2 2 0 01-2-2V6z"
830
+ }
831
+ ),
832
+ /* @__PURE__ */ jsx3(
833
+ "path",
834
+ {
835
+ strokeLinecap: "round",
836
+ strokeLinejoin: "round",
837
+ d: "M8.5 4v4.5a.5.5 0 00.5.5h6a.5.5 0 00.5-.5V4"
838
+ }
839
+ ),
840
+ /* @__PURE__ */ jsx3(
841
+ "rect",
842
+ {
843
+ x: "8",
844
+ y: "14",
845
+ width: "8",
846
+ height: "5.5",
847
+ rx: "0.5",
848
+ strokeLinejoin: "round"
849
+ }
850
+ )
851
+ ] });
852
+ }
853
+ function SendTapButton(props) {
854
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Send", ...props, children: [
855
+ /* @__PURE__ */ jsx3("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" }),
856
+ /* @__PURE__ */ jsx3("path", { d: "m21.854 2.147-10.94 10.939" })
857
+ ] });
858
+ }
859
+ function MessageTapButton(props) {
860
+ return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Message", ...props, children: /* @__PURE__ */ jsx3("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" }) });
861
+ }
862
+ function VariableTapButton(props) {
863
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Variable", ...props, children: [
864
+ /* @__PURE__ */ jsx3("path", { d: "M8 21s-4-3-4-9 4-9 4-9" }),
865
+ /* @__PURE__ */ jsx3("path", { d: "M16 3s4 3 4 9-4 9-4 9" }),
866
+ /* @__PURE__ */ jsx3("line", { x1: "15", x2: "9", y1: "9", y2: "15" }),
867
+ /* @__PURE__ */ jsx3("line", { x1: "9", x2: "15", y1: "9", y2: "15" })
868
+ ] });
869
+ }
870
+ function WrenchTapButton(props) {
871
+ return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Tool", ...props, children: /* @__PURE__ */ jsx3("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" }) });
872
+ }
873
+ function CommandTapButton(props) {
874
+ return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Command", ...props, children: /* @__PURE__ */ jsx3("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" }) });
875
+ }
876
+ function TerminalTapButton(props) {
877
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Terminal", ...props, children: [
878
+ /* @__PURE__ */ jsx3("path", { d: "M12 19h8" }),
879
+ /* @__PURE__ */ jsx3("path", { d: "m4 17 6-6-6-6" })
880
+ ] });
881
+ }
882
+ function TestTubeTapButton(props) {
883
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Test", ...props, children: [
884
+ /* @__PURE__ */ jsx3("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" }),
885
+ /* @__PURE__ */ jsx3("path", { d: "M8.5 2h7" }),
886
+ /* @__PURE__ */ jsx3("path", { d: "M14.5 16h-5" })
887
+ ] });
888
+ }
889
+ function ResetTapButton(props) {
890
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Reset", ...props, children: [
891
+ /* @__PURE__ */ jsx3("path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" }),
892
+ /* @__PURE__ */ jsx3("path", { d: "M3 3v5h5" })
893
+ ] });
894
+ }
895
+ function ClearTapButton(props) {
896
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Clear", ...props, children: [
897
+ /* @__PURE__ */ jsx3("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" }),
898
+ /* @__PURE__ */ jsx3("path", { d: "m5.082 11.09 8.828 8.828" })
899
+ ] });
900
+ }
901
+ function RetryTapButton(props) {
902
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Retry", ...props, children: [
903
+ /* @__PURE__ */ jsx3("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
904
+ /* @__PURE__ */ jsx3("path", { d: "M21 3v5h-5" }),
905
+ /* @__PURE__ */ jsx3("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
906
+ /* @__PURE__ */ jsx3("path", { d: "M8 16H3v5" })
907
+ ] });
908
+ }
909
+ function RefreshCwTapButton(props) {
910
+ return /* @__PURE__ */ jsx3(RetryTapButton, { ariaLabel: "Refresh", ...props });
911
+ }
912
+ function LoadingTapButton(props) {
913
+ return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Loading", ...props, children: /* @__PURE__ */ jsx3(
914
+ "circle",
915
+ {
916
+ className: "animate-spin",
917
+ cx: "12",
918
+ cy: "12",
919
+ r: "9",
920
+ strokeDasharray: "28.27",
921
+ strokeDashoffset: "9",
922
+ strokeLinecap: "round",
923
+ style: { transformOrigin: "12px 12px" }
924
+ }
925
+ ) });
926
+ }
927
+ function RobotTapButton(props) {
928
+ return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "AI Agent", ...props, children: /* @__PURE__ */ jsx3(
929
+ "path",
930
+ {
931
+ strokeLinecap: "round",
932
+ strokeLinejoin: "round",
933
+ d: "M9 3.75H6.912a2.25 2.25 0 00-2.15 1.588L2.35 13.177a2.25 2.25 0 00-.1.661V18a2.25 2.25 0 002.25 2.25h15A2.25 2.25 0 0021.75 18v-4.162c0-.224-.034-.447-.1-.661L19.24 5.338a2.25 2.25 0 00-2.15-1.588H15M2.25 13.5h3.86a2.25 2.25 0 012.012 1.244l.256.512a2.25 2.25 0 002.013 1.244h3.218a2.25 2.25 0 002.013-1.244l.256-.512a2.25 2.25 0 012.013-1.244h3.859M12 3v8.25m0 0-3-3m3 3 3-3"
934
+ }
935
+ ) });
936
+ }
937
+ function WebhookTapButton(props) {
938
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Webhook", ...props, children: [
939
+ /* @__PURE__ */ jsx3("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" }),
940
+ /* @__PURE__ */ jsx3("path", { d: "m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06" }),
941
+ /* @__PURE__ */ jsx3("path", { d: "m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8" })
942
+ ] });
943
+ }
944
+ function ViewTapButton(props) {
945
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "View", ...props, children: [
946
+ /* @__PURE__ */ jsx3("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" }),
947
+ /* @__PURE__ */ jsx3("circle", { cx: "12", cy: "12", r: "3" })
948
+ ] });
949
+ }
950
+ function BuildTapButton(props) {
951
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Build", ...props, children: [
952
+ /* @__PURE__ */ jsx3("path", { d: "m15 12-9.373 9.373a1 1 0 0 1-3.001-3L12 9" }),
953
+ /* @__PURE__ */ jsx3("path", { d: "m18 15 4-4" }),
954
+ /* @__PURE__ */ jsx3("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" })
955
+ ] });
956
+ }
957
+ function RunTapButton(props) {
958
+ return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Run", ...props, children: /* @__PURE__ */ jsx3("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" }) });
959
+ }
960
+ function HistoryTapButton(props) {
961
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "History", ...props, children: [
962
+ /* @__PURE__ */ jsx3("path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" }),
963
+ /* @__PURE__ */ jsx3("path", { d: "M3 3v5h5" }),
964
+ /* @__PURE__ */ jsx3("path", { d: "M12 7v5l4 2" })
965
+ ] });
966
+ }
967
+ function PaperclipTapButton(props) {
968
+ return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Attach file", ...props, children: /* @__PURE__ */ jsx3("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" }) });
969
+ }
970
+ function ThumbsUpTapButton(props) {
971
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Like", ...props, children: [
972
+ /* @__PURE__ */ jsx3("path", { d: "M7 10v12" }),
973
+ /* @__PURE__ */ jsx3("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" })
974
+ ] });
975
+ }
976
+ function ThumbsDownTapButton(props) {
977
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Dislike", ...props, children: [
978
+ /* @__PURE__ */ jsx3("path", { d: "M17 14V2" }),
979
+ /* @__PURE__ */ jsx3("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" })
980
+ ] });
981
+ }
982
+ function CheckTapButton(props) {
983
+ return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Done", ...props, children: /* @__PURE__ */ jsx3("path", { d: "M20 6 9 17l-5-5" }) });
984
+ }
985
+ function PencilTapButton(props) {
986
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Edit", ...props, children: [
987
+ /* @__PURE__ */ jsx3("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" }),
988
+ /* @__PURE__ */ jsx3("path", { d: "m15 5 4 4" })
989
+ ] });
990
+ }
991
+ function MoreHorizontalTapButton(props) {
992
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "More options", ...props, children: [
993
+ /* @__PURE__ */ jsx3("circle", { cx: "12", cy: "12", r: "1" }),
994
+ /* @__PURE__ */ jsx3("circle", { cx: "19", cy: "12", r: "1" }),
995
+ /* @__PURE__ */ jsx3("circle", { cx: "5", cy: "12", r: "1" })
996
+ ] });
997
+ }
998
+ function CheckSquareTapButton(props) {
999
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Task", ...props, children: [
1000
+ /* @__PURE__ */ jsx3("path", { d: "m9 11 3 3L22 4" }),
1001
+ /* @__PURE__ */ jsx3("path", { d: "M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11" })
1002
+ ] });
1003
+ }
1004
+ function GhostTapButton(props) {
1005
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Incognito chat", ...props, children: [
1006
+ /* @__PURE__ */ jsx3("path", { d: "M9 10h.01" }),
1007
+ /* @__PURE__ */ jsx3("path", { d: "M15 10h.01" }),
1008
+ /* @__PURE__ */ jsx3("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" })
1009
+ ] });
1010
+ }
1011
+ function LinkTapButton(props) {
1012
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Attach", ...props, children: [
1013
+ /* @__PURE__ */ jsx3("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
1014
+ /* @__PURE__ */ jsx3("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
1015
+ ] });
1016
+ }
1017
+ function ExternalLinkTapButton(props) {
1018
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Open source", ...props, children: [
1019
+ /* @__PURE__ */ jsx3("path", { d: "M15 3h6v6" }),
1020
+ /* @__PURE__ */ jsx3("path", { d: "M10 14 21 3" }),
1021
+ /* @__PURE__ */ jsx3("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" })
1022
+ ] });
1023
+ }
1024
+ function ClipboardListTapButton(props) {
1025
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Copy Pages", ...props, children: [
1026
+ /* @__PURE__ */ jsx3("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
1027
+ /* @__PURE__ */ jsx3("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" }),
1028
+ /* @__PURE__ */ jsx3("path", { d: "M12 11h4" }),
1029
+ /* @__PURE__ */ jsx3("path", { d: "M12 16h4" }),
1030
+ /* @__PURE__ */ jsx3("path", { d: "M8 11h.01" }),
1031
+ /* @__PURE__ */ jsx3("path", { d: "M8 16h.01" })
1032
+ ] });
1033
+ }
1034
+ function PartyPopperTapButton(props) {
1035
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "AI Clean", ...props, children: [
1036
+ /* @__PURE__ */ jsx3("path", { d: "M5.8 11.3 2 22l10.7-3.79" }),
1037
+ /* @__PURE__ */ jsx3("path", { d: "M4 3h.01" }),
1038
+ /* @__PURE__ */ jsx3("path", { d: "M22 8h.01" }),
1039
+ /* @__PURE__ */ jsx3("path", { d: "M15 2h.01" }),
1040
+ /* @__PURE__ */ jsx3("path", { d: "M22 20h.01" }),
1041
+ /* @__PURE__ */ jsx3("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" }),
1042
+ /* @__PURE__ */ jsx3("path", { d: "m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17" }),
1043
+ /* @__PURE__ */ jsx3("path", { d: "m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7" }),
1044
+ /* @__PURE__ */ jsx3("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" })
1045
+ ] });
1046
+ }
1047
+ function LayersTapButton(props) {
1048
+ return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Open this PDF in another surface", ...props, children: [
1049
+ /* @__PURE__ */ jsx3("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" }),
1050
+ /* @__PURE__ */ jsx3("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" }),
1051
+ /* @__PURE__ */ jsx3("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" })
1052
+ ] });
1053
+ }
1054
+ export {
1055
+ ArrowDownUpTapButton,
1056
+ ArrowUpTapButton,
1057
+ BellRingTapButton,
1058
+ BellTapButton,
1059
+ BugTapButton,
1060
+ BuildTapButton,
1061
+ CheckSquareTapButton,
1062
+ CheckTapButton,
1063
+ ChevronLeftTapButton,
1064
+ ChevronRightTapButton,
1065
+ ClearTapButton,
1066
+ ClipboardListTapButton,
1067
+ CommandTapButton,
1068
+ CopyTapButton,
1069
+ DownloadTapButton,
1070
+ ExternalLinkTapButton,
1071
+ FilesTapButton,
1072
+ FilterTapButton,
1073
+ GhostTapButton,
1074
+ HistoryTapButton,
1075
+ HomeTapButton,
1076
+ LayersTapButton,
1077
+ LayoutGridTapButton,
1078
+ LinkTapButton,
1079
+ ListTapButton,
1080
+ LoadingTapButton,
1081
+ MaximizeTapButton,
1082
+ MenuTapButton,
1083
+ MessageTapButton,
1084
+ MicOffTapButton,
1085
+ MicTapButton,
1086
+ MoreHorizontalTapButton,
1087
+ PanelLeftTapButton,
1088
+ PanelRightTapButton,
1089
+ PaperclipTapButton,
1090
+ PartyPopperTapButton,
1091
+ PauseTapButton,
1092
+ PencilTapButton,
1093
+ PlayTapButton,
1094
+ PlusTapButton,
1095
+ RedoTapButton,
1096
+ RefreshCwTapButton,
1097
+ ResetTapButton,
1098
+ RetryTapButton,
1099
+ RobotTapButton,
1100
+ RunTapButton,
1101
+ SaveTapButton,
1102
+ SearchTapButton,
1103
+ SendTapButton,
1104
+ Settings2TapButton,
1105
+ SettingsTapButton,
1106
+ ShareTapButton,
1107
+ ShieldAlertTapButton,
1108
+ ShieldCheckTapButton,
1109
+ SquarePenTapButton,
1110
+ StopTapButton,
1111
+ TerminalTapButton,
1112
+ TestTubeTapButton,
1113
+ ThumbsDownTapButton,
1114
+ ThumbsUpTapButton,
1115
+ TrashTapButton,
1116
+ TriangleAlertTapButton,
1117
+ UndoTapButton,
1118
+ UploadTapButton,
1119
+ VariableTapButton,
1120
+ ViewTapButton,
1121
+ Volume2TapButton,
1122
+ WebhookTapButton,
1123
+ WrenchTapButton,
1124
+ XTapButton,
1125
+ ZapTapButton
1126
+ };
1127
+ //# sourceMappingURL=buttons.js.map