@ai-matrx/tap-target 0.1.2 → 0.2.1

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/buttons.js CHANGED
@@ -1,46 +1,26 @@
1
1
  "use client";
2
2
 
3
3
  // src/tap-buttons.tsx
4
- import { forwardRef as forwardRef3 } from "react";
4
+ import { forwardRef as forwardRef2 } from "react";
5
+ import { MOTION_SPIN } from "@ai-matrx/design-system";
5
6
 
6
7
  // src/tap-target-button.tsx
7
8
  import {
8
9
  cloneElement,
9
- forwardRef as forwardRef2,
10
+ forwardRef,
10
11
  isValidElement
11
12
  } 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";
13
+ import {
14
+ Tooltip,
15
+ TooltipContent,
16
+ TooltipTrigger
17
+ } from "@ai-matrx/design-system";
17
18
 
18
19
  // src/cn.ts
19
20
  function cn(...values) {
20
21
  return values.filter(Boolean).join(" ").trim();
21
22
  }
22
23
 
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
24
  // src/link.ts
45
25
  var LINK_SLOT = /* @__PURE__ */ Symbol.for("@ai-matrx/tap-target:link-component");
46
26
  function getTapTargetLinkComponent() {
@@ -48,7 +28,7 @@ function getTapTargetLinkComponent() {
48
28
  }
49
29
 
50
30
  // src/tap-target-button.tsx
51
- import { jsx as jsx2, jsxs } from "react/jsx-runtime";
31
+ import { jsx, jsxs } from "react/jsx-runtime";
52
32
  var EXTERNAL_RE = /^(https?:|mailto:|tel:)/i;
53
33
  var TAP_OUTER_CLASS = "matrx-tap-target group";
54
34
  var TAP_GROUP_OUTER_CLASS = "matrx-tap-target matrx-tap-target-sm group";
@@ -64,9 +44,9 @@ function IconContent({
64
44
  className: cn(className, icon.props.className)
65
45
  });
66
46
  }
67
- return /* @__PURE__ */ jsx2("span", { className, children: icon });
47
+ return /* @__PURE__ */ jsx("span", { className, children: icon });
68
48
  }
69
- return /* @__PURE__ */ jsx2(
49
+ return /* @__PURE__ */ jsx(
70
50
  "svg",
71
51
  {
72
52
  className,
@@ -101,7 +81,7 @@ function buildTapInner({
101
81
  children,
102
82
  strokeWidth = 2
103
83
  }) {
104
- const iconEl = /* @__PURE__ */ jsx2(
84
+ const iconEl = /* @__PURE__ */ jsx(
105
85
  IconContent,
106
86
  {
107
87
  icon,
@@ -112,11 +92,11 @@ function buildTapInner({
112
92
  );
113
93
  const pillClasses = label ? `${pillClassName} ${inlineModifier}`.trim() : pillClassName;
114
94
  if (!label) {
115
- return /* @__PURE__ */ jsx2("div", { className: pillClasses, children: iconEl });
95
+ return /* @__PURE__ */ jsx("div", { className: pillClasses, children: iconEl });
116
96
  }
117
97
  return /* @__PURE__ */ jsxs("div", { className: pillClasses, children: [
118
98
  iconEl,
119
- /* @__PURE__ */ jsx2("span", { className: labelClassName ?? "matrx-tap-label", children: label })
99
+ /* @__PURE__ */ jsx("span", { className: labelClassName ?? "matrx-tap-label", children: label })
120
100
  ] });
121
101
  }
122
102
  function renderTapTarget({
@@ -204,7 +184,7 @@ function renderTrigger({
204
184
  buttonRef
205
185
  }) {
206
186
  if (disabled && href) {
207
- return /* @__PURE__ */ jsx2(
187
+ return /* @__PURE__ */ jsx(
208
188
  "span",
209
189
  {
210
190
  "aria-disabled": "true",
@@ -217,7 +197,7 @@ function renderTrigger({
217
197
  if (href) {
218
198
  const isExternal = EXTERNAL_RE.test(href);
219
199
  if (isExternal) {
220
- return /* @__PURE__ */ jsx2(
200
+ return /* @__PURE__ */ jsx(
221
201
  "a",
222
202
  {
223
203
  href,
@@ -231,7 +211,7 @@ function renderTrigger({
231
211
  }
232
212
  const Link = linkComponent ?? getTapTargetLinkComponent();
233
213
  if (Link) {
234
- return /* @__PURE__ */ jsx2(
214
+ return /* @__PURE__ */ jsx(
235
215
  Link,
236
216
  {
237
217
  href,
@@ -244,7 +224,7 @@ function renderTrigger({
244
224
  }
245
225
  );
246
226
  }
247
- return /* @__PURE__ */ jsx2(
227
+ return /* @__PURE__ */ jsx(
248
228
  "a",
249
229
  {
250
230
  href,
@@ -257,7 +237,7 @@ function renderTrigger({
257
237
  );
258
238
  }
259
239
  if (as === "label") {
260
- return /* @__PURE__ */ jsx2(
240
+ return /* @__PURE__ */ jsx(
261
241
  "label",
262
242
  {
263
243
  htmlFor,
@@ -267,7 +247,7 @@ function renderTrigger({
267
247
  }
268
248
  );
269
249
  }
270
- return /* @__PURE__ */ jsx2(
250
+ return /* @__PURE__ */ jsx(
271
251
  "button",
272
252
  {
273
253
  ref: buttonRef,
@@ -291,17 +271,17 @@ function withTooltip(trigger, {
291
271
  if (tooltip === false) return trigger;
292
272
  const label = typeof tooltip === "string" && tooltip.length > 0 ? tooltip : ariaLabel;
293
273
  if (!label) return trigger;
294
- return /* @__PURE__ */ jsxs(TooltipPrimitive2.Root, { children: [
295
- /* @__PURE__ */ jsx2(TooltipTrigger, { asChild: true, children: disabled ? (
274
+ return /* @__PURE__ */ jsxs(Tooltip, { children: [
275
+ /* @__PURE__ */ jsx(TooltipTrigger, { asChild: true, children: disabled ? (
296
276
  // Radix Tooltip triggers need a hoverable element; a disabled button
297
277
  // does not dispatch pointer events, so we wrap in a span for the
298
278
  // trigger target while keeping the disabled visual state.
299
- /* @__PURE__ */ jsx2("span", { className: "inline-flex", children: trigger })
279
+ /* @__PURE__ */ jsx("span", { className: "inline-flex", children: trigger })
300
280
  ) : trigger }),
301
- /* @__PURE__ */ jsx2(TooltipContent, { side: tooltipSide, align: tooltipAlign, children: label })
281
+ /* @__PURE__ */ jsx(TooltipContent, { side: tooltipSide, align: tooltipAlign, children: label })
302
282
  ] });
303
283
  }
304
- var TapTargetButton = forwardRef2(function TapTargetButton2({
284
+ var TapTargetButton = forwardRef(function TapTargetButton2({
305
285
  icon,
306
286
  children,
307
287
  strokeWidth = 2,
@@ -349,7 +329,7 @@ var TapTargetButton = forwardRef2(function TapTargetButton2({
349
329
  buttonRef: ref
350
330
  });
351
331
  });
352
- var TapTargetButtonTransparent = forwardRef2(function TapTargetButtonTransparent2({
332
+ var TapTargetButtonTransparent = forwardRef(function TapTargetButtonTransparent2({
353
333
  icon,
354
334
  children,
355
335
  strokeWidth = 2,
@@ -397,7 +377,7 @@ var TapTargetButtonTransparent = forwardRef2(function TapTargetButtonTransparent
397
377
  buttonRef: ref
398
378
  });
399
379
  });
400
- var TapTargetButtonSolid = forwardRef2(function TapTargetButtonSolid2({
380
+ var TapTargetButtonSolid = forwardRef(function TapTargetButtonSolid2({
401
381
  icon,
402
382
  children,
403
383
  strokeWidth = 2,
@@ -448,13 +428,13 @@ var TapTargetButtonSolid = forwardRef2(function TapTargetButtonSolid2({
448
428
  buttonRef: ref
449
429
  });
450
430
  });
451
- var TapTargetButtonDestructive = forwardRef2(function TapTargetButtonDestructive2({
431
+ var TapTargetButtonDestructive = forwardRef(function TapTargetButtonDestructive2({
452
432
  bgColor = "bg-destructive",
453
433
  iconColor = "text-destructive-foreground",
454
434
  hoverBgColor = "hover:bg-destructive/90",
455
435
  ...rest
456
436
  }, ref) {
457
- return /* @__PURE__ */ jsx2(
437
+ return /* @__PURE__ */ jsx(
458
438
  TapTargetButtonSolid,
459
439
  {
460
440
  ref,
@@ -465,7 +445,7 @@ var TapTargetButtonDestructive = forwardRef2(function TapTargetButtonDestructive
465
445
  }
466
446
  );
467
447
  });
468
- var TapTargetButtonForGroup = forwardRef2(function TapTargetButtonForGroup2({
448
+ var TapTargetButtonForGroup = forwardRef(function TapTargetButtonForGroup2({
469
449
  icon,
470
450
  children,
471
451
  strokeWidth = 2,
@@ -517,8 +497,8 @@ var TapTargetButtonForGroup = forwardRef2(function TapTargetButtonForGroup2({
517
497
  });
518
498
 
519
499
  // src/tap-buttons.tsx
520
- import { jsx as jsx3, jsxs as jsxs2 } from "react/jsx-runtime";
521
- var Wrap = forwardRef3(function Wrap2({
500
+ import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
501
+ var Wrap = forwardRef2(function Wrap2({
522
502
  variant = "glass",
523
503
  children,
524
504
  bgColor,
@@ -531,9 +511,9 @@ var Wrap = forwardRef3(function Wrap2({
531
511
  }, ref) {
532
512
  switch (variant) {
533
513
  case "transparent":
534
- return /* @__PURE__ */ jsx3(TapTargetButtonTransparent, { ref, ...props, children });
514
+ return /* @__PURE__ */ jsx2(TapTargetButtonTransparent, { ref, ...props, children });
535
515
  case "solid":
536
- return /* @__PURE__ */ jsx3(
516
+ return /* @__PURE__ */ jsx2(
537
517
  TapTargetButtonSolid,
538
518
  {
539
519
  ref,
@@ -546,13 +526,13 @@ var Wrap = forwardRef3(function Wrap2({
546
526
  }
547
527
  );
548
528
  case "group":
549
- return /* @__PURE__ */ jsx3(TapTargetButtonForGroup, { ref, ...props, children });
529
+ return /* @__PURE__ */ jsx2(TapTargetButtonForGroup, { ref, ...props, children });
550
530
  default:
551
- return /* @__PURE__ */ jsx3(TapTargetButton, { ref, ...props, children });
531
+ return /* @__PURE__ */ jsx2(TapTargetButton, { ref, ...props, children });
552
532
  }
553
533
  });
554
534
  function MenuTapButton(props) {
555
- return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Menu", strokeWidth: 1.75, ...props, children: /* @__PURE__ */ jsx3(
535
+ return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Menu", strokeWidth: 1.75, ...props, children: /* @__PURE__ */ jsx2(
556
536
  "path",
557
537
  {
558
538
  strokeLinecap: "round",
@@ -562,7 +542,7 @@ function MenuTapButton(props) {
562
542
  ) });
563
543
  }
564
544
  function PlusTapButton(props) {
565
- return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Add", ...props, children: /* @__PURE__ */ jsx3(
545
+ return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Add", ...props, children: /* @__PURE__ */ jsx2(
566
546
  "path",
567
547
  {
568
548
  strokeLinecap: "round",
@@ -573,12 +553,12 @@ function PlusTapButton(props) {
573
553
  }
574
554
  function SearchTapButton(props) {
575
555
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Search", ...props, children: [
576
- /* @__PURE__ */ jsx3("circle", { cx: "11", cy: "11", r: "8" }),
577
- /* @__PURE__ */ jsx3("path", { d: "m21 21-4.34-4.34" })
556
+ /* @__PURE__ */ jsx2("circle", { cx: "11", cy: "11", r: "8" }),
557
+ /* @__PURE__ */ jsx2("path", { d: "m21 21-4.34-4.34" })
578
558
  ] });
579
559
  }
580
560
  function SettingsTapButton(props) {
581
- return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Settings", ...props, children: /* @__PURE__ */ jsx3(
561
+ return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Settings", ...props, children: /* @__PURE__ */ jsx2(
582
562
  "path",
583
563
  {
584
564
  strokeLinecap: "round",
@@ -588,7 +568,7 @@ function SettingsTapButton(props) {
588
568
  ) });
589
569
  }
590
570
  function MaximizeTapButton(props) {
591
- return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Fullscreen", ...props, children: /* @__PURE__ */ jsx3(
571
+ return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Fullscreen", ...props, children: /* @__PURE__ */ jsx2(
592
572
  "path",
593
573
  {
594
574
  strokeLinecap: "round",
@@ -599,30 +579,30 @@ function MaximizeTapButton(props) {
599
579
  }
600
580
  function HomeTapButton(props) {
601
581
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Hub", ...props, children: [
602
- /* @__PURE__ */ jsx3("path", { d: "M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8" }),
603
- /* @__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" })
582
+ /* @__PURE__ */ jsx2("path", { d: "M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8" }),
583
+ /* @__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
584
  ] });
605
585
  }
606
586
  function LayoutGridTapButton(props) {
607
587
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Card view", ...props, children: [
608
- /* @__PURE__ */ jsx3("rect", { width: "7", height: "7", x: "3", y: "3", rx: "1" }),
609
- /* @__PURE__ */ jsx3("rect", { width: "7", height: "7", x: "14", y: "3", rx: "1" }),
610
- /* @__PURE__ */ jsx3("rect", { width: "7", height: "7", x: "14", y: "14", rx: "1" }),
611
- /* @__PURE__ */ jsx3("rect", { width: "7", height: "7", x: "3", y: "14", rx: "1" })
588
+ /* @__PURE__ */ jsx2("rect", { width: "7", height: "7", x: "3", y: "3", rx: "1" }),
589
+ /* @__PURE__ */ jsx2("rect", { width: "7", height: "7", x: "14", y: "3", rx: "1" }),
590
+ /* @__PURE__ */ jsx2("rect", { width: "7", height: "7", x: "14", y: "14", rx: "1" }),
591
+ /* @__PURE__ */ jsx2("rect", { width: "7", height: "7", x: "3", y: "14", rx: "1" })
612
592
  ] });
613
593
  }
614
594
  function ListTapButton(props) {
615
595
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Table view", ...props, children: [
616
- /* @__PURE__ */ jsx3("path", { d: "M3 5h.01" }),
617
- /* @__PURE__ */ jsx3("path", { d: "M3 12h.01" }),
618
- /* @__PURE__ */ jsx3("path", { d: "M3 19h.01" }),
619
- /* @__PURE__ */ jsx3("path", { d: "M8 5h13" }),
620
- /* @__PURE__ */ jsx3("path", { d: "M8 12h13" }),
621
- /* @__PURE__ */ jsx3("path", { d: "M8 19h13" })
596
+ /* @__PURE__ */ jsx2("path", { d: "M3 5h.01" }),
597
+ /* @__PURE__ */ jsx2("path", { d: "M3 12h.01" }),
598
+ /* @__PURE__ */ jsx2("path", { d: "M3 19h.01" }),
599
+ /* @__PURE__ */ jsx2("path", { d: "M8 5h13" }),
600
+ /* @__PURE__ */ jsx2("path", { d: "M8 12h13" }),
601
+ /* @__PURE__ */ jsx2("path", { d: "M8 19h13" })
622
602
  ] });
623
603
  }
624
604
  function ArrowDownUpTapButton(props) {
625
- return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Sort", ...props, children: /* @__PURE__ */ jsx3(
605
+ return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Sort", ...props, children: /* @__PURE__ */ jsx2(
626
606
  "path",
627
607
  {
628
608
  strokeLinecap: "round",
@@ -633,189 +613,189 @@ function ArrowDownUpTapButton(props) {
633
613
  }
634
614
  function BellTapButton(props) {
635
615
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Notifications", ...props, children: [
636
- /* @__PURE__ */ jsx3("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
637
- /* @__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" })
616
+ /* @__PURE__ */ jsx2("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
617
+ /* @__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
618
  ] });
639
619
  }
640
620
  function BellRingTapButton(props) {
641
621
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Notifications", ...props, children: [
642
- /* @__PURE__ */ jsx3("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
643
- /* @__PURE__ */ jsx3("path", { d: "M22 8c0-2.3-.8-4.3-2-6" }),
644
- /* @__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" }),
645
- /* @__PURE__ */ jsx3("path", { d: "M4 2C2.8 3.7 2 5.7 2 8" })
622
+ /* @__PURE__ */ jsx2("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
623
+ /* @__PURE__ */ jsx2("path", { d: "M22 8c0-2.3-.8-4.3-2-6" }),
624
+ /* @__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" }),
625
+ /* @__PURE__ */ jsx2("path", { d: "M4 2C2.8 3.7 2 5.7 2 8" })
646
626
  ] });
647
627
  }
648
628
  function ZapTapButton(props) {
649
- 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" }) });
629
+ 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
630
  }
651
631
  function UploadTapButton(props) {
652
632
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Upload", ...props, children: [
653
- /* @__PURE__ */ jsx3("path", { d: "M12 3v12" }),
654
- /* @__PURE__ */ jsx3("path", { d: "m17 8-5-5-5 5" }),
655
- /* @__PURE__ */ jsx3("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" })
633
+ /* @__PURE__ */ jsx2("path", { d: "M12 3v12" }),
634
+ /* @__PURE__ */ jsx2("path", { d: "m17 8-5-5-5 5" }),
635
+ /* @__PURE__ */ jsx2("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" })
656
636
  ] });
657
637
  }
658
638
  function DownloadTapButton(props) {
659
639
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Download", ...props, children: [
660
- /* @__PURE__ */ jsx3("path", { d: "M12 15V3" }),
661
- /* @__PURE__ */ jsx3("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
662
- /* @__PURE__ */ jsx3("path", { d: "m7 10 5 5 5-5" })
640
+ /* @__PURE__ */ jsx2("path", { d: "M12 15V3" }),
641
+ /* @__PURE__ */ jsx2("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
642
+ /* @__PURE__ */ jsx2("path", { d: "m7 10 5 5 5-5" })
663
643
  ] });
664
644
  }
665
645
  function ShareTapButton(props) {
666
646
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Share", ...props, children: [
667
- /* @__PURE__ */ jsx3("circle", { cx: "18", cy: "5", r: "3" }),
668
- /* @__PURE__ */ jsx3("circle", { cx: "6", cy: "12", r: "3" }),
669
- /* @__PURE__ */ jsx3("circle", { cx: "18", cy: "19", r: "3" }),
670
- /* @__PURE__ */ jsx3("line", { x1: "8.59", x2: "15.42", y1: "13.51", y2: "17.49" }),
671
- /* @__PURE__ */ jsx3("line", { x1: "15.41", x2: "8.59", y1: "6.51", y2: "10.49" })
647
+ /* @__PURE__ */ jsx2("circle", { cx: "18", cy: "5", r: "3" }),
648
+ /* @__PURE__ */ jsx2("circle", { cx: "6", cy: "12", r: "3" }),
649
+ /* @__PURE__ */ jsx2("circle", { cx: "18", cy: "19", r: "3" }),
650
+ /* @__PURE__ */ jsx2("line", { x1: "8.59", x2: "15.42", y1: "13.51", y2: "17.49" }),
651
+ /* @__PURE__ */ jsx2("line", { x1: "15.41", x2: "8.59", y1: "6.51", y2: "10.49" })
672
652
  ] });
673
653
  }
674
654
  function UndoTapButton(props) {
675
655
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Undo", ...props, children: [
676
- /* @__PURE__ */ jsx3("path", { d: "M3 7v6h6" }),
677
- /* @__PURE__ */ jsx3("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
656
+ /* @__PURE__ */ jsx2("path", { d: "M3 7v6h6" }),
657
+ /* @__PURE__ */ jsx2("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
678
658
  ] });
679
659
  }
680
660
  function RedoTapButton(props) {
681
661
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Redo", ...props, children: [
682
- /* @__PURE__ */ jsx3("path", { d: "M21 7v6h-6" }),
683
- /* @__PURE__ */ jsx3("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
662
+ /* @__PURE__ */ jsx2("path", { d: "M21 7v6h-6" }),
663
+ /* @__PURE__ */ jsx2("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
684
664
  ] });
685
665
  }
686
666
  function CopyTapButton(props) {
687
667
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Copy", ...props, children: [
688
- /* @__PURE__ */ jsx3("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
689
- /* @__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" })
668
+ /* @__PURE__ */ jsx2("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
669
+ /* @__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
670
  ] });
691
671
  }
692
672
  function TrashTapButton(props) {
693
673
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Delete", ...props, children: [
694
- /* @__PURE__ */ jsx3("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
695
- /* @__PURE__ */ jsx3("path", { d: "M3 6h18" }),
696
- /* @__PURE__ */ jsx3("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
674
+ /* @__PURE__ */ jsx2("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
675
+ /* @__PURE__ */ jsx2("path", { d: "M3 6h18" }),
676
+ /* @__PURE__ */ jsx2("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
697
677
  ] });
698
678
  }
699
679
  function FilesTapButton(props) {
700
680
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Copy all", ...props, children: [
701
- /* @__PURE__ */ jsx3("path", { d: "M20 7h-3a2 2 0 0 1-2-2V2" }),
702
- /* @__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" }),
703
- /* @__PURE__ */ jsx3("path", { d: "M3 7.6v12.8A1.6 1.6 0 0 0 4.6 22h9.8" })
681
+ /* @__PURE__ */ jsx2("path", { d: "M20 7h-3a2 2 0 0 1-2-2V2" }),
682
+ /* @__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" }),
683
+ /* @__PURE__ */ jsx2("path", { d: "M3 7.6v12.8A1.6 1.6 0 0 0 4.6 22h9.8" })
704
684
  ] });
705
685
  }
706
686
  function ChevronLeftTapButton(props) {
707
- return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Back", ...props, children: /* @__PURE__ */ jsx3("path", { d: "m16 19-7-7 7-7" }) });
687
+ return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Back", ...props, children: /* @__PURE__ */ jsx2("path", { d: "m16 19-7-7 7-7" }) });
708
688
  }
709
689
  function ChevronRightTapButton(props) {
710
- return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Next", ...props, children: /* @__PURE__ */ jsx3("path", { d: "m9 18 6-6-6-6" }) });
690
+ return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Next", ...props, children: /* @__PURE__ */ jsx2("path", { d: "m9 18 6-6-6-6" }) });
711
691
  }
712
692
  function PanelLeftTapButton(props) {
713
693
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Toggle sidebar", ...props, children: [
714
- /* @__PURE__ */ jsx3("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
715
- /* @__PURE__ */ jsx3("path", { d: "M9 3v18" })
694
+ /* @__PURE__ */ jsx2("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
695
+ /* @__PURE__ */ jsx2("path", { d: "M9 3v18" })
716
696
  ] });
717
697
  }
718
698
  function PanelRightTapButton(props) {
719
699
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Toggle sidebar", ...props, children: [
720
- /* @__PURE__ */ jsx3("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
721
- /* @__PURE__ */ jsx3("path", { d: "M15 3v18" })
700
+ /* @__PURE__ */ jsx2("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
701
+ /* @__PURE__ */ jsx2("path", { d: "M15 3v18" })
722
702
  ] });
723
703
  }
724
704
  function SquarePenTapButton(props) {
725
705
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "New chat", ...props, children: [
726
- /* @__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" }),
727
- /* @__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" })
706
+ /* @__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" }),
707
+ /* @__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
708
  ] });
729
709
  }
730
710
  function XTapButton(props) {
731
711
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Close", ...props, children: [
732
- /* @__PURE__ */ jsx3("path", { d: "M18 6 6 18" }),
733
- /* @__PURE__ */ jsx3("path", { d: "m6 6 12 12" })
712
+ /* @__PURE__ */ jsx2("path", { d: "M18 6 6 18" }),
713
+ /* @__PURE__ */ jsx2("path", { d: "m6 6 12 12" })
734
714
  ] });
735
715
  }
736
716
  function FilterTapButton(props) {
737
- 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" }) });
717
+ 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
718
  }
739
719
  function PlayTapButton(props) {
740
- 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" }) });
720
+ 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
721
  }
742
722
  function PauseTapButton(props) {
743
723
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Pause", ...props, children: [
744
- /* @__PURE__ */ jsx3("rect", { x: "14", y: "3", width: "5", height: "18", rx: "1" }),
745
- /* @__PURE__ */ jsx3("rect", { x: "5", y: "3", width: "5", height: "18", rx: "1" })
724
+ /* @__PURE__ */ jsx2("rect", { x: "14", y: "3", width: "5", height: "18", rx: "1" }),
725
+ /* @__PURE__ */ jsx2("rect", { x: "5", y: "3", width: "5", height: "18", rx: "1" })
746
726
  ] });
747
727
  }
748
728
  function StopTapButton(props) {
749
- return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Stop", ...props, children: /* @__PURE__ */ jsx3("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }) });
729
+ return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Stop", ...props, children: /* @__PURE__ */ jsx2("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }) });
750
730
  }
751
731
  function Volume2TapButton(props) {
752
732
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Speaker", ...props, children: [
753
- /* @__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" }),
754
- /* @__PURE__ */ jsx3("path", { d: "M16 9a5 5 0 0 1 0 6" }),
755
- /* @__PURE__ */ jsx3("path", { d: "M19.364 18.364a9 9 0 0 0 0-12.728" })
733
+ /* @__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" }),
734
+ /* @__PURE__ */ jsx2("path", { d: "M16 9a5 5 0 0 1 0 6" }),
735
+ /* @__PURE__ */ jsx2("path", { d: "M19.364 18.364a9 9 0 0 0 0-12.728" })
756
736
  ] });
757
737
  }
758
738
  function ArrowUpTapButton(props) {
759
739
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Send", ...props, children: [
760
- /* @__PURE__ */ jsx3("path", { d: "m5 12 7-7 7 7" }),
761
- /* @__PURE__ */ jsx3("path", { d: "M12 19V5" })
740
+ /* @__PURE__ */ jsx2("path", { d: "m5 12 7-7 7 7" }),
741
+ /* @__PURE__ */ jsx2("path", { d: "M12 19V5" })
762
742
  ] });
763
743
  }
764
744
  function MicTapButton(props) {
765
745
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Start recording", ...props, children: [
766
- /* @__PURE__ */ jsx3("path", { d: "M12 19v3" }),
767
- /* @__PURE__ */ jsx3("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
768
- /* @__PURE__ */ jsx3("rect", { x: "9", y: "2", width: "6", height: "13", rx: "3" })
746
+ /* @__PURE__ */ jsx2("path", { d: "M12 19v3" }),
747
+ /* @__PURE__ */ jsx2("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
748
+ /* @__PURE__ */ jsx2("rect", { x: "9", y: "2", width: "6", height: "13", rx: "3" })
769
749
  ] });
770
750
  }
771
751
  function MicOffTapButton(props) {
772
752
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Stop recording", ...props, children: [
773
- /* @__PURE__ */ jsx3("path", { d: "M12 19v3" }),
774
- /* @__PURE__ */ jsx3("path", { d: "M15 9.34V5a3 3 0 0 0-5.68-1.33" }),
775
- /* @__PURE__ */ jsx3("path", { d: "M16.95 16.95A7 7 0 0 1 5 12v-2" }),
776
- /* @__PURE__ */ jsx3("path", { d: "M18.89 13.23A7 7 0 0 0 19 12v-2" }),
777
- /* @__PURE__ */ jsx3("path", { d: "m2 2 20 20" }),
778
- /* @__PURE__ */ jsx3("path", { d: "M9 9v3a3 3 0 0 0 5.12 2.12" })
753
+ /* @__PURE__ */ jsx2("path", { d: "M12 19v3" }),
754
+ /* @__PURE__ */ jsx2("path", { d: "M15 9.34V5a3 3 0 0 0-5.68-1.33" }),
755
+ /* @__PURE__ */ jsx2("path", { d: "M16.95 16.95A7 7 0 0 1 5 12v-2" }),
756
+ /* @__PURE__ */ jsx2("path", { d: "M18.89 13.23A7 7 0 0 0 19 12v-2" }),
757
+ /* @__PURE__ */ jsx2("path", { d: "m2 2 20 20" }),
758
+ /* @__PURE__ */ jsx2("path", { d: "M9 9v3a3 3 0 0 0 5.12 2.12" })
779
759
  ] });
780
760
  }
781
761
  function TriangleAlertTapButton(props) {
782
762
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Alert", ...props, children: [
783
- /* @__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" }),
784
- /* @__PURE__ */ jsx3("path", { d: "M12 9v4" }),
785
- /* @__PURE__ */ jsx3("path", { d: "M12 17h.01" })
763
+ /* @__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" }),
764
+ /* @__PURE__ */ jsx2("path", { d: "M12 9v4" }),
765
+ /* @__PURE__ */ jsx2("path", { d: "M12 17h.01" })
786
766
  ] });
787
767
  }
788
768
  function ShieldCheckTapButton(props) {
789
769
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Context set", ...props, children: [
790
- /* @__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" }),
791
- /* @__PURE__ */ jsx3("path", { d: "m9 12 2 2 4-4" })
770
+ /* @__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" }),
771
+ /* @__PURE__ */ jsx2("path", { d: "m9 12 2 2 4-4" })
792
772
  ] });
793
773
  }
794
774
  function ShieldAlertTapButton(props) {
795
775
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "No context", ...props, children: [
796
- /* @__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" }),
797
- /* @__PURE__ */ jsx3("path", { d: "M12 8v4" }),
798
- /* @__PURE__ */ jsx3("path", { d: "M12 16h.01" })
776
+ /* @__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" }),
777
+ /* @__PURE__ */ jsx2("path", { d: "M12 8v4" }),
778
+ /* @__PURE__ */ jsx2("path", { d: "M12 16h.01" })
799
779
  ] });
800
780
  }
801
781
  function BugTapButton(props) {
802
782
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Debug", ...props, children: [
803
- /* @__PURE__ */ jsx3("path", { d: "M12 20v-9" }),
804
- /* @__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" }),
805
- /* @__PURE__ */ jsx3("path", { d: "M14.12 3.88 16 2" }),
806
- /* @__PURE__ */ jsx3("path", { d: "M21 21a4 4 0 0 0-3.81-4" }),
807
- /* @__PURE__ */ jsx3("path", { d: "M21 5a4 4 0 0 1-3.55 3.97" }),
808
- /* @__PURE__ */ jsx3("path", { d: "M22 13h-4" }),
809
- /* @__PURE__ */ jsx3("path", { d: "M3 21a4 4 0 0 1 3.81-4" }),
810
- /* @__PURE__ */ jsx3("path", { d: "M3 5a4 4 0 0 0 3.55 3.97" }),
811
- /* @__PURE__ */ jsx3("path", { d: "M6 13H2" }),
812
- /* @__PURE__ */ jsx3("path", { d: "m8 2 1.88 1.88" }),
813
- /* @__PURE__ */ jsx3("path", { d: "M9 7.13V6a3 3 0 1 1 6 0v1.13" })
783
+ /* @__PURE__ */ jsx2("path", { d: "M12 20v-9" }),
784
+ /* @__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" }),
785
+ /* @__PURE__ */ jsx2("path", { d: "M14.12 3.88 16 2" }),
786
+ /* @__PURE__ */ jsx2("path", { d: "M21 21a4 4 0 0 0-3.81-4" }),
787
+ /* @__PURE__ */ jsx2("path", { d: "M21 5a4 4 0 0 1-3.55 3.97" }),
788
+ /* @__PURE__ */ jsx2("path", { d: "M22 13h-4" }),
789
+ /* @__PURE__ */ jsx2("path", { d: "M3 21a4 4 0 0 1 3.81-4" }),
790
+ /* @__PURE__ */ jsx2("path", { d: "M3 5a4 4 0 0 0 3.55 3.97" }),
791
+ /* @__PURE__ */ jsx2("path", { d: "M6 13H2" }),
792
+ /* @__PURE__ */ jsx2("path", { d: "m8 2 1.88 1.88" }),
793
+ /* @__PURE__ */ jsx2("path", { d: "M9 7.13V6a3 3 0 1 1 6 0v1.13" })
814
794
  ] });
815
795
  }
816
796
  function Settings2TapButton(props) {
817
797
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Settings", ...props, children: [
818
- /* @__PURE__ */ jsx3(
798
+ /* @__PURE__ */ jsx2(
819
799
  "path",
820
800
  {
821
801
  strokeLinecap: "round",
@@ -823,7 +803,7 @@ function Settings2TapButton(props) {
823
803
  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
804
  }
825
805
  ),
826
- /* @__PURE__ */ jsx3(
806
+ /* @__PURE__ */ jsx2(
827
807
  "path",
828
808
  {
829
809
  strokeLinecap: "round",
@@ -835,7 +815,7 @@ function Settings2TapButton(props) {
835
815
  }
836
816
  function SaveTapButton(props) {
837
817
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Save", ...props, children: [
838
- /* @__PURE__ */ jsx3(
818
+ /* @__PURE__ */ jsx2(
839
819
  "path",
840
820
  {
841
821
  strokeLinecap: "round",
@@ -843,7 +823,7 @@ function SaveTapButton(props) {
843
823
  d: "M4.5 6a2 2 0 012-2h9.25L20.5 9v9a2 2 0 01-2 2h-12a2 2 0 01-2-2V6z"
844
824
  }
845
825
  ),
846
- /* @__PURE__ */ jsx3(
826
+ /* @__PURE__ */ jsx2(
847
827
  "path",
848
828
  {
849
829
  strokeLinecap: "round",
@@ -851,7 +831,7 @@ function SaveTapButton(props) {
851
831
  d: "M8.5 4v4.5a.5.5 0 00.5.5h6a.5.5 0 00.5-.5V4"
852
832
  }
853
833
  ),
854
- /* @__PURE__ */ jsx3(
834
+ /* @__PURE__ */ jsx2(
855
835
  "rect",
856
836
  {
857
837
  x: "8",
@@ -866,68 +846,68 @@ function SaveTapButton(props) {
866
846
  }
867
847
  function SendTapButton(props) {
868
848
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Send", ...props, children: [
869
- /* @__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" }),
870
- /* @__PURE__ */ jsx3("path", { d: "m21.854 2.147-10.94 10.939" })
849
+ /* @__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" }),
850
+ /* @__PURE__ */ jsx2("path", { d: "m21.854 2.147-10.94 10.939" })
871
851
  ] });
872
852
  }
873
853
  function MessageTapButton(props) {
874
- 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" }) });
854
+ 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
855
  }
876
856
  function VariableTapButton(props) {
877
857
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Variable", ...props, children: [
878
- /* @__PURE__ */ jsx3("path", { d: "M8 21s-4-3-4-9 4-9 4-9" }),
879
- /* @__PURE__ */ jsx3("path", { d: "M16 3s4 3 4 9-4 9-4 9" }),
880
- /* @__PURE__ */ jsx3("line", { x1: "15", x2: "9", y1: "9", y2: "15" }),
881
- /* @__PURE__ */ jsx3("line", { x1: "9", x2: "15", y1: "9", y2: "15" })
858
+ /* @__PURE__ */ jsx2("path", { d: "M8 21s-4-3-4-9 4-9 4-9" }),
859
+ /* @__PURE__ */ jsx2("path", { d: "M16 3s4 3 4 9-4 9-4 9" }),
860
+ /* @__PURE__ */ jsx2("line", { x1: "15", x2: "9", y1: "9", y2: "15" }),
861
+ /* @__PURE__ */ jsx2("line", { x1: "9", x2: "15", y1: "9", y2: "15" })
882
862
  ] });
883
863
  }
884
864
  function WrenchTapButton(props) {
885
- 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" }) });
865
+ 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
866
  }
887
867
  function CommandTapButton(props) {
888
- 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" }) });
868
+ 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
869
  }
890
870
  function TerminalTapButton(props) {
891
871
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Terminal", ...props, children: [
892
- /* @__PURE__ */ jsx3("path", { d: "M12 19h8" }),
893
- /* @__PURE__ */ jsx3("path", { d: "m4 17 6-6-6-6" })
872
+ /* @__PURE__ */ jsx2("path", { d: "M12 19h8" }),
873
+ /* @__PURE__ */ jsx2("path", { d: "m4 17 6-6-6-6" })
894
874
  ] });
895
875
  }
896
876
  function TestTubeTapButton(props) {
897
877
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Test", ...props, children: [
898
- /* @__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" }),
899
- /* @__PURE__ */ jsx3("path", { d: "M8.5 2h7" }),
900
- /* @__PURE__ */ jsx3("path", { d: "M14.5 16h-5" })
878
+ /* @__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" }),
879
+ /* @__PURE__ */ jsx2("path", { d: "M8.5 2h7" }),
880
+ /* @__PURE__ */ jsx2("path", { d: "M14.5 16h-5" })
901
881
  ] });
902
882
  }
903
883
  function ResetTapButton(props) {
904
884
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Reset", ...props, children: [
905
- /* @__PURE__ */ jsx3("path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" }),
906
- /* @__PURE__ */ jsx3("path", { d: "M3 3v5h5" })
885
+ /* @__PURE__ */ jsx2("path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" }),
886
+ /* @__PURE__ */ jsx2("path", { d: "M3 3v5h5" })
907
887
  ] });
908
888
  }
909
889
  function ClearTapButton(props) {
910
890
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Clear", ...props, children: [
911
- /* @__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" }),
912
- /* @__PURE__ */ jsx3("path", { d: "m5.082 11.09 8.828 8.828" })
891
+ /* @__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" }),
892
+ /* @__PURE__ */ jsx2("path", { d: "m5.082 11.09 8.828 8.828" })
913
893
  ] });
914
894
  }
915
895
  function RetryTapButton(props) {
916
896
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Retry", ...props, children: [
917
- /* @__PURE__ */ jsx3("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
918
- /* @__PURE__ */ jsx3("path", { d: "M21 3v5h-5" }),
919
- /* @__PURE__ */ jsx3("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
920
- /* @__PURE__ */ jsx3("path", { d: "M8 16H3v5" })
897
+ /* @__PURE__ */ jsx2("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
898
+ /* @__PURE__ */ jsx2("path", { d: "M21 3v5h-5" }),
899
+ /* @__PURE__ */ jsx2("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
900
+ /* @__PURE__ */ jsx2("path", { d: "M8 16H3v5" })
921
901
  ] });
922
902
  }
923
903
  function RefreshCwTapButton(props) {
924
- return /* @__PURE__ */ jsx3(RetryTapButton, { ariaLabel: "Refresh", ...props });
904
+ return /* @__PURE__ */ jsx2(RetryTapButton, { ariaLabel: "Refresh", ...props });
925
905
  }
926
906
  function LoadingTapButton(props) {
927
- return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Loading", ...props, children: /* @__PURE__ */ jsx3(
907
+ return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Loading", ...props, children: /* @__PURE__ */ jsx2(
928
908
  "circle",
929
909
  {
930
- className: "animate-spin",
910
+ className: MOTION_SPIN,
931
911
  cx: "12",
932
912
  cy: "12",
933
913
  r: "9",
@@ -939,7 +919,7 @@ function LoadingTapButton(props) {
939
919
  ) });
940
920
  }
941
921
  function RobotTapButton(props) {
942
- return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "AI Agent", ...props, children: /* @__PURE__ */ jsx3(
922
+ return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "AI Agent", ...props, children: /* @__PURE__ */ jsx2(
943
923
  "path",
944
924
  {
945
925
  strokeLinecap: "round",
@@ -950,119 +930,119 @@ function RobotTapButton(props) {
950
930
  }
951
931
  function WebhookTapButton(props) {
952
932
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Webhook", ...props, children: [
953
- /* @__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" }),
954
- /* @__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" }),
955
- /* @__PURE__ */ jsx3("path", { d: "m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8" })
933
+ /* @__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" }),
934
+ /* @__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" }),
935
+ /* @__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
936
  ] });
957
937
  }
958
938
  function ViewTapButton(props) {
959
939
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "View", ...props, children: [
960
- /* @__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" }),
961
- /* @__PURE__ */ jsx3("circle", { cx: "12", cy: "12", r: "3" })
940
+ /* @__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" }),
941
+ /* @__PURE__ */ jsx2("circle", { cx: "12", cy: "12", r: "3" })
962
942
  ] });
963
943
  }
964
944
  function BuildTapButton(props) {
965
945
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Build", ...props, children: [
966
- /* @__PURE__ */ jsx3("path", { d: "m15 12-9.373 9.373a1 1 0 0 1-3.001-3L12 9" }),
967
- /* @__PURE__ */ jsx3("path", { d: "m18 15 4-4" }),
968
- /* @__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" })
946
+ /* @__PURE__ */ jsx2("path", { d: "m15 12-9.373 9.373a1 1 0 0 1-3.001-3L12 9" }),
947
+ /* @__PURE__ */ jsx2("path", { d: "m18 15 4-4" }),
948
+ /* @__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
949
  ] });
970
950
  }
971
951
  function RunTapButton(props) {
972
- 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" }) });
952
+ 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
953
  }
974
954
  function HistoryTapButton(props) {
975
955
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "History", ...props, children: [
976
- /* @__PURE__ */ jsx3("path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" }),
977
- /* @__PURE__ */ jsx3("path", { d: "M3 3v5h5" }),
978
- /* @__PURE__ */ jsx3("path", { d: "M12 7v5l4 2" })
956
+ /* @__PURE__ */ jsx2("path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" }),
957
+ /* @__PURE__ */ jsx2("path", { d: "M3 3v5h5" }),
958
+ /* @__PURE__ */ jsx2("path", { d: "M12 7v5l4 2" })
979
959
  ] });
980
960
  }
981
961
  function PaperclipTapButton(props) {
982
- 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" }) });
962
+ 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
963
  }
984
964
  function ThumbsUpTapButton(props) {
985
965
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Like", ...props, children: [
986
- /* @__PURE__ */ jsx3("path", { d: "M7 10v12" }),
987
- /* @__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" })
966
+ /* @__PURE__ */ jsx2("path", { d: "M7 10v12" }),
967
+ /* @__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
968
  ] });
989
969
  }
990
970
  function ThumbsDownTapButton(props) {
991
971
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Dislike", ...props, children: [
992
- /* @__PURE__ */ jsx3("path", { d: "M17 14V2" }),
993
- /* @__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" })
972
+ /* @__PURE__ */ jsx2("path", { d: "M17 14V2" }),
973
+ /* @__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
974
  ] });
995
975
  }
996
976
  function CheckTapButton(props) {
997
- return /* @__PURE__ */ jsx3(Wrap, { ariaLabel: "Done", ...props, children: /* @__PURE__ */ jsx3("path", { d: "M20 6 9 17l-5-5" }) });
977
+ return /* @__PURE__ */ jsx2(Wrap, { ariaLabel: "Done", ...props, children: /* @__PURE__ */ jsx2("path", { d: "M20 6 9 17l-5-5" }) });
998
978
  }
999
979
  function PencilTapButton(props) {
1000
980
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Edit", ...props, children: [
1001
- /* @__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" }),
1002
- /* @__PURE__ */ jsx3("path", { d: "m15 5 4 4" })
981
+ /* @__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" }),
982
+ /* @__PURE__ */ jsx2("path", { d: "m15 5 4 4" })
1003
983
  ] });
1004
984
  }
1005
985
  function MoreHorizontalTapButton(props) {
1006
986
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "More options", ...props, children: [
1007
- /* @__PURE__ */ jsx3("circle", { cx: "12", cy: "12", r: "1" }),
1008
- /* @__PURE__ */ jsx3("circle", { cx: "19", cy: "12", r: "1" }),
1009
- /* @__PURE__ */ jsx3("circle", { cx: "5", cy: "12", r: "1" })
987
+ /* @__PURE__ */ jsx2("circle", { cx: "12", cy: "12", r: "1" }),
988
+ /* @__PURE__ */ jsx2("circle", { cx: "19", cy: "12", r: "1" }),
989
+ /* @__PURE__ */ jsx2("circle", { cx: "5", cy: "12", r: "1" })
1010
990
  ] });
1011
991
  }
1012
992
  function CheckSquareTapButton(props) {
1013
993
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Task", ...props, children: [
1014
- /* @__PURE__ */ jsx3("path", { d: "m9 11 3 3L22 4" }),
1015
- /* @__PURE__ */ jsx3("path", { d: "M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11" })
994
+ /* @__PURE__ */ jsx2("path", { d: "m9 11 3 3L22 4" }),
995
+ /* @__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
996
  ] });
1017
997
  }
1018
998
  function GhostTapButton(props) {
1019
999
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Incognito chat", ...props, children: [
1020
- /* @__PURE__ */ jsx3("path", { d: "M9 10h.01" }),
1021
- /* @__PURE__ */ jsx3("path", { d: "M15 10h.01" }),
1022
- /* @__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" })
1000
+ /* @__PURE__ */ jsx2("path", { d: "M9 10h.01" }),
1001
+ /* @__PURE__ */ jsx2("path", { d: "M15 10h.01" }),
1002
+ /* @__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
1003
  ] });
1024
1004
  }
1025
1005
  function LinkTapButton(props) {
1026
1006
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Attach", ...props, children: [
1027
- /* @__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" }),
1028
- /* @__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" })
1007
+ /* @__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" }),
1008
+ /* @__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
1009
  ] });
1030
1010
  }
1031
1011
  function ExternalLinkTapButton(props) {
1032
1012
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Open source", ...props, children: [
1033
- /* @__PURE__ */ jsx3("path", { d: "M15 3h6v6" }),
1034
- /* @__PURE__ */ jsx3("path", { d: "M10 14 21 3" }),
1035
- /* @__PURE__ */ jsx3("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" })
1013
+ /* @__PURE__ */ jsx2("path", { d: "M15 3h6v6" }),
1014
+ /* @__PURE__ */ jsx2("path", { d: "M10 14 21 3" }),
1015
+ /* @__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
1016
  ] });
1037
1017
  }
1038
1018
  function ClipboardListTapButton(props) {
1039
1019
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Copy Pages", ...props, children: [
1040
- /* @__PURE__ */ jsx3("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
1041
- /* @__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" }),
1042
- /* @__PURE__ */ jsx3("path", { d: "M12 11h4" }),
1043
- /* @__PURE__ */ jsx3("path", { d: "M12 16h4" }),
1044
- /* @__PURE__ */ jsx3("path", { d: "M8 11h.01" }),
1045
- /* @__PURE__ */ jsx3("path", { d: "M8 16h.01" })
1020
+ /* @__PURE__ */ jsx2("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
1021
+ /* @__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" }),
1022
+ /* @__PURE__ */ jsx2("path", { d: "M12 11h4" }),
1023
+ /* @__PURE__ */ jsx2("path", { d: "M12 16h4" }),
1024
+ /* @__PURE__ */ jsx2("path", { d: "M8 11h.01" }),
1025
+ /* @__PURE__ */ jsx2("path", { d: "M8 16h.01" })
1046
1026
  ] });
1047
1027
  }
1048
1028
  function PartyPopperTapButton(props) {
1049
1029
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "AI Clean", ...props, children: [
1050
- /* @__PURE__ */ jsx3("path", { d: "M5.8 11.3 2 22l10.7-3.79" }),
1051
- /* @__PURE__ */ jsx3("path", { d: "M4 3h.01" }),
1052
- /* @__PURE__ */ jsx3("path", { d: "M22 8h.01" }),
1053
- /* @__PURE__ */ jsx3("path", { d: "M15 2h.01" }),
1054
- /* @__PURE__ */ jsx3("path", { d: "M22 20h.01" }),
1055
- /* @__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" }),
1056
- /* @__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" }),
1057
- /* @__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" }),
1058
- /* @__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" })
1030
+ /* @__PURE__ */ jsx2("path", { d: "M5.8 11.3 2 22l10.7-3.79" }),
1031
+ /* @__PURE__ */ jsx2("path", { d: "M4 3h.01" }),
1032
+ /* @__PURE__ */ jsx2("path", { d: "M22 8h.01" }),
1033
+ /* @__PURE__ */ jsx2("path", { d: "M15 2h.01" }),
1034
+ /* @__PURE__ */ jsx2("path", { d: "M22 20h.01" }),
1035
+ /* @__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" }),
1036
+ /* @__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" }),
1037
+ /* @__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" }),
1038
+ /* @__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
1039
  ] });
1060
1040
  }
1061
1041
  function LayersTapButton(props) {
1062
1042
  return /* @__PURE__ */ jsxs2(Wrap, { ariaLabel: "Open this PDF in another surface", ...props, children: [
1063
- /* @__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" }),
1064
- /* @__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" }),
1065
- /* @__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" })
1043
+ /* @__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" }),
1044
+ /* @__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" }),
1045
+ /* @__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
1046
  ] });
1067
1047
  }
1068
1048
  export {