@ai-matrx/tap-target 0.1.1 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/buttons.cjs CHANGED
@@ -1,10 +1,8 @@
1
1
  "use client";
2
2
  "use strict";
3
- var __create = Object.create;
4
3
  var __defProp = Object.defineProperty;
5
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
7
- var __getProtoOf = Object.getPrototypeOf;
8
6
  var __hasOwnProp = Object.prototype.hasOwnProperty;
9
7
  var __export = (target, all) => {
10
8
  for (var name in all)
@@ -18,14 +16,6 @@ var __copyProps = (to, from, except, desc) => {
18
16
  }
19
17
  return to;
20
18
  };
21
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
22
- // If the importer is in node compatibility mode or this is not an ESM
23
- // file that has been converted to a CommonJS file using a Babel-
24
- // compatible transform (i.e. "__esModule" has not been set), then set
25
- // "default" to the CommonJS "module.exports" for node compatibility.
26
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
27
- mod
28
- ));
29
19
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
30
20
 
31
21
  // src/buttons.ts
@@ -110,38 +100,13 @@ var import_react2 = require("react");
110
100
 
111
101
  // src/tap-target-button.tsx
112
102
  var import_react = require("react");
113
- var TooltipPrimitive2 = __toESM(require("@radix-ui/react-tooltip"), 1);
114
-
115
- // src/tooltip.tsx
116
- var React = __toESM(require("react"), 1);
117
- var TooltipPrimitive = __toESM(require("@radix-ui/react-tooltip"), 1);
103
+ var import_design_system = require("@ai-matrx/design-system");
118
104
 
119
105
  // src/cn.ts
120
106
  function cn(...values) {
121
107
  return values.filter(Boolean).join(" ").trim();
122
108
  }
123
109
 
124
- // src/tooltip.tsx
125
- var import_jsx_runtime = require("react/jsx-runtime");
126
- var TooltipTrigger = TooltipPrimitive.Trigger;
127
- var TooltipContent = React.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(TooltipPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
128
- TooltipPrimitive.Content,
129
- {
130
- ref,
131
- sideOffset,
132
- className: cn(
133
- // Neutral, theme-aware surface (popover tokens) so tooltip text is
134
- // ALWAYS legible in both light and dark mode — including rich content
135
- // that uses `text-muted-foreground`. A brand-colored `bg-primary`
136
- // background broke legibility for any non-default content.
137
- "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",
138
- className
139
- ),
140
- ...props
141
- }
142
- ) }));
143
- TooltipContent.displayName = TooltipPrimitive.Content.displayName;
144
-
145
110
  // src/link.ts
146
111
  var LINK_SLOT = /* @__PURE__ */ Symbol.for("@ai-matrx/tap-target:link-component");
147
112
  function getTapTargetLinkComponent() {
@@ -149,7 +114,7 @@ function getTapTargetLinkComponent() {
149
114
  }
150
115
 
151
116
  // src/tap-target-button.tsx
152
- var import_jsx_runtime2 = require("react/jsx-runtime");
117
+ var import_jsx_runtime = require("react/jsx-runtime");
153
118
  var EXTERNAL_RE = /^(https?:|mailto:|tel:)/i;
154
119
  var TAP_OUTER_CLASS = "matrx-tap-target group";
155
120
  var TAP_GROUP_OUTER_CLASS = "matrx-tap-target matrx-tap-target-sm group";
@@ -165,9 +130,9 @@ function IconContent({
165
130
  className: cn(className, icon.props.className)
166
131
  });
167
132
  }
168
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { className, children: icon });
133
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className, children: icon });
169
134
  }
170
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
135
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
171
136
  "svg",
172
137
  {
173
138
  className,
@@ -202,7 +167,7 @@ function buildTapInner({
202
167
  children,
203
168
  strokeWidth = 2
204
169
  }) {
205
- const iconEl = /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
170
+ const iconEl = /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
206
171
  IconContent,
207
172
  {
208
173
  icon,
@@ -213,11 +178,11 @@ function buildTapInner({
213
178
  );
214
179
  const pillClasses = label ? `${pillClassName} ${inlineModifier}`.trim() : pillClassName;
215
180
  if (!label) {
216
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("div", { className: pillClasses, children: iconEl });
181
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: pillClasses, children: iconEl });
217
182
  }
218
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("div", { className: pillClasses, children: [
183
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className: pillClasses, children: [
219
184
  iconEl,
220
- /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { className: labelClassName ?? "matrx-tap-label", children: label })
185
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: labelClassName ?? "matrx-tap-label", children: label })
221
186
  ] });
222
187
  }
223
188
  function renderTapTarget({
@@ -305,7 +270,7 @@ function renderTrigger({
305
270
  buttonRef
306
271
  }) {
307
272
  if (disabled && href) {
308
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
273
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
309
274
  "span",
310
275
  {
311
276
  "aria-disabled": "true",
@@ -318,7 +283,7 @@ function renderTrigger({
318
283
  if (href) {
319
284
  const isExternal = EXTERNAL_RE.test(href);
320
285
  if (isExternal) {
321
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
286
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
322
287
  "a",
323
288
  {
324
289
  href,
@@ -332,7 +297,7 @@ function renderTrigger({
332
297
  }
333
298
  const Link = linkComponent ?? getTapTargetLinkComponent();
334
299
  if (Link) {
335
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
300
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
336
301
  Link,
337
302
  {
338
303
  href,
@@ -345,7 +310,7 @@ function renderTrigger({
345
310
  }
346
311
  );
347
312
  }
348
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
313
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
349
314
  "a",
350
315
  {
351
316
  href,
@@ -358,7 +323,7 @@ function renderTrigger({
358
323
  );
359
324
  }
360
325
  if (as === "label") {
361
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
326
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
362
327
  "label",
363
328
  {
364
329
  htmlFor,
@@ -368,7 +333,7 @@ function renderTrigger({
368
333
  }
369
334
  );
370
335
  }
371
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
336
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
372
337
  "button",
373
338
  {
374
339
  ref: buttonRef,
@@ -392,14 +357,14 @@ function withTooltip(trigger, {
392
357
  if (tooltip === false) return trigger;
393
358
  const label = typeof tooltip === "string" && tooltip.length > 0 ? tooltip : ariaLabel;
394
359
  if (!label) return trigger;
395
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(TooltipPrimitive2.Root, { children: [
396
- /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(TooltipTrigger, { asChild: true, children: disabled ? (
360
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_design_system.Tooltip, { children: [
361
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_design_system.TooltipTrigger, { asChild: true, children: disabled ? (
397
362
  // Radix Tooltip triggers need a hoverable element; a disabled button
398
363
  // does not dispatch pointer events, so we wrap in a span for the
399
364
  // trigger target while keeping the disabled visual state.
400
- /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("span", { className: "inline-flex", children: trigger })
365
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: "inline-flex", children: trigger })
401
366
  ) : trigger }),
402
- /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(TooltipContent, { side: tooltipSide, align: tooltipAlign, children: label })
367
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_design_system.TooltipContent, { side: tooltipSide, align: tooltipAlign, children: label })
403
368
  ] });
404
369
  }
405
370
  var TapTargetButton = (0, import_react.forwardRef)(function TapTargetButton2({
@@ -555,7 +520,7 @@ var TapTargetButtonDestructive = (0, import_react.forwardRef)(function TapTarget
555
520
  hoverBgColor = "hover:bg-destructive/90",
556
521
  ...rest
557
522
  }, ref) {
558
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
523
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
559
524
  TapTargetButtonSolid,
560
525
  {
561
526
  ref,
@@ -618,7 +583,7 @@ var TapTargetButtonForGroup = (0, import_react.forwardRef)(function TapTargetBut
618
583
  });
619
584
 
620
585
  // src/tap-buttons.tsx
621
- var import_jsx_runtime3 = require("react/jsx-runtime");
586
+ var import_jsx_runtime2 = require("react/jsx-runtime");
622
587
  var Wrap = (0, import_react2.forwardRef)(function Wrap2({
623
588
  variant = "glass",
624
589
  children,
@@ -632,9 +597,9 @@ var Wrap = (0, import_react2.forwardRef)(function Wrap2({
632
597
  }, ref) {
633
598
  switch (variant) {
634
599
  case "transparent":
635
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(TapTargetButtonTransparent, { ref, ...props, children });
600
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(TapTargetButtonTransparent, { ref, ...props, children });
636
601
  case "solid":
637
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
602
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
638
603
  TapTargetButtonSolid,
639
604
  {
640
605
  ref,
@@ -647,13 +612,13 @@ var Wrap = (0, import_react2.forwardRef)(function Wrap2({
647
612
  }
648
613
  );
649
614
  case "group":
650
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(TapTargetButtonForGroup, { ref, ...props, children });
615
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(TapTargetButtonForGroup, { ref, ...props, children });
651
616
  default:
652
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(TapTargetButton, { ref, ...props, children });
617
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(TapTargetButton, { ref, ...props, children });
653
618
  }
654
619
  });
655
620
  function MenuTapButton(props) {
656
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Wrap, { ariaLabel: "Menu", strokeWidth: 1.75, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
621
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Wrap, { ariaLabel: "Menu", strokeWidth: 1.75, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
657
622
  "path",
658
623
  {
659
624
  strokeLinecap: "round",
@@ -663,7 +628,7 @@ function MenuTapButton(props) {
663
628
  ) });
664
629
  }
665
630
  function PlusTapButton(props) {
666
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Wrap, { ariaLabel: "Add", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
631
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Wrap, { ariaLabel: "Add", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
667
632
  "path",
668
633
  {
669
634
  strokeLinecap: "round",
@@ -673,13 +638,13 @@ function PlusTapButton(props) {
673
638
  ) });
674
639
  }
675
640
  function SearchTapButton(props) {
676
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Search", ...props, children: [
677
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "11", cy: "11", r: "8" }),
678
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m21 21-4.34-4.34" })
641
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Search", ...props, children: [
642
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "11", cy: "11", r: "8" }),
643
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m21 21-4.34-4.34" })
679
644
  ] });
680
645
  }
681
646
  function SettingsTapButton(props) {
682
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Wrap, { ariaLabel: "Settings", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
647
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Wrap, { ariaLabel: "Settings", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
683
648
  "path",
684
649
  {
685
650
  strokeLinecap: "round",
@@ -689,7 +654,7 @@ function SettingsTapButton(props) {
689
654
  ) });
690
655
  }
691
656
  function MaximizeTapButton(props) {
692
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Wrap, { ariaLabel: "Fullscreen", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
657
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Wrap, { ariaLabel: "Fullscreen", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
693
658
  "path",
694
659
  {
695
660
  strokeLinecap: "round",
@@ -699,31 +664,31 @@ function MaximizeTapButton(props) {
699
664
  ) });
700
665
  }
701
666
  function HomeTapButton(props) {
702
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Hub", ...props, children: [
703
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8" }),
704
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" })
667
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Hub", ...props, children: [
668
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8" }),
669
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" })
705
670
  ] });
706
671
  }
707
672
  function LayoutGridTapButton(props) {
708
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Card view", ...props, children: [
709
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { width: "7", height: "7", x: "3", y: "3", rx: "1" }),
710
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { width: "7", height: "7", x: "14", y: "3", rx: "1" }),
711
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { width: "7", height: "7", x: "14", y: "14", rx: "1" }),
712
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { width: "7", height: "7", x: "3", y: "14", rx: "1" })
673
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Card view", ...props, children: [
674
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { width: "7", height: "7", x: "3", y: "3", rx: "1" }),
675
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { width: "7", height: "7", x: "14", y: "3", rx: "1" }),
676
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { width: "7", height: "7", x: "14", y: "14", rx: "1" }),
677
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { width: "7", height: "7", x: "3", y: "14", rx: "1" })
713
678
  ] });
714
679
  }
715
680
  function ListTapButton(props) {
716
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Table view", ...props, children: [
717
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 5h.01" }),
718
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 12h.01" }),
719
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 19h.01" }),
720
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 5h13" }),
721
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 12h13" }),
722
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 19h13" })
681
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Table view", ...props, children: [
682
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 5h.01" }),
683
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 12h.01" }),
684
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 19h.01" }),
685
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 5h13" }),
686
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 12h13" }),
687
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 19h13" })
723
688
  ] });
724
689
  }
725
690
  function ArrowDownUpTapButton(props) {
726
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Wrap, { ariaLabel: "Sort", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
691
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Wrap, { ariaLabel: "Sort", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
727
692
  "path",
728
693
  {
729
694
  strokeLinecap: "round",
@@ -733,190 +698,190 @@ function ArrowDownUpTapButton(props) {
733
698
  ) });
734
699
  }
735
700
  function BellTapButton(props) {
736
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Notifications", ...props, children: [
737
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
738
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" })
701
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Notifications", ...props, children: [
702
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
703
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" })
739
704
  ] });
740
705
  }
741
706
  function BellRingTapButton(props) {
742
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Notifications", ...props, children: [
743
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
744
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M22 8c0-2.3-.8-4.3-2-6" }),
745
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }),
746
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 2C2.8 3.7 2 5.7 2 8" })
707
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Notifications", ...props, children: [
708
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
709
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M22 8c0-2.3-.8-4.3-2-6" }),
710
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }),
711
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 2C2.8 3.7 2 5.7 2 8" })
747
712
  ] });
748
713
  }
749
714
  function ZapTapButton(props) {
750
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Wrap, { ariaLabel: "Quick actions", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }) });
715
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Wrap, { ariaLabel: "Quick actions", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }) });
751
716
  }
752
717
  function UploadTapButton(props) {
753
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Upload", ...props, children: [
754
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 3v12" }),
755
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m17 8-5-5-5 5" }),
756
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" })
718
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Upload", ...props, children: [
719
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 3v12" }),
720
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m17 8-5-5-5 5" }),
721
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" })
757
722
  ] });
758
723
  }
759
724
  function DownloadTapButton(props) {
760
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Download", ...props, children: [
761
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 15V3" }),
762
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
763
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m7 10 5 5 5-5" })
725
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Download", ...props, children: [
726
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 15V3" }),
727
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
728
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m7 10 5 5 5-5" })
764
729
  ] });
765
730
  }
766
731
  function ShareTapButton(props) {
767
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Share", ...props, children: [
768
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "18", cy: "5", r: "3" }),
769
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "6", cy: "12", r: "3" }),
770
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "18", cy: "19", r: "3" }),
771
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("line", { x1: "8.59", x2: "15.42", y1: "13.51", y2: "17.49" }),
772
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("line", { x1: "15.41", x2: "8.59", y1: "6.51", y2: "10.49" })
732
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Share", ...props, children: [
733
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "18", cy: "5", r: "3" }),
734
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "6", cy: "12", r: "3" }),
735
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "18", cy: "19", r: "3" }),
736
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("line", { x1: "8.59", x2: "15.42", y1: "13.51", y2: "17.49" }),
737
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("line", { x1: "15.41", x2: "8.59", y1: "6.51", y2: "10.49" })
773
738
  ] });
774
739
  }
775
740
  function UndoTapButton(props) {
776
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Undo", ...props, children: [
777
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 7v6h6" }),
778
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
741
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Undo", ...props, children: [
742
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 7v6h6" }),
743
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
779
744
  ] });
780
745
  }
781
746
  function RedoTapButton(props) {
782
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Redo", ...props, children: [
783
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M21 7v6h-6" }),
784
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
747
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Redo", ...props, children: [
748
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M21 7v6h-6" }),
749
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
785
750
  ] });
786
751
  }
787
752
  function CopyTapButton(props) {
788
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Copy", ...props, children: [
789
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
790
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
753
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Copy", ...props, children: [
754
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
755
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
791
756
  ] });
792
757
  }
793
758
  function TrashTapButton(props) {
794
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Delete", ...props, children: [
795
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
796
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 6h18" }),
797
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
759
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Delete", ...props, children: [
760
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
761
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 6h18" }),
762
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
798
763
  ] });
799
764
  }
800
765
  function FilesTapButton(props) {
801
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Copy all", ...props, children: [
802
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M20 7h-3a2 2 0 0 1-2-2V2" }),
803
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7l4 4v10a2 2 0 0 1-2 2Z" }),
804
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 7.6v12.8A1.6 1.6 0 0 0 4.6 22h9.8" })
766
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Copy all", ...props, children: [
767
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M20 7h-3a2 2 0 0 1-2-2V2" }),
768
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7l4 4v10a2 2 0 0 1-2 2Z" }),
769
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 7.6v12.8A1.6 1.6 0 0 0 4.6 22h9.8" })
805
770
  ] });
806
771
  }
807
772
  function ChevronLeftTapButton(props) {
808
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Wrap, { ariaLabel: "Back", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m16 19-7-7 7-7" }) });
773
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Wrap, { ariaLabel: "Back", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m16 19-7-7 7-7" }) });
809
774
  }
810
775
  function ChevronRightTapButton(props) {
811
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Wrap, { ariaLabel: "Next", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m9 18 6-6-6-6" }) });
776
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Wrap, { ariaLabel: "Next", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m9 18 6-6-6-6" }) });
812
777
  }
813
778
  function PanelLeftTapButton(props) {
814
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Toggle sidebar", ...props, children: [
815
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
816
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9 3v18" })
779
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Toggle sidebar", ...props, children: [
780
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
781
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 3v18" })
817
782
  ] });
818
783
  }
819
784
  function PanelRightTapButton(props) {
820
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Toggle sidebar", ...props, children: [
821
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
822
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M15 3v18" })
785
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Toggle sidebar", ...props, children: [
786
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
787
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M15 3v18" })
823
788
  ] });
824
789
  }
825
790
  function SquarePenTapButton(props) {
826
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "New chat", ...props, children: [
827
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" }),
828
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" })
791
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "New chat", ...props, children: [
792
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" }),
793
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" })
829
794
  ] });
830
795
  }
831
796
  function XTapButton(props) {
832
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Close", ...props, children: [
833
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M18 6 6 18" }),
834
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m6 6 12 12" })
797
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Close", ...props, children: [
798
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M18 6 6 18" }),
799
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m6 6 12 12" })
835
800
  ] });
836
801
  }
837
802
  function FilterTapButton(props) {
838
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Wrap, { ariaLabel: "Filter", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }) });
803
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Wrap, { ariaLabel: "Filter", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }) });
839
804
  }
840
805
  function PlayTapButton(props) {
841
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Wrap, { ariaLabel: "Play", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }) });
806
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Wrap, { ariaLabel: "Play", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }) });
842
807
  }
843
808
  function PauseTapButton(props) {
844
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Pause", ...props, children: [
845
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "14", y: "3", width: "5", height: "18", rx: "1" }),
846
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "5", y: "3", width: "5", height: "18", rx: "1" })
809
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Pause", ...props, children: [
810
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "14", y: "3", width: "5", height: "18", rx: "1" }),
811
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "5", y: "3", width: "5", height: "18", rx: "1" })
847
812
  ] });
848
813
  }
849
814
  function StopTapButton(props) {
850
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Wrap, { ariaLabel: "Stop", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }) });
815
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Wrap, { ariaLabel: "Stop", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }) });
851
816
  }
852
817
  function Volume2TapButton(props) {
853
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Speaker", ...props, children: [
854
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }),
855
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M16 9a5 5 0 0 1 0 6" }),
856
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M19.364 18.364a9 9 0 0 0 0-12.728" })
818
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Speaker", ...props, children: [
819
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }),
820
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M16 9a5 5 0 0 1 0 6" }),
821
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M19.364 18.364a9 9 0 0 0 0-12.728" })
857
822
  ] });
858
823
  }
859
824
  function ArrowUpTapButton(props) {
860
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Send", ...props, children: [
861
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m5 12 7-7 7 7" }),
862
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 19V5" })
825
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Send", ...props, children: [
826
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m5 12 7-7 7 7" }),
827
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 19V5" })
863
828
  ] });
864
829
  }
865
830
  function MicTapButton(props) {
866
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Start recording", ...props, children: [
867
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 19v3" }),
868
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
869
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { x: "9", y: "2", width: "6", height: "13", rx: "3" })
831
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Start recording", ...props, children: [
832
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 19v3" }),
833
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
834
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "9", y: "2", width: "6", height: "13", rx: "3" })
870
835
  ] });
871
836
  }
872
837
  function MicOffTapButton(props) {
873
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Stop recording", ...props, children: [
874
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 19v3" }),
875
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M15 9.34V5a3 3 0 0 0-5.68-1.33" }),
876
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M16.95 16.95A7 7 0 0 1 5 12v-2" }),
877
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M18.89 13.23A7 7 0 0 0 19 12v-2" }),
878
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m2 2 20 20" }),
879
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9 9v3a3 3 0 0 0 5.12 2.12" })
838
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Stop recording", ...props, children: [
839
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 19v3" }),
840
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M15 9.34V5a3 3 0 0 0-5.68-1.33" }),
841
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M16.95 16.95A7 7 0 0 1 5 12v-2" }),
842
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M18.89 13.23A7 7 0 0 0 19 12v-2" }),
843
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m2 2 20 20" }),
844
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 9v3a3 3 0 0 0 5.12 2.12" })
880
845
  ] });
881
846
  }
882
847
  function TriangleAlertTapButton(props) {
883
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Alert", ...props, children: [
884
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }),
885
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 9v4" }),
886
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 17h.01" })
848
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Alert", ...props, children: [
849
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }),
850
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 9v4" }),
851
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 17h.01" })
887
852
  ] });
888
853
  }
889
854
  function ShieldCheckTapButton(props) {
890
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Context set", ...props, children: [
891
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }),
892
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m9 12 2 2 4-4" })
855
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Context set", ...props, children: [
856
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }),
857
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m9 12 2 2 4-4" })
893
858
  ] });
894
859
  }
895
860
  function ShieldAlertTapButton(props) {
896
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "No context", ...props, children: [
897
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }),
898
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 8v4" }),
899
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 16h.01" })
861
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "No context", ...props, children: [
862
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }),
863
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 8v4" }),
864
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 16h.01" })
900
865
  ] });
901
866
  }
902
867
  function BugTapButton(props) {
903
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Debug", ...props, children: [
904
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 20v-9" }),
905
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z" }),
906
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M14.12 3.88 16 2" }),
907
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M21 21a4 4 0 0 0-3.81-4" }),
908
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M21 5a4 4 0 0 1-3.55 3.97" }),
909
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M22 13h-4" }),
910
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 21a4 4 0 0 1 3.81-4" }),
911
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 5a4 4 0 0 0 3.55 3.97" }),
912
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M6 13H2" }),
913
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m8 2 1.88 1.88" }),
914
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9 7.13V6a3 3 0 1 1 6 0v1.13" })
868
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Debug", ...props, children: [
869
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 20v-9" }),
870
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z" }),
871
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14.12 3.88 16 2" }),
872
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M21 21a4 4 0 0 0-3.81-4" }),
873
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M21 5a4 4 0 0 1-3.55 3.97" }),
874
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M22 13h-4" }),
875
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 21a4 4 0 0 1 3.81-4" }),
876
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 5a4 4 0 0 0 3.55 3.97" }),
877
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6 13H2" }),
878
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m8 2 1.88 1.88" }),
879
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 7.13V6a3 3 0 1 1 6 0v1.13" })
915
880
  ] });
916
881
  }
917
882
  function Settings2TapButton(props) {
918
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Settings", ...props, children: [
919
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
883
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Settings", ...props, children: [
884
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
920
885
  "path",
921
886
  {
922
887
  strokeLinecap: "round",
@@ -924,7 +889,7 @@ function Settings2TapButton(props) {
924
889
  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"
925
890
  }
926
891
  ),
927
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
892
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
928
893
  "path",
929
894
  {
930
895
  strokeLinecap: "round",
@@ -935,8 +900,8 @@ function Settings2TapButton(props) {
935
900
  ] });
936
901
  }
937
902
  function SaveTapButton(props) {
938
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Save", ...props, children: [
939
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
903
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Save", ...props, children: [
904
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
940
905
  "path",
941
906
  {
942
907
  strokeLinecap: "round",
@@ -944,7 +909,7 @@ function SaveTapButton(props) {
944
909
  d: "M4.5 6a2 2 0 012-2h9.25L20.5 9v9a2 2 0 01-2 2h-12a2 2 0 01-2-2V6z"
945
910
  }
946
911
  ),
947
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
912
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
948
913
  "path",
949
914
  {
950
915
  strokeLinecap: "round",
@@ -952,7 +917,7 @@ function SaveTapButton(props) {
952
917
  d: "M8.5 4v4.5a.5.5 0 00.5.5h6a.5.5 0 00.5-.5V4"
953
918
  }
954
919
  ),
955
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
920
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
956
921
  "rect",
957
922
  {
958
923
  x: "8",
@@ -966,66 +931,66 @@ function SaveTapButton(props) {
966
931
  ] });
967
932
  }
968
933
  function SendTapButton(props) {
969
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Send", ...props, children: [
970
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }),
971
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m21.854 2.147-10.94 10.939" })
934
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Send", ...props, children: [
935
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }),
936
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m21.854 2.147-10.94 10.939" })
972
937
  ] });
973
938
  }
974
939
  function MessageTapButton(props) {
975
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Wrap, { ariaLabel: "Message", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }) });
940
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Wrap, { ariaLabel: "Message", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }) });
976
941
  }
977
942
  function VariableTapButton(props) {
978
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Variable", ...props, children: [
979
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 21s-4-3-4-9 4-9 4-9" }),
980
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M16 3s4 3 4 9-4 9-4 9" }),
981
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("line", { x1: "15", x2: "9", y1: "9", y2: "15" }),
982
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("line", { x1: "9", x2: "15", y1: "9", y2: "15" })
943
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Variable", ...props, children: [
944
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 21s-4-3-4-9 4-9 4-9" }),
945
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M16 3s4 3 4 9-4 9-4 9" }),
946
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("line", { x1: "15", x2: "9", y1: "9", y2: "15" }),
947
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("line", { x1: "9", x2: "15", y1: "9", y2: "15" })
983
948
  ] });
984
949
  }
985
950
  function WrenchTapButton(props) {
986
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Wrap, { ariaLabel: "Tool", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }) });
951
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Wrap, { ariaLabel: "Tool", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }) });
987
952
  }
988
953
  function CommandTapButton(props) {
989
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Wrap, { ariaLabel: "Command", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }) });
954
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Wrap, { ariaLabel: "Command", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }) });
990
955
  }
991
956
  function TerminalTapButton(props) {
992
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Terminal", ...props, children: [
993
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 19h8" }),
994
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m4 17 6-6-6-6" })
957
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Terminal", ...props, children: [
958
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 19h8" }),
959
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m4 17 6-6-6-6" })
995
960
  ] });
996
961
  }
997
962
  function TestTubeTapButton(props) {
998
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Test", ...props, children: [
999
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }),
1000
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8.5 2h7" }),
1001
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M14.5 16h-5" })
963
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Test", ...props, children: [
964
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }),
965
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8.5 2h7" }),
966
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14.5 16h-5" })
1002
967
  ] });
1003
968
  }
1004
969
  function ResetTapButton(props) {
1005
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Reset", ...props, children: [
1006
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" }),
1007
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 3v5h5" })
970
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Reset", ...props, children: [
971
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" }),
972
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 3v5h5" })
1008
973
  ] });
1009
974
  }
1010
975
  function ClearTapButton(props) {
1011
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Clear", ...props, children: [
1012
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }),
1013
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m5.082 11.09 8.828 8.828" })
976
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Clear", ...props, children: [
977
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }),
978
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m5.082 11.09 8.828 8.828" })
1014
979
  ] });
1015
980
  }
1016
981
  function RetryTapButton(props) {
1017
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Retry", ...props, children: [
1018
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
1019
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M21 3v5h-5" }),
1020
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
1021
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 16H3v5" })
982
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Retry", ...props, children: [
983
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
984
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M21 3v5h-5" }),
985
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
986
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 16H3v5" })
1022
987
  ] });
1023
988
  }
1024
989
  function RefreshCwTapButton(props) {
1025
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(RetryTapButton, { ariaLabel: "Refresh", ...props });
990
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(RetryTapButton, { ariaLabel: "Refresh", ...props });
1026
991
  }
1027
992
  function LoadingTapButton(props) {
1028
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Wrap, { ariaLabel: "Loading", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
993
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Wrap, { ariaLabel: "Loading", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
1029
994
  "circle",
1030
995
  {
1031
996
  className: "animate-spin",
@@ -1040,7 +1005,7 @@ function LoadingTapButton(props) {
1040
1005
  ) });
1041
1006
  }
1042
1007
  function RobotTapButton(props) {
1043
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Wrap, { ariaLabel: "AI Agent", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
1008
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Wrap, { ariaLabel: "AI Agent", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
1044
1009
  "path",
1045
1010
  {
1046
1011
  strokeLinecap: "round",
@@ -1050,120 +1015,120 @@ function RobotTapButton(props) {
1050
1015
  ) });
1051
1016
  }
1052
1017
  function WebhookTapButton(props) {
1053
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Webhook", ...props, children: [
1054
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }),
1055
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06" }),
1056
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8" })
1018
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Webhook", ...props, children: [
1019
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }),
1020
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06" }),
1021
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8" })
1057
1022
  ] });
1058
1023
  }
1059
1024
  function ViewTapButton(props) {
1060
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "View", ...props, children: [
1061
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }),
1062
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "3" })
1025
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "View", ...props, children: [
1026
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }),
1027
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "3" })
1063
1028
  ] });
1064
1029
  }
1065
1030
  function BuildTapButton(props) {
1066
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Build", ...props, children: [
1067
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m15 12-9.373 9.373a1 1 0 0 1-3.001-3L12 9" }),
1068
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m18 15 4-4" }),
1069
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" })
1031
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Build", ...props, children: [
1032
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m15 12-9.373 9.373a1 1 0 0 1-3.001-3L12 9" }),
1033
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m18 15 4-4" }),
1034
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" })
1070
1035
  ] });
1071
1036
  }
1072
1037
  function RunTapButton(props) {
1073
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Wrap, { ariaLabel: "Run", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }) });
1038
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Wrap, { ariaLabel: "Run", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }) });
1074
1039
  }
1075
1040
  function HistoryTapButton(props) {
1076
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "History", ...props, children: [
1077
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" }),
1078
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M3 3v5h5" }),
1079
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 7v5l4 2" })
1041
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "History", ...props, children: [
1042
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" }),
1043
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M3 3v5h5" }),
1044
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 7v5l4 2" })
1080
1045
  ] });
1081
1046
  }
1082
1047
  function PaperclipTapButton(props) {
1083
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Wrap, { ariaLabel: "Attach file", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }) });
1048
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Wrap, { ariaLabel: "Attach file", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }) });
1084
1049
  }
1085
1050
  function ThumbsUpTapButton(props) {
1086
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Like", ...props, children: [
1087
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M7 10v12" }),
1088
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" })
1051
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Like", ...props, children: [
1052
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M7 10v12" }),
1053
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" })
1089
1054
  ] });
1090
1055
  }
1091
1056
  function ThumbsDownTapButton(props) {
1092
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Dislike", ...props, children: [
1093
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M17 14V2" }),
1094
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" })
1057
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Dislike", ...props, children: [
1058
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M17 14V2" }),
1059
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" })
1095
1060
  ] });
1096
1061
  }
1097
1062
  function CheckTapButton(props) {
1098
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(Wrap, { ariaLabel: "Done", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M20 6 9 17l-5-5" }) });
1063
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(Wrap, { ariaLabel: "Done", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M20 6 9 17l-5-5" }) });
1099
1064
  }
1100
1065
  function PencilTapButton(props) {
1101
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Edit", ...props, children: [
1102
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }),
1103
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m15 5 4 4" })
1066
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Edit", ...props, children: [
1067
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }),
1068
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m15 5 4 4" })
1104
1069
  ] });
1105
1070
  }
1106
1071
  function MoreHorizontalTapButton(props) {
1107
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "More options", ...props, children: [
1108
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
1109
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "19", cy: "12", r: "1" }),
1110
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("circle", { cx: "5", cy: "12", r: "1" })
1072
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "More options", ...props, children: [
1073
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
1074
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "19", cy: "12", r: "1" }),
1075
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "5", cy: "12", r: "1" })
1111
1076
  ] });
1112
1077
  }
1113
1078
  function CheckSquareTapButton(props) {
1114
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Task", ...props, children: [
1115
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m9 11 3 3L22 4" }),
1116
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11" })
1079
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Task", ...props, children: [
1080
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m9 11 3 3L22 4" }),
1081
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11" })
1117
1082
  ] });
1118
1083
  }
1119
1084
  function GhostTapButton(props) {
1120
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Incognito chat", ...props, children: [
1121
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M9 10h.01" }),
1122
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M15 10h.01" }),
1123
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" })
1085
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Incognito chat", ...props, children: [
1086
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M9 10h.01" }),
1087
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M15 10h.01" }),
1088
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" })
1124
1089
  ] });
1125
1090
  }
1126
1091
  function LinkTapButton(props) {
1127
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Attach", ...props, children: [
1128
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
1129
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
1092
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Attach", ...props, children: [
1093
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
1094
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
1130
1095
  ] });
1131
1096
  }
1132
1097
  function ExternalLinkTapButton(props) {
1133
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Open source", ...props, children: [
1134
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M15 3h6v6" }),
1135
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M10 14 21 3" }),
1136
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" })
1098
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Open source", ...props, children: [
1099
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M15 3h6v6" }),
1100
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M10 14 21 3" }),
1101
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" })
1137
1102
  ] });
1138
1103
  }
1139
1104
  function ClipboardListTapButton(props) {
1140
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Copy Pages", ...props, children: [
1141
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
1142
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }),
1143
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 11h4" }),
1144
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M12 16h4" }),
1145
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 11h.01" }),
1146
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M8 16h.01" })
1105
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Copy Pages", ...props, children: [
1106
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
1107
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }),
1108
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 11h4" }),
1109
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 16h4" }),
1110
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 11h.01" }),
1111
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M8 16h.01" })
1147
1112
  ] });
1148
1113
  }
1149
1114
  function PartyPopperTapButton(props) {
1150
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "AI Clean", ...props, children: [
1151
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M5.8 11.3 2 22l10.7-3.79" }),
1152
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M4 3h.01" }),
1153
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M22 8h.01" }),
1154
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M15 2h.01" }),
1155
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "M22 20h.01" }),
1156
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }),
1157
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17" }),
1158
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { d: "m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7" }),
1159
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" })
1115
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "AI Clean", ...props, children: [
1116
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M5.8 11.3 2 22l10.7-3.79" }),
1117
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M4 3h.01" }),
1118
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M22 8h.01" }),
1119
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M15 2h.01" }),
1120
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M22 20h.01" }),
1121
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }),
1122
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17" }),
1123
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7" }),
1124
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" })
1160
1125
  ] });
1161
1126
  }
1162
1127
  function LayersTapButton(props) {
1163
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(Wrap, { ariaLabel: "Open this PDF in another surface", ...props, children: [
1164
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }),
1165
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" }),
1166
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("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" })
1128
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Wrap, { ariaLabel: "Open this PDF in another surface", ...props, children: [
1129
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }),
1130
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" }),
1131
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("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" })
1167
1132
  ] });
1168
1133
  }
1169
1134
  //# sourceMappingURL=buttons.cjs.map