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