@pcoi/icons 0.1.0 → 0.1.2

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/build/index.d.ts CHANGED
@@ -1,12 +1,12 @@
1
1
  // @pcoi/icons — TypeScript Declarations
2
2
  import React from "react";
3
3
 
4
- interface IconProps extends React.SVGProps<SVGSVGElement> {
4
+ export interface IconProps extends React.SVGProps<SVGSVGElement> {
5
5
  size?: number | string;
6
6
  title?: string;
7
7
  }
8
8
 
9
- interface LogoProps extends React.SVGProps<SVGSVGElement> {
9
+ export interface LogoProps extends React.SVGProps<SVGSVGElement> {
10
10
  width?: number | string;
11
11
  height?: number | string;
12
12
  title?: string;
package/build/index.js CHANGED
@@ -1,52 +1,345 @@
1
1
  "use strict";
2
- // @pcoi/icons — CommonJS barrel export
3
- // Generated 2026-03-02
4
-
5
- const ArrowRightIcon = require("../src/react/ArrowRightIcon");
6
- module.exports.ArrowRightIcon = ArrowRightIcon.ArrowRightIcon || ArrowRightIcon.default;
7
- const CheckIcon = require("../src/react/CheckIcon");
8
- module.exports.CheckIcon = CheckIcon.CheckIcon || CheckIcon.default;
9
- const ChevronDownIcon = require("../src/react/ChevronDownIcon");
10
- module.exports.ChevronDownIcon = ChevronDownIcon.ChevronDownIcon || ChevronDownIcon.default;
11
- const ChevronLeftIcon = require("../src/react/ChevronLeftIcon");
12
- module.exports.ChevronLeftIcon = ChevronLeftIcon.ChevronLeftIcon || ChevronLeftIcon.default;
13
- const ChevronRightIcon = require("../src/react/ChevronRightIcon");
14
- module.exports.ChevronRightIcon = ChevronRightIcon.ChevronRightIcon || ChevronRightIcon.default;
15
- const ChevronUpIcon = require("../src/react/ChevronUpIcon");
16
- module.exports.ChevronUpIcon = ChevronUpIcon.ChevronUpIcon || ChevronUpIcon.default;
17
- const CloseIcon = require("../src/react/CloseIcon");
18
- module.exports.CloseIcon = CloseIcon.CloseIcon || CloseIcon.default;
19
- const ExternalLinkIcon = require("../src/react/ExternalLinkIcon");
20
- module.exports.ExternalLinkIcon = ExternalLinkIcon.ExternalLinkIcon || ExternalLinkIcon.default;
21
- const InfoIcon = require("../src/react/InfoIcon");
22
- module.exports.InfoIcon = InfoIcon.InfoIcon || InfoIcon.default;
23
- const KeyPersonIcon = require("../src/react/KeyPersonIcon");
24
- module.exports.KeyPersonIcon = KeyPersonIcon.KeyPersonIcon || KeyPersonIcon.default;
25
- const LogoMarkLightIcon = require("../src/react/LogoMarkLightIcon");
26
- module.exports.LogoMarkLightIcon = LogoMarkLightIcon.LogoMarkLightIcon || LogoMarkLightIcon.default;
27
- const LogoMarkIcon = require("../src/react/LogoMarkIcon");
28
- module.exports.LogoMarkIcon = LogoMarkIcon.LogoMarkIcon || LogoMarkIcon.default;
29
- const LogoWordmarkLightIcon = require("../src/react/LogoWordmarkLightIcon");
30
- module.exports.LogoWordmarkLightIcon = LogoWordmarkLightIcon.LogoWordmarkLightIcon || LogoWordmarkLightIcon.default;
31
- const LogoWordmarkIcon = require("../src/react/LogoWordmarkIcon");
32
- module.exports.LogoWordmarkIcon = LogoWordmarkIcon.LogoWordmarkIcon || LogoWordmarkIcon.default;
33
- const MaKnowledgeIcon = require("../src/react/MaKnowledgeIcon");
34
- module.exports.MaKnowledgeIcon = MaKnowledgeIcon.MaKnowledgeIcon || MaKnowledgeIcon.default;
35
- const MailIcon = require("../src/react/MailIcon");
36
- module.exports.MailIcon = MailIcon.MailIcon || MailIcon.default;
37
- const MenuIcon = require("../src/react/MenuIcon");
38
- module.exports.MenuIcon = MenuIcon.MenuIcon || MenuIcon.default;
39
- const MinusIcon = require("../src/react/MinusIcon");
40
- module.exports.MinusIcon = MinusIcon.MinusIcon || MinusIcon.default;
41
- const PlusIcon = require("../src/react/PlusIcon");
42
- module.exports.PlusIcon = PlusIcon.PlusIcon || PlusIcon.default;
43
- const RentedIntelIcon = require("../src/react/RentedIntelIcon");
44
- module.exports.RentedIntelIcon = RentedIntelIcon.RentedIntelIcon || RentedIntelIcon.default;
45
- const SearchIcon = require("../src/react/SearchIcon");
46
- module.exports.SearchIcon = SearchIcon.SearchIcon || SearchIcon.default;
47
- const SopsDecayIcon = require("../src/react/SopsDecayIcon");
48
- module.exports.SopsDecayIcon = SopsDecayIcon.SopsDecayIcon || SopsDecayIcon.default;
49
- const WarningIcon = require("../src/react/WarningIcon");
50
- module.exports.WarningIcon = WarningIcon.WarningIcon || WarningIcon.default;
2
+ // @pcoi/icons — CommonJS bundle (self-contained)
3
+ // Generated 2026-03-16
4
+ const React = require("react");
5
+
6
+ const ArrowRightIcon = ({ size = 24, title, ...props }) =>
7
+ React.createElement("svg", {
8
+ width: size, height: size,
9
+ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor",
10
+ strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round",
11
+ role: title ? "img" : "presentation", "aria-hidden": !title,
12
+ xmlns: "http://www.w3.org/2000/svg", ...props
13
+ },
14
+ title && React.createElement("title", null, title),
15
+ React.createElement("line", { x1: "5", y1: "12", x2: "19", y2: "12" }),
16
+ React.createElement("polyline", { points: "12 5 19 12 12 19" })
17
+ );
18
+ ArrowRightIcon.displayName = "ArrowRightIcon";
19
+ module.exports.ArrowRightIcon = ArrowRightIcon;
20
+
21
+ const CheckIcon = ({ size = 24, title, ...props }) =>
22
+ React.createElement("svg", {
23
+ width: size, height: size,
24
+ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor",
25
+ strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round",
26
+ role: title ? "img" : "presentation", "aria-hidden": !title,
27
+ xmlns: "http://www.w3.org/2000/svg", ...props
28
+ },
29
+ title && React.createElement("title", null, title),
30
+ React.createElement("polyline", { points: "20 6 9 17 4 12" })
31
+ );
32
+ CheckIcon.displayName = "CheckIcon";
33
+ module.exports.CheckIcon = CheckIcon;
34
+
35
+ const ChevronDownIcon = ({ size = 24, title, ...props }) =>
36
+ React.createElement("svg", {
37
+ width: size, height: size,
38
+ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor",
39
+ strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round",
40
+ role: title ? "img" : "presentation", "aria-hidden": !title,
41
+ xmlns: "http://www.w3.org/2000/svg", ...props
42
+ },
43
+ title && React.createElement("title", null, title),
44
+ React.createElement("polyline", { points: "6 9 12 15 18 9" })
45
+ );
46
+ ChevronDownIcon.displayName = "ChevronDownIcon";
47
+ module.exports.ChevronDownIcon = ChevronDownIcon;
48
+
49
+ const ChevronLeftIcon = ({ size = 24, title, ...props }) =>
50
+ React.createElement("svg", {
51
+ width: size, height: size,
52
+ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor",
53
+ strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round",
54
+ role: title ? "img" : "presentation", "aria-hidden": !title,
55
+ xmlns: "http://www.w3.org/2000/svg", ...props
56
+ },
57
+ title && React.createElement("title", null, title),
58
+ React.createElement("polyline", { points: "15 18 9 12 15 6" })
59
+ );
60
+ ChevronLeftIcon.displayName = "ChevronLeftIcon";
61
+ module.exports.ChevronLeftIcon = ChevronLeftIcon;
62
+
63
+ const ChevronRightIcon = ({ size = 24, title, ...props }) =>
64
+ React.createElement("svg", {
65
+ width: size, height: size,
66
+ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor",
67
+ strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round",
68
+ role: title ? "img" : "presentation", "aria-hidden": !title,
69
+ xmlns: "http://www.w3.org/2000/svg", ...props
70
+ },
71
+ title && React.createElement("title", null, title),
72
+ React.createElement("polyline", { points: "9 18 15 12 9 6" })
73
+ );
74
+ ChevronRightIcon.displayName = "ChevronRightIcon";
75
+ module.exports.ChevronRightIcon = ChevronRightIcon;
76
+
77
+ const ChevronUpIcon = ({ size = 24, title, ...props }) =>
78
+ React.createElement("svg", {
79
+ width: size, height: size,
80
+ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor",
81
+ strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round",
82
+ role: title ? "img" : "presentation", "aria-hidden": !title,
83
+ xmlns: "http://www.w3.org/2000/svg", ...props
84
+ },
85
+ title && React.createElement("title", null, title),
86
+ React.createElement("polyline", { points: "18 15 12 9 6 15" })
87
+ );
88
+ ChevronUpIcon.displayName = "ChevronUpIcon";
89
+ module.exports.ChevronUpIcon = ChevronUpIcon;
90
+
91
+ const CloseIcon = ({ size = 24, title, ...props }) =>
92
+ React.createElement("svg", {
93
+ width: size, height: size,
94
+ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor",
95
+ strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round",
96
+ role: title ? "img" : "presentation", "aria-hidden": !title,
97
+ xmlns: "http://www.w3.org/2000/svg", ...props
98
+ },
99
+ title && React.createElement("title", null, title),
100
+ React.createElement("line", { x1: "18", y1: "6", x2: "6", y2: "18" }),
101
+ React.createElement("line", { x1: "6", y1: "6", x2: "18", y2: "18" })
102
+ );
103
+ CloseIcon.displayName = "CloseIcon";
104
+ module.exports.CloseIcon = CloseIcon;
105
+
106
+ const ExternalLinkIcon = ({ size = 24, title, ...props }) =>
107
+ React.createElement("svg", {
108
+ width: size, height: size,
109
+ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor",
110
+ strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round",
111
+ role: title ? "img" : "presentation", "aria-hidden": !title,
112
+ xmlns: "http://www.w3.org/2000/svg", ...props
113
+ },
114
+ title && React.createElement("title", null, title),
115
+ React.createElement("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" }),
116
+ React.createElement("polyline", { points: "15 3 21 3 21 9" }),
117
+ React.createElement("line", { x1: "10", y1: "14", x2: "21", y2: "3" })
118
+ );
119
+ ExternalLinkIcon.displayName = "ExternalLinkIcon";
120
+ module.exports.ExternalLinkIcon = ExternalLinkIcon;
121
+
122
+ const InfoIcon = ({ size = 24, title, ...props }) =>
123
+ React.createElement("svg", {
124
+ width: size, height: size,
125
+ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor",
126
+ strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round",
127
+ role: title ? "img" : "presentation", "aria-hidden": !title,
128
+ xmlns: "http://www.w3.org/2000/svg", ...props
129
+ },
130
+ title && React.createElement("title", null, title),
131
+ React.createElement("circle", { cx: "12", cy: "12", r: "10" }),
132
+ React.createElement("line", { x1: "12", y1: "16", x2: "12", y2: "12" }),
133
+ React.createElement("circle", { cx: "12", cy: "8", r: "1", fill: "currentColor", stroke: "none" })
134
+ );
135
+ InfoIcon.displayName = "InfoIcon";
136
+ module.exports.InfoIcon = InfoIcon;
137
+
138
+ const KeyPersonIcon = ({ size = 24, title, ...props }) =>
139
+ React.createElement("svg", {
140
+ width: size, height: size,
141
+ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor",
142
+ strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round",
143
+ role: title ? "img" : "presentation", "aria-hidden": !title,
144
+ xmlns: "http://www.w3.org/2000/svg", ...props
145
+ },
146
+ title && React.createElement("title", null, title),
147
+ React.createElement("path", { d: "M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" }),
148
+ React.createElement("circle", { cx: "9", cy: "7", r: "4" }),
149
+ React.createElement("path", { d: "M23 21v-2a4 4 0 0 0-3-3.87" }),
150
+ React.createElement("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
151
+ );
152
+ KeyPersonIcon.displayName = "KeyPersonIcon";
153
+ module.exports.KeyPersonIcon = KeyPersonIcon;
154
+
155
+ const LogoMarkLightIcon = ({ width, height, title, ...props }) =>
156
+ React.createElement("svg", {
157
+ width, height,
158
+ viewBox: "0 0 32 32",
159
+ role: title ? "img" : "presentation", "aria-hidden": !title,
160
+ xmlns: "http://www.w3.org/2000/svg", ...props
161
+ },
162
+ title && React.createElement("title", null, title),
163
+ React.createElement("path", { d: "M9.66 24.73L12.79 24.73L12.79 18.82L16.14 18.82C20.17 18.82 22.34 16.40 22.34 13.05C22.34 9.72 20.21 7.27 16.19 7.27L9.66 7.27ZM12.79 16.25L12.79 9.89L15.71 9.89C18.10 9.89 19.14 11.18 19.14 13.05C19.14 14.91 18.10 16.25 15.73 16.25Z", fill: "#D4A44C" })
164
+ );
165
+ LogoMarkLightIcon.displayName = "LogoMarkLightIcon";
166
+ module.exports.LogoMarkLightIcon = LogoMarkLightIcon;
167
+
168
+ const LogoMarkIcon = ({ width, height, title, ...props }) =>
169
+ React.createElement("svg", {
170
+ width, height,
171
+ viewBox: "0 0 32 32",
172
+ role: title ? "img" : "presentation", "aria-hidden": !title,
173
+ xmlns: "http://www.w3.org/2000/svg", ...props
174
+ },
175
+ title && React.createElement("title", null, title),
176
+ React.createElement("path", { d: "M9.66 24.73L12.79 24.73L12.79 18.82L16.14 18.82C20.17 18.82 22.34 16.40 22.34 13.05C22.34 9.72 20.21 7.27 16.19 7.27L9.66 7.27ZM12.79 16.25L12.79 9.89L15.71 9.89C18.10 9.89 19.14 11.18 19.14 13.05C19.14 14.91 18.10 16.25 15.73 16.25Z", fill: "var(--pcoi-semantic-text-accent, #D4A44C)" })
177
+ );
178
+ LogoMarkIcon.displayName = "LogoMarkIcon";
179
+ module.exports.LogoMarkIcon = LogoMarkIcon;
180
+
181
+ const LogoWordmarkLightIcon = ({ width, height, title, ...props }) =>
182
+ React.createElement("svg", {
183
+ width, height,
184
+ viewBox: "0 0 65 32",
185
+ role: title ? "img" : "presentation", "aria-hidden": !title,
186
+ xmlns: "http://www.w3.org/2000/svg", ...props
187
+ },
188
+ title && React.createElement("title", null, title),
189
+ React.createElement("path", { d: "M5.61 27L8.48 27L8.48 21.59L11.55 21.59C15.25 21.59 17.23 19.36 17.23 16.29C17.23 13.24 15.28 10.99 11.59 10.99L5.61 10.99ZM8.48 19.22L8.48 13.40L11.15 13.40C13.35 13.40 14.30 14.58 14.30 16.29C14.30 18.00 13.35 19.22 11.18 19.22Z", fill: "#D4A44C" }),
190
+ React.createElement("path", { d: "M27.50 27.21C31.28 27.21 33.82 24.73 34.26 21.67L31.36 21.67C30.99 23.56 29.45 24.65 27.54 24.65C24.94 24.65 23.06 22.68 23.06 19.01C23.06 15.38 24.92 13.35 27.55 13.35C29.46 13.35 31.00 14.43 31.36 16.32L34.25 16.32C33.74 12.82 31.02 10.78 27.50 10.78C23.32 10.78 20.18 13.83 20.18 19.01C20.18 24.16 23.29 27.21 27.50 27.21Z M44.63 27.21C48.81 27.21 51.96 24.17 51.96 19.01C51.96 13.83 48.81 10.78 44.63 10.78C40.43 10.78 37.27 13.83 37.27 19.01C37.27 24.16 40.43 27.21 44.63 27.21ZM44.63 24.65C42.00 24.65 40.15 22.65 40.15 19.01C40.15 15.34 42.00 13.35 44.63 13.35C47.22 13.35 49.07 15.33 49.07 19.01C49.07 22.66 47.22 24.65 44.63 24.65Z M58.43 10.99L55.56 10.99L55.56 27L58.43 27Z", fill: "#323250" })
191
+ );
192
+ LogoWordmarkLightIcon.displayName = "LogoWordmarkLightIcon";
193
+ module.exports.LogoWordmarkLightIcon = LogoWordmarkLightIcon;
194
+
195
+ const LogoWordmarkIcon = ({ width, height, title, ...props }) =>
196
+ React.createElement("svg", {
197
+ width, height,
198
+ viewBox: "0 0 65 32",
199
+ role: title ? "img" : "presentation", "aria-hidden": !title,
200
+ xmlns: "http://www.w3.org/2000/svg", ...props
201
+ },
202
+ title && React.createElement("title", null, title),
203
+ React.createElement("path", { d: "M5.61 27L8.48 27L8.48 21.59L11.55 21.59C15.25 21.59 17.23 19.36 17.23 16.29C17.23 13.24 15.28 10.99 11.59 10.99L5.61 10.99ZM8.48 19.22L8.48 13.40L11.15 13.40C13.35 13.40 14.30 14.58 14.30 16.29C14.30 18.00 13.35 19.22 11.18 19.22Z", fill: "var(--pcoi-semantic-text-accent, #D4A44C)" }),
204
+ React.createElement("path", { d: "M27.50 27.21C31.28 27.21 33.82 24.73 34.26 21.67L31.36 21.67C30.99 23.56 29.45 24.65 27.54 24.65C24.94 24.65 23.06 22.68 23.06 19.01C23.06 15.38 24.92 13.35 27.55 13.35C29.46 13.35 31.00 14.43 31.36 16.32L34.25 16.32C33.74 12.82 31.02 10.78 27.50 10.78C23.32 10.78 20.18 13.83 20.18 19.01C20.18 24.16 23.29 27.21 27.50 27.21Z M44.63 27.21C48.81 27.21 51.96 24.17 51.96 19.01C51.96 13.83 48.81 10.78 44.63 10.78C40.43 10.78 37.27 13.83 37.27 19.01C37.27 24.16 40.43 27.21 44.63 27.21ZM44.63 24.65C42.00 24.65 40.15 22.65 40.15 19.01C40.15 15.34 42.00 13.35 44.63 13.35C47.22 13.35 49.07 15.33 49.07 19.01C49.07 22.66 47.22 24.65 44.63 24.65Z M58.43 10.99L55.56 10.99L55.56 27L58.43 27Z", fill: "var(--pcoi-semantic-text-primary, #E8E8F0)" })
205
+ );
206
+ LogoWordmarkIcon.displayName = "LogoWordmarkIcon";
207
+ module.exports.LogoWordmarkIcon = LogoWordmarkIcon;
208
+
209
+ const MaKnowledgeIcon = ({ size = 24, title, ...props }) =>
210
+ React.createElement("svg", {
211
+ width: size, height: size,
212
+ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor",
213
+ strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round",
214
+ role: title ? "img" : "presentation", "aria-hidden": !title,
215
+ xmlns: "http://www.w3.org/2000/svg", ...props
216
+ },
217
+ title && React.createElement("title", null, title),
218
+ React.createElement("rect", { x: "2", y: "7", width: "20", height: "14", rx: "2", ry: "2" }),
219
+ React.createElement("path", { d: "M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16" })
220
+ );
221
+ MaKnowledgeIcon.displayName = "MaKnowledgeIcon";
222
+ module.exports.MaKnowledgeIcon = MaKnowledgeIcon;
223
+
224
+ const MailIcon = ({ size = 24, title, ...props }) =>
225
+ React.createElement("svg", {
226
+ width: size, height: size,
227
+ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor",
228
+ strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round",
229
+ role: title ? "img" : "presentation", "aria-hidden": !title,
230
+ xmlns: "http://www.w3.org/2000/svg", ...props
231
+ },
232
+ title && React.createElement("title", null, title),
233
+ React.createElement("path", { d: "M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z" }),
234
+ React.createElement("polyline", { points: "22 6 12 13 2 6" })
235
+ );
236
+ MailIcon.displayName = "MailIcon";
237
+ module.exports.MailIcon = MailIcon;
238
+
239
+ const MenuIcon = ({ size = 24, title, ...props }) =>
240
+ React.createElement("svg", {
241
+ width: size, height: size,
242
+ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor",
243
+ strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round",
244
+ role: title ? "img" : "presentation", "aria-hidden": !title,
245
+ xmlns: "http://www.w3.org/2000/svg", ...props
246
+ },
247
+ title && React.createElement("title", null, title),
248
+ React.createElement("line", { x1: "3", y1: "12", x2: "21", y2: "12" }),
249
+ React.createElement("line", { x1: "3", y1: "6", x2: "21", y2: "6" }),
250
+ React.createElement("line", { x1: "3", y1: "18", x2: "21", y2: "18" })
251
+ );
252
+ MenuIcon.displayName = "MenuIcon";
253
+ module.exports.MenuIcon = MenuIcon;
254
+
255
+ const MinusIcon = ({ size = 24, title, ...props }) =>
256
+ React.createElement("svg", {
257
+ width: size, height: size,
258
+ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor",
259
+ strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round",
260
+ role: title ? "img" : "presentation", "aria-hidden": !title,
261
+ xmlns: "http://www.w3.org/2000/svg", ...props
262
+ },
263
+ title && React.createElement("title", null, title),
264
+ React.createElement("line", { x1: "5", y1: "12", x2: "19", y2: "12" })
265
+ );
266
+ MinusIcon.displayName = "MinusIcon";
267
+ module.exports.MinusIcon = MinusIcon;
268
+
269
+ const PlusIcon = ({ size = 24, title, ...props }) =>
270
+ React.createElement("svg", {
271
+ width: size, height: size,
272
+ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor",
273
+ strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round",
274
+ role: title ? "img" : "presentation", "aria-hidden": !title,
275
+ xmlns: "http://www.w3.org/2000/svg", ...props
276
+ },
277
+ title && React.createElement("title", null, title),
278
+ React.createElement("line", { x1: "12", y1: "5", x2: "12", y2: "19" }),
279
+ React.createElement("line", { x1: "5", y1: "12", x2: "19", y2: "12" })
280
+ );
281
+ PlusIcon.displayName = "PlusIcon";
282
+ module.exports.PlusIcon = PlusIcon;
283
+
284
+ const RentedIntelIcon = ({ size = 24, title, ...props }) =>
285
+ React.createElement("svg", {
286
+ width: size, height: size,
287
+ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor",
288
+ strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round",
289
+ role: title ? "img" : "presentation", "aria-hidden": !title,
290
+ xmlns: "http://www.w3.org/2000/svg", ...props
291
+ },
292
+ title && React.createElement("title", null, title),
293
+ React.createElement("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
294
+ React.createElement("polyline", { points: "17 8 12 3 7 8" }),
295
+ React.createElement("line", { x1: "12", y1: "3", x2: "12", y2: "15" })
296
+ );
297
+ RentedIntelIcon.displayName = "RentedIntelIcon";
298
+ module.exports.RentedIntelIcon = RentedIntelIcon;
299
+
300
+ const SearchIcon = ({ size = 24, title, ...props }) =>
301
+ React.createElement("svg", {
302
+ width: size, height: size,
303
+ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor",
304
+ strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round",
305
+ role: title ? "img" : "presentation", "aria-hidden": !title,
306
+ xmlns: "http://www.w3.org/2000/svg", ...props
307
+ },
308
+ title && React.createElement("title", null, title),
309
+ React.createElement("circle", { cx: "11", cy: "11", r: "8" }),
310
+ React.createElement("line", { x1: "21", y1: "21", x2: "16.65", y2: "16.65" })
311
+ );
312
+ SearchIcon.displayName = "SearchIcon";
313
+ module.exports.SearchIcon = SearchIcon;
314
+
315
+ const SopsDecayIcon = ({ size = 24, title, ...props }) =>
316
+ React.createElement("svg", {
317
+ width: size, height: size,
318
+ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor",
319
+ strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round",
320
+ role: title ? "img" : "presentation", "aria-hidden": !title,
321
+ xmlns: "http://www.w3.org/2000/svg", ...props
322
+ },
323
+ title && React.createElement("title", null, title),
324
+ React.createElement("path", { d: "M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z" })
325
+ );
326
+ SopsDecayIcon.displayName = "SopsDecayIcon";
327
+ module.exports.SopsDecayIcon = SopsDecayIcon;
328
+
329
+ const WarningIcon = ({ size = 24, title, ...props }) =>
330
+ React.createElement("svg", {
331
+ width: size, height: size,
332
+ viewBox: "0 0 24 24", fill: "none", stroke: "currentColor",
333
+ strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round",
334
+ role: title ? "img" : "presentation", "aria-hidden": !title,
335
+ xmlns: "http://www.w3.org/2000/svg", ...props
336
+ },
337
+ title && React.createElement("title", null, title),
338
+ React.createElement("path", { d: "M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z" }),
339
+ React.createElement("line", { x1: "12", y1: "9", x2: "12", y2: "13" }),
340
+ React.createElement("circle", { cx: "12", cy: "17", r: "1", fill: "currentColor", stroke: "none" })
341
+ );
342
+ WarningIcon.displayName = "WarningIcon";
343
+ module.exports.WarningIcon = WarningIcon;
51
344
 
52
345
  module.exports.iconNames = ["ArrowRightIcon","CheckIcon","ChevronDownIcon","ChevronLeftIcon","ChevronRightIcon","ChevronUpIcon","CloseIcon","ExternalLinkIcon","InfoIcon","KeyPersonIcon","LogoMarkLightIcon","LogoMarkIcon","LogoWordmarkLightIcon","LogoWordmarkIcon","MaKnowledgeIcon","MailIcon","MenuIcon","MinusIcon","PlusIcon","RentedIntelIcon","SearchIcon","SopsDecayIcon","WarningIcon"];