@assure-one/design-system 1.34.0 → 1.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +53 -0
- package/codemods/README.md +225 -10
- package/codemods/lib/jsx-edit.mjs +63 -4
- package/codemods/lib/registry.mjs +7 -0
- package/codemods/transforms/cm-04-button-variant-intent.mjs +223 -0
- package/codemods/transforms/cm-05-button-icon-slots.mjs +117 -0
- package/codemods/transforms/cm-06-tone-to-intent.mjs +190 -0
- package/codemods/transforms/cm-07-input-size.mjs +104 -0
- package/codemods/transforms/cm-08-search-select-to-combobox.mjs +236 -0
- package/codemods/transforms/cm-10-date-picker-value-change.mjs +416 -0
- package/codemods/transforms/cm-14-hidden-mirrors.mjs +2 -2
- package/codemods/transforms/cm-19-progress-explicit-intent.mjs +192 -0
- package/dist/css/components.css +1 -1
- package/dist/css/legacy-aliases.css +5 -0
- package/dist/css/tokens.css +5 -0
- package/dist/design-system-provider-cPUklDJv.d.ts +220 -0
- package/dist/icons/index.d.ts +3 -0
- package/dist/icons/index.js +1833 -0
- package/dist/icons/index.js.map +1 -0
- package/dist/index-CQwzTm0v.d.ts +509 -0
- package/dist/index.d.ts +2967 -823
- package/dist/index.js +7644 -3062
- package/dist/index.js.map +1 -1
- package/dist/next/index.d.ts +20 -0
- package/dist/next/index.js +16 -0
- package/dist/next/index.js.map +1 -0
- package/dist/styles.css +1 -1
- package/dist/testing/index.cjs +133 -11
- package/dist/testing/index.d.cts +98 -2
- package/dist/testing/index.d.ts +98 -2
- package/dist/testing/index.js +132 -12
- package/docs/components.md +601 -0
- package/docs/components.registry.json +1586 -0
- package/docs/for-ai-agents.md +153 -0
- package/package.json +21 -3
|
@@ -0,0 +1,1833 @@
|
|
|
1
|
+
import { clsx } from 'clsx';
|
|
2
|
+
import { extendTailwindMerge } from 'tailwind-merge';
|
|
3
|
+
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
4
|
+
import { useId } from 'react';
|
|
5
|
+
|
|
6
|
+
// src/lib/cn.ts
|
|
7
|
+
var split = (values) => values.split(" ");
|
|
8
|
+
var DS_RADIUS = split(
|
|
9
|
+
"badges btn buttons card cards general icon input inputs pill control surface surface-sm badge"
|
|
10
|
+
);
|
|
11
|
+
var DS_SHADOW = split("card focus focus-ring focus-ring-field pop quiet subtle flat raised floating overlay");
|
|
12
|
+
var DS_EASE = split("out-quart");
|
|
13
|
+
var DS_FONT = split("body display");
|
|
14
|
+
var DS_TEXT = split(
|
|
15
|
+
"display title-page title-section title-sub body body-sm label helper caption micro overline code"
|
|
16
|
+
);
|
|
17
|
+
var DS_ANIMATE = split("accordion-down accordion-up collapsible-down collapsible-up pulse-soft");
|
|
18
|
+
var isDsShadowVar = (value) => /^\[var\(--shadow-[a-z0-9-]*\)\]$/.test(value);
|
|
19
|
+
var dsMergeConfig = {
|
|
20
|
+
extend: {
|
|
21
|
+
theme: {
|
|
22
|
+
radius: DS_RADIUS,
|
|
23
|
+
shadow: DS_SHADOW,
|
|
24
|
+
ease: DS_EASE,
|
|
25
|
+
font: DS_FONT,
|
|
26
|
+
text: DS_TEXT,
|
|
27
|
+
animate: DS_ANIMATE
|
|
28
|
+
},
|
|
29
|
+
classGroups: {
|
|
30
|
+
shadow: [{ shadow: [isDsShadowVar] }]
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
};
|
|
34
|
+
var extendMerge = extendTailwindMerge;
|
|
35
|
+
var twMerge = extendMerge(dsMergeConfig);
|
|
36
|
+
function cn(...inputs) {
|
|
37
|
+
return twMerge(clsx(inputs));
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
// src/tokens/reference.ts
|
|
41
|
+
var iconSizes = {
|
|
42
|
+
xs: "12px",
|
|
43
|
+
sm: "14px",
|
|
44
|
+
md: "16px",
|
|
45
|
+
lg: "20px"
|
|
46
|
+
};
|
|
47
|
+
var DEFAULT_VIEW_BOX = "0 0 24 24";
|
|
48
|
+
var DEFAULT_STROKE_WIDTH = 1.5;
|
|
49
|
+
function iconSizePx(size) {
|
|
50
|
+
return typeof size === "number" ? size : Number.parseFloat(iconSizes[size]);
|
|
51
|
+
}
|
|
52
|
+
function iconSizeVar(size) {
|
|
53
|
+
return `var(--ds-icon-size-${size}, var(--icon-size-${size}, ${iconSizes[size]}))`;
|
|
54
|
+
}
|
|
55
|
+
function Icon({
|
|
56
|
+
size = 24,
|
|
57
|
+
strokeWidth = DEFAULT_STROKE_WIDTH,
|
|
58
|
+
viewBox = DEFAULT_VIEW_BOX,
|
|
59
|
+
className,
|
|
60
|
+
style,
|
|
61
|
+
title,
|
|
62
|
+
children,
|
|
63
|
+
...props
|
|
64
|
+
}) {
|
|
65
|
+
const px = iconSizePx(size);
|
|
66
|
+
const box = typeof size === "string" ? { width: iconSizeVar(size), height: iconSizeVar(size) } : void 0;
|
|
67
|
+
return /* @__PURE__ */ jsxs(
|
|
68
|
+
"svg",
|
|
69
|
+
{
|
|
70
|
+
width: px,
|
|
71
|
+
height: px,
|
|
72
|
+
viewBox,
|
|
73
|
+
fill: "none",
|
|
74
|
+
strokeWidth,
|
|
75
|
+
className: cn("ds:shrink-0", className),
|
|
76
|
+
style: box || style ? { ...box, ...style } : void 0,
|
|
77
|
+
...title !== void 0 ? { role: "img" } : { "aria-hidden": "true" },
|
|
78
|
+
...props,
|
|
79
|
+
children: [
|
|
80
|
+
title !== void 0 ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
81
|
+
children
|
|
82
|
+
]
|
|
83
|
+
}
|
|
84
|
+
);
|
|
85
|
+
}
|
|
86
|
+
function isPathData(paths) {
|
|
87
|
+
return typeof paths === "string" || Array.isArray(paths) && paths.every((path) => typeof path === "string");
|
|
88
|
+
}
|
|
89
|
+
function createIcon(definition) {
|
|
90
|
+
const { name, paths, viewBox, strokeWidth: defaultStrokeWidth } = definition;
|
|
91
|
+
const children = isPathData(paths) ? (typeof paths === "string" ? [paths] : paths).map((d, index) => /* @__PURE__ */ jsx(
|
|
92
|
+
"path",
|
|
93
|
+
{
|
|
94
|
+
d,
|
|
95
|
+
stroke: "currentColor",
|
|
96
|
+
strokeLinecap: "round",
|
|
97
|
+
strokeLinejoin: "round"
|
|
98
|
+
},
|
|
99
|
+
index
|
|
100
|
+
)) : paths;
|
|
101
|
+
function Component({ strokeWidth = defaultStrokeWidth, ...props }) {
|
|
102
|
+
return /* @__PURE__ */ jsx(Icon, { strokeWidth, viewBox, ...props, children });
|
|
103
|
+
}
|
|
104
|
+
Component.displayName = name;
|
|
105
|
+
return Component;
|
|
106
|
+
}
|
|
107
|
+
function AlertCircleIcon({ size = 24, ...props }) {
|
|
108
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
109
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10", stroke: "currentColor" }),
|
|
110
|
+
/* @__PURE__ */ jsx(
|
|
111
|
+
"path",
|
|
112
|
+
{
|
|
113
|
+
d: "M12 8v4M12 16h.01",
|
|
114
|
+
stroke: "currentColor",
|
|
115
|
+
strokeLinecap: "round",
|
|
116
|
+
strokeLinejoin: "round"
|
|
117
|
+
}
|
|
118
|
+
)
|
|
119
|
+
] });
|
|
120
|
+
}
|
|
121
|
+
function AlertTriangleIcon({ size = 24, ...props }) {
|
|
122
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
123
|
+
/* @__PURE__ */ jsx(
|
|
124
|
+
"path",
|
|
125
|
+
{
|
|
126
|
+
d: "M10.29 3.86L1.82 18a2 2 0 001.71 3h16.94a2 2 0 001.71-3L13.71 3.86a2 2 0 00-3.42 0z",
|
|
127
|
+
stroke: "currentColor",
|
|
128
|
+
strokeLinecap: "round",
|
|
129
|
+
strokeLinejoin: "round"
|
|
130
|
+
}
|
|
131
|
+
),
|
|
132
|
+
/* @__PURE__ */ jsx("line", { x1: "12", y1: "9", x2: "12", y2: "13", stroke: "currentColor", strokeLinecap: "round" }),
|
|
133
|
+
/* @__PURE__ */ jsx("line", { x1: "12", y1: "17", x2: "12.01", y2: "17", stroke: "currentColor", strokeLinecap: "round" })
|
|
134
|
+
] });
|
|
135
|
+
}
|
|
136
|
+
function AlertTriangleSolidIcon({ size = 24, ...props }) {
|
|
137
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
138
|
+
"path",
|
|
139
|
+
{
|
|
140
|
+
fillRule: "evenodd",
|
|
141
|
+
clipRule: "evenodd",
|
|
142
|
+
fill: "currentColor",
|
|
143
|
+
d: "M9.401 3.003c1.155-2 4.043-2 5.197 0l7.355 12.748c1.154 2-.29 4.5-2.599 4.5H4.645c-2.309 0-3.752-2.5-2.598-4.5L9.4 3.003ZM12 8.25a.75.75 0 0 1 .75.75v3.75a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75Zm0 8.25a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z"
|
|
144
|
+
}
|
|
145
|
+
) });
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
// src/icons/archive-icon.tsx
|
|
149
|
+
var ArchiveIcon = /* @__PURE__ */ createIcon({
|
|
150
|
+
name: "ArchiveIcon",
|
|
151
|
+
paths: [
|
|
152
|
+
"M3 3h18a1 1 0 011 1v3a1 1 0 01-1 1H3a1 1 0 01-1-1V4a1 1 0 011-1z",
|
|
153
|
+
"M4 8v11a2 2 0 002 2h12a2 2 0 002-2V8",
|
|
154
|
+
"M10 12h4"
|
|
155
|
+
]
|
|
156
|
+
});
|
|
157
|
+
function ArrowDownIcon({ size = 24, ...props }) {
|
|
158
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
159
|
+
"path",
|
|
160
|
+
{
|
|
161
|
+
d: "M12 5v14M19 12l-7 7-7-7",
|
|
162
|
+
stroke: "currentColor",
|
|
163
|
+
strokeLinecap: "round",
|
|
164
|
+
strokeLinejoin: "round"
|
|
165
|
+
}
|
|
166
|
+
) });
|
|
167
|
+
}
|
|
168
|
+
function ArrowLeftIcon({ size = 24, ...props }) {
|
|
169
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
170
|
+
"path",
|
|
171
|
+
{
|
|
172
|
+
d: "M19 12H5M12 19l-7-7 7-7",
|
|
173
|
+
stroke: "currentColor",
|
|
174
|
+
strokeLinecap: "round",
|
|
175
|
+
strokeLinejoin: "round"
|
|
176
|
+
}
|
|
177
|
+
) });
|
|
178
|
+
}
|
|
179
|
+
function ArrowRightIcon({ size = 24, ...props }) {
|
|
180
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
181
|
+
"path",
|
|
182
|
+
{
|
|
183
|
+
d: "M5 12h14M12 5l7 7-7 7",
|
|
184
|
+
stroke: "currentColor",
|
|
185
|
+
strokeLinecap: "round",
|
|
186
|
+
strokeLinejoin: "round"
|
|
187
|
+
}
|
|
188
|
+
) });
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
// src/icons/arrow-right-small-icon.tsx
|
|
192
|
+
var ArrowRightSmallIcon = ArrowRightIcon;
|
|
193
|
+
function ArrowUpIcon({ size = 24, ...props }) {
|
|
194
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
195
|
+
"path",
|
|
196
|
+
{
|
|
197
|
+
d: "M12 19V5M5 12l7-7 7 7",
|
|
198
|
+
stroke: "currentColor",
|
|
199
|
+
strokeLinecap: "round",
|
|
200
|
+
strokeLinejoin: "round"
|
|
201
|
+
}
|
|
202
|
+
) });
|
|
203
|
+
}
|
|
204
|
+
function AtSignIcon({ size = 24, ...props }) {
|
|
205
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
206
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "4", stroke: "currentColor" }),
|
|
207
|
+
/* @__PURE__ */ jsx("path", { d: "M16 8v5a3 3 0 006 0v-1a10 10 0 10-4 8", stroke: "currentColor", strokeLinecap: "round" })
|
|
208
|
+
] });
|
|
209
|
+
}
|
|
210
|
+
function BarChartIcon({ size = 24, ...props }) {
|
|
211
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
212
|
+
"path",
|
|
213
|
+
{
|
|
214
|
+
d: "M12 20V10M18 20V4M6 20v-4",
|
|
215
|
+
stroke: "currentColor",
|
|
216
|
+
strokeLinecap: "round",
|
|
217
|
+
strokeLinejoin: "round"
|
|
218
|
+
}
|
|
219
|
+
) });
|
|
220
|
+
}
|
|
221
|
+
function BellIcon({ size = 24, ...props }) {
|
|
222
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
223
|
+
"path",
|
|
224
|
+
{
|
|
225
|
+
d: "M18 8A6 6 0 106 8c0 7-3 9-3 9h18s-3-2-3-9zM13.73 21a2 2 0 01-3.46 0",
|
|
226
|
+
stroke: "currentColor",
|
|
227
|
+
strokeLinecap: "round",
|
|
228
|
+
strokeLinejoin: "round"
|
|
229
|
+
}
|
|
230
|
+
) });
|
|
231
|
+
}
|
|
232
|
+
function BoldIcon({ size = 24, strokeWidth = 2, ...props }) {
|
|
233
|
+
return /* @__PURE__ */ jsx(Icon, { size, strokeWidth, ...props, children: /* @__PURE__ */ jsx(
|
|
234
|
+
"path",
|
|
235
|
+
{
|
|
236
|
+
d: "M6 4h8a4 4 0 014 4 4 4 0 01-4 4H6zM6 12h9a4 4 0 014 4 4 4 0 01-4 4H6z",
|
|
237
|
+
stroke: "currentColor",
|
|
238
|
+
strokeLinecap: "round",
|
|
239
|
+
strokeLinejoin: "round"
|
|
240
|
+
}
|
|
241
|
+
) });
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
// src/icons/brain-icon.tsx
|
|
245
|
+
var BrainIcon = /* @__PURE__ */ createIcon({
|
|
246
|
+
name: "BrainIcon",
|
|
247
|
+
paths: [
|
|
248
|
+
"M12 5a3 3 0 10-5.997.125 4 4 0 00-2.526 5.77 4 4 0 00.556 6.588A4 4 0 1012 18Z",
|
|
249
|
+
"M12 5a3 3 0 115.997.125 4 4 0 012.526 5.77 4 4 0 01-.556 6.588A4 4 0 1112 18Z",
|
|
250
|
+
"M15 13a4.5 4.5 0 01-3-4 4.5 4.5 0 01-3 4",
|
|
251
|
+
"M17.599 6.5a3 3 0 00.399-1.375",
|
|
252
|
+
"M6.003 5.125A3 3 0 006.401 6.5",
|
|
253
|
+
"M3.477 10.896a4 4 0 01.585-.396",
|
|
254
|
+
"M19.938 10.5a4 4 0 01.585.396",
|
|
255
|
+
"M6 18a4 4 0 01-1.967-.516",
|
|
256
|
+
"M19.967 17.484A4 4 0 0118 18"
|
|
257
|
+
]
|
|
258
|
+
});
|
|
259
|
+
function BriefcaseIcon({ size = 24, ...props }) {
|
|
260
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
261
|
+
/* @__PURE__ */ jsx("rect", { x: "2", y: "7", width: "20", height: "14", rx: "2", stroke: "currentColor" }),
|
|
262
|
+
/* @__PURE__ */ jsx(
|
|
263
|
+
"path",
|
|
264
|
+
{
|
|
265
|
+
d: "M16 21V5a2 2 0 00-2-2h-4a2 2 0 00-2 2v16",
|
|
266
|
+
stroke: "currentColor",
|
|
267
|
+
strokeLinecap: "round",
|
|
268
|
+
strokeLinejoin: "round"
|
|
269
|
+
}
|
|
270
|
+
)
|
|
271
|
+
] });
|
|
272
|
+
}
|
|
273
|
+
function Building2Icon({ size = 24, ...props }) {
|
|
274
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
275
|
+
/* @__PURE__ */ jsx(
|
|
276
|
+
"path",
|
|
277
|
+
{
|
|
278
|
+
d: "M6 22V4a2 2 0 012-2h8a2 2 0 012 2v18Z",
|
|
279
|
+
stroke: "currentColor",
|
|
280
|
+
strokeLinejoin: "round"
|
|
281
|
+
}
|
|
282
|
+
),
|
|
283
|
+
/* @__PURE__ */ jsx("path", { d: "M6 12H4a2 2 0 00-2 2v6a2 2 0 002 2h2", stroke: "currentColor", strokeLinejoin: "round" }),
|
|
284
|
+
/* @__PURE__ */ jsx(
|
|
285
|
+
"path",
|
|
286
|
+
{
|
|
287
|
+
d: "M18 9h2a2 2 0 012 2v9a2 2 0 01-2 2h-2",
|
|
288
|
+
stroke: "currentColor",
|
|
289
|
+
strokeLinejoin: "round"
|
|
290
|
+
}
|
|
291
|
+
),
|
|
292
|
+
/* @__PURE__ */ jsx("path", { d: "M10 6h4M10 10h4M10 14h4M10 18h4", stroke: "currentColor", strokeLinecap: "round" })
|
|
293
|
+
] });
|
|
294
|
+
}
|
|
295
|
+
function BuildingIcon({ size = 24, ...props }) {
|
|
296
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
297
|
+
"path",
|
|
298
|
+
{
|
|
299
|
+
d: "M6 22V4a2 2 0 012-2h8a2 2 0 012 2v18M2 22h20M10 6h4M10 10h4M10 14h4M10 18h4",
|
|
300
|
+
stroke: "currentColor",
|
|
301
|
+
strokeLinecap: "round",
|
|
302
|
+
strokeLinejoin: "round"
|
|
303
|
+
}
|
|
304
|
+
) });
|
|
305
|
+
}
|
|
306
|
+
function CalendarIcon({ size = 24, ...props }) {
|
|
307
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
308
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "4", width: "18", height: "18", rx: "2", stroke: "currentColor" }),
|
|
309
|
+
/* @__PURE__ */ jsx("path", { d: "M16 2v4M8 2v4M3 10h18", stroke: "currentColor", strokeLinecap: "round" })
|
|
310
|
+
] });
|
|
311
|
+
}
|
|
312
|
+
function ChatBubbleIcon({ size = 24, ...props }) {
|
|
313
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
314
|
+
"path",
|
|
315
|
+
{
|
|
316
|
+
d: "M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2v10z",
|
|
317
|
+
stroke: "currentColor",
|
|
318
|
+
strokeLinecap: "round",
|
|
319
|
+
strokeLinejoin: "round"
|
|
320
|
+
}
|
|
321
|
+
) });
|
|
322
|
+
}
|
|
323
|
+
function CheckCircle2Icon({ size = 24, ...props }) {
|
|
324
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
325
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10", stroke: "currentColor" }),
|
|
326
|
+
/* @__PURE__ */ jsx("path", { d: "m9 12 2 2 4-4", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
327
|
+
] });
|
|
328
|
+
}
|
|
329
|
+
function CheckCircleSolidIcon({ size = 24, ...props }) {
|
|
330
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
331
|
+
"path",
|
|
332
|
+
{
|
|
333
|
+
fillRule: "evenodd",
|
|
334
|
+
clipRule: "evenodd",
|
|
335
|
+
fill: "currentColor",
|
|
336
|
+
d: "M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Zm13.36-1.814a.75.75 0 0 0-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 0 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.14-.094l3.75-5.25Z"
|
|
337
|
+
}
|
|
338
|
+
) });
|
|
339
|
+
}
|
|
340
|
+
function CheckIcon({ size = 24, strokeWidth = 2, ...props }) {
|
|
341
|
+
return /* @__PURE__ */ jsx(Icon, { size, strokeWidth, ...props, children: /* @__PURE__ */ jsx(
|
|
342
|
+
"path",
|
|
343
|
+
{
|
|
344
|
+
d: "M20 6L9 17l-5-5",
|
|
345
|
+
stroke: "currentColor",
|
|
346
|
+
strokeLinecap: "round",
|
|
347
|
+
strokeLinejoin: "round"
|
|
348
|
+
}
|
|
349
|
+
) });
|
|
350
|
+
}
|
|
351
|
+
function ChevronDownIcon({ size = 24, ...props }) {
|
|
352
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx("path", { d: "m6 9 6 6 6-6", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }) });
|
|
353
|
+
}
|
|
354
|
+
function ChevronLeftIcon({ size = 24, ...props }) {
|
|
355
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx("path", { d: "m15 18-6-6 6-6", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }) });
|
|
356
|
+
}
|
|
357
|
+
function ChevronRightIcon({ size = 24, ...props }) {
|
|
358
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx("path", { d: "m9 18 6-6-6-6", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }) });
|
|
359
|
+
}
|
|
360
|
+
function ChevronUpIcon({ size = 24, ...props }) {
|
|
361
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx("path", { d: "m18 15-6-6-6 6", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }) });
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
// src/icons/chevrons-down-up-icon.tsx
|
|
365
|
+
var ChevronsDownUpIcon = /* @__PURE__ */ createIcon({
|
|
366
|
+
name: "ChevronsDownUpIcon",
|
|
367
|
+
paths: "m7 20 5-5 5 5M7 4l5 5 5-5"
|
|
368
|
+
});
|
|
369
|
+
function ChevronsUpDownIcon({ size = 24, ...props }) {
|
|
370
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
371
|
+
"path",
|
|
372
|
+
{
|
|
373
|
+
d: "m7 15 5 5 5-5M7 9l5-5 5 5",
|
|
374
|
+
stroke: "currentColor",
|
|
375
|
+
strokeLinecap: "round",
|
|
376
|
+
strokeLinejoin: "round"
|
|
377
|
+
}
|
|
378
|
+
) });
|
|
379
|
+
}
|
|
380
|
+
function CircleDotIcon({ size = 24, ...props }) {
|
|
381
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
382
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10", stroke: "currentColor" }),
|
|
383
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "1", fill: "currentColor" })
|
|
384
|
+
] });
|
|
385
|
+
}
|
|
386
|
+
function CircleIcon({ size = 24, ...props }) {
|
|
387
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10", stroke: "currentColor" }) });
|
|
388
|
+
}
|
|
389
|
+
function ClipboardCheckIcon({ size = 24, ...props }) {
|
|
390
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
391
|
+
/* @__PURE__ */ jsx(
|
|
392
|
+
"path",
|
|
393
|
+
{
|
|
394
|
+
d: "M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2",
|
|
395
|
+
stroke: "currentColor",
|
|
396
|
+
strokeLinecap: "round",
|
|
397
|
+
strokeLinejoin: "round"
|
|
398
|
+
}
|
|
399
|
+
),
|
|
400
|
+
/* @__PURE__ */ jsx("rect", { x: "9", y: "2", width: "6", height: "4", rx: "1", stroke: "currentColor" }),
|
|
401
|
+
/* @__PURE__ */ jsx("path", { d: "M9 14l2 2 4-4", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
402
|
+
] });
|
|
403
|
+
}
|
|
404
|
+
function ClockIcon({ size = 24, ...props }) {
|
|
405
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
406
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10", stroke: "currentColor" }),
|
|
407
|
+
/* @__PURE__ */ jsx("path", { d: "M12 6v6h4.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
408
|
+
] });
|
|
409
|
+
}
|
|
410
|
+
function XIcon({ size = 24, strokeWidth = 2, ...props }) {
|
|
411
|
+
return /* @__PURE__ */ jsx(Icon, { size, strokeWidth, ...props, children: /* @__PURE__ */ jsx("path", { d: "M18 6L6 18M6 6l12 12", stroke: "currentColor", strokeLinecap: "round" }) });
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
// src/icons/close-icon.tsx
|
|
415
|
+
var CloseIcon = XIcon;
|
|
416
|
+
function CommandIcon({ size = 24, ...props }) {
|
|
417
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
418
|
+
"path",
|
|
419
|
+
{
|
|
420
|
+
d: "M18 3a3 3 0 00-3 3v12a3 3 0 003 3 3 3 0 003-3 3 3 0 00-3-3H6a3 3 0 00-3 3 3 3 0 003 3 3 3 0 003-3V6a3 3 0 00-3-3 3 3 0 00-3 3 3 3 0 003 3h12a3 3 0 003-3 3 3 0 00-3-3z",
|
|
421
|
+
stroke: "currentColor",
|
|
422
|
+
strokeLinejoin: "round"
|
|
423
|
+
}
|
|
424
|
+
) });
|
|
425
|
+
}
|
|
426
|
+
function CopyIcon({ size = 24, ...props }) {
|
|
427
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
428
|
+
/* @__PURE__ */ jsx("rect", { x: "9", y: "9", width: "13", height: "13", rx: "2", stroke: "currentColor", fill: "none" }),
|
|
429
|
+
/* @__PURE__ */ jsx(
|
|
430
|
+
"path",
|
|
431
|
+
{
|
|
432
|
+
d: "M5 15H4a2 2 0 01-2-2V4a2 2 0 012-2h9a2 2 0 012 2v1",
|
|
433
|
+
stroke: "currentColor",
|
|
434
|
+
fill: "none"
|
|
435
|
+
}
|
|
436
|
+
)
|
|
437
|
+
] });
|
|
438
|
+
}
|
|
439
|
+
function CornerDownLeftIcon({ size = 24, ...props }) {
|
|
440
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
441
|
+
"path",
|
|
442
|
+
{
|
|
443
|
+
d: "m9 10-5 5 5 5M20 4v7a4 4 0 01-4 4H4",
|
|
444
|
+
stroke: "currentColor",
|
|
445
|
+
strokeLinecap: "round",
|
|
446
|
+
strokeLinejoin: "round"
|
|
447
|
+
}
|
|
448
|
+
) });
|
|
449
|
+
}
|
|
450
|
+
function CreditCardIcon({ size = 24, ...props }) {
|
|
451
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
452
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "5", width: "18", height: "14", rx: "2", stroke: "currentColor" }),
|
|
453
|
+
/* @__PURE__ */ jsx("path", { d: "M3 10h18", stroke: "currentColor", strokeLinecap: "round" }),
|
|
454
|
+
/* @__PURE__ */ jsx("path", { d: "M7 15h3", stroke: "currentColor", strokeLinecap: "round" })
|
|
455
|
+
] });
|
|
456
|
+
}
|
|
457
|
+
function DocumentIcon({ size = 24, ...props }) {
|
|
458
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
459
|
+
/* @__PURE__ */ jsx(
|
|
460
|
+
"path",
|
|
461
|
+
{
|
|
462
|
+
d: "M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8l-6-6z",
|
|
463
|
+
fill: "currentColor",
|
|
464
|
+
opacity: "0.2"
|
|
465
|
+
}
|
|
466
|
+
),
|
|
467
|
+
/* @__PURE__ */ jsx(
|
|
468
|
+
"path",
|
|
469
|
+
{
|
|
470
|
+
d: "M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8l-6-6z",
|
|
471
|
+
stroke: "currentColor",
|
|
472
|
+
strokeLinecap: "round",
|
|
473
|
+
strokeLinejoin: "round"
|
|
474
|
+
}
|
|
475
|
+
),
|
|
476
|
+
/* @__PURE__ */ jsx(
|
|
477
|
+
"path",
|
|
478
|
+
{
|
|
479
|
+
d: "M14 2v6h6M8 13h8M8 17h8M8 9h2",
|
|
480
|
+
stroke: "currentColor",
|
|
481
|
+
strokeLinecap: "round",
|
|
482
|
+
strokeLinejoin: "round"
|
|
483
|
+
}
|
|
484
|
+
)
|
|
485
|
+
] });
|
|
486
|
+
}
|
|
487
|
+
function DollarSignIcon({ size = 24, ...props }) {
|
|
488
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
489
|
+
"path",
|
|
490
|
+
{
|
|
491
|
+
d: "M12 2v20M17 5H9.5a3.5 3.5 0 000 7h5a3.5 3.5 0 010 7H6",
|
|
492
|
+
stroke: "currentColor",
|
|
493
|
+
strokeLinecap: "round",
|
|
494
|
+
strokeLinejoin: "round"
|
|
495
|
+
}
|
|
496
|
+
) });
|
|
497
|
+
}
|
|
498
|
+
function DownloadIcon({ size = 24, ...props }) {
|
|
499
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
500
|
+
"path",
|
|
501
|
+
{
|
|
502
|
+
d: "M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4M7 10l5 5 5-5M12 15V3",
|
|
503
|
+
stroke: "currentColor",
|
|
504
|
+
strokeLinecap: "round",
|
|
505
|
+
strokeLinejoin: "round"
|
|
506
|
+
}
|
|
507
|
+
) });
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
// src/icons/external-link-icon.tsx
|
|
511
|
+
var ExternalLinkIcon = /* @__PURE__ */ createIcon({
|
|
512
|
+
name: "ExternalLinkIcon",
|
|
513
|
+
paths: ["M15 3h6v6", "M10 14 21 3", "M18 13v6a2 2 0 01-2 2H5a2 2 0 01-2-2V8a2 2 0 012-2h6"]
|
|
514
|
+
});
|
|
515
|
+
function ExtractIcon({ size = 16, className, ...props }) {
|
|
516
|
+
const uid = useId();
|
|
517
|
+
const gradId = `extract-grad-${uid}`;
|
|
518
|
+
const clipId = `extract-clip-${uid}`;
|
|
519
|
+
const px = iconSizePx(size);
|
|
520
|
+
return /* @__PURE__ */ jsxs(
|
|
521
|
+
"svg",
|
|
522
|
+
{
|
|
523
|
+
width: px,
|
|
524
|
+
height: px * 12 / 16,
|
|
525
|
+
viewBox: "0 0 16 12",
|
|
526
|
+
fill: "none",
|
|
527
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
528
|
+
className: cn("ds:shrink-0", className),
|
|
529
|
+
"aria-hidden": "true",
|
|
530
|
+
...props,
|
|
531
|
+
children: [
|
|
532
|
+
/* @__PURE__ */ jsx("g", { clipPath: `url(#${clipId})`, children: /* @__PURE__ */ jsx(
|
|
533
|
+
"path",
|
|
534
|
+
{
|
|
535
|
+
d: "M6.24553 5.34293C5.91553 5.23294 5.91553 4.76699 6.24553 4.657L8.18254 4.01207C8.60834 3.87011 8.99522 3.63094 9.31252 3.3135C9.62982 2.99607 9.8688 2.6091 10.0105 2.18327L10.6555 0.247473C10.7655 -0.0824911 11.2315 -0.0824912 11.3415 0.247473L11.9866 2.18427C12.1285 2.61002 12.3677 2.99686 12.6852 3.31412C13.0027 3.63139 13.3897 3.87035 13.8156 4.01207L15.7516 4.657C15.8238 4.68071 15.8868 4.72664 15.9314 4.78823C15.976 4.84982 16 4.92392 16 4.99996C16 5.07601 15.976 5.15011 15.9314 5.2117C15.8868 5.27329 15.8238 5.31921 15.7516 5.34293L13.8146 5.98786C13.3889 6.12971 13.0021 6.36874 12.6848 6.68599C12.3675 7.00324 12.1284 7.39001 11.9866 7.81566L11.3415 9.75245C11.3178 9.82471 11.2719 9.88763 11.2103 9.93223C11.1487 9.97684 11.0746 10.0009 10.9985 10.0009C10.9225 10.0009 10.8484 9.97684 10.7868 9.93223C10.7252 9.88763 10.6793 9.82471 10.6555 9.75245L10.0105 7.81566C9.86867 7.39001 9.62962 7.00324 9.31233 6.68599C8.99505 6.36874 8.60823 6.12971 8.18254 5.98786L6.24553 5.34293ZM1.14651 9.20551C1.1032 9.19117 1.06552 9.16355 1.03881 9.12658C1.0121 9.0896 0.99772 9.04515 0.99772 8.99954C0.99772 8.95392 1.0121 8.90947 1.03881 8.87249C1.06552 8.83552 1.1032 8.8079 1.14651 8.79356L2.30851 8.4066C2.82651 8.23362 3.23252 7.82766 3.40552 7.30972L3.79252 6.14784C3.80686 6.10454 3.83448 6.06686 3.87146 6.04015C3.90844 6.01345 3.9529 5.99907 3.99852 5.99907C4.04414 5.99907 4.0886 6.01345 4.12558 6.04015C4.16256 6.06686 4.19018 6.10454 4.20452 6.14784L4.59152 7.30972C4.67664 7.56516 4.82009 7.79728 5.0105 7.98767C5.20091 8.17806 5.43305 8.32149 5.68853 8.4066L6.85053 8.79356C6.89384 8.8079 6.93152 8.83551 6.95823 8.87249C6.98494 8.90947 6.99932 8.95392 6.99932 8.99954C6.99932 9.04515 6.98494 9.0896 6.95823 9.12658C6.93152 9.16355 6.89384 9.19117 6.85053 9.20551L5.68853 9.59247C5.43305 9.67758 5.20091 9.82101 5.0105 10.0114C4.82009 10.2018 4.67664 10.4339 4.59152 10.6894L4.20452 11.8512C4.19018 11.8945 4.16256 11.9322 4.12558 11.9589C4.0886 11.9856 4.04414 12 3.99852 12C3.9529 12 3.90844 11.9856 3.87146 11.9589C3.83448 11.9322 3.80686 11.8945 3.79252 11.8512L3.40552 10.6894C3.3204 10.4339 3.17695 10.2018 2.98654 10.0114C2.79613 9.82101 2.56399 9.67758 2.30851 9.59247L1.14651 9.20551ZM0.097503 2.13727C0.0690292 2.1274 0.0443387 2.1089 0.0268643 2.08435C0.00938996 2.0598 1.317e-09 2.03042 0 2.00029C-1.318e-09 1.97015 0.00938995 1.94077 0.0268643 1.91622C0.0443387 1.89167 0.0690292 1.87317 0.097503 1.8633L0.871506 1.60533C1.21751 1.49034 1.48851 1.21937 1.60351 0.873408L1.86151 0.0994903C1.87138 0.0710193 1.88988 0.0463306 1.91443 0.0288584C1.93899 0.0113861 1.96837 0.00199815 1.99851 0.00199814C2.02865 0.00199814 2.05803 0.0113861 2.08259 0.0288583C2.10714 0.0463306 2.12564 0.0710193 2.13551 0.0994903L2.39351 0.873408C2.45024 1.0439 2.54593 1.19882 2.673 1.32588C2.80006 1.45293 2.955 1.54861 3.12552 1.60533L3.89952 1.8633C3.92799 1.87317 3.95268 1.89167 3.97016 1.91622C3.98763 1.94077 3.99702 1.97015 3.99702 2.00029C3.99702 2.03042 3.98763 2.0598 3.97016 2.08435C3.95268 2.1089 3.92799 2.1274 3.89952 2.13727L3.12552 2.39524C2.955 2.45196 2.80006 2.54764 2.673 2.6747C2.54593 2.80175 2.45024 2.95667 2.39351 3.12717L2.13551 3.90008C2.12564 3.92855 2.10714 3.95324 2.08259 3.97071C2.05804 3.98819 2.02865 3.99757 1.99851 3.99757C1.96837 3.99757 1.93899 3.98819 1.91443 3.97071C1.88988 3.95324 1.87138 3.92855 1.86151 3.90008L1.60351 3.12617C1.48851 2.7802 1.21751 2.50923 0.871506 2.39424L0.097503 2.13727Z",
|
|
536
|
+
fill: `url(#${gradId})`
|
|
537
|
+
}
|
|
538
|
+
) }),
|
|
539
|
+
/* @__PURE__ */ jsxs("defs", { children: [
|
|
540
|
+
/* @__PURE__ */ jsxs(
|
|
541
|
+
"linearGradient",
|
|
542
|
+
{
|
|
543
|
+
id: gradId,
|
|
544
|
+
x1: "0.265576",
|
|
545
|
+
y1: "0.856805",
|
|
546
|
+
x2: "13.5",
|
|
547
|
+
y2: "12",
|
|
548
|
+
gradientUnits: "userSpaceOnUse",
|
|
549
|
+
children: [
|
|
550
|
+
/* @__PURE__ */ jsx("stop", { stopColor: "#9E32FF" }),
|
|
551
|
+
/* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "#1BB6FF" })
|
|
552
|
+
]
|
|
553
|
+
}
|
|
554
|
+
),
|
|
555
|
+
/* @__PURE__ */ jsx("clipPath", { id: clipId, children: /* @__PURE__ */ jsx("rect", { width: "16", height: "12", fill: "white" }) })
|
|
556
|
+
] })
|
|
557
|
+
]
|
|
558
|
+
}
|
|
559
|
+
);
|
|
560
|
+
}
|
|
561
|
+
function EyeIcon({ size = 24, ...props }) {
|
|
562
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
563
|
+
/* @__PURE__ */ jsx(
|
|
564
|
+
"path",
|
|
565
|
+
{
|
|
566
|
+
d: "M2 12s3-7 10-7 10 7 10 7-3 7-10 7S2 12 2 12z",
|
|
567
|
+
stroke: "currentColor",
|
|
568
|
+
strokeLinecap: "round",
|
|
569
|
+
strokeLinejoin: "round"
|
|
570
|
+
}
|
|
571
|
+
),
|
|
572
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "3", stroke: "currentColor" })
|
|
573
|
+
] });
|
|
574
|
+
}
|
|
575
|
+
function EyeOffIcon({ size = 24, ...props }) {
|
|
576
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
577
|
+
"path",
|
|
578
|
+
{
|
|
579
|
+
d: "M9.88 9.88a3 3 0 104.24 4.24M10.73 5.08A10.43 10.43 0 0112 5c7 0 10 7 10 7a13.16 13.16 0 01-1.67 2.68M6.61 6.61A13.526 13.526 0 002 12s3 7 10 7a9.74 9.74 0 005.39-1.61M2 2l20 20",
|
|
580
|
+
stroke: "currentColor",
|
|
581
|
+
strokeLinecap: "round",
|
|
582
|
+
strokeLinejoin: "round"
|
|
583
|
+
}
|
|
584
|
+
) });
|
|
585
|
+
}
|
|
586
|
+
function FileIcon({ size = 24, ...props }) {
|
|
587
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
588
|
+
/* @__PURE__ */ jsx(
|
|
589
|
+
"path",
|
|
590
|
+
{
|
|
591
|
+
d: "M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8l-6-6z",
|
|
592
|
+
stroke: "currentColor",
|
|
593
|
+
strokeLinecap: "round",
|
|
594
|
+
strokeLinejoin: "round"
|
|
595
|
+
}
|
|
596
|
+
),
|
|
597
|
+
/* @__PURE__ */ jsx("path", { d: "M14 2v6h6", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
598
|
+
] });
|
|
599
|
+
}
|
|
600
|
+
function FileReturnIcon({ size = 24, ...props }) {
|
|
601
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
602
|
+
/* @__PURE__ */ jsx(
|
|
603
|
+
"path",
|
|
604
|
+
{
|
|
605
|
+
d: "M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8l-6-6z",
|
|
606
|
+
stroke: "currentColor",
|
|
607
|
+
strokeLinecap: "round",
|
|
608
|
+
strokeLinejoin: "round"
|
|
609
|
+
}
|
|
610
|
+
),
|
|
611
|
+
/* @__PURE__ */ jsx(
|
|
612
|
+
"path",
|
|
613
|
+
{
|
|
614
|
+
d: "M14 2v6h6M9 15l3-3 3 3M12 12v6",
|
|
615
|
+
stroke: "currentColor",
|
|
616
|
+
strokeLinecap: "round",
|
|
617
|
+
strokeLinejoin: "round"
|
|
618
|
+
}
|
|
619
|
+
)
|
|
620
|
+
] });
|
|
621
|
+
}
|
|
622
|
+
function FileTextIcon({ size = 24, ...props }) {
|
|
623
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
624
|
+
/* @__PURE__ */ jsx(
|
|
625
|
+
"path",
|
|
626
|
+
{
|
|
627
|
+
d: "M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8l-6-6z",
|
|
628
|
+
stroke: "currentColor",
|
|
629
|
+
strokeLinecap: "round",
|
|
630
|
+
strokeLinejoin: "round"
|
|
631
|
+
}
|
|
632
|
+
),
|
|
633
|
+
/* @__PURE__ */ jsx(
|
|
634
|
+
"path",
|
|
635
|
+
{
|
|
636
|
+
d: "M14 2v6h6M16 13H8M16 17H8M10 9H8",
|
|
637
|
+
stroke: "currentColor",
|
|
638
|
+
strokeLinecap: "round",
|
|
639
|
+
strokeLinejoin: "round"
|
|
640
|
+
}
|
|
641
|
+
)
|
|
642
|
+
] });
|
|
643
|
+
}
|
|
644
|
+
function FilterIcon({ size = 24, ...props }) {
|
|
645
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
646
|
+
"path",
|
|
647
|
+
{
|
|
648
|
+
d: "M3 4h18l-7 8v6l-4 2v-8L3 4z",
|
|
649
|
+
stroke: "currentColor",
|
|
650
|
+
strokeLinecap: "round",
|
|
651
|
+
strokeLinejoin: "round"
|
|
652
|
+
}
|
|
653
|
+
) });
|
|
654
|
+
}
|
|
655
|
+
function FlagIcon({ size = 24, ...props }) {
|
|
656
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
657
|
+
"path",
|
|
658
|
+
{
|
|
659
|
+
d: "M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1zM4 22v-7",
|
|
660
|
+
stroke: "currentColor",
|
|
661
|
+
strokeLinecap: "round",
|
|
662
|
+
strokeLinejoin: "round"
|
|
663
|
+
}
|
|
664
|
+
) });
|
|
665
|
+
}
|
|
666
|
+
function FolderClosedIcon({ size = 24, ...props }) {
|
|
667
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
668
|
+
"path",
|
|
669
|
+
{
|
|
670
|
+
d: "M20 20a2 2 0 002-2V8a2 2 0 00-2-2h-7.9a2 2 0 01-1.69-.9L9.6 3.9A2 2 0 007.93 3H4a2 2 0 00-2 2v13a2 2 0 002 2h16z",
|
|
671
|
+
stroke: "currentColor",
|
|
672
|
+
strokeLinecap: "round",
|
|
673
|
+
strokeLinejoin: "round"
|
|
674
|
+
}
|
|
675
|
+
) });
|
|
676
|
+
}
|
|
677
|
+
function FolderOpenIcon({ size = 24, ...props }) {
|
|
678
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
679
|
+
"path",
|
|
680
|
+
{
|
|
681
|
+
d: "M5 19a2 2 0 01-2-2V7a2 2 0 012-2h4l2 2h4a2 2 0 012 2v1M5 19h14a2 2 0 002-2l-2.5-7a2 2 0 00-2-1.5H5.5A2 2 0 003.5 10L2 17a2 2 0 002 2z",
|
|
682
|
+
stroke: "currentColor",
|
|
683
|
+
strokeLinecap: "round",
|
|
684
|
+
strokeLinejoin: "round"
|
|
685
|
+
}
|
|
686
|
+
) });
|
|
687
|
+
}
|
|
688
|
+
function FolderPlusIcon({ size = 24, ...props }) {
|
|
689
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
690
|
+
/* @__PURE__ */ jsx(
|
|
691
|
+
"path",
|
|
692
|
+
{
|
|
693
|
+
d: "M20 20a2 2 0 002-2V8a2 2 0 00-2-2h-7.9a2 2 0 01-1.69-.9L9.6 3.9A2 2 0 007.93 3H4a2 2 0 00-2 2v13a2 2 0 002 2h16z",
|
|
694
|
+
stroke: "currentColor",
|
|
695
|
+
strokeLinecap: "round",
|
|
696
|
+
strokeLinejoin: "round"
|
|
697
|
+
}
|
|
698
|
+
),
|
|
699
|
+
/* @__PURE__ */ jsx(
|
|
700
|
+
"path",
|
|
701
|
+
{
|
|
702
|
+
d: "M12 10v6M9 13h6",
|
|
703
|
+
stroke: "currentColor",
|
|
704
|
+
strokeLinecap: "round",
|
|
705
|
+
strokeLinejoin: "round"
|
|
706
|
+
}
|
|
707
|
+
)
|
|
708
|
+
] });
|
|
709
|
+
}
|
|
710
|
+
function FolderUpIcon({ size = 24, ...props }) {
|
|
711
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
712
|
+
"path",
|
|
713
|
+
{
|
|
714
|
+
d: "M20 20a2 2 0 002-2V8a2 2 0 00-2-2h-7.9a2 2 0 01-1.69-.9L9.6 3.9A2 2 0 007.93 3H4a2 2 0 00-2 2v13a2 2 0 002 2ZM12 10v6M9 13l3-3 3 3",
|
|
715
|
+
stroke: "currentColor",
|
|
716
|
+
strokeLinecap: "round",
|
|
717
|
+
strokeLinejoin: "round"
|
|
718
|
+
}
|
|
719
|
+
) });
|
|
720
|
+
}
|
|
721
|
+
function GlobeIcon({ size = 24, ...props }) {
|
|
722
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
723
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10", stroke: "currentColor" }),
|
|
724
|
+
/* @__PURE__ */ jsx(
|
|
725
|
+
"path",
|
|
726
|
+
{
|
|
727
|
+
d: "M2 12h20M12 2a15.3 15.3 0 014 10 15.3 15.3 0 01-4 10 15.3 15.3 0 01-4-10 15.3 15.3 0 014-10z",
|
|
728
|
+
stroke: "currentColor",
|
|
729
|
+
strokeLinecap: "round",
|
|
730
|
+
strokeLinejoin: "round"
|
|
731
|
+
}
|
|
732
|
+
)
|
|
733
|
+
] });
|
|
734
|
+
}
|
|
735
|
+
function GoogleBrandIcon({ size = 24, ...props }) {
|
|
736
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
737
|
+
/* @__PURE__ */ jsx(
|
|
738
|
+
"path",
|
|
739
|
+
{
|
|
740
|
+
fill: "#4285F4",
|
|
741
|
+
d: "M22 12.27c0-.71-.06-1.4-.18-2.07H12v3.93h5.59a4.78 4.78 0 01-2.07 3.14v2.6h3.34c1.95-1.8 3.08-4.45 3.08-7.6z"
|
|
742
|
+
}
|
|
743
|
+
),
|
|
744
|
+
/* @__PURE__ */ jsx(
|
|
745
|
+
"path",
|
|
746
|
+
{
|
|
747
|
+
fill: "#34A853",
|
|
748
|
+
d: "M12 22.5c2.81 0 5.16-.93 6.88-2.52l-3.34-2.6c-.93.62-2.11.99-3.54.99-2.72 0-5.03-1.84-5.86-4.31H2.69v2.69A10.5 10.5 0 0012 22.5z"
|
|
749
|
+
}
|
|
750
|
+
),
|
|
751
|
+
/* @__PURE__ */ jsx(
|
|
752
|
+
"path",
|
|
753
|
+
{
|
|
754
|
+
fill: "#FBBC05",
|
|
755
|
+
d: "M6.14 14.06A6.3 6.3 0 015.8 12c0-.71.12-1.4.34-2.06V7.25H2.69A10.5 10.5 0 001.5 12c0 1.7.41 3.3 1.19 4.75l3.45-2.69z"
|
|
756
|
+
}
|
|
757
|
+
),
|
|
758
|
+
/* @__PURE__ */ jsx(
|
|
759
|
+
"path",
|
|
760
|
+
{
|
|
761
|
+
fill: "#EA4335",
|
|
762
|
+
d: "M12 5.63c1.53 0 2.91.53 4 1.56l3-3C17.16 2.47 14.8 1.5 12 1.5A10.5 10.5 0 002.69 7.25l3.45 2.69C7 7.47 9.28 5.63 12 5.63z"
|
|
763
|
+
}
|
|
764
|
+
)
|
|
765
|
+
] });
|
|
766
|
+
}
|
|
767
|
+
var GripVerticalIcon = /* @__PURE__ */ createIcon({
|
|
768
|
+
name: "GripVerticalIcon",
|
|
769
|
+
paths: /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
770
|
+
/* @__PURE__ */ jsx("circle", { cx: "9", cy: "5", r: "1", stroke: "currentColor" }),
|
|
771
|
+
/* @__PURE__ */ jsx("circle", { cx: "9", cy: "12", r: "1", stroke: "currentColor" }),
|
|
772
|
+
/* @__PURE__ */ jsx("circle", { cx: "9", cy: "19", r: "1", stroke: "currentColor" }),
|
|
773
|
+
/* @__PURE__ */ jsx("circle", { cx: "15", cy: "5", r: "1", stroke: "currentColor" }),
|
|
774
|
+
/* @__PURE__ */ jsx("circle", { cx: "15", cy: "12", r: "1", stroke: "currentColor" }),
|
|
775
|
+
/* @__PURE__ */ jsx("circle", { cx: "15", cy: "19", r: "1", stroke: "currentColor" })
|
|
776
|
+
] })
|
|
777
|
+
});
|
|
778
|
+
function HelpCircleIcon({ size = 24, ...props }) {
|
|
779
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
780
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10", stroke: "currentColor" }),
|
|
781
|
+
/* @__PURE__ */ jsx(
|
|
782
|
+
"path",
|
|
783
|
+
{
|
|
784
|
+
d: "M9.09 9a3 3 0 015.83 1c0 2-3 3-3 3M12 17h.01",
|
|
785
|
+
stroke: "currentColor",
|
|
786
|
+
strokeLinecap: "round",
|
|
787
|
+
strokeLinejoin: "round"
|
|
788
|
+
}
|
|
789
|
+
)
|
|
790
|
+
] });
|
|
791
|
+
}
|
|
792
|
+
function HistoryIcon({ size = 24, ...props }) {
|
|
793
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
794
|
+
"path",
|
|
795
|
+
{
|
|
796
|
+
d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8M3 3v5h5M12 7v5l4 2",
|
|
797
|
+
stroke: "currentColor",
|
|
798
|
+
strokeLinecap: "round",
|
|
799
|
+
strokeLinejoin: "round"
|
|
800
|
+
}
|
|
801
|
+
) });
|
|
802
|
+
}
|
|
803
|
+
function HomeIcon({ size = 24, ...props }) {
|
|
804
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
805
|
+
/* @__PURE__ */ jsx(
|
|
806
|
+
"path",
|
|
807
|
+
{
|
|
808
|
+
d: "m3 9 9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z",
|
|
809
|
+
stroke: "currentColor",
|
|
810
|
+
strokeLinecap: "round",
|
|
811
|
+
strokeLinejoin: "round"
|
|
812
|
+
}
|
|
813
|
+
),
|
|
814
|
+
/* @__PURE__ */ jsx("path", { d: "M9 22V12h6v10", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
815
|
+
] });
|
|
816
|
+
}
|
|
817
|
+
function InboxIcon({ size = 24, ...props }) {
|
|
818
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
819
|
+
/* @__PURE__ */ jsx(
|
|
820
|
+
"path",
|
|
821
|
+
{
|
|
822
|
+
d: "M22 12h-6l-2 3h-4l-2-3H2",
|
|
823
|
+
stroke: "currentColor",
|
|
824
|
+
strokeLinecap: "round",
|
|
825
|
+
strokeLinejoin: "round"
|
|
826
|
+
}
|
|
827
|
+
),
|
|
828
|
+
/* @__PURE__ */ jsx(
|
|
829
|
+
"path",
|
|
830
|
+
{
|
|
831
|
+
d: "M5.45 5.11 2 12v6a2 2 0 002 2h16a2 2 0 002-2v-6l-3.45-6.89A2 2 0 0016.76 4H7.24a2 2 0 00-1.79 1.11Z",
|
|
832
|
+
stroke: "currentColor",
|
|
833
|
+
strokeLinecap: "round",
|
|
834
|
+
strokeLinejoin: "round"
|
|
835
|
+
}
|
|
836
|
+
)
|
|
837
|
+
] });
|
|
838
|
+
}
|
|
839
|
+
function InfoCircleSolidIcon({ size = 24, ...props }) {
|
|
840
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
841
|
+
"path",
|
|
842
|
+
{
|
|
843
|
+
fillRule: "evenodd",
|
|
844
|
+
clipRule: "evenodd",
|
|
845
|
+
fill: "currentColor",
|
|
846
|
+
d: "M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Zm8.706-1.442c1.146-.573 2.437.463 2.126 1.706l-.709 2.836.042-.02a.75.75 0 0 1 .67 1.342l-.04.022c-1.147.573-2.438-.463-2.127-1.706l.71-2.836-.042.02a.75.75 0 1 1-.671-1.341l.041-.022ZM12 9a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Z"
|
|
847
|
+
}
|
|
848
|
+
) });
|
|
849
|
+
}
|
|
850
|
+
function InfoIcon({ size = 24, ...props }) {
|
|
851
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
852
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10", stroke: "currentColor" }),
|
|
853
|
+
/* @__PURE__ */ jsx(
|
|
854
|
+
"path",
|
|
855
|
+
{
|
|
856
|
+
d: "M12 16v-4M12 8h.01",
|
|
857
|
+
stroke: "currentColor",
|
|
858
|
+
strokeLinecap: "round",
|
|
859
|
+
strokeLinejoin: "round"
|
|
860
|
+
}
|
|
861
|
+
)
|
|
862
|
+
] });
|
|
863
|
+
}
|
|
864
|
+
function ItalicIcon({ size = 24, ...props }) {
|
|
865
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
866
|
+
"path",
|
|
867
|
+
{
|
|
868
|
+
d: "M19 4h-9M14 20H5M15 4L9 20",
|
|
869
|
+
stroke: "currentColor",
|
|
870
|
+
strokeLinecap: "round",
|
|
871
|
+
strokeLinejoin: "round"
|
|
872
|
+
}
|
|
873
|
+
) });
|
|
874
|
+
}
|
|
875
|
+
function KanbanIcon({ size = 24, ...props }) {
|
|
876
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
877
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "3", width: "5", height: "18", rx: "1", stroke: "currentColor" }),
|
|
878
|
+
/* @__PURE__ */ jsx("rect", { x: "10", y: "3", width: "5", height: "18", rx: "1", stroke: "currentColor" }),
|
|
879
|
+
/* @__PURE__ */ jsx("rect", { x: "17", y: "3", width: "5", height: "18", rx: "1", stroke: "currentColor" })
|
|
880
|
+
] });
|
|
881
|
+
}
|
|
882
|
+
function KeyIcon({ size = 24, ...props }) {
|
|
883
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
884
|
+
"path",
|
|
885
|
+
{
|
|
886
|
+
d: "M21 2l-2 2m-7.61 7.61a5.5 5.5 0 11-7.778 7.778 5.5 5.5 0 017.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4",
|
|
887
|
+
stroke: "currentColor",
|
|
888
|
+
strokeLinecap: "round",
|
|
889
|
+
strokeLinejoin: "round"
|
|
890
|
+
}
|
|
891
|
+
) });
|
|
892
|
+
}
|
|
893
|
+
function LandmarkIcon({ size = 24, ...props }) {
|
|
894
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
895
|
+
"path",
|
|
896
|
+
{
|
|
897
|
+
d: "M3 22h18M6 18v-7M10 18v-7M14 18v-7M18 18v-7M12 2 20 7 4 7Z",
|
|
898
|
+
stroke: "currentColor",
|
|
899
|
+
strokeLinecap: "round",
|
|
900
|
+
strokeLinejoin: "round"
|
|
901
|
+
}
|
|
902
|
+
) });
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
// src/icons/layers-icon.tsx
|
|
906
|
+
var LayersIcon = /* @__PURE__ */ createIcon({
|
|
907
|
+
name: "LayersIcon",
|
|
908
|
+
paths: [
|
|
909
|
+
"m12.83 2.18a2 2 0 00-1.66 0L2.6 6.08a1 1 0 000 1.83l8.58 3.91a2 2 0 001.66 0l8.58-3.9a1 1 0 000-1.83Z",
|
|
910
|
+
"m22 17.65-9.17 4.16a2 2 0 01-1.66 0L2 17.65",
|
|
911
|
+
"m22 12.65-9.17 4.16a2 2 0 01-1.66 0L2 12.65"
|
|
912
|
+
]
|
|
913
|
+
});
|
|
914
|
+
function LayoutDashboardIcon({ size = 24, ...props }) {
|
|
915
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
916
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "3", width: "7", height: "9", rx: "1", stroke: "currentColor" }),
|
|
917
|
+
/* @__PURE__ */ jsx("rect", { x: "14", y: "3", width: "7", height: "5", rx: "1", stroke: "currentColor" }),
|
|
918
|
+
/* @__PURE__ */ jsx("rect", { x: "14", y: "12", width: "7", height: "9", rx: "1", stroke: "currentColor" }),
|
|
919
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "16", width: "7", height: "5", rx: "1", stroke: "currentColor" })
|
|
920
|
+
] });
|
|
921
|
+
}
|
|
922
|
+
function LayoutGridIcon({ size = 24, ...props }) {
|
|
923
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
924
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "3", width: "7", height: "7", rx: "1", stroke: "currentColor" }),
|
|
925
|
+
/* @__PURE__ */ jsx("rect", { x: "14", y: "3", width: "7", height: "7", rx: "1", stroke: "currentColor" }),
|
|
926
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "14", width: "7", height: "7", rx: "1", stroke: "currentColor" }),
|
|
927
|
+
/* @__PURE__ */ jsx("rect", { x: "14", y: "14", width: "7", height: "7", rx: "1", stroke: "currentColor" })
|
|
928
|
+
] });
|
|
929
|
+
}
|
|
930
|
+
function LayoutListIcon({ size = 24, ...props }) {
|
|
931
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
932
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "3", width: "7", height: "7", rx: "1", stroke: "currentColor" }),
|
|
933
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "14", width: "7", height: "7", rx: "1", stroke: "currentColor" }),
|
|
934
|
+
/* @__PURE__ */ jsx("path", { d: "M14 4h7M14 9h7M14 15h7M14 20h7", stroke: "currentColor", strokeLinecap: "round" })
|
|
935
|
+
] });
|
|
936
|
+
}
|
|
937
|
+
function LightningIcon({ size = 24, ...props }) {
|
|
938
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
939
|
+
"path",
|
|
940
|
+
{
|
|
941
|
+
d: "M13 2L3 14h9l-1 8 10-12h-9l1-8z",
|
|
942
|
+
stroke: "currentColor",
|
|
943
|
+
strokeLinecap: "round",
|
|
944
|
+
strokeLinejoin: "round"
|
|
945
|
+
}
|
|
946
|
+
) });
|
|
947
|
+
}
|
|
948
|
+
function Link2Icon({ size = 24, ...props }) {
|
|
949
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
950
|
+
/* @__PURE__ */ jsx(
|
|
951
|
+
"path",
|
|
952
|
+
{
|
|
953
|
+
d: "M9 17H7A5 5 0 017 7h2",
|
|
954
|
+
stroke: "currentColor",
|
|
955
|
+
strokeLinecap: "round",
|
|
956
|
+
strokeLinejoin: "round"
|
|
957
|
+
}
|
|
958
|
+
),
|
|
959
|
+
/* @__PURE__ */ jsx(
|
|
960
|
+
"path",
|
|
961
|
+
{
|
|
962
|
+
d: "M15 7h2a5 5 0 110 10h-2",
|
|
963
|
+
stroke: "currentColor",
|
|
964
|
+
strokeLinecap: "round",
|
|
965
|
+
strokeLinejoin: "round"
|
|
966
|
+
}
|
|
967
|
+
),
|
|
968
|
+
/* @__PURE__ */ jsx("line", { x1: "8", x2: "16", y1: "12", y2: "12", stroke: "currentColor", strokeLinecap: "round" })
|
|
969
|
+
] });
|
|
970
|
+
}
|
|
971
|
+
function LinkIcon({ size = 24, ...props }) {
|
|
972
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
973
|
+
/* @__PURE__ */ jsx(
|
|
974
|
+
"path",
|
|
975
|
+
{
|
|
976
|
+
d: "M10 13a5 5 0 007.54.54l3-3a5 5 0 00-7.07-7.07l-1.72 1.71",
|
|
977
|
+
stroke: "currentColor",
|
|
978
|
+
strokeLinecap: "round",
|
|
979
|
+
strokeLinejoin: "round"
|
|
980
|
+
}
|
|
981
|
+
),
|
|
982
|
+
/* @__PURE__ */ jsx(
|
|
983
|
+
"path",
|
|
984
|
+
{
|
|
985
|
+
d: "M14 11a5 5 0 00-7.54-.54l-3 3a5 5 0 007.07 7.07l1.71-1.71",
|
|
986
|
+
stroke: "currentColor",
|
|
987
|
+
strokeLinecap: "round",
|
|
988
|
+
strokeLinejoin: "round"
|
|
989
|
+
}
|
|
990
|
+
)
|
|
991
|
+
] });
|
|
992
|
+
}
|
|
993
|
+
function ListChecksIcon({ size = 24, ...props }) {
|
|
994
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
995
|
+
/* @__PURE__ */ jsx("path", { d: "m3 17 2 2 4-4", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
996
|
+
/* @__PURE__ */ jsx("path", { d: "m3 7 2 2 4-4", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
997
|
+
/* @__PURE__ */ jsx("path", { d: "M13 6h8M13 12h8M13 18h8", stroke: "currentColor", strokeLinecap: "round" })
|
|
998
|
+
] });
|
|
999
|
+
}
|
|
1000
|
+
function ListIcon({ size = 24, ...props }) {
|
|
1001
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1002
|
+
"path",
|
|
1003
|
+
{
|
|
1004
|
+
d: "M8 6h13M8 12h13M8 18h13M3 6h.01M3 12h.01M3 18h.01",
|
|
1005
|
+
stroke: "currentColor",
|
|
1006
|
+
strokeLinecap: "round",
|
|
1007
|
+
strokeLinejoin: "round"
|
|
1008
|
+
}
|
|
1009
|
+
) });
|
|
1010
|
+
}
|
|
1011
|
+
function ListOrderedIcon({ size = 24, ...props }) {
|
|
1012
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1013
|
+
/* @__PURE__ */ jsx(
|
|
1014
|
+
"path",
|
|
1015
|
+
{
|
|
1016
|
+
d: "M10 6h11M10 12h11M10 18h11",
|
|
1017
|
+
stroke: "currentColor",
|
|
1018
|
+
strokeWidth: "2",
|
|
1019
|
+
strokeLinecap: "round",
|
|
1020
|
+
strokeLinejoin: "round"
|
|
1021
|
+
}
|
|
1022
|
+
),
|
|
1023
|
+
/* @__PURE__ */ jsx(
|
|
1024
|
+
"path",
|
|
1025
|
+
{
|
|
1026
|
+
d: "M4 6h1v4M3 10h3M6 18H3l3-4",
|
|
1027
|
+
stroke: "currentColor",
|
|
1028
|
+
strokeLinecap: "round",
|
|
1029
|
+
strokeLinejoin: "round"
|
|
1030
|
+
}
|
|
1031
|
+
)
|
|
1032
|
+
] });
|
|
1033
|
+
}
|
|
1034
|
+
function LoaderIcon({ size = 24, ...props }) {
|
|
1035
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1036
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10", stroke: "currentColor", strokeOpacity: 0.25 }),
|
|
1037
|
+
/* @__PURE__ */ jsx(
|
|
1038
|
+
"path",
|
|
1039
|
+
{
|
|
1040
|
+
d: "M4 12a8 8 0 018-8",
|
|
1041
|
+
stroke: "currentColor",
|
|
1042
|
+
strokeLinecap: "round",
|
|
1043
|
+
strokeLinejoin: "round"
|
|
1044
|
+
}
|
|
1045
|
+
)
|
|
1046
|
+
] });
|
|
1047
|
+
}
|
|
1048
|
+
function LockIcon({ size = 24, ...props }) {
|
|
1049
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1050
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "11", width: "18", height: "11", rx: "2", stroke: "currentColor" }),
|
|
1051
|
+
/* @__PURE__ */ jsx("path", { d: "M7 11V7a5 5 0 0110 0v4", stroke: "currentColor", strokeLinecap: "round" })
|
|
1052
|
+
] });
|
|
1053
|
+
}
|
|
1054
|
+
function LockKeyholeIcon({ size = 24, ...props }) {
|
|
1055
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1056
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "16", r: "1", fill: "currentColor" }),
|
|
1057
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "10", width: "18", height: "12", rx: "2", stroke: "currentColor" }),
|
|
1058
|
+
/* @__PURE__ */ jsx("path", { d: "M7 10V7a5 5 0 0110 0v3", stroke: "currentColor", strokeLinecap: "round" })
|
|
1059
|
+
] });
|
|
1060
|
+
}
|
|
1061
|
+
function LockOpenIcon({ size = 24, ...props }) {
|
|
1062
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1063
|
+
/* @__PURE__ */ jsx("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2", stroke: "currentColor" }),
|
|
1064
|
+
/* @__PURE__ */ jsx(
|
|
1065
|
+
"path",
|
|
1066
|
+
{
|
|
1067
|
+
d: "M7 11V7a5 5 0 0 1 9.9-1",
|
|
1068
|
+
stroke: "currentColor",
|
|
1069
|
+
strokeLinecap: "round",
|
|
1070
|
+
strokeLinejoin: "round"
|
|
1071
|
+
}
|
|
1072
|
+
)
|
|
1073
|
+
] });
|
|
1074
|
+
}
|
|
1075
|
+
function LogOutIcon({ size = 24, ...props }) {
|
|
1076
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1077
|
+
"path",
|
|
1078
|
+
{
|
|
1079
|
+
d: "M9 21H5a2 2 0 01-2-2V5a2 2 0 012-2h4M16 17l5-5-5-5M21 12H9",
|
|
1080
|
+
stroke: "currentColor",
|
|
1081
|
+
strokeLinecap: "round",
|
|
1082
|
+
strokeLinejoin: "round"
|
|
1083
|
+
}
|
|
1084
|
+
) });
|
|
1085
|
+
}
|
|
1086
|
+
function MailIcon({ size = 24, ...props }) {
|
|
1087
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1088
|
+
/* @__PURE__ */ jsx("rect", { x: "2", y: "4", width: "20", height: "16", rx: "2", stroke: "currentColor" }),
|
|
1089
|
+
/* @__PURE__ */ jsx(
|
|
1090
|
+
"path",
|
|
1091
|
+
{
|
|
1092
|
+
d: "M22 7l-10 6L2 7",
|
|
1093
|
+
stroke: "currentColor",
|
|
1094
|
+
strokeLinecap: "round",
|
|
1095
|
+
strokeLinejoin: "round"
|
|
1096
|
+
}
|
|
1097
|
+
)
|
|
1098
|
+
] });
|
|
1099
|
+
}
|
|
1100
|
+
function MapPinIcon({ size = 24, ...props }) {
|
|
1101
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1102
|
+
/* @__PURE__ */ jsx(
|
|
1103
|
+
"path",
|
|
1104
|
+
{
|
|
1105
|
+
d: "M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 1116 0z",
|
|
1106
|
+
stroke: "currentColor",
|
|
1107
|
+
strokeLinecap: "round",
|
|
1108
|
+
strokeLinejoin: "round"
|
|
1109
|
+
}
|
|
1110
|
+
),
|
|
1111
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "10", r: "3", stroke: "currentColor" })
|
|
1112
|
+
] });
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
// src/icons/maximize-icon.tsx
|
|
1116
|
+
var MaximizeIcon = /* @__PURE__ */ createIcon({
|
|
1117
|
+
name: "MaximizeIcon",
|
|
1118
|
+
paths: "M8 3H5a2 2 0 00-2 2v3M21 8V5a2 2 0 00-2-2h-3M3 16v3a2 2 0 002 2h3M16 21h3a2 2 0 002-2v-3"
|
|
1119
|
+
});
|
|
1120
|
+
function MenuIcon({ size = 24, ...props }) {
|
|
1121
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx("path", { d: "M3 12h18M3 6h18M3 18h18", stroke: "currentColor", strokeLinecap: "round" }) });
|
|
1122
|
+
}
|
|
1123
|
+
function MessageCircleIcon({ size = 24, ...props }) {
|
|
1124
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1125
|
+
"path",
|
|
1126
|
+
{
|
|
1127
|
+
d: "M7.9 20A9 9 0 1 0 4 16.1L2 22z",
|
|
1128
|
+
stroke: "currentColor",
|
|
1129
|
+
strokeLinecap: "round",
|
|
1130
|
+
strokeLinejoin: "round"
|
|
1131
|
+
}
|
|
1132
|
+
) });
|
|
1133
|
+
}
|
|
1134
|
+
function MessageCircleWarningIcon({ size = 24, ...props }) {
|
|
1135
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1136
|
+
/* @__PURE__ */ jsx(
|
|
1137
|
+
"path",
|
|
1138
|
+
{
|
|
1139
|
+
d: "M7.9 20A9 9 0 1 0 4 16.1L2 22z",
|
|
1140
|
+
stroke: "currentColor",
|
|
1141
|
+
strokeLinecap: "round",
|
|
1142
|
+
strokeLinejoin: "round"
|
|
1143
|
+
}
|
|
1144
|
+
),
|
|
1145
|
+
/* @__PURE__ */ jsx(
|
|
1146
|
+
"path",
|
|
1147
|
+
{
|
|
1148
|
+
d: "M12 8v4M12 16h.01",
|
|
1149
|
+
stroke: "currentColor",
|
|
1150
|
+
strokeLinecap: "round",
|
|
1151
|
+
strokeLinejoin: "round"
|
|
1152
|
+
}
|
|
1153
|
+
)
|
|
1154
|
+
] });
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
// src/icons/mic-icon.tsx
|
|
1158
|
+
var MicIcon = /* @__PURE__ */ createIcon({
|
|
1159
|
+
name: "MicIcon",
|
|
1160
|
+
paths: [
|
|
1161
|
+
"M12 2a3 3 0 00-3 3v7a3 3 0 006 0V5a3 3 0 00-3-3Z",
|
|
1162
|
+
"M19 10v2a7 7 0 01-14 0v-2",
|
|
1163
|
+
"M12 19v3"
|
|
1164
|
+
]
|
|
1165
|
+
});
|
|
1166
|
+
function MicrosoftBrandIcon({ size = 24, ...props }) {
|
|
1167
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1168
|
+
/* @__PURE__ */ jsx("rect", { x: "1", y: "1", width: "10", height: "10", fill: "#F25022" }),
|
|
1169
|
+
/* @__PURE__ */ jsx("rect", { x: "13", y: "1", width: "10", height: "10", fill: "#7FBA00" }),
|
|
1170
|
+
/* @__PURE__ */ jsx("rect", { x: "1", y: "13", width: "10", height: "10", fill: "#00A4EF" }),
|
|
1171
|
+
/* @__PURE__ */ jsx("rect", { x: "13", y: "13", width: "10", height: "10", fill: "#FFB900" })
|
|
1172
|
+
] });
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
// src/icons/minimize-icon.tsx
|
|
1176
|
+
var MinimizeIcon = /* @__PURE__ */ createIcon({
|
|
1177
|
+
name: "MinimizeIcon",
|
|
1178
|
+
paths: "M8 3v3a2 2 0 01-2 2H3M21 8h-3a2 2 0 01-2-2V3M3 16h3a2 2 0 012 2v3M16 21v-3a2 2 0 012-2h3"
|
|
1179
|
+
});
|
|
1180
|
+
function MinusIcon({ size = 24, ...props }) {
|
|
1181
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx("path", { d: "M5 12h14", stroke: "currentColor", strokeLinecap: "round" }) });
|
|
1182
|
+
}
|
|
1183
|
+
function MonitorIcon({ size = 24, ...props }) {
|
|
1184
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1185
|
+
/* @__PURE__ */ jsx("rect", { x: "2", y: "3", width: "20", height: "14", rx: "2", stroke: "currentColor" }),
|
|
1186
|
+
/* @__PURE__ */ jsx(
|
|
1187
|
+
"path",
|
|
1188
|
+
{
|
|
1189
|
+
d: "M8 21h8M12 17v4",
|
|
1190
|
+
stroke: "currentColor",
|
|
1191
|
+
strokeLinecap: "round",
|
|
1192
|
+
strokeLinejoin: "round"
|
|
1193
|
+
}
|
|
1194
|
+
)
|
|
1195
|
+
] });
|
|
1196
|
+
}
|
|
1197
|
+
function MoonIcon({ size = 24, ...props }) {
|
|
1198
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1199
|
+
"path",
|
|
1200
|
+
{
|
|
1201
|
+
d: "M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z",
|
|
1202
|
+
stroke: "currentColor",
|
|
1203
|
+
strokeLinecap: "round",
|
|
1204
|
+
strokeLinejoin: "round"
|
|
1205
|
+
}
|
|
1206
|
+
) });
|
|
1207
|
+
}
|
|
1208
|
+
function MoreHorizontalIcon({ size = 24, ...props }) {
|
|
1209
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1210
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "1", fill: "currentColor" }),
|
|
1211
|
+
/* @__PURE__ */ jsx("circle", { cx: "19", cy: "12", r: "1", fill: "currentColor" }),
|
|
1212
|
+
/* @__PURE__ */ jsx("circle", { cx: "5", cy: "12", r: "1", fill: "currentColor" })
|
|
1213
|
+
] });
|
|
1214
|
+
}
|
|
1215
|
+
function MoveIcon({ size = 24, ...props }) {
|
|
1216
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1217
|
+
"path",
|
|
1218
|
+
{
|
|
1219
|
+
d: "M5 9l-3 3 3 3M9 5l3-3 3 3M15 19l-3 3-3-3M19 9l3 3-3 3M2 12h20M12 2v20",
|
|
1220
|
+
stroke: "currentColor",
|
|
1221
|
+
strokeLinecap: "round",
|
|
1222
|
+
strokeLinejoin: "round"
|
|
1223
|
+
}
|
|
1224
|
+
) });
|
|
1225
|
+
}
|
|
1226
|
+
function PaletteIcon({ size = 24, ...props }) {
|
|
1227
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1228
|
+
/* @__PURE__ */ jsx("circle", { cx: "13.5", cy: "6.5", r: "1.5", fill: "currentColor" }),
|
|
1229
|
+
/* @__PURE__ */ jsx("circle", { cx: "17.5", cy: "10.5", r: "1.5", fill: "currentColor" }),
|
|
1230
|
+
/* @__PURE__ */ jsx("circle", { cx: "8.5", cy: "7.5", r: "1.5", fill: "currentColor" }),
|
|
1231
|
+
/* @__PURE__ */ jsx("circle", { cx: "6.5", cy: "12.5", r: "1.5", fill: "currentColor" }),
|
|
1232
|
+
/* @__PURE__ */ jsx(
|
|
1233
|
+
"path",
|
|
1234
|
+
{
|
|
1235
|
+
d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10c.93 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.04-.23-.29-.38-.63-.38-1.04 0-.83.67-1.5 1.5-1.5H16c3.31 0 6-2.69 6-6 0-5.5-4.5-9.92-10-9.92z",
|
|
1236
|
+
stroke: "currentColor",
|
|
1237
|
+
strokeLinecap: "round",
|
|
1238
|
+
strokeLinejoin: "round"
|
|
1239
|
+
}
|
|
1240
|
+
)
|
|
1241
|
+
] });
|
|
1242
|
+
}
|
|
1243
|
+
function PanelLeftCloseIcon({ size = 24, ...props }) {
|
|
1244
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1245
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "3", width: "18", height: "18", rx: "2", stroke: "currentColor" }),
|
|
1246
|
+
/* @__PURE__ */ jsx("path", { d: "M9 3v18", stroke: "currentColor" }),
|
|
1247
|
+
/* @__PURE__ */ jsx("path", { d: "M15 9l-3 3 3 3", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1248
|
+
] });
|
|
1249
|
+
}
|
|
1250
|
+
function PanelLeftIcon({ size = 24, ...props }) {
|
|
1251
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1252
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "3", width: "18", height: "18", rx: "2", stroke: "currentColor" }),
|
|
1253
|
+
/* @__PURE__ */ jsx("path", { d: "M9 3v18", stroke: "currentColor" })
|
|
1254
|
+
] });
|
|
1255
|
+
}
|
|
1256
|
+
var PanelRightIcon = /* @__PURE__ */ createIcon({
|
|
1257
|
+
name: "PanelRightIcon",
|
|
1258
|
+
paths: /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
1259
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "3", width: "18", height: "18", rx: "2", stroke: "currentColor" }),
|
|
1260
|
+
/* @__PURE__ */ jsx("path", { d: "M15 3v18", stroke: "currentColor" })
|
|
1261
|
+
] })
|
|
1262
|
+
});
|
|
1263
|
+
function PaperclipIcon({ size = 24, ...props }) {
|
|
1264
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1265
|
+
"path",
|
|
1266
|
+
{
|
|
1267
|
+
d: "M21.44 11.05l-9.19 9.19a6 6 0 01-8.49-8.49l9.19-9.19a4 4 0 015.66 5.66l-9.2 9.19a2 2 0 01-2.83-2.83l8.49-8.48",
|
|
1268
|
+
stroke: "currentColor",
|
|
1269
|
+
strokeLinecap: "round",
|
|
1270
|
+
strokeLinejoin: "round"
|
|
1271
|
+
}
|
|
1272
|
+
) });
|
|
1273
|
+
}
|
|
1274
|
+
function PauseIcon({ size = 24, ...props }) {
|
|
1275
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1276
|
+
/* @__PURE__ */ jsx("rect", { x: "7", y: "5", width: "3.5", height: "14", rx: "1", fill: "currentColor" }),
|
|
1277
|
+
/* @__PURE__ */ jsx("rect", { x: "13.5", y: "5", width: "3.5", height: "14", rx: "1", fill: "currentColor" })
|
|
1278
|
+
] });
|
|
1279
|
+
}
|
|
1280
|
+
function PenSignIcon({ size = 24, ...props }) {
|
|
1281
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1282
|
+
"path",
|
|
1283
|
+
{
|
|
1284
|
+
d: "M17 3a2.83 2.83 0 114 4L7.5 20.5 2 22l1.5-5.5L17 3z",
|
|
1285
|
+
stroke: "currentColor",
|
|
1286
|
+
strokeLinecap: "round",
|
|
1287
|
+
strokeLinejoin: "round"
|
|
1288
|
+
}
|
|
1289
|
+
) });
|
|
1290
|
+
}
|
|
1291
|
+
function PenToolIcon({ size = 24, ...props }) {
|
|
1292
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1293
|
+
/* @__PURE__ */ jsx(
|
|
1294
|
+
"path",
|
|
1295
|
+
{
|
|
1296
|
+
d: "M15.7 21.3a1 1 0 01-1.4 0l-1.6-1.6a1 1 0 010-1.4l5.6-5.6a1 1 0 011.4 0l1.6 1.6a1 1 0 010 1.4zM18 13l-1.4-6.9a1 1 0 00-.7-.8L3.2 2a1 1 0 00-1.2 1.2l3.3 12.7a1 1 0 00.8.7L13 18M2.3 2.3l7.3 7.3",
|
|
1297
|
+
stroke: "currentColor",
|
|
1298
|
+
strokeLinecap: "round",
|
|
1299
|
+
strokeLinejoin: "round"
|
|
1300
|
+
}
|
|
1301
|
+
),
|
|
1302
|
+
/* @__PURE__ */ jsx("circle", { cx: "11", cy: "11", r: "2", stroke: "currentColor" })
|
|
1303
|
+
] });
|
|
1304
|
+
}
|
|
1305
|
+
function PencilIcon({ size = 24, ...props }) {
|
|
1306
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1307
|
+
"path",
|
|
1308
|
+
{
|
|
1309
|
+
d: "M17 3a2.828 2.828 0 114 4L7.5 20.5 2 22l1.5-5.5L17 3z",
|
|
1310
|
+
stroke: "currentColor",
|
|
1311
|
+
strokeLinecap: "round",
|
|
1312
|
+
strokeLinejoin: "round"
|
|
1313
|
+
}
|
|
1314
|
+
) });
|
|
1315
|
+
}
|
|
1316
|
+
function PhoneIcon({ size = 24, ...props }) {
|
|
1317
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1318
|
+
"path",
|
|
1319
|
+
{
|
|
1320
|
+
d: "M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z",
|
|
1321
|
+
stroke: "currentColor",
|
|
1322
|
+
strokeLinecap: "round",
|
|
1323
|
+
strokeLinejoin: "round"
|
|
1324
|
+
}
|
|
1325
|
+
) });
|
|
1326
|
+
}
|
|
1327
|
+
function PlayIcon({ size = 24, ...props }) {
|
|
1328
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1329
|
+
"path",
|
|
1330
|
+
{
|
|
1331
|
+
d: "M8 5.14v13.72a1 1 0 001.54.84l10.78-6.86a1 1 0 000-1.68L9.54 4.3A1 1 0 008 5.14z",
|
|
1332
|
+
fill: "currentColor",
|
|
1333
|
+
stroke: "currentColor",
|
|
1334
|
+
strokeLinejoin: "round"
|
|
1335
|
+
}
|
|
1336
|
+
) });
|
|
1337
|
+
}
|
|
1338
|
+
function PlusIcon({ size = 24, ...props }) {
|
|
1339
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1340
|
+
"path",
|
|
1341
|
+
{
|
|
1342
|
+
d: "M12 5v14M5 12h14",
|
|
1343
|
+
stroke: "currentColor",
|
|
1344
|
+
strokeLinecap: "round",
|
|
1345
|
+
strokeLinejoin: "round"
|
|
1346
|
+
}
|
|
1347
|
+
) });
|
|
1348
|
+
}
|
|
1349
|
+
function ReceiptIcon({ size = 24, ...props }) {
|
|
1350
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1351
|
+
/* @__PURE__ */ jsx(
|
|
1352
|
+
"path",
|
|
1353
|
+
{
|
|
1354
|
+
d: "M4 2v20l3-2 3 2 3-2 3 2 3-2 3 2V2l-3 2-3-2-3 2-3-2-3 2-3-2z",
|
|
1355
|
+
stroke: "currentColor",
|
|
1356
|
+
strokeLinecap: "round",
|
|
1357
|
+
strokeLinejoin: "round"
|
|
1358
|
+
}
|
|
1359
|
+
),
|
|
1360
|
+
/* @__PURE__ */ jsx("path", { d: "M8 10h8M8 14h4", stroke: "currentColor", strokeLinecap: "round" })
|
|
1361
|
+
] });
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
// src/icons/refresh-cw-icon.tsx
|
|
1365
|
+
var RefreshCwIcon = /* @__PURE__ */ createIcon({
|
|
1366
|
+
name: "RefreshCwIcon",
|
|
1367
|
+
paths: [
|
|
1368
|
+
"M3 12a9 9 0 019-9 9.75 9.75 0 016.74 2.74L21 8",
|
|
1369
|
+
"M21 3v5h-5",
|
|
1370
|
+
"M21 12a9 9 0 01-9 9 9.75 9.75 0 01-6.74-2.74L3 16",
|
|
1371
|
+
"M8 16H3v5"
|
|
1372
|
+
]
|
|
1373
|
+
});
|
|
1374
|
+
function ReplyIcon({ size = 24, ...props }) {
|
|
1375
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1376
|
+
"path",
|
|
1377
|
+
{
|
|
1378
|
+
d: "M9 17l-5-5 5-5M4 12h12a4 4 0 010 8h-1",
|
|
1379
|
+
stroke: "currentColor",
|
|
1380
|
+
strokeLinecap: "round",
|
|
1381
|
+
strokeLinejoin: "round"
|
|
1382
|
+
}
|
|
1383
|
+
) });
|
|
1384
|
+
}
|
|
1385
|
+
function RotateCcwIcon({ size = 24, ...props }) {
|
|
1386
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1387
|
+
/* @__PURE__ */ jsx(
|
|
1388
|
+
"path",
|
|
1389
|
+
{
|
|
1390
|
+
d: "M3 12a9 9 0 109-9 9.75 9.75 0 00-6.74 2.74L3 8",
|
|
1391
|
+
stroke: "currentColor",
|
|
1392
|
+
strokeLinecap: "round",
|
|
1393
|
+
strokeLinejoin: "round"
|
|
1394
|
+
}
|
|
1395
|
+
),
|
|
1396
|
+
/* @__PURE__ */ jsx("path", { d: "M3 3v5h5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1397
|
+
] });
|
|
1398
|
+
}
|
|
1399
|
+
function SaveIcon({ size = 24, ...props }) {
|
|
1400
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1401
|
+
/* @__PURE__ */ jsx(
|
|
1402
|
+
"path",
|
|
1403
|
+
{
|
|
1404
|
+
d: "M19 21H5a2 2 0 01-2-2V5a2 2 0 012-2h11l5 5v11a2 2 0 01-2 2z",
|
|
1405
|
+
stroke: "currentColor",
|
|
1406
|
+
strokeLinecap: "round",
|
|
1407
|
+
strokeLinejoin: "round"
|
|
1408
|
+
}
|
|
1409
|
+
),
|
|
1410
|
+
/* @__PURE__ */ jsx(
|
|
1411
|
+
"path",
|
|
1412
|
+
{
|
|
1413
|
+
d: "M17 21v-8H7v8M7 3v5h8",
|
|
1414
|
+
stroke: "currentColor",
|
|
1415
|
+
strokeLinecap: "round",
|
|
1416
|
+
strokeLinejoin: "round"
|
|
1417
|
+
}
|
|
1418
|
+
)
|
|
1419
|
+
] });
|
|
1420
|
+
}
|
|
1421
|
+
function SearchIcon({ size = 24, ...props }) {
|
|
1422
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1423
|
+
/* @__PURE__ */ jsx("circle", { cx: "11", cy: "11", r: "8", stroke: "currentColor" }),
|
|
1424
|
+
/* @__PURE__ */ jsx("path", { d: "M21 21l-4.35-4.35", stroke: "currentColor", strokeLinecap: "round" })
|
|
1425
|
+
] });
|
|
1426
|
+
}
|
|
1427
|
+
function SendIcon({ size = 24, ...props }) {
|
|
1428
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1429
|
+
/* @__PURE__ */ jsx(
|
|
1430
|
+
"path",
|
|
1431
|
+
{
|
|
1432
|
+
d: "M14.536 21.686a.5.5 0 00.937-.024l6.5-19a.496.496 0 00-.635-.635l-19 6.5a.5.5 0 00-.024.937l7.93 3.18a2 2 0 011.112 1.11z",
|
|
1433
|
+
stroke: "currentColor",
|
|
1434
|
+
strokeLinecap: "round",
|
|
1435
|
+
strokeLinejoin: "round"
|
|
1436
|
+
}
|
|
1437
|
+
),
|
|
1438
|
+
/* @__PURE__ */ jsx(
|
|
1439
|
+
"path",
|
|
1440
|
+
{
|
|
1441
|
+
d: "M21.854 2.147l-10.94 10.939",
|
|
1442
|
+
stroke: "currentColor",
|
|
1443
|
+
strokeLinecap: "round",
|
|
1444
|
+
strokeLinejoin: "round"
|
|
1445
|
+
}
|
|
1446
|
+
)
|
|
1447
|
+
] });
|
|
1448
|
+
}
|
|
1449
|
+
function SettingsIcon({ size = 24, ...props }) {
|
|
1450
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1451
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "3", stroke: "currentColor" }),
|
|
1452
|
+
/* @__PURE__ */ jsx(
|
|
1453
|
+
"path",
|
|
1454
|
+
{
|
|
1455
|
+
d: "M19.4 15a1.65 1.65 0 00.33 1.82l.06.06a2 2 0 01-2.83 2.83l-.06-.06a1.65 1.65 0 00-1.82-.33 1.65 1.65 0 00-1 1.51V21a2 2 0 01-4 0v-.09A1.65 1.65 0 009 19.4a1.65 1.65 0 00-1.82.33l-.06.06a2 2 0 01-2.83-2.83l.06-.06A1.65 1.65 0 004.68 15a1.65 1.65 0 00-1.51-1H3a2 2 0 010-4h.09A1.65 1.65 0 004.6 9a1.65 1.65 0 00-.33-1.82l-.06-.06a2 2 0 012.83-2.83l.06.06A1.65 1.65 0 009 4.68a1.65 1.65 0 001-1.51V3a2 2 0 014 0v.09a1.65 1.65 0 001 1.51 1.65 1.65 0 001.82-.33l.06-.06a2 2 0 012.83 2.83l-.06.06A1.65 1.65 0 0019.4 9a1.65 1.65 0 001.51 1H21a2 2 0 010 4h-.09a1.65 1.65 0 00-1.51 1z",
|
|
1456
|
+
stroke: "currentColor",
|
|
1457
|
+
strokeLinecap: "round",
|
|
1458
|
+
strokeLinejoin: "round"
|
|
1459
|
+
}
|
|
1460
|
+
)
|
|
1461
|
+
] });
|
|
1462
|
+
}
|
|
1463
|
+
function ShieldIcon({ size = 24, ...props }) {
|
|
1464
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1465
|
+
"path",
|
|
1466
|
+
{
|
|
1467
|
+
d: "M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z",
|
|
1468
|
+
stroke: "currentColor",
|
|
1469
|
+
strokeLinecap: "round",
|
|
1470
|
+
strokeLinejoin: "round"
|
|
1471
|
+
}
|
|
1472
|
+
) });
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
// src/icons/sigma-icon.tsx
|
|
1476
|
+
var SigmaIcon = /* @__PURE__ */ createIcon({
|
|
1477
|
+
name: "SigmaIcon",
|
|
1478
|
+
paths: "M18 7V5a1 1 0 00-1-1H6.5a.5.5 0 00-.4.8l4.5 6a2 2 0 010 2.4l-4.5 6a.5.5 0 00.4.8H17a1 1 0 001-1v-2"
|
|
1479
|
+
});
|
|
1480
|
+
function SlashIcon({ size = 24, ...props }) {
|
|
1481
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx("path", { d: "M22 2 2 22", stroke: "currentColor", strokeLinecap: "round" }) });
|
|
1482
|
+
}
|
|
1483
|
+
function SmartphoneIcon({ size = 24, ...props }) {
|
|
1484
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1485
|
+
/* @__PURE__ */ jsx("rect", { x: "6", y: "2", width: "12", height: "20", rx: "2", stroke: "currentColor" }),
|
|
1486
|
+
/* @__PURE__ */ jsx("path", { d: "M12 18h.01", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
1487
|
+
] });
|
|
1488
|
+
}
|
|
1489
|
+
function SparkleIcon({ size = 24, ...props }) {
|
|
1490
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1491
|
+
"path",
|
|
1492
|
+
{
|
|
1493
|
+
d: "M12 2l2.09 6.26L20.18 9l-5 4.36L16.82 20 12 16.77 7.18 20l1.64-6.64-5-4.36 6.09-.74L12 2z",
|
|
1494
|
+
stroke: "currentColor",
|
|
1495
|
+
strokeLinecap: "round",
|
|
1496
|
+
strokeLinejoin: "round"
|
|
1497
|
+
}
|
|
1498
|
+
) });
|
|
1499
|
+
}
|
|
1500
|
+
function SparklesIcon({ size = 24, ...props }) {
|
|
1501
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1502
|
+
/* @__PURE__ */ jsx(
|
|
1503
|
+
"path",
|
|
1504
|
+
{
|
|
1505
|
+
d: "m12 3-1.91 5.79a2 2 0 01-1.3 1.3L3 12l5.79 1.91a2 2 0 011.3 1.3L12 21l1.91-5.79a2 2 0 011.3-1.3L21 12l-5.79-1.91a2 2 0 01-1.3-1.3L12 3Z",
|
|
1506
|
+
stroke: "currentColor",
|
|
1507
|
+
strokeLinecap: "round",
|
|
1508
|
+
strokeLinejoin: "round"
|
|
1509
|
+
}
|
|
1510
|
+
),
|
|
1511
|
+
/* @__PURE__ */ jsx("path", { d: "M5 3v4M3 5h4M19 17v4M17 19h4", stroke: "currentColor", strokeLinecap: "round" })
|
|
1512
|
+
] });
|
|
1513
|
+
}
|
|
1514
|
+
function StarIcon({ size = 24, ...props }) {
|
|
1515
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1516
|
+
"path",
|
|
1517
|
+
{
|
|
1518
|
+
d: "M12 2l2.09 6.26L20.18 9l-5 4.36L16.82 20 12 16.77 7.18 20l1.64-6.64-5-4.36 6.09-.74L12 2z",
|
|
1519
|
+
fill: "currentColor"
|
|
1520
|
+
}
|
|
1521
|
+
) });
|
|
1522
|
+
}
|
|
1523
|
+
function StopIcon({ size = 24, ...props }) {
|
|
1524
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx("rect", { x: "6", y: "6", width: "12", height: "12", rx: "2", fill: "currentColor" }) });
|
|
1525
|
+
}
|
|
1526
|
+
function StrikethroughIcon({ size = 24, ...props }) {
|
|
1527
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1528
|
+
"path",
|
|
1529
|
+
{
|
|
1530
|
+
d: "M16 4H9a3 3 0 000 6h6a3 3 0 010 6H8M4 12h16",
|
|
1531
|
+
stroke: "currentColor",
|
|
1532
|
+
strokeLinecap: "round",
|
|
1533
|
+
strokeLinejoin: "round"
|
|
1534
|
+
}
|
|
1535
|
+
) });
|
|
1536
|
+
}
|
|
1537
|
+
function SunIcon({ size = 24, ...props }) {
|
|
1538
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1539
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "4", stroke: "currentColor" }),
|
|
1540
|
+
/* @__PURE__ */ jsx(
|
|
1541
|
+
"path",
|
|
1542
|
+
{
|
|
1543
|
+
d: "M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M6.34 17.66l-1.41 1.41M19.07 4.93l-1.41 1.41",
|
|
1544
|
+
stroke: "currentColor",
|
|
1545
|
+
strokeLinecap: "round"
|
|
1546
|
+
}
|
|
1547
|
+
)
|
|
1548
|
+
] });
|
|
1549
|
+
}
|
|
1550
|
+
function TableIcon({ size = 24, ...props }) {
|
|
1551
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1552
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "3", width: "18", height: "18", rx: "2", stroke: "currentColor" }),
|
|
1553
|
+
/* @__PURE__ */ jsx(
|
|
1554
|
+
"path",
|
|
1555
|
+
{
|
|
1556
|
+
d: "M3 9h18M3 15h18M9 3v18",
|
|
1557
|
+
stroke: "currentColor",
|
|
1558
|
+
strokeLinecap: "round",
|
|
1559
|
+
strokeLinejoin: "round"
|
|
1560
|
+
}
|
|
1561
|
+
)
|
|
1562
|
+
] });
|
|
1563
|
+
}
|
|
1564
|
+
function TagIcon({ size = 24, ...props }) {
|
|
1565
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1566
|
+
/* @__PURE__ */ jsx(
|
|
1567
|
+
"path",
|
|
1568
|
+
{
|
|
1569
|
+
d: "M12.586 2.586A2 2 0 0011.172 2H4a2 2 0 00-2 2v7.172a2 2 0 00.586 1.414l8.704 8.704a2.426 2.426 0 003.42 0l6.58-6.58a2.426 2.426 0 000-3.42z",
|
|
1570
|
+
stroke: "currentColor",
|
|
1571
|
+
strokeLinecap: "round",
|
|
1572
|
+
strokeLinejoin: "round"
|
|
1573
|
+
}
|
|
1574
|
+
),
|
|
1575
|
+
/* @__PURE__ */ jsx("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor", stroke: "currentColor", strokeWidth: "1" })
|
|
1576
|
+
] });
|
|
1577
|
+
}
|
|
1578
|
+
function TeamIcon({ size = 24, ...props }) {
|
|
1579
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1580
|
+
/* @__PURE__ */ jsx(
|
|
1581
|
+
"path",
|
|
1582
|
+
{
|
|
1583
|
+
d: "M18 21v-2a4 4 0 00-4-4H10a4 4 0 00-4 4v2",
|
|
1584
|
+
stroke: "currentColor",
|
|
1585
|
+
strokeLinecap: "round",
|
|
1586
|
+
strokeLinejoin: "round"
|
|
1587
|
+
}
|
|
1588
|
+
),
|
|
1589
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "7", r: "4", stroke: "currentColor" }),
|
|
1590
|
+
/* @__PURE__ */ jsx("path", { d: "M22 11h-4M20 9v4", stroke: "currentColor", strokeLinecap: "round" })
|
|
1591
|
+
] });
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
// src/icons/thumbs-down-icon.tsx
|
|
1595
|
+
var ThumbsDownIcon = /* @__PURE__ */ createIcon({
|
|
1596
|
+
name: "ThumbsDownIcon",
|
|
1597
|
+
paths: [
|
|
1598
|
+
"M17 14V2",
|
|
1599
|
+
"M9 18.12 10 14H4.17a2 2 0 01-1.92-2.56l2.33-8A2 2 0 016.5 2H20a2 2 0 012 2v8a2 2 0 01-2 2h-2.76a2 2 0 00-1.79 1.11L12 22a3.13 3.13 0 01-3-3.88Z"
|
|
1600
|
+
]
|
|
1601
|
+
});
|
|
1602
|
+
|
|
1603
|
+
// src/icons/thumbs-up-icon.tsx
|
|
1604
|
+
var ThumbsUpIcon = /* @__PURE__ */ createIcon({
|
|
1605
|
+
name: "ThumbsUpIcon",
|
|
1606
|
+
paths: [
|
|
1607
|
+
"M7 10v12",
|
|
1608
|
+
"M15 5.88 14 10h5.83a2 2 0 011.92 2.56l-2.33 8A2 2 0 0117.5 22H4a2 2 0 01-2-2v-8a2 2 0 012-2h2.76a2 2 0 001.79-1.11L12 2a3.13 3.13 0 013 3.88Z"
|
|
1609
|
+
]
|
|
1610
|
+
});
|
|
1611
|
+
|
|
1612
|
+
// src/icons/timer-icon.tsx
|
|
1613
|
+
var TimerIcon = /* @__PURE__ */ createIcon({
|
|
1614
|
+
name: "TimerIcon",
|
|
1615
|
+
paths: ["M10 2h4", "m12 14 3-3", "M20 14a8 8 0 11-16 0 8 8 0 0116 0z"]
|
|
1616
|
+
});
|
|
1617
|
+
function Trash2Icon({ size = 24, ...props }) {
|
|
1618
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1619
|
+
/* @__PURE__ */ jsx("path", { d: "M3 6h18", stroke: "currentColor", strokeLinecap: "round" }),
|
|
1620
|
+
/* @__PURE__ */ jsx(
|
|
1621
|
+
"path",
|
|
1622
|
+
{
|
|
1623
|
+
d: "M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6",
|
|
1624
|
+
stroke: "currentColor",
|
|
1625
|
+
strokeLinecap: "round",
|
|
1626
|
+
strokeLinejoin: "round"
|
|
1627
|
+
}
|
|
1628
|
+
),
|
|
1629
|
+
/* @__PURE__ */ jsx(
|
|
1630
|
+
"path",
|
|
1631
|
+
{
|
|
1632
|
+
d: "M8 6V4a2 2 0 012-2h4a2 2 0 012 2v2",
|
|
1633
|
+
stroke: "currentColor",
|
|
1634
|
+
strokeLinecap: "round",
|
|
1635
|
+
strokeLinejoin: "round"
|
|
1636
|
+
}
|
|
1637
|
+
),
|
|
1638
|
+
/* @__PURE__ */ jsx("line", { x1: "10", y1: "11", x2: "10", y2: "17", stroke: "currentColor", strokeLinecap: "round" }),
|
|
1639
|
+
/* @__PURE__ */ jsx("line", { x1: "14", y1: "11", x2: "14", y2: "17", stroke: "currentColor", strokeLinecap: "round" })
|
|
1640
|
+
] });
|
|
1641
|
+
}
|
|
1642
|
+
function TrashIcon({ size = 24, ...props }) {
|
|
1643
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1644
|
+
/* @__PURE__ */ jsx("path", { d: "M3 6h18", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
1645
|
+
/* @__PURE__ */ jsx(
|
|
1646
|
+
"path",
|
|
1647
|
+
{
|
|
1648
|
+
d: "M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",
|
|
1649
|
+
stroke: "currentColor",
|
|
1650
|
+
strokeLinecap: "round",
|
|
1651
|
+
strokeLinejoin: "round"
|
|
1652
|
+
}
|
|
1653
|
+
),
|
|
1654
|
+
/* @__PURE__ */ jsx(
|
|
1655
|
+
"path",
|
|
1656
|
+
{
|
|
1657
|
+
d: "M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",
|
|
1658
|
+
stroke: "currentColor",
|
|
1659
|
+
strokeLinecap: "round",
|
|
1660
|
+
strokeLinejoin: "round"
|
|
1661
|
+
}
|
|
1662
|
+
)
|
|
1663
|
+
] });
|
|
1664
|
+
}
|
|
1665
|
+
var TrashSolidIcon = /* @__PURE__ */ createIcon({
|
|
1666
|
+
name: "TrashSolidIcon",
|
|
1667
|
+
paths: /* @__PURE__ */ jsx(
|
|
1668
|
+
"path",
|
|
1669
|
+
{
|
|
1670
|
+
fillRule: "evenodd",
|
|
1671
|
+
clipRule: "evenodd",
|
|
1672
|
+
fill: "currentColor",
|
|
1673
|
+
d: "M10 2h4a1 1 0 011 1v1h4a1 1 0 110 2H5a1 1 0 110-2h4V3a1 1 0 011-1zM6 7.5h12l-.87 12.14a2 2 0 01-1.99 1.86H8.86a2 2 0 01-1.99-1.86L6 7.5zm3.75 3v7a.75.75 0 001.5 0v-7a.75.75 0 00-1.5 0zm3 0v7a.75.75 0 001.5 0v-7a.75.75 0 00-1.5 0z"
|
|
1674
|
+
}
|
|
1675
|
+
)
|
|
1676
|
+
});
|
|
1677
|
+
function TrendingDownIcon({ size = 24, ...props }) {
|
|
1678
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1679
|
+
"path",
|
|
1680
|
+
{
|
|
1681
|
+
d: "M2 7l6.5 6.5 5-5L22 17M16 17h6v-6",
|
|
1682
|
+
stroke: "currentColor",
|
|
1683
|
+
strokeLinecap: "round",
|
|
1684
|
+
strokeLinejoin: "round"
|
|
1685
|
+
}
|
|
1686
|
+
) });
|
|
1687
|
+
}
|
|
1688
|
+
function TrendingUpIcon({ size = 24, ...props }) {
|
|
1689
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1690
|
+
"path",
|
|
1691
|
+
{
|
|
1692
|
+
d: "M2 17l6.5-6.5 5 5L22 7M16 7h6v6",
|
|
1693
|
+
stroke: "currentColor",
|
|
1694
|
+
strokeLinecap: "round",
|
|
1695
|
+
strokeLinejoin: "round"
|
|
1696
|
+
}
|
|
1697
|
+
) });
|
|
1698
|
+
}
|
|
1699
|
+
function UnderlineIcon({ size = 24, ...props }) {
|
|
1700
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1701
|
+
"path",
|
|
1702
|
+
{
|
|
1703
|
+
d: "M6 3v7a6 6 0 006 6 6 6 0 006-6V3M4 21h16",
|
|
1704
|
+
stroke: "currentColor",
|
|
1705
|
+
strokeLinecap: "round",
|
|
1706
|
+
strokeLinejoin: "round"
|
|
1707
|
+
}
|
|
1708
|
+
) });
|
|
1709
|
+
}
|
|
1710
|
+
function UploadIcon({ size = 24, ...props }) {
|
|
1711
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1712
|
+
"path",
|
|
1713
|
+
{
|
|
1714
|
+
d: "M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4M17 8l-5-5-5 5M12 3v12",
|
|
1715
|
+
stroke: "currentColor",
|
|
1716
|
+
strokeLinecap: "round",
|
|
1717
|
+
strokeLinejoin: "round"
|
|
1718
|
+
}
|
|
1719
|
+
) });
|
|
1720
|
+
}
|
|
1721
|
+
function UserCircleIcon({ size = 24, ...props }) {
|
|
1722
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1723
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10", stroke: "currentColor" }),
|
|
1724
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "10", r: "3", stroke: "currentColor" }),
|
|
1725
|
+
/* @__PURE__ */ jsx(
|
|
1726
|
+
"path",
|
|
1727
|
+
{
|
|
1728
|
+
d: "M7 20.662V19a2 2 0 012-2h6a2 2 0 012 2v1.662",
|
|
1729
|
+
stroke: "currentColor",
|
|
1730
|
+
strokeLinecap: "round",
|
|
1731
|
+
strokeLinejoin: "round"
|
|
1732
|
+
}
|
|
1733
|
+
)
|
|
1734
|
+
] });
|
|
1735
|
+
}
|
|
1736
|
+
function UserIcon({ size = 24, ...props }) {
|
|
1737
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1738
|
+
/* @__PURE__ */ jsx(
|
|
1739
|
+
"path",
|
|
1740
|
+
{
|
|
1741
|
+
d: "M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2",
|
|
1742
|
+
stroke: "currentColor",
|
|
1743
|
+
strokeLinecap: "round",
|
|
1744
|
+
strokeLinejoin: "round"
|
|
1745
|
+
}
|
|
1746
|
+
),
|
|
1747
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "7", r: "4", stroke: "currentColor" })
|
|
1748
|
+
] });
|
|
1749
|
+
}
|
|
1750
|
+
function UsersIcon({ size = 24, ...props }) {
|
|
1751
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1752
|
+
"path",
|
|
1753
|
+
{
|
|
1754
|
+
d: "M17 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2M9 11a4 4 0 100-8 4 4 0 000 8zM23 21v-2a4 4 0 00-3-3.87M16 3.13a4 4 0 010 7.75",
|
|
1755
|
+
stroke: "currentColor",
|
|
1756
|
+
strokeLinecap: "round",
|
|
1757
|
+
strokeLinejoin: "round"
|
|
1758
|
+
}
|
|
1759
|
+
) });
|
|
1760
|
+
}
|
|
1761
|
+
|
|
1762
|
+
// src/icons/video-icon.tsx
|
|
1763
|
+
var VideoIcon = /* @__PURE__ */ createIcon({
|
|
1764
|
+
name: "VideoIcon",
|
|
1765
|
+
paths: [
|
|
1766
|
+
"m16 13 5.223 3.482a.5.5 0 00.777-.416V7.87a.5.5 0 00-.752-.432L16 10.5",
|
|
1767
|
+
"M4 6h10a2 2 0 012 2v8a2 2 0 01-2 2H4a2 2 0 01-2-2V8a2 2 0 012-2z"
|
|
1768
|
+
]
|
|
1769
|
+
});
|
|
1770
|
+
|
|
1771
|
+
// src/icons/volume-2-icon.tsx
|
|
1772
|
+
var Volume2Icon = /* @__PURE__ */ createIcon({
|
|
1773
|
+
name: "Volume2Icon",
|
|
1774
|
+
paths: ["M11 5 6 9H2v6h4l5 4V5z", "M15.54 8.46a5 5 0 010 7.07", "M19.07 4.93a10 10 0 010 14.14"]
|
|
1775
|
+
});
|
|
1776
|
+
|
|
1777
|
+
// src/icons/volume-x-icon.tsx
|
|
1778
|
+
var VolumeXIcon = /* @__PURE__ */ createIcon({
|
|
1779
|
+
name: "VolumeXIcon",
|
|
1780
|
+
paths: ["M11 5 6 9H2v6h4l5 4V5z", "m22 9-6 6", "m16 9 6 6"]
|
|
1781
|
+
});
|
|
1782
|
+
function WorkflowIcon({ size = 24, ...props }) {
|
|
1783
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1784
|
+
/* @__PURE__ */ jsx("rect", { x: "3", y: "3", width: "6", height: "6", rx: "1", stroke: "currentColor" }),
|
|
1785
|
+
/* @__PURE__ */ jsx("rect", { x: "15", y: "3", width: "6", height: "6", rx: "1", stroke: "currentColor" }),
|
|
1786
|
+
/* @__PURE__ */ jsx("rect", { x: "9", y: "15", width: "6", height: "6", rx: "1", stroke: "currentColor" }),
|
|
1787
|
+
/* @__PURE__ */ jsx("path", { d: "M6 9v3a3 3 0 003 3h6a3 3 0 003-3V9", stroke: "currentColor", strokeLinecap: "round" }),
|
|
1788
|
+
/* @__PURE__ */ jsx("path", { d: "M12 12v3", stroke: "currentColor", strokeLinecap: "round" })
|
|
1789
|
+
] });
|
|
1790
|
+
}
|
|
1791
|
+
function XCircleSolidIcon({ size = 24, ...props }) {
|
|
1792
|
+
return /* @__PURE__ */ jsx(Icon, { size, ...props, children: /* @__PURE__ */ jsx(
|
|
1793
|
+
"path",
|
|
1794
|
+
{
|
|
1795
|
+
fillRule: "evenodd",
|
|
1796
|
+
clipRule: "evenodd",
|
|
1797
|
+
fill: "currentColor",
|
|
1798
|
+
d: "M12 2.25C6.615 2.25 2.25 6.615 2.25 12s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25Zm-1.72 6.97a.75.75 0 0 0-1.06 1.06L10.94 12l-1.72 1.72a.75.75 0 1 0 1.06 1.06L12 13.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L13.06 12l1.72-1.72a.75.75 0 1 0-1.06-1.06L12 10.94l-1.72-1.72Z"
|
|
1799
|
+
}
|
|
1800
|
+
) });
|
|
1801
|
+
}
|
|
1802
|
+
function ZoomInIcon({ size = 24, ...props }) {
|
|
1803
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1804
|
+
/* @__PURE__ */ jsx("circle", { cx: "11", cy: "11", r: "8", stroke: "currentColor" }),
|
|
1805
|
+
/* @__PURE__ */ jsx(
|
|
1806
|
+
"path",
|
|
1807
|
+
{
|
|
1808
|
+
d: "M21 21l-4.35-4.35M11 8v6M8 11h6",
|
|
1809
|
+
stroke: "currentColor",
|
|
1810
|
+
strokeLinecap: "round",
|
|
1811
|
+
strokeLinejoin: "round"
|
|
1812
|
+
}
|
|
1813
|
+
)
|
|
1814
|
+
] });
|
|
1815
|
+
}
|
|
1816
|
+
function ZoomOutIcon({ size = 24, ...props }) {
|
|
1817
|
+
return /* @__PURE__ */ jsxs(Icon, { size, ...props, children: [
|
|
1818
|
+
/* @__PURE__ */ jsx("circle", { cx: "11", cy: "11", r: "8", stroke: "currentColor" }),
|
|
1819
|
+
/* @__PURE__ */ jsx(
|
|
1820
|
+
"path",
|
|
1821
|
+
{
|
|
1822
|
+
d: "M21 21l-4.35-4.35M8 11h6",
|
|
1823
|
+
stroke: "currentColor",
|
|
1824
|
+
strokeLinecap: "round",
|
|
1825
|
+
strokeLinejoin: "round"
|
|
1826
|
+
}
|
|
1827
|
+
)
|
|
1828
|
+
] });
|
|
1829
|
+
}
|
|
1830
|
+
|
|
1831
|
+
export { AlertCircleIcon, AlertTriangleIcon, AlertTriangleSolidIcon, ArchiveIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AtSignIcon, BarChartIcon, BellIcon, BoldIcon, BrainIcon, BriefcaseIcon, Building2Icon, BuildingIcon, CalendarIcon, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClipboardCheckIcon, ClockIcon, CloseIcon, CommandIcon, CopyIcon, CornerDownLeftIcon, CreditCardIcon, DocumentIcon, DollarSignIcon, DownloadIcon, ExternalLinkIcon, ExtractIcon, EyeIcon, EyeOffIcon, FileIcon, FileReturnIcon, FileTextIcon, FilterIcon, FlagIcon, FolderClosedIcon, FolderOpenIcon, FolderPlusIcon, FolderUpIcon, GlobeIcon, GoogleBrandIcon, GripVerticalIcon, HelpCircleIcon, HistoryIcon, HomeIcon, InboxIcon, InfoCircleSolidIcon, InfoIcon, ItalicIcon, KanbanIcon, KeyIcon, LandmarkIcon, LayersIcon, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, MailIcon, MapPinIcon, MaximizeIcon, MenuIcon, MessageCircleIcon, MessageCircleWarningIcon, MicIcon, MicrosoftBrandIcon, MinimizeIcon, MinusIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PanelRightIcon, PaperclipIcon, PauseIcon, PenSignIcon, PenToolIcon, PencilIcon, PhoneIcon, PlayIcon, PlusIcon, ReceiptIcon, RefreshCwIcon, ReplyIcon, RotateCcwIcon, SaveIcon, SearchIcon, SendIcon, SettingsIcon, ShieldIcon, SigmaIcon, SlashIcon, SmartphoneIcon, SparkleIcon, SparklesIcon, StarIcon, StopIcon, StrikethroughIcon, SunIcon, TableIcon, TagIcon, TeamIcon, ThumbsDownIcon, ThumbsUpIcon, TimerIcon, Trash2Icon, TrashIcon, TrashSolidIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, UserCircleIcon, UserIcon, UsersIcon, VideoIcon, Volume2Icon, VolumeXIcon, WorkflowIcon, XCircleSolidIcon, XIcon, ZoomInIcon, ZoomOutIcon, createIcon };
|
|
1832
|
+
//# sourceMappingURL=index.js.map
|
|
1833
|
+
//# sourceMappingURL=index.js.map
|