@baseline-ui/icons 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,96 @@
1
+ import { S as SVGRProps } from "../Icon.types-6dbe6c2c.js";
2
+ import { SVGProps } from "react";
3
+
4
+ declare const SvgCaretLeftIcon: ({
5
+ title,
6
+ titleId,
7
+ ...props
8
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
9
+
10
+ declare const SvgCaretRightIcon: ({
11
+ title,
12
+ titleId,
13
+ ...props
14
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
15
+
16
+ declare const SvgCheckFilledIcon: ({
17
+ title,
18
+ titleId,
19
+ ...props
20
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
21
+
22
+ declare const SvgCheckmarkIcon: ({
23
+ title,
24
+ titleId,
25
+ ...props
26
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
27
+
28
+ declare const SvgDragHandleIcon: ({
29
+ title,
30
+ titleId,
31
+ ...props
32
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
33
+
34
+ declare const SvgEllipseIcon: ({
35
+ title,
36
+ titleId,
37
+ ...props
38
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
39
+
40
+ declare const SvgErrorAltFilledIcon: ({
41
+ title,
42
+ titleId,
43
+ ...props
44
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
45
+
46
+ declare const SvgInfoFilledIcon: ({
47
+ title,
48
+ titleId,
49
+ ...props
50
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
51
+
52
+ declare const SvgPlusIcon: ({
53
+ title,
54
+ titleId,
55
+ ...props
56
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
57
+
58
+ declare const SvgSearchIcon: ({
59
+ title,
60
+ titleId,
61
+ ...props
62
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
63
+
64
+ declare const SvgStarIcon: ({
65
+ title,
66
+ titleId,
67
+ ...props
68
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
69
+
70
+ declare const SvgUploadIcon: ({
71
+ title,
72
+ titleId,
73
+ ...props
74
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
75
+
76
+ declare const SvgWarningFilledIcon: ({
77
+ title,
78
+ titleId,
79
+ ...props
80
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
81
+
82
+ export {
83
+ SvgCaretLeftIcon as CaretLeftIcon,
84
+ SvgCaretRightIcon as CaretRightIcon,
85
+ SvgCheckFilledIcon as CheckFilledIcon,
86
+ SvgCheckmarkIcon as CheckmarkIcon,
87
+ SvgDragHandleIcon as DragHandleIcon,
88
+ SvgEllipseIcon as EllipseIcon,
89
+ SvgErrorAltFilledIcon as ErrorAltFilledIcon,
90
+ SvgInfoFilledIcon as InfoFilledIcon,
91
+ SvgPlusIcon as PlusIcon,
92
+ SvgSearchIcon as SearchIcon,
93
+ SvgStarIcon as StarIcon,
94
+ SvgUploadIcon as UploadIcon,
95
+ SvgWarningFilledIcon as WarningFilledIcon,
96
+ };
@@ -0,0 +1,482 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if ((from && typeof from === "object") || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, {
15
+ get: () => from[key],
16
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable,
17
+ });
18
+ }
19
+ return to;
20
+ };
21
+ var __toCommonJS = (mod) =>
22
+ __copyProps(__defProp({}, "__esModule", { value: true }), mod);
23
+
24
+ // src/20/index.ts
25
+ var __exports = {};
26
+ __export(__exports, {
27
+ CaretLeftIcon: () => CaretLeftIcon_default,
28
+ CaretRightIcon: () => CaretRightIcon_default,
29
+ CheckFilledIcon: () => CheckFilledIcon_default,
30
+ CheckmarkIcon: () => CheckmarkIcon_default,
31
+ DragHandleIcon: () => DragHandleIcon_default,
32
+ EllipseIcon: () => EllipseIcon_default,
33
+ ErrorAltFilledIcon: () => ErrorAltFilledIcon_default,
34
+ InfoFilledIcon: () => InfoFilledIcon_default,
35
+ PlusIcon: () => PlusIcon_default,
36
+ SearchIcon: () => SearchIcon_default,
37
+ StarIcon: () => StarIcon_default,
38
+ UploadIcon: () => UploadIcon_default,
39
+ WarningFilledIcon: () => WarningFilledIcon_default,
40
+ });
41
+ module.exports = __toCommonJS(__exports);
42
+
43
+ // src/20/CaretLeftIcon.tsx
44
+ var import_jsx_runtime = require("react/jsx-runtime");
45
+ var SvgCaretLeftIcon = ({ title, titleId, ...props }) =>
46
+ /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", {
47
+ xmlns: "http://www.w3.org/2000/svg",
48
+ width: props.size || "1em",
49
+ height: props.size || "1em",
50
+ fill: "none",
51
+ viewBox: "0 0 20 20",
52
+ "aria-labelledby": titleId,
53
+ ...props,
54
+ children: [
55
+ title
56
+ ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", {
57
+ id: titleId,
58
+ children: title,
59
+ })
60
+ : null,
61
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
62
+ fill: "currentColor",
63
+ fillRule: "evenodd",
64
+ d: "M13.03 15.53a.75.75 0 0 0 0-1.06L8.56 10l4.47-4.47a.75.75 0 0 0-1.06-1.06l-5 5a.75.75 0 0 0 0 1.06l5 5a.75.75 0 0 0 1.06 0Z",
65
+ clipRule: "evenodd",
66
+ }),
67
+ ],
68
+ });
69
+ var CaretLeftIcon_default = SvgCaretLeftIcon;
70
+
71
+ // src/20/CaretRightIcon.tsx
72
+ var import_jsx_runtime2 = require("react/jsx-runtime");
73
+ var SvgCaretRightIcon = ({ title, titleId, ...props }) =>
74
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("svg", {
75
+ xmlns: "http://www.w3.org/2000/svg",
76
+ width: props.size || "1em",
77
+ height: props.size || "1em",
78
+ fill: "none",
79
+ viewBox: "0 0 20 20",
80
+ "aria-labelledby": titleId,
81
+ ...props,
82
+ children: [
83
+ title
84
+ ? /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("title", {
85
+ id: titleId,
86
+ children: title,
87
+ })
88
+ : null,
89
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", {
90
+ fill: "currentColor",
91
+ fillRule: "evenodd",
92
+ d: "M6.97 4.47a.75.75 0 0 0 0 1.06L11.44 10l-4.47 4.47a.75.75 0 1 0 1.06 1.06l5-5a.75.75 0 0 0 0-1.06l-5-5a.75.75 0 0 0-1.06 0Z",
93
+ clipRule: "evenodd",
94
+ }),
95
+ ],
96
+ });
97
+ var CaretRightIcon_default = SvgCaretRightIcon;
98
+
99
+ // src/20/CheckFilledIcon.tsx
100
+ var import_jsx_runtime3 = require("react/jsx-runtime");
101
+ var SvgCheckFilledIcon = ({ title, titleId, ...props }) =>
102
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("svg", {
103
+ xmlns: "http://www.w3.org/2000/svg",
104
+ width: props.size || "1em",
105
+ height: props.size || "1em",
106
+ fill: "none",
107
+ viewBox: "0 0 20 20",
108
+ "aria-labelledby": titleId,
109
+ ...props,
110
+ children: [
111
+ title
112
+ ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("title", {
113
+ id: titleId,
114
+ children: title,
115
+ })
116
+ : null,
117
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("g", {
118
+ clipPath: "url(#check-filled-icon_svg__a)",
119
+ children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", {
120
+ fill: "currentColor",
121
+ fillRule: "evenodd",
122
+ d: "M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10Zm4.53-11.97a.75.75 0 1 0-1.06-1.06L9 11.44 7.03 9.47a.75.75 0 1 0-1.06 1.06L9 13.56l5.53-5.53Z",
123
+ clipRule: "evenodd",
124
+ }),
125
+ }),
126
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("defs", {
127
+ children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("clipPath", {
128
+ id: "check-filled-icon_svg__a",
129
+ children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", {
130
+ fill: "transparent",
131
+ d: "M0 0h20v20H0z",
132
+ }),
133
+ }),
134
+ }),
135
+ ],
136
+ });
137
+ var CheckFilledIcon_default = SvgCheckFilledIcon;
138
+
139
+ // src/20/CheckmarkIcon.tsx
140
+ var import_jsx_runtime4 = require("react/jsx-runtime");
141
+ var SvgCheckmarkIcon = ({ title, titleId, ...props }) =>
142
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("svg", {
143
+ xmlns: "http://www.w3.org/2000/svg",
144
+ width: props.size || "1em",
145
+ height: props.size || "1em",
146
+ fill: "none",
147
+ viewBox: "0 0 20 20",
148
+ "aria-labelledby": titleId,
149
+ ...props,
150
+ children: [
151
+ title
152
+ ? /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("title", {
153
+ id: titleId,
154
+ children: title,
155
+ })
156
+ : null,
157
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", {
158
+ stroke: "currentColor",
159
+ strokeLinecap: "round",
160
+ strokeWidth: 1.5,
161
+ d: "m16 6-8 8-4-4",
162
+ }),
163
+ ],
164
+ });
165
+ var CheckmarkIcon_default = SvgCheckmarkIcon;
166
+
167
+ // src/20/DragHandleIcon.tsx
168
+ var import_jsx_runtime5 = require("react/jsx-runtime");
169
+ var SvgDragHandleIcon = ({ title, titleId, ...props }) =>
170
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("svg", {
171
+ xmlns: "http://www.w3.org/2000/svg",
172
+ width: props.size || "1em",
173
+ height: props.size || "1em",
174
+ fill: "none",
175
+ viewBox: "0 0 20 20",
176
+ "aria-labelledby": titleId,
177
+ ...props,
178
+ children: [
179
+ title
180
+ ? /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("title", {
181
+ id: titleId,
182
+ children: title,
183
+ })
184
+ : null,
185
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", {
186
+ cx: 15.417,
187
+ cy: 7.5,
188
+ r: 1.25,
189
+ fill: "currentColor",
190
+ transform: "rotate(90 15.417 7.5)",
191
+ }),
192
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", {
193
+ cx: 10,
194
+ cy: 7.5,
195
+ r: 1.25,
196
+ fill: "currentColor",
197
+ transform: "rotate(90 10 7.5)",
198
+ }),
199
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", {
200
+ cx: 4.583,
201
+ cy: 7.5,
202
+ r: 1.25,
203
+ fill: "currentColor",
204
+ transform: "rotate(90 4.583 7.5)",
205
+ }),
206
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", {
207
+ cx: 15.417,
208
+ cy: 12.5,
209
+ r: 1.25,
210
+ fill: "currentColor",
211
+ transform: "rotate(90 15.417 12.5)",
212
+ }),
213
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", {
214
+ cx: 10,
215
+ cy: 12.5,
216
+ r: 1.25,
217
+ fill: "currentColor",
218
+ transform: "rotate(90 10 12.5)",
219
+ }),
220
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("circle", {
221
+ cx: 4.583,
222
+ cy: 12.5,
223
+ r: 1.25,
224
+ fill: "currentColor",
225
+ transform: "rotate(90 4.583 12.5)",
226
+ }),
227
+ ],
228
+ });
229
+ var DragHandleIcon_default = SvgDragHandleIcon;
230
+
231
+ // src/20/EllipseIcon.tsx
232
+ var import_jsx_runtime6 = require("react/jsx-runtime");
233
+ var SvgEllipseIcon = ({ title, titleId, ...props }) =>
234
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("svg", {
235
+ xmlns: "http://www.w3.org/2000/svg",
236
+ width: props.size || "1em",
237
+ height: props.size || "1em",
238
+ fill: "none",
239
+ viewBox: "0 0 20 20",
240
+ "aria-labelledby": titleId,
241
+ ...props,
242
+ children: [
243
+ title
244
+ ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("title", {
245
+ id: titleId,
246
+ children: title,
247
+ })
248
+ : null,
249
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", {
250
+ fill: "currentColor",
251
+ fillRule: "evenodd",
252
+ d: "M10 16.834a6.833 6.833 0 1 0 0-13.667 6.833 6.833 0 0 0 0 13.667Zm0 1.5a8.333 8.333 0 1 0 0-16.667 8.333 8.333 0 0 0 0 16.667Z",
253
+ clipRule: "evenodd",
254
+ }),
255
+ ],
256
+ });
257
+ var EllipseIcon_default = SvgEllipseIcon;
258
+
259
+ // src/20/ErrorAltFilledIcon.tsx
260
+ var import_jsx_runtime7 = require("react/jsx-runtime");
261
+ var SvgErrorAltFilledIcon = ({ title, titleId, ...props }) =>
262
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("svg", {
263
+ xmlns: "http://www.w3.org/2000/svg",
264
+ width: props.size || "1em",
265
+ height: props.size || "1em",
266
+ fill: "none",
267
+ viewBox: "0 0 20 20",
268
+ "aria-labelledby": titleId,
269
+ ...props,
270
+ children: [
271
+ title
272
+ ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("title", {
273
+ id: titleId,
274
+ children: title,
275
+ })
276
+ : null,
277
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("path", {
278
+ fill: "currentColor",
279
+ fillRule: "evenodd",
280
+ d: "M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10Zm3.53-12.47a.75.75 0 0 0-1.06-1.06l-6 6a.75.75 0 1 0 1.06 1.06l6-6Z",
281
+ clipRule: "evenodd",
282
+ }),
283
+ ],
284
+ });
285
+ var ErrorAltFilledIcon_default = SvgErrorAltFilledIcon;
286
+
287
+ // src/20/InfoFilledIcon.tsx
288
+ var import_jsx_runtime8 = require("react/jsx-runtime");
289
+ var SvgInfoFilledIcon = ({ title, titleId, ...props }) =>
290
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("svg", {
291
+ xmlns: "http://www.w3.org/2000/svg",
292
+ width: props.size || "1em",
293
+ height: props.size || "1em",
294
+ fill: "none",
295
+ viewBox: "0 0 20 20",
296
+ "aria-labelledby": titleId,
297
+ ...props,
298
+ children: [
299
+ title
300
+ ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("title", {
301
+ id: titleId,
302
+ children: title,
303
+ })
304
+ : null,
305
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("g", {
306
+ clipPath: "url(#info-filled-icon_svg__a)",
307
+ children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", {
308
+ fill: "currentColor",
309
+ fillRule: "evenodd",
310
+ d: "M20 10c0 5.523-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0s10 4.477 10 10Zm-8.75-4.25a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM8.5 8.25a.75.75 0 0 0 0 1.5h.75v4.5H8.5a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-.75v-6H8.5Z",
311
+ clipRule: "evenodd",
312
+ }),
313
+ }),
314
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("defs", {
315
+ children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("clipPath", {
316
+ id: "info-filled-icon_svg__a",
317
+ children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", {
318
+ fill: "#fff",
319
+ d: "M0 0h20v20H0z",
320
+ }),
321
+ }),
322
+ }),
323
+ ],
324
+ });
325
+ var InfoFilledIcon_default = SvgInfoFilledIcon;
326
+
327
+ // src/20/PlusIcon.tsx
328
+ var import_jsx_runtime9 = require("react/jsx-runtime");
329
+ var SvgPlusIcon = ({ title, titleId, ...props }) =>
330
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("svg", {
331
+ xmlns: "http://www.w3.org/2000/svg",
332
+ width: props.size || "1em",
333
+ height: props.size || "1em",
334
+ fill: "none",
335
+ viewBox: "0 0 20 20",
336
+ "aria-labelledby": titleId,
337
+ ...props,
338
+ children: [
339
+ title
340
+ ? /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("title", {
341
+ id: titleId,
342
+ children: title,
343
+ })
344
+ : null,
345
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", {
346
+ fill: "currentColor",
347
+ fillRule: "evenodd",
348
+ d: "M9.25 16a.75.75 0 0 0 1.5 0v-5.25H16a.75.75 0 0 0 0-1.5h-5.25V4a.75.75 0 0 0-1.5 0v5.25H4a.75.75 0 0 0 0 1.5h5.25V16Z",
349
+ clipRule: "evenodd",
350
+ }),
351
+ ],
352
+ });
353
+ var PlusIcon_default = SvgPlusIcon;
354
+
355
+ // src/20/SearchIcon.tsx
356
+ var import_jsx_runtime10 = require("react/jsx-runtime");
357
+ var SvgSearchIcon = ({ title, titleId, ...props }) =>
358
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("svg", {
359
+ xmlns: "http://www.w3.org/2000/svg",
360
+ width: props.size || "1em",
361
+ height: props.size || "1em",
362
+ fill: "none",
363
+ viewBox: "0 0 20 20",
364
+ "aria-labelledby": titleId,
365
+ ...props,
366
+ children: [
367
+ title
368
+ ? /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("title", {
369
+ id: titleId,
370
+ children: title,
371
+ })
372
+ : null,
373
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", {
374
+ fill: "currentColor",
375
+ fillRule: "evenodd",
376
+ d: "M2.78 8.5a5.72 5.72 0 1 1 11.44 0 5.72 5.72 0 0 1-11.44 0ZM8.5 1.22a7.28 7.28 0 1 0 4.59 12.93l3.88 3.88a.75.75 0 0 0 1.06-1.06l-3.88-3.88A7.28 7.28 0 0 0 8.5 1.22Z",
377
+ clipRule: "evenodd",
378
+ }),
379
+ ],
380
+ });
381
+ var SearchIcon_default = SvgSearchIcon;
382
+
383
+ // src/20/StarIcon.tsx
384
+ var import_jsx_runtime11 = require("react/jsx-runtime");
385
+ var SvgStarIcon = ({ title, titleId, ...props }) =>
386
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("svg", {
387
+ xmlns: "http://www.w3.org/2000/svg",
388
+ width: props.size || "1em",
389
+ height: props.size || "1em",
390
+ fill: "none",
391
+ viewBox: "0 0 20 20",
392
+ "aria-labelledby": titleId,
393
+ ...props,
394
+ children: [
395
+ title
396
+ ? /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("title", {
397
+ id: titleId,
398
+ children: title,
399
+ })
400
+ : null,
401
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", {
402
+ fill: "currentColor",
403
+ fillRule: "evenodd",
404
+ d: "M10 .5a.75.75 0 0 1 .693.462l2.248 5.406 5.837.468a.75.75 0 0 1 .428 1.318l-4.447 3.809 1.359 5.696a.75.75 0 0 1-1.12.814L10 15.42l-4.997 3.052a.75.75 0 0 1-1.12-.814l1.358-5.696-4.447-3.81a.75.75 0 0 1 .428-1.317l5.837-.468L9.308.962A.75.75 0 0 1 10 .5Zm0 2.703L8.268 7.367a.75.75 0 0 1-.632.46l-4.496.36 3.425 2.935a.75.75 0 0 1 .242.743L5.76 16.253l3.85-2.351a.75.75 0 0 1 .781 0l3.85 2.35-1.047-4.387a.75.75 0 0 1 .241-.743l3.426-2.934-4.496-.36a.75.75 0 0 1-.633-.46L10 3.202Z",
405
+ clipRule: "evenodd",
406
+ }),
407
+ ],
408
+ });
409
+ var StarIcon_default = SvgStarIcon;
410
+
411
+ // src/20/UploadIcon.tsx
412
+ var import_jsx_runtime12 = require("react/jsx-runtime");
413
+ var SvgUploadIcon = ({ title, titleId, ...props }) =>
414
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("svg", {
415
+ xmlns: "http://www.w3.org/2000/svg",
416
+ width: props.size || "1em",
417
+ height: props.size || "1em",
418
+ fill: "none",
419
+ viewBox: "0 0 20 20",
420
+ "aria-labelledby": titleId,
421
+ ...props,
422
+ children: [
423
+ title
424
+ ? /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("title", {
425
+ id: titleId,
426
+ children: title,
427
+ })
428
+ : null,
429
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", {
430
+ fill: "currentColor",
431
+ fillRule: "evenodd",
432
+ d: "M10.75 13a.75.75 0 0 1-1.5 0V4.844L7.537 6.6a.75.75 0 1 1-1.074-1.047L10 1.926l3.537 3.627a.75.75 0 1 1-1.074 1.048L10.75 4.844V13Zm-8 0a.75.75 0 0 0-1.5 0v3c0 .966.784 1.75 1.75 1.75h14A1.75 1.75 0 0 0 18.75 16v-3a.75.75 0 0 0-1.5 0v3a.25.25 0 0 1-.25.25H3a.25.25 0 0 1-.25-.25v-3Z",
433
+ clipRule: "evenodd",
434
+ }),
435
+ ],
436
+ });
437
+ var UploadIcon_default = SvgUploadIcon;
438
+
439
+ // src/20/WarningFilledIcon.tsx
440
+ var import_jsx_runtime13 = require("react/jsx-runtime");
441
+ var SvgWarningFilledIcon = ({ title, titleId, ...props }) =>
442
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("svg", {
443
+ xmlns: "http://www.w3.org/2000/svg",
444
+ width: props.size || "1em",
445
+ height: props.size || "1em",
446
+ fill: "none",
447
+ viewBox: "0 0 20 20",
448
+ "aria-labelledby": titleId,
449
+ ...props,
450
+ children: [
451
+ title
452
+ ? /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("title", {
453
+ id: titleId,
454
+ children: title,
455
+ })
456
+ : null,
457
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", {
458
+ fill: "currentColor",
459
+ fillRule: "evenodd",
460
+ d: "M19.527 14.966 11.999 2.419l-.932.559.932-.559c-.906-1.51-3.095-1.51-4.002 0L.47 14.966c-.933 1.555.187 3.534 2 3.534h15.057c1.814 0 2.934-1.979 2-3.534ZM9.998 6.25a.75.75 0 0 1 .75.75v4a.75.75 0 1 1-1.5 0V7a.75.75 0 0 1 .75-.75Zm0 9.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z",
461
+ clipRule: "evenodd",
462
+ }),
463
+ ],
464
+ });
465
+ var WarningFilledIcon_default = SvgWarningFilledIcon;
466
+ // Annotate the CommonJS export names for ESM import in node:
467
+ 0 &&
468
+ (module.exports = {
469
+ CaretLeftIcon,
470
+ CaretRightIcon,
471
+ CheckFilledIcon,
472
+ CheckmarkIcon,
473
+ DragHandleIcon,
474
+ EllipseIcon,
475
+ ErrorAltFilledIcon,
476
+ InfoFilledIcon,
477
+ PlusIcon,
478
+ SearchIcon,
479
+ StarIcon,
480
+ UploadIcon,
481
+ WarningFilledIcon,
482
+ });