@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/24/index.mjs ADDED
@@ -0,0 +1,505 @@
1
+ // src/24/AvatarIcon.tsx
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ var SvgAvatarIcon = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /* @__PURE__ */ jsxs(
8
+ "svg",
9
+ {
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ width: props.size || "1em",
12
+ height: props.size || "1em",
13
+ fill: "none",
14
+ viewBox: "0 0 24 24",
15
+ "aria-labelledby": titleId,
16
+ ...props,
17
+ children: [
18
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
19
+ /* @__PURE__ */ jsx(
20
+ "path",
21
+ {
22
+ fill: "currentColor",
23
+ fillRule: "evenodd",
24
+ 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",
25
+ clipRule: "evenodd"
26
+ }
27
+ )
28
+ ]
29
+ }
30
+ );
31
+ var AvatarIcon_default = SvgAvatarIcon;
32
+
33
+ // src/24/BinIcon.tsx
34
+ import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
35
+ var SvgBinIcon = ({
36
+ title,
37
+ titleId,
38
+ ...props
39
+ }) => /* @__PURE__ */ jsxs2(
40
+ "svg",
41
+ {
42
+ xmlns: "http://www.w3.org/2000/svg",
43
+ width: props.size || "1em",
44
+ height: props.size || "1em",
45
+ fill: "none",
46
+ viewBox: "0 0 24 24",
47
+ "aria-labelledby": titleId,
48
+ ...props,
49
+ children: [
50
+ title ? /* @__PURE__ */ jsx2("title", { id: titleId, children: title }) : null,
51
+ /* @__PURE__ */ jsx2("mask", { id: "bin-icon_svg__a", fill: "#fff", children: /* @__PURE__ */ jsx2("path", { d: "M6 17V7h12v10a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2Z" }) }),
52
+ /* @__PURE__ */ jsx2(
53
+ "path",
54
+ {
55
+ fill: "currentColor",
56
+ 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",
57
+ mask: "url(#bin-icon_svg__a)"
58
+ }
59
+ ),
60
+ /* @__PURE__ */ jsx2(
61
+ "path",
62
+ {
63
+ stroke: "currentColor",
64
+ 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"
65
+ }
66
+ ),
67
+ /* @__PURE__ */ jsx2(
68
+ "path",
69
+ {
70
+ fill: "currentColor",
71
+ 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"
72
+ }
73
+ ),
74
+ /* @__PURE__ */ jsx2("path", { stroke: "currentColor", d: "M9.5 10v6M12 10v6M14.5 10v6" })
75
+ ]
76
+ }
77
+ );
78
+ var BinIcon_default = SvgBinIcon;
79
+
80
+ // src/24/CaretLeftIcon.tsx
81
+ import { jsx as jsx3, jsxs as jsxs3 } from "react/jsx-runtime";
82
+ var SvgCaretLeftIcon = ({
83
+ title,
84
+ titleId,
85
+ ...props
86
+ }) => /* @__PURE__ */ jsxs3(
87
+ "svg",
88
+ {
89
+ xmlns: "http://www.w3.org/2000/svg",
90
+ width: props.size || "1em",
91
+ height: props.size || "1em",
92
+ fill: "none",
93
+ viewBox: "0 0 24 24",
94
+ "aria-labelledby": titleId,
95
+ ...props,
96
+ children: [
97
+ title ? /* @__PURE__ */ jsx3("title", { id: titleId, children: title }) : null,
98
+ /* @__PURE__ */ jsx3(
99
+ "path",
100
+ {
101
+ fill: "currentColor",
102
+ fillRule: "evenodd",
103
+ 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",
104
+ clipRule: "evenodd"
105
+ }
106
+ )
107
+ ]
108
+ }
109
+ );
110
+ var CaretLeftIcon_default = SvgCaretLeftIcon;
111
+
112
+ // src/24/CaretRightIcon.tsx
113
+ import { jsx as jsx4, jsxs as jsxs4 } from "react/jsx-runtime";
114
+ var SvgCaretRightIcon = ({
115
+ title,
116
+ titleId,
117
+ ...props
118
+ }) => /* @__PURE__ */ jsxs4(
119
+ "svg",
120
+ {
121
+ xmlns: "http://www.w3.org/2000/svg",
122
+ width: props.size || "1em",
123
+ height: props.size || "1em",
124
+ fill: "none",
125
+ viewBox: "0 0 24 24",
126
+ "aria-labelledby": titleId,
127
+ ...props,
128
+ children: [
129
+ title ? /* @__PURE__ */ jsx4("title", { id: titleId, children: title }) : null,
130
+ /* @__PURE__ */ jsx4(
131
+ "path",
132
+ {
133
+ fill: "currentColor",
134
+ fillRule: "evenodd",
135
+ 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",
136
+ clipRule: "evenodd"
137
+ }
138
+ )
139
+ ]
140
+ }
141
+ );
142
+ var CaretRightIcon_default = SvgCaretRightIcon;
143
+
144
+ // src/24/CheckmarkIcon.tsx
145
+ import { jsx as jsx5, jsxs as jsxs5 } from "react/jsx-runtime";
146
+ var SvgCheckmarkIcon = ({
147
+ title,
148
+ titleId,
149
+ ...props
150
+ }) => /* @__PURE__ */ jsxs5(
151
+ "svg",
152
+ {
153
+ xmlns: "http://www.w3.org/2000/svg",
154
+ width: props.size || "1em",
155
+ height: props.size || "1em",
156
+ fill: "none",
157
+ viewBox: "0 0 24 24",
158
+ "aria-labelledby": titleId,
159
+ ...props,
160
+ children: [
161
+ title ? /* @__PURE__ */ jsx5("title", { id: titleId, children: title }) : null,
162
+ /* @__PURE__ */ jsx5(
163
+ "path",
164
+ {
165
+ fill: "currentColor",
166
+ fillRule: "evenodd",
167
+ 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",
168
+ clipRule: "evenodd"
169
+ }
170
+ )
171
+ ]
172
+ }
173
+ );
174
+ var CheckmarkIcon_default = SvgCheckmarkIcon;
175
+
176
+ // src/24/DragIndicatorIcon.tsx
177
+ import { jsx as jsx6, jsxs as jsxs6 } from "react/jsx-runtime";
178
+ var SvgDragIndicatorIcon = ({
179
+ title,
180
+ titleId,
181
+ ...props
182
+ }) => /* @__PURE__ */ jsxs6(
183
+ "svg",
184
+ {
185
+ xmlns: "http://www.w3.org/2000/svg",
186
+ width: props.size || "1em",
187
+ height: props.size || "1em",
188
+ fill: "none",
189
+ viewBox: "0 0 24 24",
190
+ "aria-labelledby": titleId,
191
+ ...props,
192
+ children: [
193
+ title ? /* @__PURE__ */ jsx6("title", { id: titleId, children: title }) : null,
194
+ /* @__PURE__ */ jsx6(
195
+ "path",
196
+ {
197
+ fill: "currentColor",
198
+ fillRule: "evenodd",
199
+ 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",
200
+ clipRule: "evenodd"
201
+ }
202
+ )
203
+ ]
204
+ }
205
+ );
206
+ var DragIndicatorIcon_default = SvgDragIndicatorIcon;
207
+
208
+ // src/24/EllipseDashedIcon.tsx
209
+ import { jsx as jsx7, jsxs as jsxs7 } from "react/jsx-runtime";
210
+ var SvgEllipseDashedIcon = ({
211
+ title,
212
+ titleId,
213
+ ...props
214
+ }) => /* @__PURE__ */ jsxs7(
215
+ "svg",
216
+ {
217
+ xmlns: "http://www.w3.org/2000/svg",
218
+ width: props.size || "1em",
219
+ height: props.size || "1em",
220
+ fill: "none",
221
+ viewBox: "0 0 24 24",
222
+ "aria-labelledby": titleId,
223
+ ...props,
224
+ children: [
225
+ title ? /* @__PURE__ */ jsx7("title", { id: titleId, children: title }) : null,
226
+ /* @__PURE__ */ jsx7(
227
+ "path",
228
+ {
229
+ fill: "currentColor",
230
+ fillRule: "evenodd",
231
+ 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",
232
+ clipRule: "evenodd"
233
+ }
234
+ )
235
+ ]
236
+ }
237
+ );
238
+ var EllipseDashedIcon_default = SvgEllipseDashedIcon;
239
+
240
+ // src/24/EllipseIcon.tsx
241
+ import { jsx as jsx8, jsxs as jsxs8 } from "react/jsx-runtime";
242
+ var SvgEllipseIcon = ({
243
+ title,
244
+ titleId,
245
+ ...props
246
+ }) => /* @__PURE__ */ jsxs8(
247
+ "svg",
248
+ {
249
+ xmlns: "http://www.w3.org/2000/svg",
250
+ width: props.size || "1em",
251
+ height: props.size || "1em",
252
+ fill: "none",
253
+ viewBox: "0 0 24 24",
254
+ "aria-labelledby": titleId,
255
+ ...props,
256
+ children: [
257
+ title ? /* @__PURE__ */ jsx8("title", { id: titleId, children: title }) : null,
258
+ /* @__PURE__ */ jsx8(
259
+ "path",
260
+ {
261
+ fill: "currentColor",
262
+ fillRule: "evenodd",
263
+ 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",
264
+ clipRule: "evenodd"
265
+ }
266
+ )
267
+ ]
268
+ }
269
+ );
270
+ var EllipseIcon_default = SvgEllipseIcon;
271
+
272
+ // src/24/PolygonDashedIcon.tsx
273
+ import { jsx as jsx9, jsxs as jsxs9 } from "react/jsx-runtime";
274
+ var SvgPolygonDashedIcon = ({
275
+ title,
276
+ titleId,
277
+ ...props
278
+ }) => /* @__PURE__ */ jsxs9(
279
+ "svg",
280
+ {
281
+ xmlns: "http://www.w3.org/2000/svg",
282
+ width: props.size || "1em",
283
+ height: props.size || "1em",
284
+ fill: "none",
285
+ viewBox: "0 0 24 24",
286
+ "aria-labelledby": titleId,
287
+ ...props,
288
+ children: [
289
+ title ? /* @__PURE__ */ jsx9("title", { id: titleId, children: title }) : null,
290
+ /* @__PURE__ */ jsx9(
291
+ "path",
292
+ {
293
+ fill: "currentColor",
294
+ 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"
295
+ }
296
+ )
297
+ ]
298
+ }
299
+ );
300
+ var PolygonDashedIcon_default = SvgPolygonDashedIcon;
301
+
302
+ // src/24/PolygonIcon.tsx
303
+ import { jsx as jsx10, jsxs as jsxs10 } from "react/jsx-runtime";
304
+ var SvgPolygonIcon = ({
305
+ title,
306
+ titleId,
307
+ ...props
308
+ }) => /* @__PURE__ */ jsxs10(
309
+ "svg",
310
+ {
311
+ xmlns: "http://www.w3.org/2000/svg",
312
+ width: props.size || "1em",
313
+ height: props.size || "1em",
314
+ fill: "none",
315
+ viewBox: "0 0 24 24",
316
+ "aria-labelledby": titleId,
317
+ ...props,
318
+ children: [
319
+ title ? /* @__PURE__ */ jsx10("title", { id: titleId, children: title }) : null,
320
+ /* @__PURE__ */ jsx10(
321
+ "path",
322
+ {
323
+ fill: "currentColor",
324
+ fillRule: "evenodd",
325
+ 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",
326
+ clipRule: "evenodd"
327
+ }
328
+ )
329
+ ]
330
+ }
331
+ );
332
+ var PolygonIcon_default = SvgPolygonIcon;
333
+
334
+ // src/24/RectangleDashedIcon.tsx
335
+ import { jsx as jsx11, jsxs as jsxs11 } from "react/jsx-runtime";
336
+ var SvgRectangleDashedIcon = ({
337
+ title,
338
+ titleId,
339
+ ...props
340
+ }) => /* @__PURE__ */ jsxs11(
341
+ "svg",
342
+ {
343
+ xmlns: "http://www.w3.org/2000/svg",
344
+ width: props.size || "1em",
345
+ height: props.size || "1em",
346
+ fill: "none",
347
+ viewBox: "0 0 24 24",
348
+ "aria-labelledby": titleId,
349
+ ...props,
350
+ children: [
351
+ title ? /* @__PURE__ */ jsx11("title", { id: titleId, children: title }) : null,
352
+ /* @__PURE__ */ jsx11(
353
+ "path",
354
+ {
355
+ fill: "currentColor",
356
+ 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"
357
+ }
358
+ )
359
+ ]
360
+ }
361
+ );
362
+ var RectangleDashedIcon_default = SvgRectangleDashedIcon;
363
+
364
+ // src/24/RotateCounterClockwiseIcon.tsx
365
+ import { jsx as jsx12, jsxs as jsxs12 } from "react/jsx-runtime";
366
+ var SvgRotateCounterClockwiseIcon = ({
367
+ title,
368
+ titleId,
369
+ ...props
370
+ }) => /* @__PURE__ */ jsxs12(
371
+ "svg",
372
+ {
373
+ xmlns: "http://www.w3.org/2000/svg",
374
+ width: props.size || "1em",
375
+ height: props.size || "1em",
376
+ fill: "none",
377
+ viewBox: "0 0 24 24",
378
+ "aria-labelledby": titleId,
379
+ ...props,
380
+ children: [
381
+ title ? /* @__PURE__ */ jsx12("title", { id: titleId, children: title }) : null,
382
+ /* @__PURE__ */ jsx12(
383
+ "path",
384
+ {
385
+ fill: "currentColor",
386
+ 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"
387
+ }
388
+ )
389
+ ]
390
+ }
391
+ );
392
+ var RotateCounterClockwiseIcon_default = SvgRotateCounterClockwiseIcon;
393
+
394
+ // src/24/SearchIcon.tsx
395
+ import { jsx as jsx13, jsxs as jsxs13 } from "react/jsx-runtime";
396
+ var SvgSearchIcon = ({
397
+ title,
398
+ titleId,
399
+ ...props
400
+ }) => /* @__PURE__ */ jsxs13(
401
+ "svg",
402
+ {
403
+ xmlns: "http://www.w3.org/2000/svg",
404
+ width: props.size || "1em",
405
+ height: props.size || "1em",
406
+ fill: "none",
407
+ viewBox: "0 0 24 24",
408
+ "aria-labelledby": titleId,
409
+ ...props,
410
+ children: [
411
+ title ? /* @__PURE__ */ jsx13("title", { id: titleId, children: title }) : null,
412
+ /* @__PURE__ */ jsx13(
413
+ "path",
414
+ {
415
+ fill: "currentColor",
416
+ fillRule: "evenodd",
417
+ 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",
418
+ clipRule: "evenodd"
419
+ }
420
+ )
421
+ ]
422
+ }
423
+ );
424
+ var SearchIcon_default = SvgSearchIcon;
425
+
426
+ // src/24/SquareIcon.tsx
427
+ import { jsx as jsx14, jsxs as jsxs14 } from "react/jsx-runtime";
428
+ var SvgSquareIcon = ({
429
+ title,
430
+ titleId,
431
+ ...props
432
+ }) => /* @__PURE__ */ jsxs14(
433
+ "svg",
434
+ {
435
+ xmlns: "http://www.w3.org/2000/svg",
436
+ width: props.size || "1em",
437
+ height: props.size || "1em",
438
+ fill: "none",
439
+ viewBox: "0 0 24 24",
440
+ "aria-labelledby": titleId,
441
+ ...props,
442
+ children: [
443
+ title ? /* @__PURE__ */ jsx14("title", { id: titleId, children: title }) : null,
444
+ /* @__PURE__ */ jsx14(
445
+ "path",
446
+ {
447
+ fill: "currentColor",
448
+ fillRule: "evenodd",
449
+ 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",
450
+ clipRule: "evenodd"
451
+ }
452
+ )
453
+ ]
454
+ }
455
+ );
456
+ var SquareIcon_default = SvgSquareIcon;
457
+
458
+ // src/24/TrashIcon.tsx
459
+ import { jsx as jsx15, jsxs as jsxs15 } from "react/jsx-runtime";
460
+ var SvgTrashIcon = ({
461
+ title,
462
+ titleId,
463
+ ...props
464
+ }) => /* @__PURE__ */ jsxs15(
465
+ "svg",
466
+ {
467
+ xmlns: "http://www.w3.org/2000/svg",
468
+ width: props.size || "1em",
469
+ height: props.size || "1em",
470
+ fill: "none",
471
+ viewBox: "0 0 24 24",
472
+ "aria-labelledby": titleId,
473
+ ...props,
474
+ children: [
475
+ title ? /* @__PURE__ */ jsx15("title", { id: titleId, children: title }) : null,
476
+ /* @__PURE__ */ jsx15(
477
+ "path",
478
+ {
479
+ fill: "currentColor",
480
+ fillRule: "evenodd",
481
+ 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",
482
+ clipRule: "evenodd"
483
+ }
484
+ )
485
+ ]
486
+ }
487
+ );
488
+ var TrashIcon_default = SvgTrashIcon;
489
+ export {
490
+ AvatarIcon_default as AvatarIcon,
491
+ BinIcon_default as BinIcon,
492
+ CaretLeftIcon_default as CaretLeftIcon,
493
+ CaretRightIcon_default as CaretRightIcon,
494
+ CheckmarkIcon_default as CheckmarkIcon,
495
+ DragIndicatorIcon_default as DragIndicatorIcon,
496
+ EllipseDashedIcon_default as EllipseDashedIcon,
497
+ EllipseIcon_default as EllipseIcon,
498
+ PolygonDashedIcon_default as PolygonDashedIcon,
499
+ PolygonIcon_default as PolygonIcon,
500
+ RectangleDashedIcon_default as RectangleDashedIcon,
501
+ RotateCounterClockwiseIcon_default as RotateCounterClockwiseIcon,
502
+ SearchIcon_default as SearchIcon,
503
+ SquareIcon_default as SquareIcon,
504
+ TrashIcon_default as TrashIcon
505
+ };
package/8/index.d.mts ADDED
@@ -0,0 +1,23 @@
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 SvgCaretRightIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
10
+
11
+ declare const SvgChevronDownIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
12
+
13
+ declare const SvgChevronRightIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
14
+
15
+ declare const SvgEllipseIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
16
+
17
+ declare const SvgMinusIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
18
+
19
+ declare const SvgPlusIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
20
+
21
+ declare const SvgXIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
22
+
23
+ export { SvgCaretRightIcon as CaretRightIcon, SvgChevronDownIcon as ChevronDownIcon, SvgChevronRightIcon as ChevronRightIcon, SvgEllipseIcon as EllipseIcon, SvgMinusIcon as MinusIcon, SvgPlusIcon as PlusIcon, SvgXIcon as XIcon };
package/8/index.d.ts ADDED
@@ -0,0 +1,23 @@
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 SvgCaretRightIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
10
+
11
+ declare const SvgChevronDownIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
12
+
13
+ declare const SvgChevronRightIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
14
+
15
+ declare const SvgEllipseIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
16
+
17
+ declare const SvgMinusIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
18
+
19
+ declare const SvgPlusIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
20
+
21
+ declare const SvgXIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
22
+
23
+ export { SvgCaretRightIcon as CaretRightIcon, SvgChevronDownIcon as ChevronDownIcon, SvgChevronRightIcon as ChevronRightIcon, SvgEllipseIcon as EllipseIcon, SvgMinusIcon as MinusIcon, SvgPlusIcon as PlusIcon, SvgXIcon as XIcon };