@baseline-ui/icons 0.1.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/12/index.d.mts +21 -0
- package/12/index.d.ts +21 -0
- package/12/index.js +232 -0
- package/12/index.mjs +200 -0
- package/16/index.d.mts +47 -0
- package/16/index.d.ts +47 -0
- package/16/index.js +684 -0
- package/16/index.mjs +639 -0
- package/20/index.d.mts +35 -0
- package/20/index.d.ts +35 -0
- package/20/index.js +522 -0
- package/20/index.mjs +483 -0
- package/24/index.d.mts +39 -0
- package/24/index.d.ts +39 -0
- package/24/index.js +546 -0
- package/24/index.mjs +505 -0
- package/8/index.d.mts +23 -0
- package/8/index.d.ts +23 -0
- package/8/index.js +258 -0
- package/8/index.mjs +225 -0
- package/dist/index.css +4 -0
- package/dist/index.d.mts +44 -0
- package/dist/index.d.ts +44 -0
- package/dist/index.js +114 -0
- package/dist/index.mjs +77 -0
- package/package.json +37 -0
package/20/index.d.ts
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { CSSProperties, SVGProps } from 'react';
|
|
2
|
+
|
|
3
|
+
type SVGRProps = {
|
|
4
|
+
title?: string;
|
|
5
|
+
titleId?: string;
|
|
6
|
+
size?: CSSProperties["width"];
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
declare const SvgCaretLeftIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
10
|
+
|
|
11
|
+
declare const SvgCaretRightIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
12
|
+
|
|
13
|
+
declare const SvgCheckFilledIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
14
|
+
|
|
15
|
+
declare const SvgCheckmarkIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
16
|
+
|
|
17
|
+
declare const SvgDragHandleIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
18
|
+
|
|
19
|
+
declare const SvgEllipseIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
20
|
+
|
|
21
|
+
declare const SvgErrorAltFilledIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
22
|
+
|
|
23
|
+
declare const SvgInfoFilledIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
24
|
+
|
|
25
|
+
declare const SvgPlusIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
26
|
+
|
|
27
|
+
declare const SvgSearchIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
28
|
+
|
|
29
|
+
declare const SvgStarIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
30
|
+
|
|
31
|
+
declare const SvgUploadIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
32
|
+
|
|
33
|
+
declare const SvgWarningFilledIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
34
|
+
|
|
35
|
+
export { SvgCaretLeftIcon as CaretLeftIcon, SvgCaretRightIcon as CaretRightIcon, SvgCheckFilledIcon as CheckFilledIcon, SvgCheckmarkIcon as CheckmarkIcon, SvgDragHandleIcon as DragHandleIcon, SvgEllipseIcon as EllipseIcon, SvgErrorAltFilledIcon as ErrorAltFilledIcon, SvgInfoFilledIcon as InfoFilledIcon, SvgPlusIcon as PlusIcon, SvgSearchIcon as SearchIcon, SvgStarIcon as StarIcon, SvgUploadIcon as UploadIcon, SvgWarningFilledIcon as WarningFilledIcon };
|
package/20/index.js
ADDED
|
@@ -0,0 +1,522 @@
|
|
|
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, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/20/index.ts
|
|
21
|
+
var __exports = {};
|
|
22
|
+
__export(__exports, {
|
|
23
|
+
CaretLeftIcon: () => CaretLeftIcon_default,
|
|
24
|
+
CaretRightIcon: () => CaretRightIcon_default,
|
|
25
|
+
CheckFilledIcon: () => CheckFilledIcon_default,
|
|
26
|
+
CheckmarkIcon: () => CheckmarkIcon_default,
|
|
27
|
+
DragHandleIcon: () => DragHandleIcon_default,
|
|
28
|
+
EllipseIcon: () => EllipseIcon_default,
|
|
29
|
+
ErrorAltFilledIcon: () => ErrorAltFilledIcon_default,
|
|
30
|
+
InfoFilledIcon: () => InfoFilledIcon_default,
|
|
31
|
+
PlusIcon: () => PlusIcon_default,
|
|
32
|
+
SearchIcon: () => SearchIcon_default,
|
|
33
|
+
StarIcon: () => StarIcon_default,
|
|
34
|
+
UploadIcon: () => UploadIcon_default,
|
|
35
|
+
WarningFilledIcon: () => WarningFilledIcon_default
|
|
36
|
+
});
|
|
37
|
+
module.exports = __toCommonJS(__exports);
|
|
38
|
+
|
|
39
|
+
// src/20/CaretLeftIcon.tsx
|
|
40
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
41
|
+
var SvgCaretLeftIcon = ({
|
|
42
|
+
title,
|
|
43
|
+
titleId,
|
|
44
|
+
...props
|
|
45
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
46
|
+
"svg",
|
|
47
|
+
{
|
|
48
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
49
|
+
width: props.size || "1em",
|
|
50
|
+
height: props.size || "1em",
|
|
51
|
+
fill: "none",
|
|
52
|
+
viewBox: "0 0 20 20",
|
|
53
|
+
"aria-labelledby": titleId,
|
|
54
|
+
...props,
|
|
55
|
+
children: [
|
|
56
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { id: titleId, children: title }) : null,
|
|
57
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
58
|
+
"path",
|
|
59
|
+
{
|
|
60
|
+
fill: "currentColor",
|
|
61
|
+
fillRule: "evenodd",
|
|
62
|
+
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",
|
|
63
|
+
clipRule: "evenodd"
|
|
64
|
+
}
|
|
65
|
+
)
|
|
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 = ({
|
|
74
|
+
title,
|
|
75
|
+
titleId,
|
|
76
|
+
...props
|
|
77
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
78
|
+
"svg",
|
|
79
|
+
{
|
|
80
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
81
|
+
width: props.size || "1em",
|
|
82
|
+
height: props.size || "1em",
|
|
83
|
+
fill: "none",
|
|
84
|
+
viewBox: "0 0 20 20",
|
|
85
|
+
"aria-labelledby": titleId,
|
|
86
|
+
...props,
|
|
87
|
+
children: [
|
|
88
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("title", { id: titleId, children: title }) : null,
|
|
89
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
90
|
+
"path",
|
|
91
|
+
{
|
|
92
|
+
fill: "currentColor",
|
|
93
|
+
fillRule: "evenodd",
|
|
94
|
+
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",
|
|
95
|
+
clipRule: "evenodd"
|
|
96
|
+
}
|
|
97
|
+
)
|
|
98
|
+
]
|
|
99
|
+
}
|
|
100
|
+
);
|
|
101
|
+
var CaretRightIcon_default = SvgCaretRightIcon;
|
|
102
|
+
|
|
103
|
+
// src/20/CheckFilledIcon.tsx
|
|
104
|
+
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
105
|
+
var SvgCheckFilledIcon = ({
|
|
106
|
+
title,
|
|
107
|
+
titleId,
|
|
108
|
+
...props
|
|
109
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
110
|
+
"svg",
|
|
111
|
+
{
|
|
112
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
113
|
+
width: props.size || "1em",
|
|
114
|
+
height: props.size || "1em",
|
|
115
|
+
fill: "none",
|
|
116
|
+
viewBox: "0 0 20 20",
|
|
117
|
+
"aria-labelledby": titleId,
|
|
118
|
+
...props,
|
|
119
|
+
children: [
|
|
120
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("title", { id: titleId, children: title }) : null,
|
|
121
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("g", { clipPath: "url(#check-filled-icon_svg__a)", children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
122
|
+
"path",
|
|
123
|
+
{
|
|
124
|
+
fill: "currentColor",
|
|
125
|
+
fillRule: "evenodd",
|
|
126
|
+
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",
|
|
127
|
+
clipRule: "evenodd"
|
|
128
|
+
}
|
|
129
|
+
) }),
|
|
130
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("clipPath", { id: "check-filled-icon_svg__a", children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { fill: "transparent", d: "M0 0h20v20H0z" }) }) })
|
|
131
|
+
]
|
|
132
|
+
}
|
|
133
|
+
);
|
|
134
|
+
var CheckFilledIcon_default = SvgCheckFilledIcon;
|
|
135
|
+
|
|
136
|
+
// src/20/CheckmarkIcon.tsx
|
|
137
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
138
|
+
var SvgCheckmarkIcon = ({
|
|
139
|
+
title,
|
|
140
|
+
titleId,
|
|
141
|
+
...props
|
|
142
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
|
|
143
|
+
"svg",
|
|
144
|
+
{
|
|
145
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
146
|
+
width: props.size || "1em",
|
|
147
|
+
height: props.size || "1em",
|
|
148
|
+
fill: "none",
|
|
149
|
+
viewBox: "0 0 20 20",
|
|
150
|
+
"aria-labelledby": titleId,
|
|
151
|
+
...props,
|
|
152
|
+
children: [
|
|
153
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("title", { id: titleId, children: title }) : null,
|
|
154
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
155
|
+
"path",
|
|
156
|
+
{
|
|
157
|
+
stroke: "currentColor",
|
|
158
|
+
strokeLinecap: "round",
|
|
159
|
+
strokeWidth: 1.5,
|
|
160
|
+
d: "m16 6-8 8-4-4"
|
|
161
|
+
}
|
|
162
|
+
)
|
|
163
|
+
]
|
|
164
|
+
}
|
|
165
|
+
);
|
|
166
|
+
var CheckmarkIcon_default = SvgCheckmarkIcon;
|
|
167
|
+
|
|
168
|
+
// src/20/DragHandleIcon.tsx
|
|
169
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
170
|
+
var SvgDragHandleIcon = ({
|
|
171
|
+
title,
|
|
172
|
+
titleId,
|
|
173
|
+
...props
|
|
174
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
|
|
175
|
+
"svg",
|
|
176
|
+
{
|
|
177
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
178
|
+
width: props.size || "1em",
|
|
179
|
+
height: props.size || "1em",
|
|
180
|
+
fill: "none",
|
|
181
|
+
viewBox: "0 0 20 20",
|
|
182
|
+
"aria-labelledby": titleId,
|
|
183
|
+
...props,
|
|
184
|
+
children: [
|
|
185
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("title", { id: titleId, children: title }) : null,
|
|
186
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
187
|
+
"circle",
|
|
188
|
+
{
|
|
189
|
+
cx: 15.417,
|
|
190
|
+
cy: 7.5,
|
|
191
|
+
r: 1.25,
|
|
192
|
+
fill: "currentColor",
|
|
193
|
+
transform: "rotate(90 15.417 7.5)"
|
|
194
|
+
}
|
|
195
|
+
),
|
|
196
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
197
|
+
"circle",
|
|
198
|
+
{
|
|
199
|
+
cx: 10,
|
|
200
|
+
cy: 7.5,
|
|
201
|
+
r: 1.25,
|
|
202
|
+
fill: "currentColor",
|
|
203
|
+
transform: "rotate(90 10 7.5)"
|
|
204
|
+
}
|
|
205
|
+
),
|
|
206
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
207
|
+
"circle",
|
|
208
|
+
{
|
|
209
|
+
cx: 4.583,
|
|
210
|
+
cy: 7.5,
|
|
211
|
+
r: 1.25,
|
|
212
|
+
fill: "currentColor",
|
|
213
|
+
transform: "rotate(90 4.583 7.5)"
|
|
214
|
+
}
|
|
215
|
+
),
|
|
216
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
217
|
+
"circle",
|
|
218
|
+
{
|
|
219
|
+
cx: 15.417,
|
|
220
|
+
cy: 12.5,
|
|
221
|
+
r: 1.25,
|
|
222
|
+
fill: "currentColor",
|
|
223
|
+
transform: "rotate(90 15.417 12.5)"
|
|
224
|
+
}
|
|
225
|
+
),
|
|
226
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
227
|
+
"circle",
|
|
228
|
+
{
|
|
229
|
+
cx: 10,
|
|
230
|
+
cy: 12.5,
|
|
231
|
+
r: 1.25,
|
|
232
|
+
fill: "currentColor",
|
|
233
|
+
transform: "rotate(90 10 12.5)"
|
|
234
|
+
}
|
|
235
|
+
),
|
|
236
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
237
|
+
"circle",
|
|
238
|
+
{
|
|
239
|
+
cx: 4.583,
|
|
240
|
+
cy: 12.5,
|
|
241
|
+
r: 1.25,
|
|
242
|
+
fill: "currentColor",
|
|
243
|
+
transform: "rotate(90 4.583 12.5)"
|
|
244
|
+
}
|
|
245
|
+
)
|
|
246
|
+
]
|
|
247
|
+
}
|
|
248
|
+
);
|
|
249
|
+
var DragHandleIcon_default = SvgDragHandleIcon;
|
|
250
|
+
|
|
251
|
+
// src/20/EllipseIcon.tsx
|
|
252
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
253
|
+
var SvgEllipseIcon = ({
|
|
254
|
+
title,
|
|
255
|
+
titleId,
|
|
256
|
+
...props
|
|
257
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
258
|
+
"svg",
|
|
259
|
+
{
|
|
260
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
261
|
+
width: props.size || "1em",
|
|
262
|
+
height: props.size || "1em",
|
|
263
|
+
fill: "none",
|
|
264
|
+
viewBox: "0 0 20 20",
|
|
265
|
+
"aria-labelledby": titleId,
|
|
266
|
+
...props,
|
|
267
|
+
children: [
|
|
268
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("title", { id: titleId, children: title }) : null,
|
|
269
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
270
|
+
"path",
|
|
271
|
+
{
|
|
272
|
+
fill: "currentColor",
|
|
273
|
+
fillRule: "evenodd",
|
|
274
|
+
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",
|
|
275
|
+
clipRule: "evenodd"
|
|
276
|
+
}
|
|
277
|
+
)
|
|
278
|
+
]
|
|
279
|
+
}
|
|
280
|
+
);
|
|
281
|
+
var EllipseIcon_default = SvgEllipseIcon;
|
|
282
|
+
|
|
283
|
+
// src/20/ErrorAltFilledIcon.tsx
|
|
284
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
285
|
+
var SvgErrorAltFilledIcon = ({
|
|
286
|
+
title,
|
|
287
|
+
titleId,
|
|
288
|
+
...props
|
|
289
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
290
|
+
"svg",
|
|
291
|
+
{
|
|
292
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
293
|
+
width: props.size || "1em",
|
|
294
|
+
height: props.size || "1em",
|
|
295
|
+
fill: "none",
|
|
296
|
+
viewBox: "0 0 20 20",
|
|
297
|
+
"aria-labelledby": titleId,
|
|
298
|
+
...props,
|
|
299
|
+
children: [
|
|
300
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("title", { id: titleId, children: title }) : null,
|
|
301
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
302
|
+
"path",
|
|
303
|
+
{
|
|
304
|
+
fill: "currentColor",
|
|
305
|
+
fillRule: "evenodd",
|
|
306
|
+
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",
|
|
307
|
+
clipRule: "evenodd"
|
|
308
|
+
}
|
|
309
|
+
)
|
|
310
|
+
]
|
|
311
|
+
}
|
|
312
|
+
);
|
|
313
|
+
var ErrorAltFilledIcon_default = SvgErrorAltFilledIcon;
|
|
314
|
+
|
|
315
|
+
// src/20/InfoFilledIcon.tsx
|
|
316
|
+
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
317
|
+
var SvgInfoFilledIcon = ({
|
|
318
|
+
title,
|
|
319
|
+
titleId,
|
|
320
|
+
...props
|
|
321
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
|
|
322
|
+
"svg",
|
|
323
|
+
{
|
|
324
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
325
|
+
width: props.size || "1em",
|
|
326
|
+
height: props.size || "1em",
|
|
327
|
+
fill: "none",
|
|
328
|
+
viewBox: "0 0 20 20",
|
|
329
|
+
"aria-labelledby": titleId,
|
|
330
|
+
...props,
|
|
331
|
+
children: [
|
|
332
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("title", { id: titleId, children: title }) : null,
|
|
333
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("g", { clipPath: "url(#info-filled-icon_svg__a)", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
334
|
+
"path",
|
|
335
|
+
{
|
|
336
|
+
fill: "currentColor",
|
|
337
|
+
fillRule: "evenodd",
|
|
338
|
+
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",
|
|
339
|
+
clipRule: "evenodd"
|
|
340
|
+
}
|
|
341
|
+
) }),
|
|
342
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("clipPath", { id: "info-filled-icon_svg__a", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", { fill: "#fff", d: "M0 0h20v20H0z" }) }) })
|
|
343
|
+
]
|
|
344
|
+
}
|
|
345
|
+
);
|
|
346
|
+
var InfoFilledIcon_default = SvgInfoFilledIcon;
|
|
347
|
+
|
|
348
|
+
// src/20/PlusIcon.tsx
|
|
349
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
350
|
+
var SvgPlusIcon = ({
|
|
351
|
+
title,
|
|
352
|
+
titleId,
|
|
353
|
+
...props
|
|
354
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
355
|
+
"svg",
|
|
356
|
+
{
|
|
357
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
358
|
+
width: props.size || "1em",
|
|
359
|
+
height: props.size || "1em",
|
|
360
|
+
fill: "none",
|
|
361
|
+
viewBox: "0 0 20 20",
|
|
362
|
+
"aria-labelledby": titleId,
|
|
363
|
+
...props,
|
|
364
|
+
children: [
|
|
365
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("title", { id: titleId, children: title }) : null,
|
|
366
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
367
|
+
"path",
|
|
368
|
+
{
|
|
369
|
+
fill: "currentColor",
|
|
370
|
+
fillRule: "evenodd",
|
|
371
|
+
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",
|
|
372
|
+
clipRule: "evenodd"
|
|
373
|
+
}
|
|
374
|
+
)
|
|
375
|
+
]
|
|
376
|
+
}
|
|
377
|
+
);
|
|
378
|
+
var PlusIcon_default = SvgPlusIcon;
|
|
379
|
+
|
|
380
|
+
// src/20/SearchIcon.tsx
|
|
381
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
382
|
+
var SvgSearchIcon = ({
|
|
383
|
+
title,
|
|
384
|
+
titleId,
|
|
385
|
+
...props
|
|
386
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
|
|
387
|
+
"svg",
|
|
388
|
+
{
|
|
389
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
390
|
+
width: props.size || "1em",
|
|
391
|
+
height: props.size || "1em",
|
|
392
|
+
fill: "none",
|
|
393
|
+
viewBox: "0 0 20 20",
|
|
394
|
+
"aria-labelledby": titleId,
|
|
395
|
+
...props,
|
|
396
|
+
children: [
|
|
397
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("title", { id: titleId, children: title }) : null,
|
|
398
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
399
|
+
"path",
|
|
400
|
+
{
|
|
401
|
+
fill: "currentColor",
|
|
402
|
+
fillRule: "evenodd",
|
|
403
|
+
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",
|
|
404
|
+
clipRule: "evenodd"
|
|
405
|
+
}
|
|
406
|
+
)
|
|
407
|
+
]
|
|
408
|
+
}
|
|
409
|
+
);
|
|
410
|
+
var SearchIcon_default = SvgSearchIcon;
|
|
411
|
+
|
|
412
|
+
// src/20/StarIcon.tsx
|
|
413
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
414
|
+
var SvgStarIcon = ({
|
|
415
|
+
title,
|
|
416
|
+
titleId,
|
|
417
|
+
...props
|
|
418
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
|
|
419
|
+
"svg",
|
|
420
|
+
{
|
|
421
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
422
|
+
width: props.size || "1em",
|
|
423
|
+
height: props.size || "1em",
|
|
424
|
+
fill: "none",
|
|
425
|
+
viewBox: "0 0 20 20",
|
|
426
|
+
"aria-labelledby": titleId,
|
|
427
|
+
...props,
|
|
428
|
+
children: [
|
|
429
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("title", { id: titleId, children: title }) : null,
|
|
430
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
431
|
+
"path",
|
|
432
|
+
{
|
|
433
|
+
fill: "currentColor",
|
|
434
|
+
fillRule: "evenodd",
|
|
435
|
+
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",
|
|
436
|
+
clipRule: "evenodd"
|
|
437
|
+
}
|
|
438
|
+
)
|
|
439
|
+
]
|
|
440
|
+
}
|
|
441
|
+
);
|
|
442
|
+
var StarIcon_default = SvgStarIcon;
|
|
443
|
+
|
|
444
|
+
// src/20/UploadIcon.tsx
|
|
445
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
446
|
+
var SvgUploadIcon = ({
|
|
447
|
+
title,
|
|
448
|
+
titleId,
|
|
449
|
+
...props
|
|
450
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
|
|
451
|
+
"svg",
|
|
452
|
+
{
|
|
453
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
454
|
+
width: props.size || "1em",
|
|
455
|
+
height: props.size || "1em",
|
|
456
|
+
fill: "none",
|
|
457
|
+
viewBox: "0 0 20 20",
|
|
458
|
+
"aria-labelledby": titleId,
|
|
459
|
+
...props,
|
|
460
|
+
children: [
|
|
461
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("title", { id: titleId, children: title }) : null,
|
|
462
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
463
|
+
"path",
|
|
464
|
+
{
|
|
465
|
+
fill: "currentColor",
|
|
466
|
+
fillRule: "evenodd",
|
|
467
|
+
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",
|
|
468
|
+
clipRule: "evenodd"
|
|
469
|
+
}
|
|
470
|
+
)
|
|
471
|
+
]
|
|
472
|
+
}
|
|
473
|
+
);
|
|
474
|
+
var UploadIcon_default = SvgUploadIcon;
|
|
475
|
+
|
|
476
|
+
// src/20/WarningFilledIcon.tsx
|
|
477
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
478
|
+
var SvgWarningFilledIcon = ({
|
|
479
|
+
title,
|
|
480
|
+
titleId,
|
|
481
|
+
...props
|
|
482
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
|
|
483
|
+
"svg",
|
|
484
|
+
{
|
|
485
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
486
|
+
width: props.size || "1em",
|
|
487
|
+
height: props.size || "1em",
|
|
488
|
+
fill: "none",
|
|
489
|
+
viewBox: "0 0 20 20",
|
|
490
|
+
"aria-labelledby": titleId,
|
|
491
|
+
...props,
|
|
492
|
+
children: [
|
|
493
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("title", { id: titleId, children: title }) : null,
|
|
494
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
495
|
+
"path",
|
|
496
|
+
{
|
|
497
|
+
fill: "currentColor",
|
|
498
|
+
fillRule: "evenodd",
|
|
499
|
+
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",
|
|
500
|
+
clipRule: "evenodd"
|
|
501
|
+
}
|
|
502
|
+
)
|
|
503
|
+
]
|
|
504
|
+
}
|
|
505
|
+
);
|
|
506
|
+
var WarningFilledIcon_default = SvgWarningFilledIcon;
|
|
507
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
508
|
+
0 && (module.exports = {
|
|
509
|
+
CaretLeftIcon,
|
|
510
|
+
CaretRightIcon,
|
|
511
|
+
CheckFilledIcon,
|
|
512
|
+
CheckmarkIcon,
|
|
513
|
+
DragHandleIcon,
|
|
514
|
+
EllipseIcon,
|
|
515
|
+
ErrorAltFilledIcon,
|
|
516
|
+
InfoFilledIcon,
|
|
517
|
+
PlusIcon,
|
|
518
|
+
SearchIcon,
|
|
519
|
+
StarIcon,
|
|
520
|
+
UploadIcon,
|
|
521
|
+
WarningFilledIcon
|
|
522
|
+
});
|