@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/24/index.js
ADDED
|
@@ -0,0 +1,546 @@
|
|
|
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/24/index.ts
|
|
21
|
+
var __exports = {};
|
|
22
|
+
__export(__exports, {
|
|
23
|
+
AvatarIcon: () => AvatarIcon_default,
|
|
24
|
+
BinIcon: () => BinIcon_default,
|
|
25
|
+
CaretLeftIcon: () => CaretLeftIcon_default,
|
|
26
|
+
CaretRightIcon: () => CaretRightIcon_default,
|
|
27
|
+
CheckmarkIcon: () => CheckmarkIcon_default,
|
|
28
|
+
DragIndicatorIcon: () => DragIndicatorIcon_default,
|
|
29
|
+
EllipseDashedIcon: () => EllipseDashedIcon_default,
|
|
30
|
+
EllipseIcon: () => EllipseIcon_default,
|
|
31
|
+
PolygonDashedIcon: () => PolygonDashedIcon_default,
|
|
32
|
+
PolygonIcon: () => PolygonIcon_default,
|
|
33
|
+
RectangleDashedIcon: () => RectangleDashedIcon_default,
|
|
34
|
+
RotateCounterClockwiseIcon: () => RotateCounterClockwiseIcon_default,
|
|
35
|
+
SearchIcon: () => SearchIcon_default,
|
|
36
|
+
SquareIcon: () => SquareIcon_default,
|
|
37
|
+
TrashIcon: () => TrashIcon_default
|
|
38
|
+
});
|
|
39
|
+
module.exports = __toCommonJS(__exports);
|
|
40
|
+
|
|
41
|
+
// src/24/AvatarIcon.tsx
|
|
42
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
43
|
+
var SvgAvatarIcon = ({
|
|
44
|
+
title,
|
|
45
|
+
titleId,
|
|
46
|
+
...props
|
|
47
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
48
|
+
"svg",
|
|
49
|
+
{
|
|
50
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
51
|
+
width: props.size || "1em",
|
|
52
|
+
height: props.size || "1em",
|
|
53
|
+
fill: "none",
|
|
54
|
+
viewBox: "0 0 24 24",
|
|
55
|
+
"aria-labelledby": titleId,
|
|
56
|
+
...props,
|
|
57
|
+
children: [
|
|
58
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { id: titleId, children: title }) : null,
|
|
59
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
60
|
+
"path",
|
|
61
|
+
{
|
|
62
|
+
fill: "currentColor",
|
|
63
|
+
fillRule: "evenodd",
|
|
64
|
+
d: "M12 12a3 3 0 1 0 0-6 3 3 0 1 0 0 6Zm0 1.5c-2.002 0-6 1.005-6 3V18h12v-1.5c0-1.995-3.998-3-6-3Z",
|
|
65
|
+
clipRule: "evenodd"
|
|
66
|
+
}
|
|
67
|
+
)
|
|
68
|
+
]
|
|
69
|
+
}
|
|
70
|
+
);
|
|
71
|
+
var AvatarIcon_default = SvgAvatarIcon;
|
|
72
|
+
|
|
73
|
+
// src/24/BinIcon.tsx
|
|
74
|
+
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
75
|
+
var SvgBinIcon = ({
|
|
76
|
+
title,
|
|
77
|
+
titleId,
|
|
78
|
+
...props
|
|
79
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
|
|
80
|
+
"svg",
|
|
81
|
+
{
|
|
82
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
83
|
+
width: props.size || "1em",
|
|
84
|
+
height: props.size || "1em",
|
|
85
|
+
fill: "none",
|
|
86
|
+
viewBox: "0 0 24 24",
|
|
87
|
+
"aria-labelledby": titleId,
|
|
88
|
+
...props,
|
|
89
|
+
children: [
|
|
90
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("title", { id: titleId, children: title }) : null,
|
|
91
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("mask", { id: "bin-icon_svg__a", fill: "#fff", children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M6 17V7h12v10a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2Z" }) }),
|
|
92
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
93
|
+
"path",
|
|
94
|
+
{
|
|
95
|
+
fill: "currentColor",
|
|
96
|
+
d: "M6 7V6H5v1h1Zm12 0h1V6h-1v1ZM5 7v10h2V7H5Zm3 13h8v-2H8v2Zm11-3V7h-2v10h2ZM18 6H6v2h12V6Zm-2 14a3 3 0 0 0 3-3h-2a1 1 0 0 1-1 1v2ZM5 17a3 3 0 0 0 3 3v-2a1 1 0 0 1-1-1H5Z",
|
|
97
|
+
mask: "url(#bin-icon_svg__a)"
|
|
98
|
+
}
|
|
99
|
+
),
|
|
100
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
101
|
+
"path",
|
|
102
|
+
{
|
|
103
|
+
stroke: "currentColor",
|
|
104
|
+
d: "M5.5 7V6a.5.5 0 0 1 .5-.5h12a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5Z"
|
|
105
|
+
}
|
|
106
|
+
),
|
|
107
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
108
|
+
"path",
|
|
109
|
+
{
|
|
110
|
+
fill: "currentColor",
|
|
111
|
+
d: "M11 5v-.5h-1V5h1Zm.5-1h1V3h-1v1Zm1.5.5V5h1v-.5h-1Zm-.5-.5a.5.5 0 0 1 .5.5h1A1.5 1.5 0 0 0 12.5 3v1Zm-1.5.5a.5.5 0 0 1 .5-.5V3A1.5 1.5 0 0 0 10 4.5h1Z"
|
|
112
|
+
}
|
|
113
|
+
),
|
|
114
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { stroke: "currentColor", d: "M9.5 10v6M12 10v6M14.5 10v6" })
|
|
115
|
+
]
|
|
116
|
+
}
|
|
117
|
+
);
|
|
118
|
+
var BinIcon_default = SvgBinIcon;
|
|
119
|
+
|
|
120
|
+
// src/24/CaretLeftIcon.tsx
|
|
121
|
+
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
122
|
+
var SvgCaretLeftIcon = ({
|
|
123
|
+
title,
|
|
124
|
+
titleId,
|
|
125
|
+
...props
|
|
126
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
127
|
+
"svg",
|
|
128
|
+
{
|
|
129
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
130
|
+
width: props.size || "1em",
|
|
131
|
+
height: props.size || "1em",
|
|
132
|
+
fill: "none",
|
|
133
|
+
viewBox: "0 0 24 24",
|
|
134
|
+
"aria-labelledby": titleId,
|
|
135
|
+
...props,
|
|
136
|
+
children: [
|
|
137
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("title", { id: titleId, children: title }) : null,
|
|
138
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
139
|
+
"path",
|
|
140
|
+
{
|
|
141
|
+
fill: "currentColor",
|
|
142
|
+
fillRule: "evenodd",
|
|
143
|
+
d: "M15.53 18.53a.75.75 0 0 0 0-1.06L10.06 12l5.47-5.47a.75.75 0 0 0-1.06-1.06l-6 6a.75.75 0 0 0 0 1.06l6 6a.75.75 0 0 0 1.06 0Z",
|
|
144
|
+
clipRule: "evenodd"
|
|
145
|
+
}
|
|
146
|
+
)
|
|
147
|
+
]
|
|
148
|
+
}
|
|
149
|
+
);
|
|
150
|
+
var CaretLeftIcon_default = SvgCaretLeftIcon;
|
|
151
|
+
|
|
152
|
+
// src/24/CaretRightIcon.tsx
|
|
153
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
154
|
+
var SvgCaretRightIcon = ({
|
|
155
|
+
title,
|
|
156
|
+
titleId,
|
|
157
|
+
...props
|
|
158
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
|
|
159
|
+
"svg",
|
|
160
|
+
{
|
|
161
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
162
|
+
width: props.size || "1em",
|
|
163
|
+
height: props.size || "1em",
|
|
164
|
+
fill: "none",
|
|
165
|
+
viewBox: "0 0 24 24",
|
|
166
|
+
"aria-labelledby": titleId,
|
|
167
|
+
...props,
|
|
168
|
+
children: [
|
|
169
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("title", { id: titleId, children: title }) : null,
|
|
170
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
171
|
+
"path",
|
|
172
|
+
{
|
|
173
|
+
fill: "currentColor",
|
|
174
|
+
fillRule: "evenodd",
|
|
175
|
+
d: "M8.47 5.47a.75.75 0 0 0 0 1.06L13.94 12l-5.47 5.47a.75.75 0 1 0 1.06 1.06l6-6a.75.75 0 0 0 0-1.06l-6-6a.75.75 0 0 0-1.06 0Z",
|
|
176
|
+
clipRule: "evenodd"
|
|
177
|
+
}
|
|
178
|
+
)
|
|
179
|
+
]
|
|
180
|
+
}
|
|
181
|
+
);
|
|
182
|
+
var CaretRightIcon_default = SvgCaretRightIcon;
|
|
183
|
+
|
|
184
|
+
// src/24/CheckmarkIcon.tsx
|
|
185
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
186
|
+
var SvgCheckmarkIcon = ({
|
|
187
|
+
title,
|
|
188
|
+
titleId,
|
|
189
|
+
...props
|
|
190
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
|
|
191
|
+
"svg",
|
|
192
|
+
{
|
|
193
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
194
|
+
width: props.size || "1em",
|
|
195
|
+
height: props.size || "1em",
|
|
196
|
+
fill: "none",
|
|
197
|
+
viewBox: "0 0 24 24",
|
|
198
|
+
"aria-labelledby": titleId,
|
|
199
|
+
...props,
|
|
200
|
+
children: [
|
|
201
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("title", { id: titleId, children: title }) : null,
|
|
202
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
203
|
+
"path",
|
|
204
|
+
{
|
|
205
|
+
fill: "currentColor",
|
|
206
|
+
fillRule: "evenodd",
|
|
207
|
+
d: "M19.688 6.802a.75.75 0 0 1 0 1.06L9.332 18.219 4.47 13.355a.75.75 0 0 1 1.06-1.06l3.802 3.802 9.295-9.295a.75.75 0 0 1 1.06 0Z",
|
|
208
|
+
clipRule: "evenodd"
|
|
209
|
+
}
|
|
210
|
+
)
|
|
211
|
+
]
|
|
212
|
+
}
|
|
213
|
+
);
|
|
214
|
+
var CheckmarkIcon_default = SvgCheckmarkIcon;
|
|
215
|
+
|
|
216
|
+
// src/24/DragIndicatorIcon.tsx
|
|
217
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
218
|
+
var SvgDragIndicatorIcon = ({
|
|
219
|
+
title,
|
|
220
|
+
titleId,
|
|
221
|
+
...props
|
|
222
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
223
|
+
"svg",
|
|
224
|
+
{
|
|
225
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
226
|
+
width: props.size || "1em",
|
|
227
|
+
height: props.size || "1em",
|
|
228
|
+
fill: "none",
|
|
229
|
+
viewBox: "0 0 24 24",
|
|
230
|
+
"aria-labelledby": titleId,
|
|
231
|
+
...props,
|
|
232
|
+
children: [
|
|
233
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("title", { id: titleId, children: title }) : null,
|
|
234
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
235
|
+
"path",
|
|
236
|
+
{
|
|
237
|
+
fill: "currentColor",
|
|
238
|
+
fillRule: "evenodd",
|
|
239
|
+
d: "M7 9a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Zm0 6a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Zm6.5 0a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Zm5-1.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm-6.5-6a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3ZM20 9a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Z",
|
|
240
|
+
clipRule: "evenodd"
|
|
241
|
+
}
|
|
242
|
+
)
|
|
243
|
+
]
|
|
244
|
+
}
|
|
245
|
+
);
|
|
246
|
+
var DragIndicatorIcon_default = SvgDragIndicatorIcon;
|
|
247
|
+
|
|
248
|
+
// src/24/EllipseDashedIcon.tsx
|
|
249
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
250
|
+
var SvgEllipseDashedIcon = ({
|
|
251
|
+
title,
|
|
252
|
+
titleId,
|
|
253
|
+
...props
|
|
254
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
255
|
+
"svg",
|
|
256
|
+
{
|
|
257
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
258
|
+
width: props.size || "1em",
|
|
259
|
+
height: props.size || "1em",
|
|
260
|
+
fill: "none",
|
|
261
|
+
viewBox: "0 0 24 24",
|
|
262
|
+
"aria-labelledby": titleId,
|
|
263
|
+
...props,
|
|
264
|
+
children: [
|
|
265
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("title", { id: titleId, children: title }) : null,
|
|
266
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
267
|
+
"path",
|
|
268
|
+
{
|
|
269
|
+
fill: "currentColor",
|
|
270
|
+
fillRule: "evenodd",
|
|
271
|
+
d: "m21.878 13.565-1.482-.233a8.583 8.583 0 0 0 0-2.664l1.482-.233a10.079 10.079 0 0 1 0 3.13Zm-.54-5.15-1.4.538a8.489 8.489 0 0 0-1.331-2.302l1.165-.944a9.991 9.991 0 0 1 1.566 2.708Zm-3.045-4.187-.944 1.165a8.49 8.49 0 0 0-2.302-1.331l.538-1.4c.988.38 1.9.911 2.708 1.566Zm-4.728-2.106-.233 1.482a8.575 8.575 0 0 0-2.664 0l-.233-1.482a10.075 10.075 0 0 1 3.13 0Zm-5.15.54.538 1.4a8.49 8.49 0 0 0-2.302 1.331l-.944-1.165a9.99 9.99 0 0 1 2.708-1.566ZM4.228 5.707l1.165.944a8.49 8.49 0 0 0-1.331 2.302l-1.4-.538a9.99 9.99 0 0 1 1.566-2.708Zm-2.106 4.728a10.075 10.075 0 0 0 0 3.13l1.482-.233a8.575 8.575 0 0 1 0-2.664l-1.482-.233Zm.54 5.15 1.4-.538a8.49 8.49 0 0 0 1.331 2.302l-1.165.944a9.99 9.99 0 0 1-1.566-2.708Zm3.045 4.187.944-1.165a8.49 8.49 0 0 0 2.302 1.331l-.538 1.4a9.991 9.991 0 0 1-2.708-1.566Zm4.728 2.106.233-1.482a8.583 8.583 0 0 0 2.664 0l.233 1.482a10.079 10.079 0 0 1-3.13 0Zm5.15-.54-.538-1.4a8.49 8.49 0 0 0 2.302-1.331l.944 1.165a9.992 9.992 0 0 1-2.708 1.566Zm4.187-3.045-1.165-.944a8.49 8.49 0 0 0 1.331-2.302l1.4.538c-.38.988-.911 1.9-1.566 2.708Z",
|
|
272
|
+
clipRule: "evenodd"
|
|
273
|
+
}
|
|
274
|
+
)
|
|
275
|
+
]
|
|
276
|
+
}
|
|
277
|
+
);
|
|
278
|
+
var EllipseDashedIcon_default = SvgEllipseDashedIcon;
|
|
279
|
+
|
|
280
|
+
// src/24/EllipseIcon.tsx
|
|
281
|
+
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
282
|
+
var SvgEllipseIcon = ({
|
|
283
|
+
title,
|
|
284
|
+
titleId,
|
|
285
|
+
...props
|
|
286
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
|
|
287
|
+
"svg",
|
|
288
|
+
{
|
|
289
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
290
|
+
width: props.size || "1em",
|
|
291
|
+
height: props.size || "1em",
|
|
292
|
+
fill: "none",
|
|
293
|
+
viewBox: "0 0 24 24",
|
|
294
|
+
"aria-labelledby": titleId,
|
|
295
|
+
...props,
|
|
296
|
+
children: [
|
|
297
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("title", { id: titleId, children: title }) : null,
|
|
298
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
299
|
+
"path",
|
|
300
|
+
{
|
|
301
|
+
fill: "currentColor",
|
|
302
|
+
fillRule: "evenodd",
|
|
303
|
+
d: "M12 20.5a8.5 8.5 0 1 0 0-17 8.5 8.5 0 0 0 0 17Zm0 1.5c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Z",
|
|
304
|
+
clipRule: "evenodd"
|
|
305
|
+
}
|
|
306
|
+
)
|
|
307
|
+
]
|
|
308
|
+
}
|
|
309
|
+
);
|
|
310
|
+
var EllipseIcon_default = SvgEllipseIcon;
|
|
311
|
+
|
|
312
|
+
// src/24/PolygonDashedIcon.tsx
|
|
313
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
314
|
+
var SvgPolygonDashedIcon = ({
|
|
315
|
+
title,
|
|
316
|
+
titleId,
|
|
317
|
+
...props
|
|
318
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
319
|
+
"svg",
|
|
320
|
+
{
|
|
321
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
322
|
+
width: props.size || "1em",
|
|
323
|
+
height: props.size || "1em",
|
|
324
|
+
fill: "none",
|
|
325
|
+
viewBox: "0 0 24 24",
|
|
326
|
+
"aria-labelledby": titleId,
|
|
327
|
+
...props,
|
|
328
|
+
children: [
|
|
329
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("title", { id: titleId, children: title }) : null,
|
|
330
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
331
|
+
"path",
|
|
332
|
+
{
|
|
333
|
+
fill: "currentColor",
|
|
334
|
+
d: "m6.72 4.59.73-1.3-2.713-1.53A1.5 1.5 0 0 0 2.5 3.068V6.06H4v-3l2.72 1.53ZM11.07 7.04 8.46 5.57l.74-1.31 2.61 1.47-.74 1.31ZM20.747 10.765a1.5 1.5 0 0 1 .002 2.614l-2.84 1.601-.73-1.31 2.84-1.59-2.84-1.6.73-1.31 2.838 1.595ZM16.17 15.96l-2.61 1.47-.74-1.31 2.61-1.47.74 1.31ZM9.2 19.88l2.61-1.47-.74-1.31-2.61 1.47.74 1.31ZM7.45 20.86l-2.713 1.53A1.5 1.5 0 0 1 2.5 21.082V18.06H4v3.02l2.72-1.53.73 1.31ZM12.82 8.03l2.61 1.47.74-1.31-2.61-1.47-.74 1.31ZM4 16.06v-3H2.5v3H4ZM4 8.06v3H2.5v-3H4Z"
|
|
335
|
+
}
|
|
336
|
+
)
|
|
337
|
+
]
|
|
338
|
+
}
|
|
339
|
+
);
|
|
340
|
+
var PolygonDashedIcon_default = SvgPolygonDashedIcon;
|
|
341
|
+
|
|
342
|
+
// src/24/PolygonIcon.tsx
|
|
343
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
344
|
+
var SvgPolygonIcon = ({
|
|
345
|
+
title,
|
|
346
|
+
titleId,
|
|
347
|
+
...props
|
|
348
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
|
|
349
|
+
"svg",
|
|
350
|
+
{
|
|
351
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
352
|
+
width: props.size || "1em",
|
|
353
|
+
height: props.size || "1em",
|
|
354
|
+
fill: "none",
|
|
355
|
+
viewBox: "0 0 24 24",
|
|
356
|
+
"aria-labelledby": titleId,
|
|
357
|
+
...props,
|
|
358
|
+
children: [
|
|
359
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("title", { id: titleId, children: title }) : null,
|
|
360
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
361
|
+
"path",
|
|
362
|
+
{
|
|
363
|
+
fill: "currentColor",
|
|
364
|
+
fillRule: "evenodd",
|
|
365
|
+
d: "M3.243 1.705a1.5 1.5 0 0 1 1.492-.012l16 9a1.5 1.5 0 0 1 0 2.614l-16 9A1.5 1.5 0 0 1 2.5 21V3a1.5 1.5 0 0 1 .743-1.295ZM4 21l16-9L4 3v18Z",
|
|
366
|
+
clipRule: "evenodd"
|
|
367
|
+
}
|
|
368
|
+
)
|
|
369
|
+
]
|
|
370
|
+
}
|
|
371
|
+
);
|
|
372
|
+
var PolygonIcon_default = SvgPolygonIcon;
|
|
373
|
+
|
|
374
|
+
// src/24/RectangleDashedIcon.tsx
|
|
375
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
376
|
+
var SvgRectangleDashedIcon = ({
|
|
377
|
+
title,
|
|
378
|
+
titleId,
|
|
379
|
+
...props
|
|
380
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
|
|
381
|
+
"svg",
|
|
382
|
+
{
|
|
383
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
384
|
+
width: props.size || "1em",
|
|
385
|
+
height: props.size || "1em",
|
|
386
|
+
fill: "none",
|
|
387
|
+
viewBox: "0 0 24 24",
|
|
388
|
+
"aria-labelledby": titleId,
|
|
389
|
+
...props,
|
|
390
|
+
children: [
|
|
391
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("title", { id: titleId, children: title }) : null,
|
|
392
|
+
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
393
|
+
"path",
|
|
394
|
+
{
|
|
395
|
+
fill: "currentColor",
|
|
396
|
+
d: "M21 6h-1.5V4.5H18V3h2a1 1 0 0 1 1 1v2ZM3 18h1.5v1.5H6V21H4a1 1 0 0 1-1-1v-2ZM4.5 6H3V4a1 1 0 0 1 1-1h2v1.5H4.5V6ZM21 18h-1.5v1.5H18V21h2a1 1 0 0 0 1-1v-2ZM8 4.5V3h3v1.5H8ZM8 19.5V21h3v-1.5H8ZM3 8h1.5v3H3V8ZM21 8h-1.5v3H21V8ZM13 4.5V3h3v1.5h-3ZM13 19.5V21h3v-1.5h-3ZM3 13h1.5v3H3v-3ZM21 13h-1.5v3H21v-3Z"
|
|
397
|
+
}
|
|
398
|
+
)
|
|
399
|
+
]
|
|
400
|
+
}
|
|
401
|
+
);
|
|
402
|
+
var RectangleDashedIcon_default = SvgRectangleDashedIcon;
|
|
403
|
+
|
|
404
|
+
// src/24/RotateCounterClockwiseIcon.tsx
|
|
405
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
406
|
+
var SvgRotateCounterClockwiseIcon = ({
|
|
407
|
+
title,
|
|
408
|
+
titleId,
|
|
409
|
+
...props
|
|
410
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
|
|
411
|
+
"svg",
|
|
412
|
+
{
|
|
413
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
414
|
+
width: props.size || "1em",
|
|
415
|
+
height: props.size || "1em",
|
|
416
|
+
fill: "none",
|
|
417
|
+
viewBox: "0 0 24 24",
|
|
418
|
+
"aria-labelledby": titleId,
|
|
419
|
+
...props,
|
|
420
|
+
children: [
|
|
421
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("title", { id: titleId, children: title }) : null,
|
|
422
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
423
|
+
"path",
|
|
424
|
+
{
|
|
425
|
+
fill: "currentColor",
|
|
426
|
+
d: "M12.994 2.564a.75.75 0 0 0-.988-1.128l-4 3.5a.75.75 0 0 0 0 1.128l4 3.5a.75.75 0 0 0 .988-1.128l-2.558-2.239A6.25 6.25 0 1 1 5.75 12.25a.75.75 0 0 0-1.5 0 7.75 7.75 0 1 0 6.397-7.632l2.347-2.054Z"
|
|
427
|
+
}
|
|
428
|
+
)
|
|
429
|
+
]
|
|
430
|
+
}
|
|
431
|
+
);
|
|
432
|
+
var RotateCounterClockwiseIcon_default = SvgRotateCounterClockwiseIcon;
|
|
433
|
+
|
|
434
|
+
// src/24/SearchIcon.tsx
|
|
435
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
436
|
+
var SvgSearchIcon = ({
|
|
437
|
+
title,
|
|
438
|
+
titleId,
|
|
439
|
+
...props
|
|
440
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
|
|
441
|
+
"svg",
|
|
442
|
+
{
|
|
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 24 24",
|
|
448
|
+
"aria-labelledby": titleId,
|
|
449
|
+
...props,
|
|
450
|
+
children: [
|
|
451
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("title", { id: titleId, children: title }) : null,
|
|
452
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
453
|
+
"path",
|
|
454
|
+
{
|
|
455
|
+
fill: "currentColor",
|
|
456
|
+
fillRule: "evenodd",
|
|
457
|
+
d: "M3.75 10.5a6.75 6.75 0 1 1 13.5 0 6.75 6.75 0 0 1-13.5 0Zm6.75-8.25a8.25 8.25 0 1 0 5.28 14.59l4.69 4.69a.75.75 0 0 0 1.06-1.06l-4.69-4.69A8.25 8.25 0 0 0 10.5 2.25Z",
|
|
458
|
+
clipRule: "evenodd"
|
|
459
|
+
}
|
|
460
|
+
)
|
|
461
|
+
]
|
|
462
|
+
}
|
|
463
|
+
);
|
|
464
|
+
var SearchIcon_default = SvgSearchIcon;
|
|
465
|
+
|
|
466
|
+
// src/24/SquareIcon.tsx
|
|
467
|
+
var import_jsx_runtime14 = require("react/jsx-runtime");
|
|
468
|
+
var SvgSquareIcon = ({
|
|
469
|
+
title,
|
|
470
|
+
titleId,
|
|
471
|
+
...props
|
|
472
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
|
|
473
|
+
"svg",
|
|
474
|
+
{
|
|
475
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
476
|
+
width: props.size || "1em",
|
|
477
|
+
height: props.size || "1em",
|
|
478
|
+
fill: "none",
|
|
479
|
+
viewBox: "0 0 24 24",
|
|
480
|
+
"aria-labelledby": titleId,
|
|
481
|
+
...props,
|
|
482
|
+
children: [
|
|
483
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("title", { id: titleId, children: title }) : null,
|
|
484
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
485
|
+
"path",
|
|
486
|
+
{
|
|
487
|
+
fill: "currentColor",
|
|
488
|
+
fillRule: "evenodd",
|
|
489
|
+
d: "M4.5 4.5v15h15v-15h-15ZM4 3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4Z",
|
|
490
|
+
clipRule: "evenodd"
|
|
491
|
+
}
|
|
492
|
+
)
|
|
493
|
+
]
|
|
494
|
+
}
|
|
495
|
+
);
|
|
496
|
+
var SquareIcon_default = SvgSquareIcon;
|
|
497
|
+
|
|
498
|
+
// src/24/TrashIcon.tsx
|
|
499
|
+
var import_jsx_runtime15 = require("react/jsx-runtime");
|
|
500
|
+
var SvgTrashIcon = ({
|
|
501
|
+
title,
|
|
502
|
+
titleId,
|
|
503
|
+
...props
|
|
504
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
|
|
505
|
+
"svg",
|
|
506
|
+
{
|
|
507
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
508
|
+
width: props.size || "1em",
|
|
509
|
+
height: props.size || "1em",
|
|
510
|
+
fill: "none",
|
|
511
|
+
viewBox: "0 0 24 24",
|
|
512
|
+
"aria-labelledby": titleId,
|
|
513
|
+
...props,
|
|
514
|
+
children: [
|
|
515
|
+
title ? /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("title", { id: titleId, children: title }) : null,
|
|
516
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
517
|
+
"path",
|
|
518
|
+
{
|
|
519
|
+
fill: "currentColor",
|
|
520
|
+
fillRule: "evenodd",
|
|
521
|
+
d: "M9.75 4a2.25 2.25 0 0 1 4.5 0v.25h-4.5V4Zm6 0a3.75 3.75 0 1 0-7.5 0v.25H3a.75.75 0 0 0 0 1.5h1.25V20A2.75 2.75 0 0 0 7 22.75h10A2.75 2.75 0 0 0 19.75 20V5.75H21a.75.75 0 0 0 0-1.5h-5.25V4Zm-10 16V5.75h12.5V20c0 .69-.56 1.25-1.25 1.25H7c-.69 0-1.25-.56-1.25-1.25Zm7-11a.75.75 0 0 0-1.5 0v9a.75.75 0 0 0 1.5 0V9ZM8.5 8.25a.75.75 0 0 1 .75.75v9a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75Zm7.75.75a.75.75 0 0 0-1.5 0v9a.75.75 0 0 0 1.5 0V9Z",
|
|
522
|
+
clipRule: "evenodd"
|
|
523
|
+
}
|
|
524
|
+
)
|
|
525
|
+
]
|
|
526
|
+
}
|
|
527
|
+
);
|
|
528
|
+
var TrashIcon_default = SvgTrashIcon;
|
|
529
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
530
|
+
0 && (module.exports = {
|
|
531
|
+
AvatarIcon,
|
|
532
|
+
BinIcon,
|
|
533
|
+
CaretLeftIcon,
|
|
534
|
+
CaretRightIcon,
|
|
535
|
+
CheckmarkIcon,
|
|
536
|
+
DragIndicatorIcon,
|
|
537
|
+
EllipseDashedIcon,
|
|
538
|
+
EllipseIcon,
|
|
539
|
+
PolygonDashedIcon,
|
|
540
|
+
PolygonIcon,
|
|
541
|
+
RectangleDashedIcon,
|
|
542
|
+
RotateCounterClockwiseIcon,
|
|
543
|
+
SearchIcon,
|
|
544
|
+
SquareIcon,
|
|
545
|
+
TrashIcon
|
|
546
|
+
});
|