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