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