@kopexa/icons 9.0.1 → 9.0.3
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-GPAMXO65.mjs +35 -0
- package/dist/chunk-WGGLF2T2.mjs +32 -0
- package/dist/grip-vertical.d.mts +7 -0
- package/dist/grip-vertical.d.ts +7 -0
- package/dist/grip-vertical.js +58 -0
- package/dist/grip-vertical.mjs +7 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +172 -111
- package/dist/index.mjs +23 -15
- package/dist/info.d.mts +7 -0
- package/dist/info.d.ts +7 -0
- package/dist/info.js +55 -0
- package/dist/info.mjs +7 -0
- package/package.json +2 -2
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/grip-vertical.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var GripVerticalIcon = ({ 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
|
+
"aria-hidden": "true",
|
|
19
|
+
...props,
|
|
20
|
+
children: [
|
|
21
|
+
/* @__PURE__ */ jsx("title", { children: "Grip Vertical Icon" }),
|
|
22
|
+
/* @__PURE__ */ jsx("circle", { cx: "9", cy: "12", r: "1" }),
|
|
23
|
+
/* @__PURE__ */ jsx("circle", { cx: "9", cy: "5", r: "1" }),
|
|
24
|
+
/* @__PURE__ */ jsx("circle", { cx: "9", cy: "19", r: "1" }),
|
|
25
|
+
/* @__PURE__ */ jsx("circle", { cx: "15", cy: "12", r: "1" }),
|
|
26
|
+
/* @__PURE__ */ jsx("circle", { cx: "15", cy: "5", r: "1" }),
|
|
27
|
+
/* @__PURE__ */ jsx("circle", { cx: "15", cy: "19", r: "1" })
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
);
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export {
|
|
34
|
+
GripVerticalIcon
|
|
35
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/info.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var InfoIcon = ({ 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
|
+
"aria-hidden": "true",
|
|
19
|
+
...props,
|
|
20
|
+
children: [
|
|
21
|
+
/* @__PURE__ */ jsx("title", { children: "Info Icon" }),
|
|
22
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
|
|
23
|
+
/* @__PURE__ */ jsx("path", { d: "M12 16v-4" }),
|
|
24
|
+
/* @__PURE__ */ jsx("path", { d: "M12 8h.01" })
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
);
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export {
|
|
31
|
+
InfoIcon
|
|
32
|
+
};
|
|
@@ -0,0 +1,58 @@
|
|
|
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/grip-vertical.tsx
|
|
22
|
+
var grip_vertical_exports = {};
|
|
23
|
+
__export(grip_vertical_exports, {
|
|
24
|
+
GripVerticalIcon: () => GripVerticalIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(grip_vertical_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var GripVerticalIcon = ({ 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
|
+
"aria-hidden": "true",
|
|
42
|
+
...props,
|
|
43
|
+
children: [
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { children: "Grip Vertical Icon" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "9", cy: "12", r: "1" }),
|
|
46
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "9", cy: "5", r: "1" }),
|
|
47
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "9", cy: "19", r: "1" }),
|
|
48
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "15", cy: "12", r: "1" }),
|
|
49
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "15", cy: "5", r: "1" }),
|
|
50
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "15", cy: "19", r: "1" })
|
|
51
|
+
]
|
|
52
|
+
}
|
|
53
|
+
);
|
|
54
|
+
};
|
|
55
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
56
|
+
0 && (module.exports = {
|
|
57
|
+
GripVerticalIcon
|
|
58
|
+
});
|
package/dist/index.d.mts
CHANGED
|
@@ -18,7 +18,9 @@ export { DSARIcon } from './dsar.mjs';
|
|
|
18
18
|
export { EllipsisIcon } from './ellipsis-icon.mjs';
|
|
19
19
|
export { EyeIcon } from './eye.mjs';
|
|
20
20
|
export { EyeOffIcon } from './eye-off.mjs';
|
|
21
|
+
export { GripVerticalIcon } from './grip-vertical.mjs';
|
|
21
22
|
export { IncidentIcon } from './incident.mjs';
|
|
23
|
+
export { InfoIcon } from './info.mjs';
|
|
22
24
|
export { IssuesIcon } from './issues.mjs';
|
|
23
25
|
export { LinkedInIcon } from './linkedin.mjs';
|
|
24
26
|
export { MinusIcon } from './minus.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -18,7 +18,9 @@ export { DSARIcon } from './dsar.js';
|
|
|
18
18
|
export { EllipsisIcon } from './ellipsis-icon.js';
|
|
19
19
|
export { EyeIcon } from './eye.js';
|
|
20
20
|
export { EyeOffIcon } from './eye-off.js';
|
|
21
|
+
export { GripVerticalIcon } from './grip-vertical.js';
|
|
21
22
|
export { IncidentIcon } from './incident.js';
|
|
23
|
+
export { InfoIcon } from './info.js';
|
|
22
24
|
export { IssuesIcon } from './issues.js';
|
|
23
25
|
export { LinkedInIcon } from './linkedin.js';
|
|
24
26
|
export { MinusIcon } from './minus.js';
|
package/dist/index.js
CHANGED
|
@@ -41,7 +41,9 @@ __export(index_exports, {
|
|
|
41
41
|
EllipsisIcon: () => EllipsisIcon,
|
|
42
42
|
EyeIcon: () => EyeIcon,
|
|
43
43
|
EyeOffIcon: () => EyeOffIcon,
|
|
44
|
+
GripVerticalIcon: () => GripVerticalIcon,
|
|
44
45
|
IncidentIcon: () => IncidentIcon,
|
|
46
|
+
InfoIcon: () => InfoIcon,
|
|
45
47
|
IssuesIcon: () => IssuesIcon,
|
|
46
48
|
LinkedInIcon: () => LinkedInIcon,
|
|
47
49
|
MinusIcon: () => MinusIcon,
|
|
@@ -577,9 +579,9 @@ var EyeOffIcon = (props) => {
|
|
|
577
579
|
);
|
|
578
580
|
};
|
|
579
581
|
|
|
580
|
-
// src/
|
|
582
|
+
// src/grip-vertical.tsx
|
|
581
583
|
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
582
|
-
var
|
|
584
|
+
var GripVerticalIcon = ({ size = 24, ...props }) => {
|
|
583
585
|
return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
|
|
584
586
|
"svg",
|
|
585
587
|
{
|
|
@@ -592,20 +594,24 @@ var IncidentIcon = ({ size = 24, ...props }) => {
|
|
|
592
594
|
strokeWidth: "2",
|
|
593
595
|
strokeLinecap: "round",
|
|
594
596
|
strokeLinejoin: "round",
|
|
597
|
+
"aria-hidden": "true",
|
|
595
598
|
...props,
|
|
596
599
|
children: [
|
|
597
|
-
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("title", { children: "
|
|
598
|
-
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("
|
|
599
|
-
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("
|
|
600
|
-
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("
|
|
600
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("title", { children: "Grip Vertical Icon" }),
|
|
601
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("circle", { cx: "9", cy: "12", r: "1" }),
|
|
602
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("circle", { cx: "9", cy: "5", r: "1" }),
|
|
603
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("circle", { cx: "9", cy: "19", r: "1" }),
|
|
604
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("circle", { cx: "15", cy: "12", r: "1" }),
|
|
605
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("circle", { cx: "15", cy: "5", r: "1" }),
|
|
606
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("circle", { cx: "15", cy: "19", r: "1" })
|
|
601
607
|
]
|
|
602
608
|
}
|
|
603
609
|
);
|
|
604
610
|
};
|
|
605
611
|
|
|
606
|
-
// src/
|
|
612
|
+
// src/incident.tsx
|
|
607
613
|
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
608
|
-
var
|
|
614
|
+
var IncidentIcon = ({ size = 24, ...props }) => {
|
|
609
615
|
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
610
616
|
"svg",
|
|
611
617
|
{
|
|
@@ -620,21 +626,74 @@ var IssuesIcon = ({ size = 24, ...props }) => {
|
|
|
620
626
|
strokeLinejoin: "round",
|
|
621
627
|
...props,
|
|
622
628
|
children: [
|
|
623
|
-
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("title", { children: "
|
|
624
|
-
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "
|
|
625
|
-
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M12
|
|
626
|
-
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "
|
|
627
|
-
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M8 11h.01" }),
|
|
628
|
-
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M8 16h.01" })
|
|
629
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("title", { children: "Incident icon" }),
|
|
630
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M12 16h.01" }),
|
|
631
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M12 8v4" }),
|
|
632
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", { d: "M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z" })
|
|
629
633
|
]
|
|
630
634
|
}
|
|
631
635
|
);
|
|
632
636
|
};
|
|
633
637
|
|
|
634
|
-
// src/
|
|
638
|
+
// src/info.tsx
|
|
635
639
|
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
636
|
-
var
|
|
640
|
+
var InfoIcon = ({ size = 24, ...props }) => {
|
|
637
641
|
return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
|
|
642
|
+
"svg",
|
|
643
|
+
{
|
|
644
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
645
|
+
width: size,
|
|
646
|
+
height: size,
|
|
647
|
+
viewBox: "0 0 24 24",
|
|
648
|
+
fill: "none",
|
|
649
|
+
stroke: "currentColor",
|
|
650
|
+
strokeWidth: "2",
|
|
651
|
+
strokeLinecap: "round",
|
|
652
|
+
strokeLinejoin: "round",
|
|
653
|
+
"aria-hidden": "true",
|
|
654
|
+
...props,
|
|
655
|
+
children: [
|
|
656
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("title", { children: "Info Icon" }),
|
|
657
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
658
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", { d: "M12 16v-4" }),
|
|
659
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", { d: "M12 8h.01" })
|
|
660
|
+
]
|
|
661
|
+
}
|
|
662
|
+
);
|
|
663
|
+
};
|
|
664
|
+
|
|
665
|
+
// src/issues.tsx
|
|
666
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
667
|
+
var IssuesIcon = ({ size = 24, ...props }) => {
|
|
668
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
|
|
669
|
+
"svg",
|
|
670
|
+
{
|
|
671
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
672
|
+
width: size,
|
|
673
|
+
height: size,
|
|
674
|
+
viewBox: "0 0 24 24",
|
|
675
|
+
fill: "none",
|
|
676
|
+
stroke: "currentColor",
|
|
677
|
+
strokeWidth: "2",
|
|
678
|
+
strokeLinecap: "round",
|
|
679
|
+
strokeLinejoin: "round",
|
|
680
|
+
...props,
|
|
681
|
+
children: [
|
|
682
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("title", { children: "Issues icon" }),
|
|
683
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }),
|
|
684
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("path", { d: "M12 11h4" }),
|
|
685
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("path", { d: "M12 16h4" }),
|
|
686
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("path", { d: "M8 11h.01" }),
|
|
687
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("path", { d: "M8 16h.01" })
|
|
688
|
+
]
|
|
689
|
+
}
|
|
690
|
+
);
|
|
691
|
+
};
|
|
692
|
+
|
|
693
|
+
// src/linkedin.tsx
|
|
694
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
695
|
+
var LinkedInIcon = ({ size = 24, ...props }) => {
|
|
696
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
638
697
|
"svg",
|
|
639
698
|
{
|
|
640
699
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -650,19 +709,19 @@ var LinkedInIcon = ({ size = 24, ...props }) => {
|
|
|
650
709
|
focusable: "false",
|
|
651
710
|
...props,
|
|
652
711
|
children: [
|
|
653
|
-
/* @__PURE__ */ (0,
|
|
654
|
-
/* @__PURE__ */ (0,
|
|
655
|
-
/* @__PURE__ */ (0,
|
|
656
|
-
/* @__PURE__ */ (0,
|
|
712
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("title", { children: "LinkedIn Icon" }),
|
|
713
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("path", { d: "M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z" }),
|
|
714
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("rect", { width: "4", height: "12", x: "2", y: "9" }),
|
|
715
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("circle", { cx: "4", cy: "4", r: "2" })
|
|
657
716
|
]
|
|
658
717
|
}
|
|
659
718
|
);
|
|
660
719
|
};
|
|
661
720
|
|
|
662
721
|
// src/minus.tsx
|
|
663
|
-
var
|
|
722
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
664
723
|
var MinusIcon = ({ size = 24, ...props }) => {
|
|
665
|
-
return /* @__PURE__ */ (0,
|
|
724
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
|
|
666
725
|
"svg",
|
|
667
726
|
{
|
|
668
727
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -676,17 +735,17 @@ var MinusIcon = ({ size = 24, ...props }) => {
|
|
|
676
735
|
strokeLinejoin: "round",
|
|
677
736
|
...props,
|
|
678
737
|
children: [
|
|
679
|
-
/* @__PURE__ */ (0,
|
|
680
|
-
/* @__PURE__ */ (0,
|
|
738
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("title", { children: "Minus Icon" }),
|
|
739
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "M5 12h14" })
|
|
681
740
|
]
|
|
682
741
|
}
|
|
683
742
|
);
|
|
684
743
|
};
|
|
685
744
|
|
|
686
745
|
// src/notification-icon.tsx
|
|
687
|
-
var
|
|
746
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
688
747
|
var NotificationIcon = (props) => {
|
|
689
|
-
return /* @__PURE__ */ (0,
|
|
748
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
|
|
690
749
|
"svg",
|
|
691
750
|
{
|
|
692
751
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -700,18 +759,18 @@ var NotificationIcon = (props) => {
|
|
|
700
759
|
strokeLinejoin: "round",
|
|
701
760
|
...props,
|
|
702
761
|
children: [
|
|
703
|
-
/* @__PURE__ */ (0,
|
|
704
|
-
/* @__PURE__ */ (0,
|
|
705
|
-
/* @__PURE__ */ (0,
|
|
762
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("title", { children: "Notification Icon" }),
|
|
763
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
|
|
764
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326" })
|
|
706
765
|
]
|
|
707
766
|
}
|
|
708
767
|
);
|
|
709
768
|
};
|
|
710
769
|
|
|
711
770
|
// src/panel-left-icon.tsx
|
|
712
|
-
var
|
|
771
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
713
772
|
var PanelLeftIcon = ({ size = 24, ...props }) => {
|
|
714
|
-
return /* @__PURE__ */ (0,
|
|
773
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
|
|
715
774
|
"svg",
|
|
716
775
|
{
|
|
717
776
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -725,18 +784,18 @@ var PanelLeftIcon = ({ size = 24, ...props }) => {
|
|
|
725
784
|
strokeLinejoin: "round",
|
|
726
785
|
...props,
|
|
727
786
|
children: [
|
|
728
|
-
/* @__PURE__ */ (0,
|
|
729
|
-
/* @__PURE__ */ (0,
|
|
730
|
-
/* @__PURE__ */ (0,
|
|
787
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("title", { children: "Panel Left icon" }),
|
|
788
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
789
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M9 3v18" })
|
|
731
790
|
]
|
|
732
791
|
}
|
|
733
792
|
);
|
|
734
793
|
};
|
|
735
794
|
|
|
736
795
|
// src/people.tsx
|
|
737
|
-
var
|
|
796
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
738
797
|
var PeopleIcon = ({ size = 24, ...props }) => {
|
|
739
|
-
return /* @__PURE__ */ (0,
|
|
798
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
|
|
740
799
|
"svg",
|
|
741
800
|
{
|
|
742
801
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -750,20 +809,20 @@ var PeopleIcon = ({ size = 24, ...props }) => {
|
|
|
750
809
|
strokeLinejoin: "round",
|
|
751
810
|
...props,
|
|
752
811
|
children: [
|
|
753
|
-
/* @__PURE__ */ (0,
|
|
754
|
-
/* @__PURE__ */ (0,
|
|
755
|
-
/* @__PURE__ */ (0,
|
|
756
|
-
/* @__PURE__ */ (0,
|
|
757
|
-
/* @__PURE__ */ (0,
|
|
812
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("title", { children: "People icon" }),
|
|
813
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
814
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("path", { d: "M16 3.128a4 4 0 0 1 0 7.744" }),
|
|
815
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
|
|
816
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("circle", { cx: "9", cy: "7", r: "4" })
|
|
758
817
|
]
|
|
759
818
|
}
|
|
760
819
|
);
|
|
761
820
|
};
|
|
762
821
|
|
|
763
822
|
// src/physical-asset.tsx
|
|
764
|
-
var
|
|
823
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
765
824
|
var PhysicalAssetIcon = ({ size = 24, ...props }) => {
|
|
766
|
-
return /* @__PURE__ */ (0,
|
|
825
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
|
|
767
826
|
"svg",
|
|
768
827
|
{
|
|
769
828
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -777,20 +836,20 @@ var PhysicalAssetIcon = ({ size = 24, ...props }) => {
|
|
|
777
836
|
strokeLinejoin: "round",
|
|
778
837
|
...props,
|
|
779
838
|
children: [
|
|
780
|
-
/* @__PURE__ */ (0,
|
|
781
|
-
/* @__PURE__ */ (0,
|
|
782
|
-
/* @__PURE__ */ (0,
|
|
783
|
-
/* @__PURE__ */ (0,
|
|
784
|
-
/* @__PURE__ */ (0,
|
|
839
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("title", { children: "Physical Asset icon" }),
|
|
840
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("path", { d: "M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8" }),
|
|
841
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("path", { d: "M10 19v-3.96 3.15" }),
|
|
842
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("path", { d: "M7 19h5" }),
|
|
843
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("rect", { width: "6", height: "10", x: "16", y: "12", rx: "2" })
|
|
785
844
|
]
|
|
786
845
|
}
|
|
787
846
|
);
|
|
788
847
|
};
|
|
789
848
|
|
|
790
849
|
// src/plattform-asset.tsx
|
|
791
|
-
var
|
|
850
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
792
851
|
var PlattformAssetIcon = ({ size = 24, ...props }) => {
|
|
793
|
-
return /* @__PURE__ */ (0,
|
|
852
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
|
|
794
853
|
"svg",
|
|
795
854
|
{
|
|
796
855
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -804,20 +863,20 @@ var PlattformAssetIcon = ({ size = 24, ...props }) => {
|
|
|
804
863
|
strokeLinejoin: "round",
|
|
805
864
|
...props,
|
|
806
865
|
children: [
|
|
807
|
-
/* @__PURE__ */ (0,
|
|
808
|
-
/* @__PURE__ */ (0,
|
|
809
|
-
/* @__PURE__ */ (0,
|
|
810
|
-
/* @__PURE__ */ (0,
|
|
811
|
-
/* @__PURE__ */ (0,
|
|
866
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("title", { children: "Plattform Asset icon" }),
|
|
867
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("rect", { width: "20", height: "8", x: "2", y: "2", rx: "2", ry: "2" }),
|
|
868
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", ry: "2" }),
|
|
869
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("line", { x1: "6", x2: "6.01", y1: "6", y2: "6" }),
|
|
870
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("line", { x1: "6", x2: "6.01", y1: "18", y2: "18" })
|
|
812
871
|
]
|
|
813
872
|
}
|
|
814
873
|
);
|
|
815
874
|
};
|
|
816
875
|
|
|
817
876
|
// src/plus.tsx
|
|
818
|
-
var
|
|
877
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
819
878
|
var PlusIcon = (props) => {
|
|
820
|
-
return /* @__PURE__ */ (0,
|
|
879
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
|
|
821
880
|
"svg",
|
|
822
881
|
{
|
|
823
882
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -831,21 +890,21 @@ var PlusIcon = (props) => {
|
|
|
831
890
|
strokeLinejoin: "round",
|
|
832
891
|
...props,
|
|
833
892
|
children: [
|
|
834
|
-
/* @__PURE__ */ (0,
|
|
835
|
-
/* @__PURE__ */ (0,
|
|
836
|
-
/* @__PURE__ */ (0,
|
|
893
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("title", { children: "Plus Icon" }),
|
|
894
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("path", { d: "M5 12h14" }),
|
|
895
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("path", { d: "M12 5v14" })
|
|
837
896
|
]
|
|
838
897
|
}
|
|
839
898
|
);
|
|
840
899
|
};
|
|
841
900
|
|
|
842
901
|
// src/processing-activity.tsx
|
|
843
|
-
var
|
|
902
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
844
903
|
var ProcessingActivityIcon = ({
|
|
845
904
|
size = 24,
|
|
846
905
|
...props
|
|
847
906
|
}) => {
|
|
848
|
-
return /* @__PURE__ */ (0,
|
|
907
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
|
|
849
908
|
"svg",
|
|
850
909
|
{
|
|
851
910
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -859,19 +918,19 @@ var ProcessingActivityIcon = ({
|
|
|
859
918
|
strokeLinejoin: "round",
|
|
860
919
|
...props,
|
|
861
920
|
children: [
|
|
862
|
-
/* @__PURE__ */ (0,
|
|
863
|
-
/* @__PURE__ */ (0,
|
|
864
|
-
/* @__PURE__ */ (0,
|
|
865
|
-
/* @__PURE__ */ (0,
|
|
921
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("title", { children: "Processing Activity icon" }),
|
|
922
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("rect", { width: "8", height: "8", x: "3", y: "3", rx: "2" }),
|
|
923
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("path", { d: "M7 11v4a2 2 0 0 0 2 2h4" }),
|
|
924
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("rect", { width: "8", height: "8", x: "13", y: "13", rx: "2" })
|
|
866
925
|
]
|
|
867
926
|
}
|
|
868
927
|
);
|
|
869
928
|
};
|
|
870
929
|
|
|
871
930
|
// src/program-icon.tsx
|
|
872
|
-
var
|
|
931
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
873
932
|
var ProgramIcon = ({ size = 24, ...props }) => {
|
|
874
|
-
return /* @__PURE__ */ (0,
|
|
933
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
|
|
875
934
|
"svg",
|
|
876
935
|
{
|
|
877
936
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -885,20 +944,20 @@ var ProgramIcon = ({ size = 24, ...props }) => {
|
|
|
885
944
|
strokeLinejoin: "round",
|
|
886
945
|
...props,
|
|
887
946
|
children: [
|
|
888
|
-
/* @__PURE__ */ (0,
|
|
889
|
-
/* @__PURE__ */ (0,
|
|
890
|
-
/* @__PURE__ */ (0,
|
|
891
|
-
/* @__PURE__ */ (0,
|
|
892
|
-
/* @__PURE__ */ (0,
|
|
947
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("title", { children: "Program icon" }),
|
|
948
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("path", { d: "M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z" }),
|
|
949
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("path", { d: "M8 10v4" }),
|
|
950
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("path", { d: "M12 10v2" }),
|
|
951
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("path", { d: "M16 10v6" })
|
|
893
952
|
]
|
|
894
953
|
}
|
|
895
954
|
);
|
|
896
955
|
};
|
|
897
956
|
|
|
898
957
|
// src/risk.tsx
|
|
899
|
-
var
|
|
958
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
900
959
|
var RiskIcon = ({ size = 24, ...props }) => {
|
|
901
|
-
return /* @__PURE__ */ (0,
|
|
960
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
|
|
902
961
|
"svg",
|
|
903
962
|
{
|
|
904
963
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -912,19 +971,19 @@ var RiskIcon = ({ size = 24, ...props }) => {
|
|
|
912
971
|
strokeLinejoin: "round",
|
|
913
972
|
...props,
|
|
914
973
|
children: [
|
|
915
|
-
/* @__PURE__ */ (0,
|
|
916
|
-
/* @__PURE__ */ (0,
|
|
917
|
-
/* @__PURE__ */ (0,
|
|
918
|
-
/* @__PURE__ */ (0,
|
|
974
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("title", { children: "Risk icon" }),
|
|
975
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.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" }),
|
|
976
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { d: "M12 8v4" }),
|
|
977
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", { d: "M12 16h.01" })
|
|
919
978
|
]
|
|
920
979
|
}
|
|
921
980
|
);
|
|
922
981
|
};
|
|
923
982
|
|
|
924
983
|
// src/save.tsx
|
|
925
|
-
var
|
|
984
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
926
985
|
var SaveIcon = (props) => {
|
|
927
|
-
return /* @__PURE__ */ (0,
|
|
986
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
|
|
928
987
|
"svg",
|
|
929
988
|
{
|
|
930
989
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -938,19 +997,19 @@ var SaveIcon = (props) => {
|
|
|
938
997
|
strokeLinejoin: "round",
|
|
939
998
|
...props,
|
|
940
999
|
children: [
|
|
941
|
-
/* @__PURE__ */ (0,
|
|
942
|
-
/* @__PURE__ */ (0,
|
|
943
|
-
/* @__PURE__ */ (0,
|
|
944
|
-
/* @__PURE__ */ (0,
|
|
1000
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("title", { children: "Save Icon" }),
|
|
1001
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.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" }),
|
|
1002
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
1003
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
945
1004
|
]
|
|
946
1005
|
}
|
|
947
1006
|
);
|
|
948
1007
|
};
|
|
949
1008
|
|
|
950
1009
|
// src/search.tsx
|
|
951
|
-
var
|
|
1010
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
952
1011
|
var SearchIcon = (props) => {
|
|
953
|
-
return /* @__PURE__ */ (0,
|
|
1012
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
954
1013
|
"svg",
|
|
955
1014
|
{
|
|
956
1015
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -964,18 +1023,18 @@ var SearchIcon = (props) => {
|
|
|
964
1023
|
strokeLinejoin: "round",
|
|
965
1024
|
...props,
|
|
966
1025
|
children: [
|
|
967
|
-
/* @__PURE__ */ (0,
|
|
968
|
-
/* @__PURE__ */ (0,
|
|
969
|
-
/* @__PURE__ */ (0,
|
|
1026
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("title", { children: "Search Icon" }),
|
|
1027
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "m21 21-4.34-4.34" }),
|
|
1028
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("circle", { cx: "11", cy: "11", r: "8" })
|
|
970
1029
|
]
|
|
971
1030
|
}
|
|
972
1031
|
);
|
|
973
1032
|
};
|
|
974
1033
|
|
|
975
1034
|
// src/settings.tsx
|
|
976
|
-
var
|
|
1035
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
977
1036
|
var SettingsIcon = ({ size = 24, ...props }) => {
|
|
978
|
-
return /* @__PURE__ */ (0,
|
|
1037
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
|
|
979
1038
|
"svg",
|
|
980
1039
|
{
|
|
981
1040
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -989,20 +1048,20 @@ var SettingsIcon = ({ size = 24, ...props }) => {
|
|
|
989
1048
|
strokeLinejoin: "round",
|
|
990
1049
|
...props,
|
|
991
1050
|
children: [
|
|
992
|
-
/* @__PURE__ */ (0,
|
|
993
|
-
/* @__PURE__ */ (0,
|
|
994
|
-
/* @__PURE__ */ (0,
|
|
995
|
-
/* @__PURE__ */ (0,
|
|
996
|
-
/* @__PURE__ */ (0,
|
|
1051
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("title", { children: "Settings" }),
|
|
1052
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M14 17H5" }),
|
|
1053
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M19 7h-9" }),
|
|
1054
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("circle", { cx: "17", cy: "17", r: "3" }),
|
|
1055
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("circle", { cx: "7", cy: "7", r: "3" })
|
|
997
1056
|
]
|
|
998
1057
|
}
|
|
999
1058
|
);
|
|
1000
1059
|
};
|
|
1001
1060
|
|
|
1002
1061
|
// src/upload.tsx
|
|
1003
|
-
var
|
|
1062
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
1004
1063
|
var UploadIcon = ({ size = 24, ...props }) => {
|
|
1005
|
-
return /* @__PURE__ */ (0,
|
|
1064
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
|
|
1006
1065
|
"svg",
|
|
1007
1066
|
{
|
|
1008
1067
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1016,19 +1075,19 @@ var UploadIcon = ({ size = 24, ...props }) => {
|
|
|
1016
1075
|
strokeLinejoin: "round",
|
|
1017
1076
|
...props,
|
|
1018
1077
|
children: [
|
|
1019
|
-
/* @__PURE__ */ (0,
|
|
1020
|
-
/* @__PURE__ */ (0,
|
|
1021
|
-
/* @__PURE__ */ (0,
|
|
1022
|
-
/* @__PURE__ */ (0,
|
|
1078
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("title", { children: "Upload icon" }),
|
|
1079
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M12 13v8" }),
|
|
1080
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" }),
|
|
1081
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "m8 17 4-4 4 4" })
|
|
1023
1082
|
]
|
|
1024
1083
|
}
|
|
1025
1084
|
);
|
|
1026
1085
|
};
|
|
1027
1086
|
|
|
1028
1087
|
// src/vendor.tsx
|
|
1029
|
-
var
|
|
1088
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
1030
1089
|
var VendorIcon = ({ size = 24, ...props }) => {
|
|
1031
|
-
return /* @__PURE__ */ (0,
|
|
1090
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
|
|
1032
1091
|
"svg",
|
|
1033
1092
|
{
|
|
1034
1093
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1042,12 +1101,12 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
1042
1101
|
strokeLinejoin: "round",
|
|
1043
1102
|
...props,
|
|
1044
1103
|
children: [
|
|
1045
|
-
/* @__PURE__ */ (0,
|
|
1046
|
-
/* @__PURE__ */ (0,
|
|
1047
|
-
/* @__PURE__ */ (0,
|
|
1048
|
-
/* @__PURE__ */ (0,
|
|
1049
|
-
/* @__PURE__ */ (0,
|
|
1050
|
-
/* @__PURE__ */ (0,
|
|
1104
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("title", { children: "Vendor icon" }),
|
|
1105
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.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" }),
|
|
1106
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
|
|
1107
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("path", { d: "M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4" }),
|
|
1108
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("path", { d: "M2 7h20" }),
|
|
1109
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.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" })
|
|
1051
1110
|
]
|
|
1052
1111
|
}
|
|
1053
1112
|
);
|
|
@@ -1074,7 +1133,9 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
1074
1133
|
EllipsisIcon,
|
|
1075
1134
|
EyeIcon,
|
|
1076
1135
|
EyeOffIcon,
|
|
1136
|
+
GripVerticalIcon,
|
|
1077
1137
|
IncidentIcon,
|
|
1138
|
+
InfoIcon,
|
|
1078
1139
|
IssuesIcon,
|
|
1079
1140
|
LinkedInIcon,
|
|
1080
1141
|
MinusIcon,
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
UploadIcon
|
|
4
|
+
} from "./chunk-WPTOAHE7.mjs";
|
|
5
|
+
import {
|
|
6
|
+
VendorIcon
|
|
7
|
+
} from "./chunk-5AMD4S26.mjs";
|
|
8
|
+
import {
|
|
9
|
+
PlusIcon
|
|
10
|
+
} from "./chunk-VT4DJPGF.mjs";
|
|
11
|
+
import {
|
|
12
|
+
ProcessingActivityIcon
|
|
13
|
+
} from "./chunk-Y7DSA4LC.mjs";
|
|
2
14
|
import {
|
|
3
15
|
ProgramIcon
|
|
4
16
|
} from "./chunk-DSI5CQOQ.mjs";
|
|
@@ -15,11 +27,11 @@ import {
|
|
|
15
27
|
SettingsIcon
|
|
16
28
|
} from "./chunk-5VB6VXKQ.mjs";
|
|
17
29
|
import {
|
|
18
|
-
|
|
19
|
-
} from "./chunk-
|
|
30
|
+
IssuesIcon
|
|
31
|
+
} from "./chunk-HOWMZ73X.mjs";
|
|
20
32
|
import {
|
|
21
|
-
|
|
22
|
-
} from "./chunk-
|
|
33
|
+
LinkedInIcon
|
|
34
|
+
} from "./chunk-M2RUR5WR.mjs";
|
|
23
35
|
import {
|
|
24
36
|
MinusIcon
|
|
25
37
|
} from "./chunk-6TEI2IX4.mjs";
|
|
@@ -38,12 +50,6 @@ import {
|
|
|
38
50
|
import {
|
|
39
51
|
PlattformAssetIcon
|
|
40
52
|
} from "./chunk-WWSIRUDQ.mjs";
|
|
41
|
-
import {
|
|
42
|
-
PlusIcon
|
|
43
|
-
} from "./chunk-VT4DJPGF.mjs";
|
|
44
|
-
import {
|
|
45
|
-
ProcessingActivityIcon
|
|
46
|
-
} from "./chunk-Y7DSA4LC.mjs";
|
|
47
53
|
import {
|
|
48
54
|
DSARIcon
|
|
49
55
|
} from "./chunk-DRZOZSLJ.mjs";
|
|
@@ -56,15 +62,15 @@ import {
|
|
|
56
62
|
import {
|
|
57
63
|
EyeIcon
|
|
58
64
|
} from "./chunk-K6ICW5LE.mjs";
|
|
65
|
+
import {
|
|
66
|
+
GripVerticalIcon
|
|
67
|
+
} from "./chunk-GPAMXO65.mjs";
|
|
59
68
|
import {
|
|
60
69
|
IncidentIcon
|
|
61
70
|
} from "./chunk-EIACNJBZ.mjs";
|
|
62
71
|
import {
|
|
63
|
-
|
|
64
|
-
} from "./chunk-
|
|
65
|
-
import {
|
|
66
|
-
LinkedInIcon
|
|
67
|
-
} from "./chunk-M2RUR5WR.mjs";
|
|
72
|
+
InfoIcon
|
|
73
|
+
} from "./chunk-WGGLF2T2.mjs";
|
|
68
74
|
import {
|
|
69
75
|
ChevronLeftIcon
|
|
70
76
|
} from "./chunk-NKQY55QT.mjs";
|
|
@@ -134,7 +140,9 @@ export {
|
|
|
134
140
|
EllipsisIcon,
|
|
135
141
|
EyeIcon,
|
|
136
142
|
EyeOffIcon,
|
|
143
|
+
GripVerticalIcon,
|
|
137
144
|
IncidentIcon,
|
|
145
|
+
InfoIcon,
|
|
138
146
|
IssuesIcon,
|
|
139
147
|
LinkedInIcon,
|
|
140
148
|
MinusIcon,
|
package/dist/info.d.mts
ADDED
package/dist/info.d.ts
ADDED
package/dist/info.js
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
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/info.tsx
|
|
22
|
+
var info_exports = {};
|
|
23
|
+
__export(info_exports, {
|
|
24
|
+
InfoIcon: () => InfoIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(info_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var InfoIcon = ({ 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
|
+
"aria-hidden": "true",
|
|
42
|
+
...props,
|
|
43
|
+
children: [
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { children: "Info Icon" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
46
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 16v-4" }),
|
|
47
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 8h.01" })
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
);
|
|
51
|
+
};
|
|
52
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
53
|
+
0 && (module.exports = {
|
|
54
|
+
InfoIcon
|
|
55
|
+
});
|
package/dist/info.mjs
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/icons",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.3",
|
|
4
4
|
"description": "icons we use in our kopexa products",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"icons"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"react": ">=19.0.0-rc.0",
|
|
29
29
|
"react-dom": ">=19.0.0-rc.0",
|
|
30
|
-
"@kopexa/theme": "1.6.
|
|
30
|
+
"@kopexa/theme": "1.6.3"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@kopexa/shared-utils": "1.1.5",
|