@kopexa/icons 10.0.6 → 10.0.7
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/dist/chunk-MJ6PIAN3.mjs +29 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +92 -64
- package/dist/index.mjs +11 -6
- package/dist/puzzle-icon.d.mts +7 -0
- package/dist/puzzle-icon.d.ts +7 -0
- package/dist/puzzle-icon.js +52 -0
- package/dist/puzzle-icon.mjs +7 -0
- package/package.json +1 -1
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/puzzle-icon.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var PuzzleIcon = ({ size = 24, ...props }) => {
|
|
6
|
+
return /* @__PURE__ */ jsxs(
|
|
7
|
+
"svg",
|
|
8
|
+
{
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
width: size,
|
|
11
|
+
height: size,
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
fill: "none",
|
|
14
|
+
stroke: "currentColor",
|
|
15
|
+
strokeWidth: "2",
|
|
16
|
+
strokeLinecap: "round",
|
|
17
|
+
strokeLinejoin: "round",
|
|
18
|
+
...props,
|
|
19
|
+
children: [
|
|
20
|
+
/* @__PURE__ */ jsx("title", { children: "Puzzle Icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z" })
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export {
|
|
28
|
+
PuzzleIcon
|
|
29
|
+
};
|
package/dist/index.d.mts
CHANGED
|
@@ -43,6 +43,7 @@ export { PlattformAssetIcon } from './plattform-asset.mjs';
|
|
|
43
43
|
export { PlusIcon } from './plus.mjs';
|
|
44
44
|
export { ProcessingActivityIcon } from './processing-activity.mjs';
|
|
45
45
|
export { ProgramIcon } from './program-icon.mjs';
|
|
46
|
+
export { PuzzleIcon as IntegrationIcon, PuzzleIcon } from './puzzle-icon.mjs';
|
|
46
47
|
export { RiskIcon } from './risk.mjs';
|
|
47
48
|
export { SaveIcon } from './save.mjs';
|
|
48
49
|
export { SearchIcon } from './search.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -43,6 +43,7 @@ export { PlattformAssetIcon } from './plattform-asset.js';
|
|
|
43
43
|
export { PlusIcon } from './plus.js';
|
|
44
44
|
export { ProcessingActivityIcon } from './processing-activity.js';
|
|
45
45
|
export { ProgramIcon } from './program-icon.js';
|
|
46
|
+
export { PuzzleIcon as IntegrationIcon, PuzzleIcon } from './puzzle-icon.js';
|
|
46
47
|
export { RiskIcon } from './risk.js';
|
|
47
48
|
export { SaveIcon } from './save.js';
|
|
48
49
|
export { SearchIcon } from './search.js';
|
package/dist/index.js
CHANGED
|
@@ -55,6 +55,7 @@ __export(index_exports, {
|
|
|
55
55
|
GripVerticalIcon: () => GripVerticalIcon,
|
|
56
56
|
IncidentIcon: () => IncidentIcon,
|
|
57
57
|
InfoIcon: () => InfoIcon,
|
|
58
|
+
IntegrationIcon: () => PuzzleIcon,
|
|
58
59
|
IntersectIcon: () => SquaresIntersect,
|
|
59
60
|
IssuesIcon: () => IssuesIcon,
|
|
60
61
|
LinkedInIcon: () => LinkedInIcon,
|
|
@@ -68,6 +69,7 @@ __export(index_exports, {
|
|
|
68
69
|
PlusIcon: () => PlusIcon,
|
|
69
70
|
ProcessingActivityIcon: () => ProcessingActivityIcon,
|
|
70
71
|
ProgramIcon: () => ProgramIcon,
|
|
72
|
+
PuzzleIcon: () => PuzzleIcon,
|
|
71
73
|
RiskIcon: () => RiskIcon,
|
|
72
74
|
SaveIcon: () => SaveIcon,
|
|
73
75
|
SearchIcon: () => SearchIcon,
|
|
@@ -1264,9 +1266,9 @@ var ProgramIcon = ({ size = 24, ...props }) => {
|
|
|
1264
1266
|
);
|
|
1265
1267
|
};
|
|
1266
1268
|
|
|
1267
|
-
// src/
|
|
1269
|
+
// src/puzzle-icon.tsx
|
|
1268
1270
|
var import_jsx_runtime46 = require("react/jsx-runtime");
|
|
1269
|
-
var
|
|
1271
|
+
var PuzzleIcon = ({ size = 24, ...props }) => {
|
|
1270
1272
|
return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)(
|
|
1271
1273
|
"svg",
|
|
1272
1274
|
{
|
|
@@ -1281,19 +1283,43 @@ var RiskIcon = ({ size = 24, ...props }) => {
|
|
|
1281
1283
|
strokeLinejoin: "round",
|
|
1282
1284
|
...props,
|
|
1283
1285
|
children: [
|
|
1284
|
-
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("title", { children: "
|
|
1285
|
-
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("path", { d: "
|
|
1286
|
-
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("path", { d: "M12 8v4" }),
|
|
1287
|
-
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("path", { d: "M12 16h.01" })
|
|
1286
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("title", { children: "Puzzle Icon" }),
|
|
1287
|
+
/* @__PURE__ */ (0, import_jsx_runtime46.jsx)("path", { d: "M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z" })
|
|
1288
1288
|
]
|
|
1289
1289
|
}
|
|
1290
1290
|
);
|
|
1291
1291
|
};
|
|
1292
1292
|
|
|
1293
|
-
// src/
|
|
1293
|
+
// src/risk.tsx
|
|
1294
1294
|
var import_jsx_runtime47 = require("react/jsx-runtime");
|
|
1295
|
-
var
|
|
1295
|
+
var RiskIcon = ({ size = 24, ...props }) => {
|
|
1296
1296
|
return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
|
|
1297
|
+
"svg",
|
|
1298
|
+
{
|
|
1299
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1300
|
+
width: size,
|
|
1301
|
+
height: size,
|
|
1302
|
+
viewBox: "0 0 24 24",
|
|
1303
|
+
fill: "none",
|
|
1304
|
+
stroke: "currentColor",
|
|
1305
|
+
strokeWidth: "2",
|
|
1306
|
+
strokeLinecap: "round",
|
|
1307
|
+
strokeLinejoin: "round",
|
|
1308
|
+
...props,
|
|
1309
|
+
children: [
|
|
1310
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("title", { children: "Risk icon" }),
|
|
1311
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
|
|
1312
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("path", { d: "M12 8v4" }),
|
|
1313
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("path", { d: "M12 16h.01" })
|
|
1314
|
+
]
|
|
1315
|
+
}
|
|
1316
|
+
);
|
|
1317
|
+
};
|
|
1318
|
+
|
|
1319
|
+
// src/save.tsx
|
|
1320
|
+
var import_jsx_runtime48 = require("react/jsx-runtime");
|
|
1321
|
+
var SaveIcon = (props) => {
|
|
1322
|
+
return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
|
|
1297
1323
|
"svg",
|
|
1298
1324
|
{
|
|
1299
1325
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1307,19 +1333,19 @@ var SaveIcon = (props) => {
|
|
|
1307
1333
|
strokeLinejoin: "round",
|
|
1308
1334
|
...props,
|
|
1309
1335
|
children: [
|
|
1310
|
-
/* @__PURE__ */ (0,
|
|
1311
|
-
/* @__PURE__ */ (0,
|
|
1312
|
-
/* @__PURE__ */ (0,
|
|
1313
|
-
/* @__PURE__ */ (0,
|
|
1336
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("title", { children: "Save Icon" }),
|
|
1337
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }),
|
|
1338
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
1339
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
1314
1340
|
]
|
|
1315
1341
|
}
|
|
1316
1342
|
);
|
|
1317
1343
|
};
|
|
1318
1344
|
|
|
1319
1345
|
// src/search.tsx
|
|
1320
|
-
var
|
|
1346
|
+
var import_jsx_runtime49 = require("react/jsx-runtime");
|
|
1321
1347
|
var SearchIcon = (props) => {
|
|
1322
|
-
return /* @__PURE__ */ (0,
|
|
1348
|
+
return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
|
|
1323
1349
|
"svg",
|
|
1324
1350
|
{
|
|
1325
1351
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1333,18 +1359,18 @@ var SearchIcon = (props) => {
|
|
|
1333
1359
|
strokeLinejoin: "round",
|
|
1334
1360
|
...props,
|
|
1335
1361
|
children: [
|
|
1336
|
-
/* @__PURE__ */ (0,
|
|
1337
|
-
/* @__PURE__ */ (0,
|
|
1338
|
-
/* @__PURE__ */ (0,
|
|
1362
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("title", { children: "Search Icon" }),
|
|
1363
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { d: "m21 21-4.34-4.34" }),
|
|
1364
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("circle", { cx: "11", cy: "11", r: "8" })
|
|
1339
1365
|
]
|
|
1340
1366
|
}
|
|
1341
1367
|
);
|
|
1342
1368
|
};
|
|
1343
1369
|
|
|
1344
1370
|
// src/settings.tsx
|
|
1345
|
-
var
|
|
1371
|
+
var import_jsx_runtime50 = require("react/jsx-runtime");
|
|
1346
1372
|
var SettingsIcon = ({ size = 24, ...props }) => {
|
|
1347
|
-
return /* @__PURE__ */ (0,
|
|
1373
|
+
return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
|
|
1348
1374
|
"svg",
|
|
1349
1375
|
{
|
|
1350
1376
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1358,20 +1384,20 @@ var SettingsIcon = ({ size = 24, ...props }) => {
|
|
|
1358
1384
|
strokeLinejoin: "round",
|
|
1359
1385
|
...props,
|
|
1360
1386
|
children: [
|
|
1361
|
-
/* @__PURE__ */ (0,
|
|
1362
|
-
/* @__PURE__ */ (0,
|
|
1363
|
-
/* @__PURE__ */ (0,
|
|
1364
|
-
/* @__PURE__ */ (0,
|
|
1365
|
-
/* @__PURE__ */ (0,
|
|
1387
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("title", { children: "Settings" }),
|
|
1388
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "M14 17H5" }),
|
|
1389
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "M19 7h-9" }),
|
|
1390
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("circle", { cx: "17", cy: "17", r: "3" }),
|
|
1391
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("circle", { cx: "7", cy: "7", r: "3" })
|
|
1366
1392
|
]
|
|
1367
1393
|
}
|
|
1368
1394
|
);
|
|
1369
1395
|
};
|
|
1370
1396
|
|
|
1371
1397
|
// src/shell.tsx
|
|
1372
|
-
var
|
|
1398
|
+
var import_jsx_runtime51 = require("react/jsx-runtime");
|
|
1373
1399
|
var ShellIcon = ({ size = 24, ...props }) => {
|
|
1374
|
-
return /* @__PURE__ */ (0,
|
|
1400
|
+
return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
|
|
1375
1401
|
"svg",
|
|
1376
1402
|
{
|
|
1377
1403
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1385,17 +1411,17 @@ var ShellIcon = ({ size = 24, ...props }) => {
|
|
|
1385
1411
|
strokeLinejoin: "round",
|
|
1386
1412
|
...props,
|
|
1387
1413
|
children: [
|
|
1388
|
-
/* @__PURE__ */ (0,
|
|
1389
|
-
/* @__PURE__ */ (0,
|
|
1414
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("title", { children: "Shell Icon" }),
|
|
1415
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M14 11a2 2 0 1 1-4 0 4 4 0 0 1 8 0 6 6 0 0 1-12 0 8 8 0 0 1 16 0 10 10 0 1 1-20 0 11.93 11.93 0 0 1 2.42-7.22 2 2 0 1 1 3.16 2.44" })
|
|
1390
1416
|
]
|
|
1391
1417
|
}
|
|
1392
1418
|
);
|
|
1393
1419
|
};
|
|
1394
1420
|
|
|
1395
1421
|
// src/squares-intersect.tsx
|
|
1396
|
-
var
|
|
1422
|
+
var import_jsx_runtime52 = require("react/jsx-runtime");
|
|
1397
1423
|
var SquaresIntersect = ({ size = 24, ...props }) => {
|
|
1398
|
-
return /* @__PURE__ */ (0,
|
|
1424
|
+
return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
|
|
1399
1425
|
"svg",
|
|
1400
1426
|
{
|
|
1401
1427
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1409,27 +1435,27 @@ var SquaresIntersect = ({ size = 24, ...props }) => {
|
|
|
1409
1435
|
strokeLinejoin: "round",
|
|
1410
1436
|
...props,
|
|
1411
1437
|
children: [
|
|
1412
|
-
/* @__PURE__ */ (0,
|
|
1413
|
-
/* @__PURE__ */ (0,
|
|
1414
|
-
/* @__PURE__ */ (0,
|
|
1415
|
-
/* @__PURE__ */ (0,
|
|
1416
|
-
/* @__PURE__ */ (0,
|
|
1417
|
-
/* @__PURE__ */ (0,
|
|
1418
|
-
/* @__PURE__ */ (0,
|
|
1419
|
-
/* @__PURE__ */ (0,
|
|
1420
|
-
/* @__PURE__ */ (0,
|
|
1421
|
-
/* @__PURE__ */ (0,
|
|
1422
|
-
/* @__PURE__ */ (0,
|
|
1423
|
-
/* @__PURE__ */ (0,
|
|
1438
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("title", { children: "Squares Intersect icon" }),
|
|
1439
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "M10 22a2 2 0 0 1-2-2" }),
|
|
1440
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "M14 2a2 2 0 0 1 2 2" }),
|
|
1441
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "M16 22h-2" }),
|
|
1442
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "M2 10V8" }),
|
|
1443
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "M2 4a2 2 0 0 1 2-2" }),
|
|
1444
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "M20 8a2 2 0 0 1 2 2" }),
|
|
1445
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "M22 14v2" }),
|
|
1446
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "M22 20a2 2 0 0 1-2 2" }),
|
|
1447
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "M4 16a2 2 0 0 1-2-2" }),
|
|
1448
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "M8 10a2 2 0 0 1 2-2h5a1 1 0 0 1 1 1v5a2 2 0 0 1-2 2H9a1 1 0 0 1-1-1z" }),
|
|
1449
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "M8 2h2" })
|
|
1424
1450
|
]
|
|
1425
1451
|
}
|
|
1426
1452
|
);
|
|
1427
1453
|
};
|
|
1428
1454
|
|
|
1429
1455
|
// src/trash-icon.tsx
|
|
1430
|
-
var
|
|
1456
|
+
var import_jsx_runtime53 = require("react/jsx-runtime");
|
|
1431
1457
|
var TrashIcon = ({ size = 24, ...props }) => {
|
|
1432
|
-
return /* @__PURE__ */ (0,
|
|
1458
|
+
return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
|
|
1433
1459
|
"svg",
|
|
1434
1460
|
{
|
|
1435
1461
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1443,21 +1469,21 @@ var TrashIcon = ({ size = 24, ...props }) => {
|
|
|
1443
1469
|
strokeLinejoin: "round",
|
|
1444
1470
|
...props,
|
|
1445
1471
|
children: [
|
|
1446
|
-
/* @__PURE__ */ (0,
|
|
1447
|
-
/* @__PURE__ */ (0,
|
|
1448
|
-
/* @__PURE__ */ (0,
|
|
1449
|
-
/* @__PURE__ */ (0,
|
|
1450
|
-
/* @__PURE__ */ (0,
|
|
1451
|
-
/* @__PURE__ */ (0,
|
|
1472
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("title", { children: "Trash icon" }),
|
|
1473
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { d: "M10 11v6" }),
|
|
1474
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { d: "M14 11v6" }),
|
|
1475
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
|
|
1476
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { d: "M3 6h18" }),
|
|
1477
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
|
|
1452
1478
|
]
|
|
1453
1479
|
}
|
|
1454
1480
|
);
|
|
1455
1481
|
};
|
|
1456
1482
|
|
|
1457
1483
|
// src/upload.tsx
|
|
1458
|
-
var
|
|
1484
|
+
var import_jsx_runtime54 = require("react/jsx-runtime");
|
|
1459
1485
|
var UploadIcon = ({ size = 24, ...props }) => {
|
|
1460
|
-
return /* @__PURE__ */ (0,
|
|
1486
|
+
return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
|
|
1461
1487
|
"svg",
|
|
1462
1488
|
{
|
|
1463
1489
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1471,19 +1497,19 @@ var UploadIcon = ({ size = 24, ...props }) => {
|
|
|
1471
1497
|
strokeLinejoin: "round",
|
|
1472
1498
|
...props,
|
|
1473
1499
|
children: [
|
|
1474
|
-
/* @__PURE__ */ (0,
|
|
1475
|
-
/* @__PURE__ */ (0,
|
|
1476
|
-
/* @__PURE__ */ (0,
|
|
1477
|
-
/* @__PURE__ */ (0,
|
|
1500
|
+
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)("title", { children: "Upload icon" }),
|
|
1501
|
+
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)("path", { d: "M12 13v8" }),
|
|
1502
|
+
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)("path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" }),
|
|
1503
|
+
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)("path", { d: "m8 17 4-4 4 4" })
|
|
1478
1504
|
]
|
|
1479
1505
|
}
|
|
1480
1506
|
);
|
|
1481
1507
|
};
|
|
1482
1508
|
|
|
1483
1509
|
// src/vendor.tsx
|
|
1484
|
-
var
|
|
1510
|
+
var import_jsx_runtime55 = require("react/jsx-runtime");
|
|
1485
1511
|
var VendorIcon = ({ size = 24, ...props }) => {
|
|
1486
|
-
return /* @__PURE__ */ (0,
|
|
1512
|
+
return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
|
|
1487
1513
|
"svg",
|
|
1488
1514
|
{
|
|
1489
1515
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1497,12 +1523,12 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
1497
1523
|
strokeLinejoin: "round",
|
|
1498
1524
|
...props,
|
|
1499
1525
|
children: [
|
|
1500
|
-
/* @__PURE__ */ (0,
|
|
1501
|
-
/* @__PURE__ */ (0,
|
|
1502
|
-
/* @__PURE__ */ (0,
|
|
1503
|
-
/* @__PURE__ */ (0,
|
|
1504
|
-
/* @__PURE__ */ (0,
|
|
1505
|
-
/* @__PURE__ */ (0,
|
|
1526
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("title", { children: "Vendor icon" }),
|
|
1527
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "m2 7 4.41-4.41A2 2 0 0 1 7.83 2h8.34a2 2 0 0 1 1.42.59L22 7" }),
|
|
1528
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
|
|
1529
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4" }),
|
|
1530
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M2 7h20" }),
|
|
1531
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M22 7v3a2 2 0 0 1-2 2a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 16 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 12 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 8 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 4 12a2 2 0 0 1-2-2V7" })
|
|
1506
1532
|
]
|
|
1507
1533
|
}
|
|
1508
1534
|
);
|
|
@@ -1543,6 +1569,7 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
1543
1569
|
GripVerticalIcon,
|
|
1544
1570
|
IncidentIcon,
|
|
1545
1571
|
InfoIcon,
|
|
1572
|
+
IntegrationIcon,
|
|
1546
1573
|
IntersectIcon,
|
|
1547
1574
|
IssuesIcon,
|
|
1548
1575
|
LinkedInIcon,
|
|
@@ -1556,6 +1583,7 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
1556
1583
|
PlusIcon,
|
|
1557
1584
|
ProcessingActivityIcon,
|
|
1558
1585
|
ProgramIcon,
|
|
1586
|
+
PuzzleIcon,
|
|
1559
1587
|
RiskIcon,
|
|
1560
1588
|
SaveIcon,
|
|
1561
1589
|
SearchIcon,
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
VendorIcon
|
|
4
|
+
} from "./chunk-5AMD4S26.mjs";
|
|
5
|
+
import {
|
|
6
|
+
SaveIcon
|
|
7
|
+
} from "./chunk-KE6JB3MS.mjs";
|
|
2
8
|
import {
|
|
3
9
|
SearchIcon
|
|
4
10
|
} from "./chunk-3BJDY4K2.mjs";
|
|
@@ -17,9 +23,6 @@ import {
|
|
|
17
23
|
import {
|
|
18
24
|
UploadIcon
|
|
19
25
|
} from "./chunk-WPTOAHE7.mjs";
|
|
20
|
-
import {
|
|
21
|
-
VendorIcon
|
|
22
|
-
} from "./chunk-5AMD4S26.mjs";
|
|
23
26
|
import {
|
|
24
27
|
PeopleIcon
|
|
25
28
|
} from "./chunk-XOYRXKQA.mjs";
|
|
@@ -38,12 +41,12 @@ import {
|
|
|
38
41
|
import {
|
|
39
42
|
ProgramIcon
|
|
40
43
|
} from "./chunk-DSI5CQOQ.mjs";
|
|
44
|
+
import {
|
|
45
|
+
PuzzleIcon
|
|
46
|
+
} from "./chunk-MJ6PIAN3.mjs";
|
|
41
47
|
import {
|
|
42
48
|
RiskIcon
|
|
43
49
|
} from "./chunk-JFTUDPFQ.mjs";
|
|
44
|
-
import {
|
|
45
|
-
SaveIcon
|
|
46
|
-
} from "./chunk-KE6JB3MS.mjs";
|
|
47
50
|
import {
|
|
48
51
|
IncidentIcon
|
|
49
52
|
} from "./chunk-EIACNJBZ.mjs";
|
|
@@ -196,6 +199,7 @@ export {
|
|
|
196
199
|
GripVerticalIcon,
|
|
197
200
|
IncidentIcon,
|
|
198
201
|
InfoIcon,
|
|
202
|
+
PuzzleIcon as IntegrationIcon,
|
|
199
203
|
SquaresIntersect as IntersectIcon,
|
|
200
204
|
IssuesIcon,
|
|
201
205
|
LinkedInIcon,
|
|
@@ -209,6 +213,7 @@ export {
|
|
|
209
213
|
PlusIcon,
|
|
210
214
|
ProcessingActivityIcon,
|
|
211
215
|
ProgramIcon,
|
|
216
|
+
PuzzleIcon,
|
|
212
217
|
RiskIcon,
|
|
213
218
|
SaveIcon,
|
|
214
219
|
SearchIcon,
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
"use strict";
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
|
|
21
|
+
// src/puzzle-icon.tsx
|
|
22
|
+
var puzzle_icon_exports = {};
|
|
23
|
+
__export(puzzle_icon_exports, {
|
|
24
|
+
PuzzleIcon: () => PuzzleIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(puzzle_icon_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var PuzzleIcon = ({ size = 24, ...props }) => {
|
|
29
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
30
|
+
"svg",
|
|
31
|
+
{
|
|
32
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
33
|
+
width: size,
|
|
34
|
+
height: size,
|
|
35
|
+
viewBox: "0 0 24 24",
|
|
36
|
+
fill: "none",
|
|
37
|
+
stroke: "currentColor",
|
|
38
|
+
strokeWidth: "2",
|
|
39
|
+
strokeLinecap: "round",
|
|
40
|
+
strokeLinejoin: "round",
|
|
41
|
+
...props,
|
|
42
|
+
children: [
|
|
43
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { children: "Puzzle Icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z" })
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
};
|
|
49
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
50
|
+
0 && (module.exports = {
|
|
51
|
+
PuzzleIcon
|
|
52
|
+
});
|