@kopexa/icons 10.0.3 → 10.0.5
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-E35BW74J.mjs +31 -0
- package/dist/domain-icon.d.mts +7 -0
- package/dist/domain-icon.d.ts +7 -0
- package/dist/domain-icon.js +54 -0
- package/dist/domain-icon.mjs +7 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +181 -153
- package/dist/index.mjs +12 -8
- package/package.json +2 -2
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/domain-icon.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var DomainIcon = ({ 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: "Domain icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
|
|
22
|
+
/* @__PURE__ */ jsx("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
|
|
23
|
+
/* @__PURE__ */ jsx("path", { d: "M2 12h20" })
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export {
|
|
30
|
+
DomainIcon
|
|
31
|
+
};
|
|
@@ -0,0 +1,54 @@
|
|
|
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/domain-icon.tsx
|
|
22
|
+
var domain_icon_exports = {};
|
|
23
|
+
__export(domain_icon_exports, {
|
|
24
|
+
DomainIcon: () => DomainIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(domain_icon_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var DomainIcon = ({ 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: "Domain icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
|
|
46
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M2 12h20" })
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
);
|
|
50
|
+
};
|
|
51
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
52
|
+
0 && (module.exports = {
|
|
53
|
+
DomainIcon
|
|
54
|
+
});
|
package/dist/index.d.mts
CHANGED
|
@@ -17,6 +17,7 @@ export { ControlsIcon } from './controls.mjs';
|
|
|
17
17
|
export { CopyIcon } from './copy-icon.mjs';
|
|
18
18
|
export { DataAssetIcon } from './data-asset.mjs';
|
|
19
19
|
export { DocumentsIcon } from './documents.mjs';
|
|
20
|
+
export { DomainIcon } from './domain-icon.mjs';
|
|
20
21
|
export { DSARIcon } from './dsar.mjs';
|
|
21
22
|
export { EllipsisIcon } from './ellipsis-icon.mjs';
|
|
22
23
|
export { EyeIcon } from './eye.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export { ControlsIcon } from './controls.js';
|
|
|
17
17
|
export { CopyIcon } from './copy-icon.js';
|
|
18
18
|
export { DataAssetIcon } from './data-asset.js';
|
|
19
19
|
export { DocumentsIcon } from './documents.js';
|
|
20
|
+
export { DomainIcon } from './domain-icon.js';
|
|
20
21
|
export { DSARIcon } from './dsar.js';
|
|
21
22
|
export { EllipsisIcon } from './ellipsis-icon.js';
|
|
22
23
|
export { EyeIcon } from './eye.js';
|
package/dist/index.js
CHANGED
|
@@ -41,6 +41,7 @@ __export(index_exports, {
|
|
|
41
41
|
DSARIcon: () => DSARIcon,
|
|
42
42
|
DataAssetIcon: () => DataAssetIcon,
|
|
43
43
|
DocumentsIcon: () => DocumentsIcon,
|
|
44
|
+
DomainIcon: () => DomainIcon,
|
|
44
45
|
EllipsisIcon: () => EllipsisIcon,
|
|
45
46
|
EyeIcon: () => EyeIcon,
|
|
46
47
|
EyeOffIcon: () => EyeOffIcon,
|
|
@@ -557,9 +558,9 @@ var DocumentsIcon = ({ size = 24, ...props }) => {
|
|
|
557
558
|
);
|
|
558
559
|
};
|
|
559
560
|
|
|
560
|
-
// src/
|
|
561
|
+
// src/domain-icon.tsx
|
|
561
562
|
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
562
|
-
var
|
|
563
|
+
var DomainIcon = ({ size = 24, ...props }) => {
|
|
563
564
|
return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
|
|
564
565
|
"svg",
|
|
565
566
|
{
|
|
@@ -574,17 +575,18 @@ var DSARIcon = ({ size = 24, ...props }) => {
|
|
|
574
575
|
strokeLinejoin: "round",
|
|
575
576
|
...props,
|
|
576
577
|
children: [
|
|
577
|
-
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("title", { children: "
|
|
578
|
-
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("
|
|
579
|
-
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "
|
|
578
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("title", { children: "Domain icon" }),
|
|
579
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
580
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
|
|
581
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M2 12h20" })
|
|
580
582
|
]
|
|
581
583
|
}
|
|
582
584
|
);
|
|
583
585
|
};
|
|
584
586
|
|
|
585
|
-
// src/
|
|
587
|
+
// src/dsar.tsx
|
|
586
588
|
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
587
|
-
var
|
|
589
|
+
var DSARIcon = ({ size = 24, ...props }) => {
|
|
588
590
|
return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
|
|
589
591
|
"svg",
|
|
590
592
|
{
|
|
@@ -599,19 +601,44 @@ var EllipsisIcon = ({ size = 24, ...props }) => {
|
|
|
599
601
|
strokeLinejoin: "round",
|
|
600
602
|
...props,
|
|
601
603
|
children: [
|
|
602
|
-
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("title", { children: "
|
|
603
|
-
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("
|
|
604
|
-
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("
|
|
605
|
-
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("circle", { cx: "5", cy: "12", r: "1" })
|
|
604
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("title", { children: "DSAR icon" }),
|
|
605
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
|
|
606
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", { d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" })
|
|
606
607
|
]
|
|
607
608
|
}
|
|
608
609
|
);
|
|
609
610
|
};
|
|
610
611
|
|
|
611
|
-
// src/
|
|
612
|
+
// src/ellipsis-icon.tsx
|
|
612
613
|
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
613
|
-
var
|
|
614
|
+
var EllipsisIcon = ({ size = 24, ...props }) => {
|
|
614
615
|
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
616
|
+
"svg",
|
|
617
|
+
{
|
|
618
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
619
|
+
width: size,
|
|
620
|
+
height: size,
|
|
621
|
+
viewBox: "0 0 24 24",
|
|
622
|
+
fill: "none",
|
|
623
|
+
stroke: "currentColor",
|
|
624
|
+
strokeWidth: "2",
|
|
625
|
+
strokeLinecap: "round",
|
|
626
|
+
strokeLinejoin: "round",
|
|
627
|
+
...props,
|
|
628
|
+
children: [
|
|
629
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("title", { children: "Ellipsis Icon" }),
|
|
630
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
|
|
631
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("circle", { cx: "19", cy: "12", r: "1" }),
|
|
632
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("circle", { cx: "5", cy: "12", r: "1" })
|
|
633
|
+
]
|
|
634
|
+
}
|
|
635
|
+
);
|
|
636
|
+
};
|
|
637
|
+
|
|
638
|
+
// src/eye.tsx
|
|
639
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
640
|
+
var EyeIcon = (props) => {
|
|
641
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
|
|
615
642
|
"svg",
|
|
616
643
|
{
|
|
617
644
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -625,18 +652,18 @@ var EyeIcon = (props) => {
|
|
|
625
652
|
strokeLinejoin: "round",
|
|
626
653
|
...props,
|
|
627
654
|
children: [
|
|
628
|
-
/* @__PURE__ */ (0,
|
|
629
|
-
/* @__PURE__ */ (0,
|
|
630
|
-
/* @__PURE__ */ (0,
|
|
655
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("title", { children: "Eye Icon" }),
|
|
656
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", { d: "M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0" }),
|
|
657
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
|
631
658
|
]
|
|
632
659
|
}
|
|
633
660
|
);
|
|
634
661
|
};
|
|
635
662
|
|
|
636
663
|
// src/eye-off.tsx
|
|
637
|
-
var
|
|
664
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
638
665
|
var EyeOffIcon = (props) => {
|
|
639
|
-
return /* @__PURE__ */ (0,
|
|
666
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
|
|
640
667
|
"svg",
|
|
641
668
|
{
|
|
642
669
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -650,20 +677,20 @@ var EyeOffIcon = (props) => {
|
|
|
650
677
|
strokeLinejoin: "round",
|
|
651
678
|
...props,
|
|
652
679
|
children: [
|
|
653
|
-
/* @__PURE__ */ (0,
|
|
654
|
-
/* @__PURE__ */ (0,
|
|
655
|
-
/* @__PURE__ */ (0,
|
|
656
|
-
/* @__PURE__ */ (0,
|
|
657
|
-
/* @__PURE__ */ (0,
|
|
680
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("title", { children: "Eye Off Icon" }),
|
|
681
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("path", { d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49" }),
|
|
682
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("path", { d: "M14.084 14.158a3 3 0 0 1-4.242-4.242" }),
|
|
683
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("path", { d: "M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143" }),
|
|
684
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("path", { d: "m2 2 20 20" })
|
|
658
685
|
]
|
|
659
686
|
}
|
|
660
687
|
);
|
|
661
688
|
};
|
|
662
689
|
|
|
663
690
|
// src/grip-vertical.tsx
|
|
664
|
-
var
|
|
691
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
665
692
|
var GripVerticalIcon = ({ size = 24, ...props }) => {
|
|
666
|
-
return /* @__PURE__ */ (0,
|
|
693
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
667
694
|
"svg",
|
|
668
695
|
{
|
|
669
696
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -678,22 +705,22 @@ var GripVerticalIcon = ({ size = 24, ...props }) => {
|
|
|
678
705
|
"aria-hidden": "true",
|
|
679
706
|
...props,
|
|
680
707
|
children: [
|
|
681
|
-
/* @__PURE__ */ (0,
|
|
682
|
-
/* @__PURE__ */ (0,
|
|
683
|
-
/* @__PURE__ */ (0,
|
|
684
|
-
/* @__PURE__ */ (0,
|
|
685
|
-
/* @__PURE__ */ (0,
|
|
686
|
-
/* @__PURE__ */ (0,
|
|
687
|
-
/* @__PURE__ */ (0,
|
|
708
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("title", { children: "Grip Vertical Icon" }),
|
|
709
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("circle", { cx: "9", cy: "12", r: "1" }),
|
|
710
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("circle", { cx: "9", cy: "5", r: "1" }),
|
|
711
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("circle", { cx: "9", cy: "19", r: "1" }),
|
|
712
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("circle", { cx: "15", cy: "12", r: "1" }),
|
|
713
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("circle", { cx: "15", cy: "5", r: "1" }),
|
|
714
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("circle", { cx: "15", cy: "19", r: "1" })
|
|
688
715
|
]
|
|
689
716
|
}
|
|
690
717
|
);
|
|
691
718
|
};
|
|
692
719
|
|
|
693
720
|
// src/incident.tsx
|
|
694
|
-
var
|
|
721
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
695
722
|
var IncidentIcon = ({ size = 24, ...props }) => {
|
|
696
|
-
return /* @__PURE__ */ (0,
|
|
723
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
|
|
697
724
|
"svg",
|
|
698
725
|
{
|
|
699
726
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -707,19 +734,19 @@ var IncidentIcon = ({ size = 24, ...props }) => {
|
|
|
707
734
|
strokeLinejoin: "round",
|
|
708
735
|
...props,
|
|
709
736
|
children: [
|
|
710
|
-
/* @__PURE__ */ (0,
|
|
711
|
-
/* @__PURE__ */ (0,
|
|
712
|
-
/* @__PURE__ */ (0,
|
|
713
|
-
/* @__PURE__ */ (0,
|
|
737
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("title", { children: "Incident icon" }),
|
|
738
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "M12 16h.01" }),
|
|
739
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "M12 8v4" }),
|
|
740
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.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" })
|
|
714
741
|
]
|
|
715
742
|
}
|
|
716
743
|
);
|
|
717
744
|
};
|
|
718
745
|
|
|
719
746
|
// src/info.tsx
|
|
720
|
-
var
|
|
747
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
721
748
|
var InfoIcon = ({ size = 24, ...props }) => {
|
|
722
|
-
return /* @__PURE__ */ (0,
|
|
749
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
|
|
723
750
|
"svg",
|
|
724
751
|
{
|
|
725
752
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -734,19 +761,19 @@ var InfoIcon = ({ size = 24, ...props }) => {
|
|
|
734
761
|
"aria-hidden": "true",
|
|
735
762
|
...props,
|
|
736
763
|
children: [
|
|
737
|
-
/* @__PURE__ */ (0,
|
|
738
|
-
/* @__PURE__ */ (0,
|
|
739
|
-
/* @__PURE__ */ (0,
|
|
740
|
-
/* @__PURE__ */ (0,
|
|
764
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("title", { children: "Info Icon" }),
|
|
765
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
766
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M12 16v-4" }),
|
|
767
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "M12 8h.01" })
|
|
741
768
|
]
|
|
742
769
|
}
|
|
743
770
|
);
|
|
744
771
|
};
|
|
745
772
|
|
|
746
773
|
// src/issues.tsx
|
|
747
|
-
var
|
|
774
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
748
775
|
var IssuesIcon = ({ size = 24, ...props }) => {
|
|
749
|
-
return /* @__PURE__ */ (0,
|
|
776
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
|
|
750
777
|
"svg",
|
|
751
778
|
{
|
|
752
779
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -760,21 +787,21 @@ var IssuesIcon = ({ size = 24, ...props }) => {
|
|
|
760
787
|
strokeLinejoin: "round",
|
|
761
788
|
...props,
|
|
762
789
|
children: [
|
|
763
|
-
/* @__PURE__ */ (0,
|
|
764
|
-
/* @__PURE__ */ (0,
|
|
765
|
-
/* @__PURE__ */ (0,
|
|
766
|
-
/* @__PURE__ */ (0,
|
|
767
|
-
/* @__PURE__ */ (0,
|
|
768
|
-
/* @__PURE__ */ (0,
|
|
790
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("title", { children: "Issues icon" }),
|
|
791
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.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" }),
|
|
792
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M12 11h4" }),
|
|
793
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M12 16h4" }),
|
|
794
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M8 11h.01" }),
|
|
795
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M8 16h.01" })
|
|
769
796
|
]
|
|
770
797
|
}
|
|
771
798
|
);
|
|
772
799
|
};
|
|
773
800
|
|
|
774
801
|
// src/linkedin.tsx
|
|
775
|
-
var
|
|
802
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
776
803
|
var LinkedInIcon = ({ size = 24, ...props }) => {
|
|
777
|
-
return /* @__PURE__ */ (0,
|
|
804
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
|
|
778
805
|
"svg",
|
|
779
806
|
{
|
|
780
807
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -790,19 +817,19 @@ var LinkedInIcon = ({ size = 24, ...props }) => {
|
|
|
790
817
|
focusable: "false",
|
|
791
818
|
...props,
|
|
792
819
|
children: [
|
|
793
|
-
/* @__PURE__ */ (0,
|
|
794
|
-
/* @__PURE__ */ (0,
|
|
795
|
-
/* @__PURE__ */ (0,
|
|
796
|
-
/* @__PURE__ */ (0,
|
|
820
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("title", { children: "LinkedIn Icon" }),
|
|
821
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.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" }),
|
|
822
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("rect", { width: "4", height: "12", x: "2", y: "9" }),
|
|
823
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("circle", { cx: "4", cy: "4", r: "2" })
|
|
797
824
|
]
|
|
798
825
|
}
|
|
799
826
|
);
|
|
800
827
|
};
|
|
801
828
|
|
|
802
829
|
// src/minus.tsx
|
|
803
|
-
var
|
|
830
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
804
831
|
var MinusIcon = ({ size = 24, ...props }) => {
|
|
805
|
-
return /* @__PURE__ */ (0,
|
|
832
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
|
|
806
833
|
"svg",
|
|
807
834
|
{
|
|
808
835
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -816,17 +843,17 @@ var MinusIcon = ({ size = 24, ...props }) => {
|
|
|
816
843
|
strokeLinejoin: "round",
|
|
817
844
|
...props,
|
|
818
845
|
children: [
|
|
819
|
-
/* @__PURE__ */ (0,
|
|
820
|
-
/* @__PURE__ */ (0,
|
|
846
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("title", { children: "Minus Icon" }),
|
|
847
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("path", { d: "M5 12h14" })
|
|
821
848
|
]
|
|
822
849
|
}
|
|
823
850
|
);
|
|
824
851
|
};
|
|
825
852
|
|
|
826
853
|
// src/notification-icon.tsx
|
|
827
|
-
var
|
|
854
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
828
855
|
var NotificationIcon = (props) => {
|
|
829
|
-
return /* @__PURE__ */ (0,
|
|
856
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
|
|
830
857
|
"svg",
|
|
831
858
|
{
|
|
832
859
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -840,18 +867,18 @@ var NotificationIcon = (props) => {
|
|
|
840
867
|
strokeLinejoin: "round",
|
|
841
868
|
...props,
|
|
842
869
|
children: [
|
|
843
|
-
/* @__PURE__ */ (0,
|
|
844
|
-
/* @__PURE__ */ (0,
|
|
845
|
-
/* @__PURE__ */ (0,
|
|
870
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("title", { children: "Notification Icon" }),
|
|
871
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("path", { d: "M10.268 21a2 2 0 0 0 3.464 0" }),
|
|
872
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.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" })
|
|
846
873
|
]
|
|
847
874
|
}
|
|
848
875
|
);
|
|
849
876
|
};
|
|
850
877
|
|
|
851
878
|
// src/panel-left-icon.tsx
|
|
852
|
-
var
|
|
879
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
853
880
|
var PanelLeftIcon = ({ size = 24, ...props }) => {
|
|
854
|
-
return /* @__PURE__ */ (0,
|
|
881
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
|
|
855
882
|
"svg",
|
|
856
883
|
{
|
|
857
884
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -865,18 +892,18 @@ var PanelLeftIcon = ({ size = 24, ...props }) => {
|
|
|
865
892
|
strokeLinejoin: "round",
|
|
866
893
|
...props,
|
|
867
894
|
children: [
|
|
868
|
-
/* @__PURE__ */ (0,
|
|
869
|
-
/* @__PURE__ */ (0,
|
|
870
|
-
/* @__PURE__ */ (0,
|
|
895
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("title", { children: "Panel Left icon" }),
|
|
896
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
897
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("path", { d: "M9 3v18" })
|
|
871
898
|
]
|
|
872
899
|
}
|
|
873
900
|
);
|
|
874
901
|
};
|
|
875
902
|
|
|
876
903
|
// src/people.tsx
|
|
877
|
-
var
|
|
904
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
878
905
|
var PeopleIcon = ({ size = 24, ...props }) => {
|
|
879
|
-
return /* @__PURE__ */ (0,
|
|
906
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
|
|
880
907
|
"svg",
|
|
881
908
|
{
|
|
882
909
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -890,20 +917,20 @@ var PeopleIcon = ({ size = 24, ...props }) => {
|
|
|
890
917
|
strokeLinejoin: "round",
|
|
891
918
|
...props,
|
|
892
919
|
children: [
|
|
893
|
-
/* @__PURE__ */ (0,
|
|
894
|
-
/* @__PURE__ */ (0,
|
|
895
|
-
/* @__PURE__ */ (0,
|
|
896
|
-
/* @__PURE__ */ (0,
|
|
897
|
-
/* @__PURE__ */ (0,
|
|
920
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("title", { children: "People icon" }),
|
|
921
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
922
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("path", { d: "M16 3.128a4 4 0 0 1 0 7.744" }),
|
|
923
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
|
|
924
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("circle", { cx: "9", cy: "7", r: "4" })
|
|
898
925
|
]
|
|
899
926
|
}
|
|
900
927
|
);
|
|
901
928
|
};
|
|
902
929
|
|
|
903
930
|
// src/physical-asset.tsx
|
|
904
|
-
var
|
|
931
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
905
932
|
var PhysicalAssetIcon = ({ size = 24, ...props }) => {
|
|
906
|
-
return /* @__PURE__ */ (0,
|
|
933
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
|
|
907
934
|
"svg",
|
|
908
935
|
{
|
|
909
936
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -917,20 +944,20 @@ var PhysicalAssetIcon = ({ size = 24, ...props }) => {
|
|
|
917
944
|
strokeLinejoin: "round",
|
|
918
945
|
...props,
|
|
919
946
|
children: [
|
|
920
|
-
/* @__PURE__ */ (0,
|
|
921
|
-
/* @__PURE__ */ (0,
|
|
922
|
-
/* @__PURE__ */ (0,
|
|
923
|
-
/* @__PURE__ */ (0,
|
|
924
|
-
/* @__PURE__ */ (0,
|
|
947
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("title", { children: "Physical Asset icon" }),
|
|
948
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("path", { d: "M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8" }),
|
|
949
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("path", { d: "M10 19v-3.96 3.15" }),
|
|
950
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("path", { d: "M7 19h5" }),
|
|
951
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("rect", { width: "6", height: "10", x: "16", y: "12", rx: "2" })
|
|
925
952
|
]
|
|
926
953
|
}
|
|
927
954
|
);
|
|
928
955
|
};
|
|
929
956
|
|
|
930
957
|
// src/plattform-asset.tsx
|
|
931
|
-
var
|
|
958
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
932
959
|
var PlattformAssetIcon = ({ size = 24, ...props }) => {
|
|
933
|
-
return /* @__PURE__ */ (0,
|
|
960
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
|
|
934
961
|
"svg",
|
|
935
962
|
{
|
|
936
963
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -944,20 +971,20 @@ var PlattformAssetIcon = ({ size = 24, ...props }) => {
|
|
|
944
971
|
strokeLinejoin: "round",
|
|
945
972
|
...props,
|
|
946
973
|
children: [
|
|
947
|
-
/* @__PURE__ */ (0,
|
|
948
|
-
/* @__PURE__ */ (0,
|
|
949
|
-
/* @__PURE__ */ (0,
|
|
950
|
-
/* @__PURE__ */ (0,
|
|
951
|
-
/* @__PURE__ */ (0,
|
|
974
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("title", { children: "Plattform Asset icon" }),
|
|
975
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("rect", { width: "20", height: "8", x: "2", y: "2", rx: "2", ry: "2" }),
|
|
976
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", ry: "2" }),
|
|
977
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("line", { x1: "6", x2: "6.01", y1: "6", y2: "6" }),
|
|
978
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("line", { x1: "6", x2: "6.01", y1: "18", y2: "18" })
|
|
952
979
|
]
|
|
953
980
|
}
|
|
954
981
|
);
|
|
955
982
|
};
|
|
956
983
|
|
|
957
984
|
// src/plus.tsx
|
|
958
|
-
var
|
|
985
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
959
986
|
var PlusIcon = (props) => {
|
|
960
|
-
return /* @__PURE__ */ (0,
|
|
987
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
|
|
961
988
|
"svg",
|
|
962
989
|
{
|
|
963
990
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -971,21 +998,21 @@ var PlusIcon = (props) => {
|
|
|
971
998
|
strokeLinejoin: "round",
|
|
972
999
|
...props,
|
|
973
1000
|
children: [
|
|
974
|
-
/* @__PURE__ */ (0,
|
|
975
|
-
/* @__PURE__ */ (0,
|
|
976
|
-
/* @__PURE__ */ (0,
|
|
1001
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("title", { children: "Plus Icon" }),
|
|
1002
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("path", { d: "M5 12h14" }),
|
|
1003
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("path", { d: "M12 5v14" })
|
|
977
1004
|
]
|
|
978
1005
|
}
|
|
979
1006
|
);
|
|
980
1007
|
};
|
|
981
1008
|
|
|
982
1009
|
// src/processing-activity.tsx
|
|
983
|
-
var
|
|
1010
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
984
1011
|
var ProcessingActivityIcon = ({
|
|
985
1012
|
size = 24,
|
|
986
1013
|
...props
|
|
987
1014
|
}) => {
|
|
988
|
-
return /* @__PURE__ */ (0,
|
|
1015
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
989
1016
|
"svg",
|
|
990
1017
|
{
|
|
991
1018
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -999,19 +1026,19 @@ var ProcessingActivityIcon = ({
|
|
|
999
1026
|
strokeLinejoin: "round",
|
|
1000
1027
|
...props,
|
|
1001
1028
|
children: [
|
|
1002
|
-
/* @__PURE__ */ (0,
|
|
1003
|
-
/* @__PURE__ */ (0,
|
|
1004
|
-
/* @__PURE__ */ (0,
|
|
1005
|
-
/* @__PURE__ */ (0,
|
|
1029
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("title", { children: "Processing Activity icon" }),
|
|
1030
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("rect", { width: "8", height: "8", x: "3", y: "3", rx: "2" }),
|
|
1031
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("path", { d: "M7 11v4a2 2 0 0 0 2 2h4" }),
|
|
1032
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("rect", { width: "8", height: "8", x: "13", y: "13", rx: "2" })
|
|
1006
1033
|
]
|
|
1007
1034
|
}
|
|
1008
1035
|
);
|
|
1009
1036
|
};
|
|
1010
1037
|
|
|
1011
1038
|
// src/program-icon.tsx
|
|
1012
|
-
var
|
|
1039
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
1013
1040
|
var ProgramIcon = ({ size = 24, ...props }) => {
|
|
1014
|
-
return /* @__PURE__ */ (0,
|
|
1041
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
|
|
1015
1042
|
"svg",
|
|
1016
1043
|
{
|
|
1017
1044
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1025,20 +1052,20 @@ var ProgramIcon = ({ size = 24, ...props }) => {
|
|
|
1025
1052
|
strokeLinejoin: "round",
|
|
1026
1053
|
...props,
|
|
1027
1054
|
children: [
|
|
1028
|
-
/* @__PURE__ */ (0,
|
|
1029
|
-
/* @__PURE__ */ (0,
|
|
1030
|
-
/* @__PURE__ */ (0,
|
|
1031
|
-
/* @__PURE__ */ (0,
|
|
1032
|
-
/* @__PURE__ */ (0,
|
|
1055
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("title", { children: "Program icon" }),
|
|
1056
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.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" }),
|
|
1057
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M8 10v4" }),
|
|
1058
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M12 10v2" }),
|
|
1059
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "M16 10v6" })
|
|
1033
1060
|
]
|
|
1034
1061
|
}
|
|
1035
1062
|
);
|
|
1036
1063
|
};
|
|
1037
1064
|
|
|
1038
1065
|
// src/risk.tsx
|
|
1039
|
-
var
|
|
1066
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
1040
1067
|
var RiskIcon = ({ size = 24, ...props }) => {
|
|
1041
|
-
return /* @__PURE__ */ (0,
|
|
1068
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
|
|
1042
1069
|
"svg",
|
|
1043
1070
|
{
|
|
1044
1071
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1052,19 +1079,19 @@ var RiskIcon = ({ size = 24, ...props }) => {
|
|
|
1052
1079
|
strokeLinejoin: "round",
|
|
1053
1080
|
...props,
|
|
1054
1081
|
children: [
|
|
1055
|
-
/* @__PURE__ */ (0,
|
|
1056
|
-
/* @__PURE__ */ (0,
|
|
1057
|
-
/* @__PURE__ */ (0,
|
|
1058
|
-
/* @__PURE__ */ (0,
|
|
1082
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("title", { children: "Risk icon" }),
|
|
1083
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.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" }),
|
|
1084
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M12 8v4" }),
|
|
1085
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("path", { d: "M12 16h.01" })
|
|
1059
1086
|
]
|
|
1060
1087
|
}
|
|
1061
1088
|
);
|
|
1062
1089
|
};
|
|
1063
1090
|
|
|
1064
1091
|
// src/save.tsx
|
|
1065
|
-
var
|
|
1092
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
1066
1093
|
var SaveIcon = (props) => {
|
|
1067
|
-
return /* @__PURE__ */ (0,
|
|
1094
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
|
|
1068
1095
|
"svg",
|
|
1069
1096
|
{
|
|
1070
1097
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1078,19 +1105,19 @@ var SaveIcon = (props) => {
|
|
|
1078
1105
|
strokeLinejoin: "round",
|
|
1079
1106
|
...props,
|
|
1080
1107
|
children: [
|
|
1081
|
-
/* @__PURE__ */ (0,
|
|
1082
|
-
/* @__PURE__ */ (0,
|
|
1083
|
-
/* @__PURE__ */ (0,
|
|
1084
|
-
/* @__PURE__ */ (0,
|
|
1108
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("title", { children: "Save Icon" }),
|
|
1109
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.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" }),
|
|
1110
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
1111
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
1085
1112
|
]
|
|
1086
1113
|
}
|
|
1087
1114
|
);
|
|
1088
1115
|
};
|
|
1089
1116
|
|
|
1090
1117
|
// src/search.tsx
|
|
1091
|
-
var
|
|
1118
|
+
var import_jsx_runtime41 = require("react/jsx-runtime");
|
|
1092
1119
|
var SearchIcon = (props) => {
|
|
1093
|
-
return /* @__PURE__ */ (0,
|
|
1120
|
+
return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
|
|
1094
1121
|
"svg",
|
|
1095
1122
|
{
|
|
1096
1123
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1104,18 +1131,18 @@ var SearchIcon = (props) => {
|
|
|
1104
1131
|
strokeLinejoin: "round",
|
|
1105
1132
|
...props,
|
|
1106
1133
|
children: [
|
|
1107
|
-
/* @__PURE__ */ (0,
|
|
1108
|
-
/* @__PURE__ */ (0,
|
|
1109
|
-
/* @__PURE__ */ (0,
|
|
1134
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("title", { children: "Search Icon" }),
|
|
1135
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("path", { d: "m21 21-4.34-4.34" }),
|
|
1136
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("circle", { cx: "11", cy: "11", r: "8" })
|
|
1110
1137
|
]
|
|
1111
1138
|
}
|
|
1112
1139
|
);
|
|
1113
1140
|
};
|
|
1114
1141
|
|
|
1115
1142
|
// src/settings.tsx
|
|
1116
|
-
var
|
|
1143
|
+
var import_jsx_runtime42 = require("react/jsx-runtime");
|
|
1117
1144
|
var SettingsIcon = ({ size = 24, ...props }) => {
|
|
1118
|
-
return /* @__PURE__ */ (0,
|
|
1145
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
|
|
1119
1146
|
"svg",
|
|
1120
1147
|
{
|
|
1121
1148
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1129,20 +1156,20 @@ var SettingsIcon = ({ size = 24, ...props }) => {
|
|
|
1129
1156
|
strokeLinejoin: "round",
|
|
1130
1157
|
...props,
|
|
1131
1158
|
children: [
|
|
1132
|
-
/* @__PURE__ */ (0,
|
|
1133
|
-
/* @__PURE__ */ (0,
|
|
1134
|
-
/* @__PURE__ */ (0,
|
|
1135
|
-
/* @__PURE__ */ (0,
|
|
1136
|
-
/* @__PURE__ */ (0,
|
|
1159
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)("title", { children: "Settings" }),
|
|
1160
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)("path", { d: "M14 17H5" }),
|
|
1161
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)("path", { d: "M19 7h-9" }),
|
|
1162
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)("circle", { cx: "17", cy: "17", r: "3" }),
|
|
1163
|
+
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)("circle", { cx: "7", cy: "7", r: "3" })
|
|
1137
1164
|
]
|
|
1138
1165
|
}
|
|
1139
1166
|
);
|
|
1140
1167
|
};
|
|
1141
1168
|
|
|
1142
1169
|
// src/shell.tsx
|
|
1143
|
-
var
|
|
1170
|
+
var import_jsx_runtime43 = require("react/jsx-runtime");
|
|
1144
1171
|
var ShellIcon = ({ size = 24, ...props }) => {
|
|
1145
|
-
return /* @__PURE__ */ (0,
|
|
1172
|
+
return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
|
|
1146
1173
|
"svg",
|
|
1147
1174
|
{
|
|
1148
1175
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1156,17 +1183,17 @@ var ShellIcon = ({ size = 24, ...props }) => {
|
|
|
1156
1183
|
strokeLinejoin: "round",
|
|
1157
1184
|
...props,
|
|
1158
1185
|
children: [
|
|
1159
|
-
/* @__PURE__ */ (0,
|
|
1160
|
-
/* @__PURE__ */ (0,
|
|
1186
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)("title", { children: "Shell Icon" }),
|
|
1187
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.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" })
|
|
1161
1188
|
]
|
|
1162
1189
|
}
|
|
1163
1190
|
);
|
|
1164
1191
|
};
|
|
1165
1192
|
|
|
1166
1193
|
// src/upload.tsx
|
|
1167
|
-
var
|
|
1194
|
+
var import_jsx_runtime44 = require("react/jsx-runtime");
|
|
1168
1195
|
var UploadIcon = ({ size = 24, ...props }) => {
|
|
1169
|
-
return /* @__PURE__ */ (0,
|
|
1196
|
+
return /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
|
|
1170
1197
|
"svg",
|
|
1171
1198
|
{
|
|
1172
1199
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1180,19 +1207,19 @@ var UploadIcon = ({ size = 24, ...props }) => {
|
|
|
1180
1207
|
strokeLinejoin: "round",
|
|
1181
1208
|
...props,
|
|
1182
1209
|
children: [
|
|
1183
|
-
/* @__PURE__ */ (0,
|
|
1184
|
-
/* @__PURE__ */ (0,
|
|
1185
|
-
/* @__PURE__ */ (0,
|
|
1186
|
-
/* @__PURE__ */ (0,
|
|
1210
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("title", { children: "Upload icon" }),
|
|
1211
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("path", { d: "M12 13v8" }),
|
|
1212
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("path", { d: "M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242" }),
|
|
1213
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("path", { d: "m8 17 4-4 4 4" })
|
|
1187
1214
|
]
|
|
1188
1215
|
}
|
|
1189
1216
|
);
|
|
1190
1217
|
};
|
|
1191
1218
|
|
|
1192
1219
|
// src/vendor.tsx
|
|
1193
|
-
var
|
|
1220
|
+
var import_jsx_runtime45 = require("react/jsx-runtime");
|
|
1194
1221
|
var VendorIcon = ({ size = 24, ...props }) => {
|
|
1195
|
-
return /* @__PURE__ */ (0,
|
|
1222
|
+
return /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)(
|
|
1196
1223
|
"svg",
|
|
1197
1224
|
{
|
|
1198
1225
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1206,12 +1233,12 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
1206
1233
|
strokeLinejoin: "round",
|
|
1207
1234
|
...props,
|
|
1208
1235
|
children: [
|
|
1209
|
-
/* @__PURE__ */ (0,
|
|
1210
|
-
/* @__PURE__ */ (0,
|
|
1211
|
-
/* @__PURE__ */ (0,
|
|
1212
|
-
/* @__PURE__ */ (0,
|
|
1213
|
-
/* @__PURE__ */ (0,
|
|
1214
|
-
/* @__PURE__ */ (0,
|
|
1236
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("title", { children: "Vendor icon" }),
|
|
1237
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.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" }),
|
|
1238
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
|
|
1239
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("path", { d: "M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4" }),
|
|
1240
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("path", { d: "M2 7h20" }),
|
|
1241
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.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" })
|
|
1215
1242
|
]
|
|
1216
1243
|
}
|
|
1217
1244
|
);
|
|
@@ -1238,6 +1265,7 @@ var VendorIcon = ({ size = 24, ...props }) => {
|
|
|
1238
1265
|
DSARIcon,
|
|
1239
1266
|
DataAssetIcon,
|
|
1240
1267
|
DocumentsIcon,
|
|
1268
|
+
DomainIcon,
|
|
1241
1269
|
EllipsisIcon,
|
|
1242
1270
|
EyeIcon,
|
|
1243
1271
|
EyeOffIcon,
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
SaveIcon
|
|
4
|
+
} from "./chunk-KE6JB3MS.mjs";
|
|
2
5
|
import {
|
|
3
6
|
SearchIcon
|
|
4
7
|
} from "./chunk-3BJDY4K2.mjs";
|
|
@@ -14,6 +17,9 @@ import {
|
|
|
14
17
|
import {
|
|
15
18
|
VendorIcon
|
|
16
19
|
} from "./chunk-5AMD4S26.mjs";
|
|
20
|
+
import {
|
|
21
|
+
PanelLeftIcon
|
|
22
|
+
} from "./chunk-2O26UG4T.mjs";
|
|
17
23
|
import {
|
|
18
24
|
PeopleIcon
|
|
19
25
|
} from "./chunk-XOYRXKQA.mjs";
|
|
@@ -36,8 +42,8 @@ import {
|
|
|
36
42
|
RiskIcon
|
|
37
43
|
} from "./chunk-JFTUDPFQ.mjs";
|
|
38
44
|
import {
|
|
39
|
-
|
|
40
|
-
} from "./chunk-
|
|
45
|
+
GripVerticalIcon
|
|
46
|
+
} from "./chunk-GPAMXO65.mjs";
|
|
41
47
|
import {
|
|
42
48
|
IncidentIcon
|
|
43
49
|
} from "./chunk-EIACNJBZ.mjs";
|
|
@@ -56,9 +62,6 @@ import {
|
|
|
56
62
|
import {
|
|
57
63
|
NotificationIcon
|
|
58
64
|
} from "./chunk-H42UA2FF.mjs";
|
|
59
|
-
import {
|
|
60
|
-
PanelLeftIcon
|
|
61
|
-
} from "./chunk-2O26UG4T.mjs";
|
|
62
65
|
import {
|
|
63
66
|
CopyIcon
|
|
64
67
|
} from "./chunk-HCZZ7CNF.mjs";
|
|
@@ -68,6 +71,9 @@ import {
|
|
|
68
71
|
import {
|
|
69
72
|
DocumentsIcon
|
|
70
73
|
} from "./chunk-3FNTP6LP.mjs";
|
|
74
|
+
import {
|
|
75
|
+
DomainIcon
|
|
76
|
+
} from "./chunk-E35BW74J.mjs";
|
|
71
77
|
import {
|
|
72
78
|
DSARIcon
|
|
73
79
|
} from "./chunk-DRZOZSLJ.mjs";
|
|
@@ -80,9 +86,6 @@ import {
|
|
|
80
86
|
import {
|
|
81
87
|
EyeIcon
|
|
82
88
|
} from "./chunk-K6ICW5LE.mjs";
|
|
83
|
-
import {
|
|
84
|
-
GripVerticalIcon
|
|
85
|
-
} from "./chunk-GPAMXO65.mjs";
|
|
86
89
|
import {
|
|
87
90
|
CheckIcon
|
|
88
91
|
} from "./chunk-P4SLDC2H.mjs";
|
|
@@ -152,6 +155,7 @@ export {
|
|
|
152
155
|
DSARIcon,
|
|
153
156
|
DataAssetIcon,
|
|
154
157
|
DocumentsIcon,
|
|
158
|
+
DomainIcon,
|
|
155
159
|
EllipsisIcon,
|
|
156
160
|
EyeIcon,
|
|
157
161
|
EyeOffIcon,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/icons",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.5",
|
|
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.7.
|
|
30
|
+
"@kopexa/theme": "1.7.4"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@kopexa/shared-utils": "1.1.5",
|