@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.
package/License.md ADDED
@@ -0,0 +1,5 @@
1
+ ## PSPDFKit for Web License Agreement
2
+
3
+ Please refer to our website to read our evaluation license terms and conditions for PSPDFKit for Web:
4
+
5
+ https://pspdfkit.com/legal/License.pdf
@@ -0,0 +1,47 @@
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 SvgCheckmarkIcon: ({
17
+ title,
18
+ titleId,
19
+ ...props
20
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
21
+
22
+ declare const SvgEllipseIcon: ({
23
+ title,
24
+ titleId,
25
+ ...props
26
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
27
+
28
+ declare const SvgMinusIcon: ({
29
+ title,
30
+ titleId,
31
+ ...props
32
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
33
+
34
+ declare const SvgXIcon: ({
35
+ title,
36
+ titleId,
37
+ ...props
38
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
39
+
40
+ export {
41
+ SvgCaretLeftIcon as CaretLeftIcon,
42
+ SvgCaretRightIcon as CaretRightIcon,
43
+ SvgCheckmarkIcon as CheckmarkIcon,
44
+ SvgEllipseIcon as EllipseIcon,
45
+ SvgMinusIcon as MinusIcon,
46
+ SvgXIcon as XIcon,
47
+ };
@@ -0,0 +1,47 @@
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 SvgCheckmarkIcon: ({
17
+ title,
18
+ titleId,
19
+ ...props
20
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
21
+
22
+ declare const SvgEllipseIcon: ({
23
+ title,
24
+ titleId,
25
+ ...props
26
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
27
+
28
+ declare const SvgMinusIcon: ({
29
+ title,
30
+ titleId,
31
+ ...props
32
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
33
+
34
+ declare const SvgXIcon: ({
35
+ title,
36
+ titleId,
37
+ ...props
38
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
39
+
40
+ export {
41
+ SvgCaretLeftIcon as CaretLeftIcon,
42
+ SvgCaretRightIcon as CaretRightIcon,
43
+ SvgCheckmarkIcon as CheckmarkIcon,
44
+ SvgEllipseIcon as EllipseIcon,
45
+ SvgMinusIcon as MinusIcon,
46
+ SvgXIcon as XIcon,
47
+ };
@@ -0,0 +1,224 @@
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/12/index.ts
25
+ var __exports = {};
26
+ __export(__exports, {
27
+ CaretLeftIcon: () => CaretLeftIcon_default,
28
+ CaretRightIcon: () => CaretRightIcon_default,
29
+ CheckmarkIcon: () => CheckmarkIcon_default,
30
+ EllipseIcon: () => EllipseIcon_default,
31
+ MinusIcon: () => MinusIcon_default,
32
+ XIcon: () => XIcon_default,
33
+ });
34
+ module.exports = __toCommonJS(__exports);
35
+
36
+ // src/12/CaretLeftIcon.tsx
37
+ var import_jsx_runtime = require("react/jsx-runtime");
38
+ var SvgCaretLeftIcon = ({ title, titleId, ...props }) =>
39
+ /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", {
40
+ xmlns: "http://www.w3.org/2000/svg",
41
+ width: props.size || "1em",
42
+ height: props.size || "1em",
43
+ fill: "none",
44
+ viewBox: "0 0 12 12",
45
+ "aria-labelledby": titleId,
46
+ ...props,
47
+ children: [
48
+ title
49
+ ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", {
50
+ id: titleId,
51
+ children: title,
52
+ })
53
+ : null,
54
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
55
+ fill: "currentColor",
56
+ fillRule: "evenodd",
57
+ d: "M8.03 9.53a.75.75 0 0 0 0-1.06L5.56 6l2.47-2.47a.75.75 0 0 0-1.06-1.06l-3 3a.75.75 0 0 0 0 1.06l3 3a.75.75 0 0 0 1.06 0Z",
58
+ clipRule: "evenodd",
59
+ }),
60
+ ],
61
+ });
62
+ var CaretLeftIcon_default = SvgCaretLeftIcon;
63
+
64
+ // src/12/CaretRightIcon.tsx
65
+ var import_jsx_runtime2 = require("react/jsx-runtime");
66
+ var SvgCaretRightIcon = ({ title, titleId, ...props }) =>
67
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("svg", {
68
+ xmlns: "http://www.w3.org/2000/svg",
69
+ width: props.size || "1em",
70
+ height: props.size || "1em",
71
+ fill: "none",
72
+ viewBox: "0 0 12 12",
73
+ "aria-labelledby": titleId,
74
+ ...props,
75
+ children: [
76
+ title
77
+ ? /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("title", {
78
+ id: titleId,
79
+ children: title,
80
+ })
81
+ : null,
82
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", {
83
+ fill: "currentColor",
84
+ fillRule: "evenodd",
85
+ d: "M3.97 2.47a.75.75 0 0 0 0 1.06L6.44 6 3.97 8.47a.75.75 0 0 0 1.06 1.06l3-3a.75.75 0 0 0 0-1.06l-3-3a.75.75 0 0 0-1.06 0Z",
86
+ clipRule: "evenodd",
87
+ }),
88
+ ],
89
+ });
90
+ var CaretRightIcon_default = SvgCaretRightIcon;
91
+
92
+ // src/12/CheckmarkIcon.tsx
93
+ var import_jsx_runtime3 = require("react/jsx-runtime");
94
+ var SvgCheckmarkIcon = ({ title, titleId, ...props }) =>
95
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("svg", {
96
+ xmlns: "http://www.w3.org/2000/svg",
97
+ width: props.size || "1em",
98
+ height: props.size || "1em",
99
+ fill: "none",
100
+ viewBox: "0 0 12 12",
101
+ "aria-labelledby": titleId,
102
+ ...props,
103
+ children: [
104
+ title
105
+ ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("title", {
106
+ id: titleId,
107
+ children: title,
108
+ })
109
+ : null,
110
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("g", {
111
+ clipPath: "url(#checkmark-icon_svg__a)",
112
+ children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", {
113
+ fill: "currentColor",
114
+ fillRule: "evenodd",
115
+ d: "M11.03 2.845a.75.75 0 0 1 0 1.06l-6.53 6.53-3.53-3.53a.75.75 0 0 1 1.06-1.06l2.47 2.47 5.47-5.47a.75.75 0 0 1 1.06 0Z",
116
+ clipRule: "evenodd",
117
+ }),
118
+ }),
119
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("defs", {
120
+ children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("clipPath", {
121
+ id: "checkmark-icon_svg__a",
122
+ children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", {
123
+ fill: "#fff",
124
+ d: "M0 0h12v12H0z",
125
+ }),
126
+ }),
127
+ }),
128
+ ],
129
+ });
130
+ var CheckmarkIcon_default = SvgCheckmarkIcon;
131
+
132
+ // src/12/EllipseIcon.tsx
133
+ var import_jsx_runtime4 = require("react/jsx-runtime");
134
+ var SvgEllipseIcon = ({ title, titleId, ...props }) =>
135
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("svg", {
136
+ xmlns: "http://www.w3.org/2000/svg",
137
+ width: props.size || "1em",
138
+ height: props.size || "1em",
139
+ fill: "none",
140
+ viewBox: "0 0 12 12",
141
+ "aria-labelledby": titleId,
142
+ ...props,
143
+ children: [
144
+ title
145
+ ? /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("title", {
146
+ id: titleId,
147
+ children: title,
148
+ })
149
+ : null,
150
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("path", {
151
+ fill: "currentColor",
152
+ fillRule: "evenodd",
153
+ d: "M6 10.5a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9ZM6 12A6 6 0 1 0 6 0a6 6 0 0 0 0 12Z",
154
+ clipRule: "evenodd",
155
+ }),
156
+ ],
157
+ });
158
+ var EllipseIcon_default = SvgEllipseIcon;
159
+
160
+ // src/12/MinusIcon.tsx
161
+ var import_jsx_runtime5 = require("react/jsx-runtime");
162
+ var SvgMinusIcon = ({ title, titleId, ...props }) =>
163
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("svg", {
164
+ xmlns: "http://www.w3.org/2000/svg",
165
+ width: props.size || "1em",
166
+ height: props.size || "1em",
167
+ fill: "none",
168
+ viewBox: "0 0 12 12",
169
+ "aria-labelledby": titleId,
170
+ ...props,
171
+ children: [
172
+ title
173
+ ? /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("title", {
174
+ id: titleId,
175
+ children: title,
176
+ })
177
+ : null,
178
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", {
179
+ fill: "currentColor",
180
+ fillRule: "evenodd",
181
+ d: "M11.75 6a.75.75 0 0 1-.75.75H1a.75.75 0 0 1 0-1.5h10a.75.75 0 0 1 .75.75Z",
182
+ clipRule: "evenodd",
183
+ }),
184
+ ],
185
+ });
186
+ var MinusIcon_default = SvgMinusIcon;
187
+
188
+ // src/12/XIcon.tsx
189
+ var import_jsx_runtime6 = require("react/jsx-runtime");
190
+ var SvgXIcon = ({ title, titleId, ...props }) =>
191
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("svg", {
192
+ xmlns: "http://www.w3.org/2000/svg",
193
+ width: props.size || "1em",
194
+ height: props.size || "1em",
195
+ fill: "none",
196
+ viewBox: "0 0 12 12",
197
+ "aria-labelledby": titleId,
198
+ ...props,
199
+ children: [
200
+ title
201
+ ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("title", {
202
+ id: titleId,
203
+ children: title,
204
+ })
205
+ : null,
206
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", {
207
+ fill: "currentColor",
208
+ fillRule: "evenodd",
209
+ d: "M10.243 1.757a.75.75 0 0 1 0 1.061L7.061 6l3.182 3.182a.75.75 0 0 1-1.06 1.06L6 7.062l-3.182 3.182a.75.75 0 1 1-1.06-1.061L4.94 6 1.758 2.818a.75.75 0 1 1 1.06-1.06L6 4.938l3.182-3.182a.75.75 0 0 1 1.061 0Z",
210
+ clipRule: "evenodd",
211
+ }),
212
+ ],
213
+ });
214
+ var XIcon_default = SvgXIcon;
215
+ // Annotate the CommonJS export names for ESM import in node:
216
+ 0 &&
217
+ (module.exports = {
218
+ CaretLeftIcon,
219
+ CaretRightIcon,
220
+ CheckmarkIcon,
221
+ EllipseIcon,
222
+ MinusIcon,
223
+ XIcon,
224
+ });
@@ -0,0 +1,169 @@
1
+ // src/12/CaretLeftIcon.tsx
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ var SvgCaretLeftIcon = ({ title, titleId, ...props }) =>
4
+ /* @__PURE__ */ jsxs("svg", {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: props.size || "1em",
7
+ height: props.size || "1em",
8
+ fill: "none",
9
+ viewBox: "0 0 12 12",
10
+ "aria-labelledby": titleId,
11
+ ...props,
12
+ children: [
13
+ title
14
+ ? /* @__PURE__ */ jsx("title", { id: titleId, children: title })
15
+ : null,
16
+ /* @__PURE__ */ jsx("path", {
17
+ fill: "currentColor",
18
+ fillRule: "evenodd",
19
+ d: "M8.03 9.53a.75.75 0 0 0 0-1.06L5.56 6l2.47-2.47a.75.75 0 0 0-1.06-1.06l-3 3a.75.75 0 0 0 0 1.06l3 3a.75.75 0 0 0 1.06 0Z",
20
+ clipRule: "evenodd",
21
+ }),
22
+ ],
23
+ });
24
+ var CaretLeftIcon_default = SvgCaretLeftIcon;
25
+
26
+ // src/12/CaretRightIcon.tsx
27
+ import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
28
+ var SvgCaretRightIcon = ({ title, titleId, ...props }) =>
29
+ /* @__PURE__ */ jsxs2("svg", {
30
+ xmlns: "http://www.w3.org/2000/svg",
31
+ width: props.size || "1em",
32
+ height: props.size || "1em",
33
+ fill: "none",
34
+ viewBox: "0 0 12 12",
35
+ "aria-labelledby": titleId,
36
+ ...props,
37
+ children: [
38
+ title
39
+ ? /* @__PURE__ */ jsx2("title", { id: titleId, children: title })
40
+ : null,
41
+ /* @__PURE__ */ jsx2("path", {
42
+ fill: "currentColor",
43
+ fillRule: "evenodd",
44
+ d: "M3.97 2.47a.75.75 0 0 0 0 1.06L6.44 6 3.97 8.47a.75.75 0 0 0 1.06 1.06l3-3a.75.75 0 0 0 0-1.06l-3-3a.75.75 0 0 0-1.06 0Z",
45
+ clipRule: "evenodd",
46
+ }),
47
+ ],
48
+ });
49
+ var CaretRightIcon_default = SvgCaretRightIcon;
50
+
51
+ // src/12/CheckmarkIcon.tsx
52
+ import { jsx as jsx3, jsxs as jsxs3 } from "react/jsx-runtime";
53
+ var SvgCheckmarkIcon = ({ title, titleId, ...props }) =>
54
+ /* @__PURE__ */ jsxs3("svg", {
55
+ xmlns: "http://www.w3.org/2000/svg",
56
+ width: props.size || "1em",
57
+ height: props.size || "1em",
58
+ fill: "none",
59
+ viewBox: "0 0 12 12",
60
+ "aria-labelledby": titleId,
61
+ ...props,
62
+ children: [
63
+ title
64
+ ? /* @__PURE__ */ jsx3("title", { id: titleId, children: title })
65
+ : null,
66
+ /* @__PURE__ */ jsx3("g", {
67
+ clipPath: "url(#checkmark-icon_svg__a)",
68
+ children: /* @__PURE__ */ jsx3("path", {
69
+ fill: "currentColor",
70
+ fillRule: "evenodd",
71
+ d: "M11.03 2.845a.75.75 0 0 1 0 1.06l-6.53 6.53-3.53-3.53a.75.75 0 0 1 1.06-1.06l2.47 2.47 5.47-5.47a.75.75 0 0 1 1.06 0Z",
72
+ clipRule: "evenodd",
73
+ }),
74
+ }),
75
+ /* @__PURE__ */ jsx3("defs", {
76
+ children: /* @__PURE__ */ jsx3("clipPath", {
77
+ id: "checkmark-icon_svg__a",
78
+ children: /* @__PURE__ */ jsx3("path", {
79
+ fill: "#fff",
80
+ d: "M0 0h12v12H0z",
81
+ }),
82
+ }),
83
+ }),
84
+ ],
85
+ });
86
+ var CheckmarkIcon_default = SvgCheckmarkIcon;
87
+
88
+ // src/12/EllipseIcon.tsx
89
+ import { jsx as jsx4, jsxs as jsxs4 } from "react/jsx-runtime";
90
+ var SvgEllipseIcon = ({ title, titleId, ...props }) =>
91
+ /* @__PURE__ */ jsxs4("svg", {
92
+ xmlns: "http://www.w3.org/2000/svg",
93
+ width: props.size || "1em",
94
+ height: props.size || "1em",
95
+ fill: "none",
96
+ viewBox: "0 0 12 12",
97
+ "aria-labelledby": titleId,
98
+ ...props,
99
+ children: [
100
+ title
101
+ ? /* @__PURE__ */ jsx4("title", { id: titleId, children: title })
102
+ : null,
103
+ /* @__PURE__ */ jsx4("path", {
104
+ fill: "currentColor",
105
+ fillRule: "evenodd",
106
+ d: "M6 10.5a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9ZM6 12A6 6 0 1 0 6 0a6 6 0 0 0 0 12Z",
107
+ clipRule: "evenodd",
108
+ }),
109
+ ],
110
+ });
111
+ var EllipseIcon_default = SvgEllipseIcon;
112
+
113
+ // src/12/MinusIcon.tsx
114
+ import { jsx as jsx5, jsxs as jsxs5 } from "react/jsx-runtime";
115
+ var SvgMinusIcon = ({ title, titleId, ...props }) =>
116
+ /* @__PURE__ */ jsxs5("svg", {
117
+ xmlns: "http://www.w3.org/2000/svg",
118
+ width: props.size || "1em",
119
+ height: props.size || "1em",
120
+ fill: "none",
121
+ viewBox: "0 0 12 12",
122
+ "aria-labelledby": titleId,
123
+ ...props,
124
+ children: [
125
+ title
126
+ ? /* @__PURE__ */ jsx5("title", { id: titleId, children: title })
127
+ : null,
128
+ /* @__PURE__ */ jsx5("path", {
129
+ fill: "currentColor",
130
+ fillRule: "evenodd",
131
+ d: "M11.75 6a.75.75 0 0 1-.75.75H1a.75.75 0 0 1 0-1.5h10a.75.75 0 0 1 .75.75Z",
132
+ clipRule: "evenodd",
133
+ }),
134
+ ],
135
+ });
136
+ var MinusIcon_default = SvgMinusIcon;
137
+
138
+ // src/12/XIcon.tsx
139
+ import { jsx as jsx6, jsxs as jsxs6 } from "react/jsx-runtime";
140
+ var SvgXIcon = ({ title, titleId, ...props }) =>
141
+ /* @__PURE__ */ jsxs6("svg", {
142
+ xmlns: "http://www.w3.org/2000/svg",
143
+ width: props.size || "1em",
144
+ height: props.size || "1em",
145
+ fill: "none",
146
+ viewBox: "0 0 12 12",
147
+ "aria-labelledby": titleId,
148
+ ...props,
149
+ children: [
150
+ title
151
+ ? /* @__PURE__ */ jsx6("title", { id: titleId, children: title })
152
+ : null,
153
+ /* @__PURE__ */ jsx6("path", {
154
+ fill: "currentColor",
155
+ fillRule: "evenodd",
156
+ d: "M10.243 1.757a.75.75 0 0 1 0 1.061L7.061 6l3.182 3.182a.75.75 0 0 1-1.06 1.06L6 7.062l-3.182 3.182a.75.75 0 1 1-1.06-1.061L4.94 6 1.758 2.818a.75.75 0 1 1 1.06-1.06L6 4.938l3.182-3.182a.75.75 0 0 1 1.061 0Z",
157
+ clipRule: "evenodd",
158
+ }),
159
+ ],
160
+ });
161
+ var XIcon_default = SvgXIcon;
162
+ export {
163
+ CaretLeftIcon_default as CaretLeftIcon,
164
+ CaretRightIcon_default as CaretRightIcon,
165
+ CheckmarkIcon_default as CheckmarkIcon,
166
+ EllipseIcon_default as EllipseIcon,
167
+ MinusIcon_default as MinusIcon,
168
+ XIcon_default as XIcon,
169
+ };
@@ -0,0 +1,138 @@
1
+ import { S as SVGRProps } from "../Icon.types-6dbe6c2c.js";
2
+ import { SVGProps } from "react";
3
+
4
+ declare const SvgAvatarIcon: ({
5
+ title,
6
+ titleId,
7
+ ...props
8
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
9
+
10
+ declare const SvgCaretLeftIcon: ({
11
+ title,
12
+ titleId,
13
+ ...props
14
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
15
+
16
+ declare const SvgCaretRightIcon: ({
17
+ title,
18
+ titleId,
19
+ ...props
20
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
21
+
22
+ declare const SvgCheckFilledIcon: ({
23
+ title,
24
+ titleId,
25
+ ...props
26
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
27
+
28
+ declare const SvgCheckmarkIcon: ({
29
+ title,
30
+ titleId,
31
+ ...props
32
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
33
+
34
+ declare const SvgCloseIcon: ({
35
+ title,
36
+ titleId,
37
+ ...props
38
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
39
+
40
+ declare const SvgEllipseIcon: ({
41
+ title,
42
+ titleId,
43
+ ...props
44
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
45
+
46
+ declare const SvgErrorAltFilledIcon: ({
47
+ title,
48
+ titleId,
49
+ ...props
50
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
51
+
52
+ declare const SvgErrorFilledIcon: ({
53
+ title,
54
+ titleId,
55
+ ...props
56
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
57
+
58
+ declare const SvgInfoFilledIcon: ({
59
+ title,
60
+ titleId,
61
+ ...props
62
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
63
+
64
+ declare const SvgMinusIcon: ({
65
+ title,
66
+ titleId,
67
+ ...props
68
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
69
+
70
+ declare const SvgNoneIcon: ({
71
+ title,
72
+ titleId,
73
+ ...props
74
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
75
+
76
+ declare const SvgPlusIcon: ({
77
+ title,
78
+ titleId,
79
+ ...props
80
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
81
+
82
+ declare const SvgReadOnlyIcon: ({
83
+ title,
84
+ titleId,
85
+ ...props
86
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
87
+
88
+ declare const SvgRedoIcon: ({
89
+ title,
90
+ titleId,
91
+ ...props
92
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
93
+
94
+ declare const SvgTrashIcon: ({
95
+ title,
96
+ titleId,
97
+ ...props
98
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
99
+
100
+ declare const SvgUndoIcon: ({
101
+ title,
102
+ titleId,
103
+ ...props
104
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
105
+
106
+ declare const SvgWarningFilledIcon: ({
107
+ title,
108
+ titleId,
109
+ ...props
110
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
111
+
112
+ declare const SvgXIcon: ({
113
+ title,
114
+ titleId,
115
+ ...props
116
+ }: SVGProps<SVGSVGElement> & SVGRProps) => any;
117
+
118
+ export {
119
+ SvgAvatarIcon as AvatarIcon,
120
+ SvgCaretLeftIcon as CaretLeftIcon,
121
+ SvgCaretRightIcon as CaretRightIcon,
122
+ SvgCheckFilledIcon as CheckFilledIcon,
123
+ SvgCheckmarkIcon as CheckmarkIcon,
124
+ SvgCloseIcon as CloseIcon,
125
+ SvgEllipseIcon as EllipseIcon,
126
+ SvgErrorAltFilledIcon as ErrorAltFilledIcon,
127
+ SvgErrorFilledIcon as ErrorFilledIcon,
128
+ SvgInfoFilledIcon as InfoFilledIcon,
129
+ SvgMinusIcon as MinusIcon,
130
+ SvgNoneIcon as NoneIcon,
131
+ SvgPlusIcon as PlusIcon,
132
+ SvgReadOnlyIcon as ReadOnlyIcon,
133
+ SvgRedoIcon as RedoIcon,
134
+ SvgTrashIcon as TrashIcon,
135
+ SvgUndoIcon as UndoIcon,
136
+ SvgWarningFilledIcon as WarningFilledIcon,
137
+ SvgXIcon as XIcon,
138
+ };