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