@kopexa/icons 10.0.5 → 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/arrow-right-icon.d.mts +7 -0
- package/dist/arrow-right-icon.d.ts +7 -0
- package/dist/arrow-right-icon.js +53 -0
- package/dist/arrow-right-icon.mjs +7 -0
- package/dist/chart-pie.d.mts +7 -0
- package/dist/chart-pie.d.ts +7 -0
- package/dist/chart-pie.js +53 -0
- package/dist/chart-pie.mjs +7 -0
- package/dist/chevrons-left-right-ellipsis-icon.d.mts +7 -0
- package/dist/chevrons-left-right-ellipsis-icon.d.ts +7 -0
- package/dist/chevrons-left-right-ellipsis-icon.js +59 -0
- package/dist/chevrons-left-right-ellipsis-icon.mjs +7 -0
- package/dist/chunk-2OCZFP2R.mjs +30 -0
- package/dist/chunk-43KWNV2C.mjs +33 -0
- package/dist/chunk-6JFYDUUM.mjs +30 -0
- package/dist/chunk-M2ILMJNC.mjs +38 -0
- package/dist/chunk-MJ6PIAN3.mjs +29 -0
- package/dist/chunk-MP2HANDC.mjs +30 -0
- package/dist/chunk-OHL7SFBV.mjs +30 -0
- package/dist/chunk-XHCYRJIR.mjs +39 -0
- package/dist/chunk-XOFUG5OO.mjs +30 -0
- package/dist/chunk-Z3VTF76X.mjs +36 -0
- package/dist/circle-dot-icon.d.mts +7 -0
- package/dist/circle-dot-icon.d.ts +7 -0
- package/dist/circle-dot-icon.js +53 -0
- package/dist/circle-dot-icon.mjs +7 -0
- package/dist/circle-fading-arrow-up-icon.d.mts +7 -0
- package/dist/circle-fading-arrow-up-icon.d.ts +7 -0
- package/dist/circle-fading-arrow-up-icon.js +61 -0
- package/dist/circle-fading-arrow-up-icon.mjs +7 -0
- package/dist/edit-icon.d.mts +7 -0
- package/dist/edit-icon.d.ts +7 -0
- package/dist/edit-icon.js +53 -0
- package/dist/edit-icon.mjs +7 -0
- package/dist/equals-icon.d.mts +7 -0
- package/dist/equals-icon.d.ts +7 -0
- package/dist/equals-icon.js +53 -0
- package/dist/equals-icon.mjs +7 -0
- package/dist/index.d.mts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +548 -243
- package/dist/index.mjs +73 -28
- 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/dist/squares-intersect.d.mts +7 -0
- package/dist/squares-intersect.d.ts +7 -0
- package/dist/squares-intersect.js +62 -0
- package/dist/squares-intersect.mjs +7 -0
- package/dist/trash-icon.d.mts +7 -0
- package/dist/trash-icon.d.ts +7 -0
- package/dist/trash-icon.js +56 -0
- package/dist/trash-icon.mjs +7 -0
- package/package.json +4 -4
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { IconSvgProps } from './types.mjs';
|
|
3
|
+
import 'react';
|
|
4
|
+
|
|
5
|
+
declare const CircleFadingArrowUpIcon: ({ size, ...props }: IconSvgProps) => react_jsx_runtime.JSX.Element;
|
|
6
|
+
|
|
7
|
+
export { CircleFadingArrowUpIcon };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { IconSvgProps } from './types.js';
|
|
3
|
+
import 'react';
|
|
4
|
+
|
|
5
|
+
declare const CircleFadingArrowUpIcon: ({ size, ...props }: IconSvgProps) => react_jsx_runtime.JSX.Element;
|
|
6
|
+
|
|
7
|
+
export { CircleFadingArrowUpIcon };
|
|
@@ -0,0 +1,61 @@
|
|
|
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/circle-fading-arrow-up-icon.tsx
|
|
22
|
+
var circle_fading_arrow_up_icon_exports = {};
|
|
23
|
+
__export(circle_fading_arrow_up_icon_exports, {
|
|
24
|
+
CircleFadingArrowUpIcon: () => CircleFadingArrowUpIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(circle_fading_arrow_up_icon_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var CircleFadingArrowUpIcon = ({
|
|
29
|
+
size = 24,
|
|
30
|
+
...props
|
|
31
|
+
}) => {
|
|
32
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
33
|
+
"svg",
|
|
34
|
+
{
|
|
35
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
36
|
+
width: size,
|
|
37
|
+
height: size,
|
|
38
|
+
viewBox: "0 0 24 24",
|
|
39
|
+
fill: "none",
|
|
40
|
+
stroke: "currentColor",
|
|
41
|
+
strokeWidth: "2",
|
|
42
|
+
strokeLinecap: "round",
|
|
43
|
+
strokeLinejoin: "round",
|
|
44
|
+
...props,
|
|
45
|
+
children: [
|
|
46
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { children: "Circle Fading Arrow Up icon" }),
|
|
47
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 2a10 10 0 0 1 7.38 16.75" }),
|
|
48
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m16 12-4-4-4 4" }),
|
|
49
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 16V8" }),
|
|
50
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M2.5 8.875a10 10 0 0 0-.5 3" }),
|
|
51
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M2.83 16a10 10 0 0 0 2.43 3.4" }),
|
|
52
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M4.636 5.235a10 10 0 0 1 .891-.857" }),
|
|
53
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M8.644 21.42a10 10 0 0 0 7.631-.38" })
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
);
|
|
57
|
+
};
|
|
58
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
59
|
+
0 && (module.exports = {
|
|
60
|
+
CircleFadingArrowUpIcon
|
|
61
|
+
});
|
|
@@ -0,0 +1,53 @@
|
|
|
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/edit-icon.tsx
|
|
22
|
+
var edit_icon_exports = {};
|
|
23
|
+
__export(edit_icon_exports, {
|
|
24
|
+
EditIcon: () => EditIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(edit_icon_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var EditIcon = ({ 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: "Edit icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m15 5 4 4" })
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
);
|
|
49
|
+
};
|
|
50
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
51
|
+
0 && (module.exports = {
|
|
52
|
+
EditIcon
|
|
53
|
+
});
|
|
@@ -0,0 +1,53 @@
|
|
|
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/equals-icon.tsx
|
|
22
|
+
var equals_icon_exports = {};
|
|
23
|
+
__export(equals_icon_exports, {
|
|
24
|
+
EqualsIcon: () => EqualsIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(equals_icon_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var EqualsIcon = ({ 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: "Equals icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "5", x2: "19", y1: "9", y2: "9" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("line", { x1: "5", x2: "19", y1: "15", y2: "15" })
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
);
|
|
49
|
+
};
|
|
50
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
51
|
+
0 && (module.exports = {
|
|
52
|
+
EqualsIcon
|
|
53
|
+
});
|
package/dist/index.d.mts
CHANGED
|
@@ -2,16 +2,21 @@ export { AlertIcon } from './alert.mjs';
|
|
|
2
2
|
export { AlertCircleIcon } from './alert-circle.mjs';
|
|
3
3
|
export { ArrowDown } from './arrow-down.mjs';
|
|
4
4
|
export { ArrowDownUp } from './arrow-down-up.mjs';
|
|
5
|
+
export { ArrowRightIcon } from './arrow-right-icon.mjs';
|
|
5
6
|
export { ArrowUp } from './arrow-up.mjs';
|
|
6
7
|
export { AssetsIcon } from './assets.mjs';
|
|
7
8
|
export { CatalogIcon } from './catalog.mjs';
|
|
9
|
+
export { ChartPie, ChartPie as PartialIcon } from './chart-pie.mjs';
|
|
8
10
|
export { CheckIcon } from './check.mjs';
|
|
9
11
|
export { CheckCirleIcon } from './check-circle.mjs';
|
|
10
12
|
export { ChevronDownIcon } from './chevron-down.mjs';
|
|
11
13
|
export { ChevronLeftIcon } from './chevron-left.mjs';
|
|
12
14
|
export { ChevronRightIcon } from './chevron-right.mjs';
|
|
13
15
|
export { ChevronUpDown } from './chevron-up-down.mjs';
|
|
16
|
+
export { ChevronsLeftRightEllipsisIcon } from './chevrons-left-right-ellipsis-icon.mjs';
|
|
14
17
|
export { CircleIcon } from './circle.mjs';
|
|
18
|
+
export { CircleDotIcon, CircleDotIcon as SubsetIcon } from './circle-dot-icon.mjs';
|
|
19
|
+
export { CircleFadingArrowUpIcon, CircleFadingArrowUpIcon as SupersetIcon } from './circle-fading-arrow-up-icon.mjs';
|
|
15
20
|
export { CloseIcon } from './close.mjs';
|
|
16
21
|
export { ControlsIcon } from './controls.mjs';
|
|
17
22
|
export { CopyIcon } from './copy-icon.mjs';
|
|
@@ -19,7 +24,9 @@ export { DataAssetIcon } from './data-asset.mjs';
|
|
|
19
24
|
export { DocumentsIcon } from './documents.mjs';
|
|
20
25
|
export { DomainIcon } from './domain-icon.mjs';
|
|
21
26
|
export { DSARIcon } from './dsar.mjs';
|
|
27
|
+
export { EditIcon } from './edit-icon.mjs';
|
|
22
28
|
export { EllipsisIcon } from './ellipsis-icon.mjs';
|
|
29
|
+
export { EqualsIcon } from './equals-icon.mjs';
|
|
23
30
|
export { EyeIcon } from './eye.mjs';
|
|
24
31
|
export { EyeOffIcon } from './eye-off.mjs';
|
|
25
32
|
export { GripVerticalIcon } from './grip-vertical.mjs';
|
|
@@ -36,11 +43,14 @@ export { PlattformAssetIcon } from './plattform-asset.mjs';
|
|
|
36
43
|
export { PlusIcon } from './plus.mjs';
|
|
37
44
|
export { ProcessingActivityIcon } from './processing-activity.mjs';
|
|
38
45
|
export { ProgramIcon } from './program-icon.mjs';
|
|
46
|
+
export { PuzzleIcon as IntegrationIcon, PuzzleIcon } from './puzzle-icon.mjs';
|
|
39
47
|
export { RiskIcon } from './risk.mjs';
|
|
40
48
|
export { SaveIcon } from './save.mjs';
|
|
41
49
|
export { SearchIcon } from './search.mjs';
|
|
42
50
|
export { SettingsIcon } from './settings.mjs';
|
|
43
51
|
export { ShellIcon } from './shell.mjs';
|
|
52
|
+
export { SquaresIntersect as IntersectIcon, SquaresIntersect } from './squares-intersect.mjs';
|
|
53
|
+
export { TrashIcon } from './trash-icon.mjs';
|
|
44
54
|
export { IconSvgProps } from './types.mjs';
|
|
45
55
|
export { UploadIcon } from './upload.mjs';
|
|
46
56
|
export { VendorIcon } from './vendor.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -2,16 +2,21 @@ export { AlertIcon } from './alert.js';
|
|
|
2
2
|
export { AlertCircleIcon } from './alert-circle.js';
|
|
3
3
|
export { ArrowDown } from './arrow-down.js';
|
|
4
4
|
export { ArrowDownUp } from './arrow-down-up.js';
|
|
5
|
+
export { ArrowRightIcon } from './arrow-right-icon.js';
|
|
5
6
|
export { ArrowUp } from './arrow-up.js';
|
|
6
7
|
export { AssetsIcon } from './assets.js';
|
|
7
8
|
export { CatalogIcon } from './catalog.js';
|
|
9
|
+
export { ChartPie, ChartPie as PartialIcon } from './chart-pie.js';
|
|
8
10
|
export { CheckIcon } from './check.js';
|
|
9
11
|
export { CheckCirleIcon } from './check-circle.js';
|
|
10
12
|
export { ChevronDownIcon } from './chevron-down.js';
|
|
11
13
|
export { ChevronLeftIcon } from './chevron-left.js';
|
|
12
14
|
export { ChevronRightIcon } from './chevron-right.js';
|
|
13
15
|
export { ChevronUpDown } from './chevron-up-down.js';
|
|
16
|
+
export { ChevronsLeftRightEllipsisIcon } from './chevrons-left-right-ellipsis-icon.js';
|
|
14
17
|
export { CircleIcon } from './circle.js';
|
|
18
|
+
export { CircleDotIcon, CircleDotIcon as SubsetIcon } from './circle-dot-icon.js';
|
|
19
|
+
export { CircleFadingArrowUpIcon, CircleFadingArrowUpIcon as SupersetIcon } from './circle-fading-arrow-up-icon.js';
|
|
15
20
|
export { CloseIcon } from './close.js';
|
|
16
21
|
export { ControlsIcon } from './controls.js';
|
|
17
22
|
export { CopyIcon } from './copy-icon.js';
|
|
@@ -19,7 +24,9 @@ export { DataAssetIcon } from './data-asset.js';
|
|
|
19
24
|
export { DocumentsIcon } from './documents.js';
|
|
20
25
|
export { DomainIcon } from './domain-icon.js';
|
|
21
26
|
export { DSARIcon } from './dsar.js';
|
|
27
|
+
export { EditIcon } from './edit-icon.js';
|
|
22
28
|
export { EllipsisIcon } from './ellipsis-icon.js';
|
|
29
|
+
export { EqualsIcon } from './equals-icon.js';
|
|
23
30
|
export { EyeIcon } from './eye.js';
|
|
24
31
|
export { EyeOffIcon } from './eye-off.js';
|
|
25
32
|
export { GripVerticalIcon } from './grip-vertical.js';
|
|
@@ -36,11 +43,14 @@ export { PlattformAssetIcon } from './plattform-asset.js';
|
|
|
36
43
|
export { PlusIcon } from './plus.js';
|
|
37
44
|
export { ProcessingActivityIcon } from './processing-activity.js';
|
|
38
45
|
export { ProgramIcon } from './program-icon.js';
|
|
46
|
+
export { PuzzleIcon as IntegrationIcon, PuzzleIcon } from './puzzle-icon.js';
|
|
39
47
|
export { RiskIcon } from './risk.js';
|
|
40
48
|
export { SaveIcon } from './save.js';
|
|
41
49
|
export { SearchIcon } from './search.js';
|
|
42
50
|
export { SettingsIcon } from './settings.js';
|
|
43
51
|
export { ShellIcon } from './shell.js';
|
|
52
|
+
export { SquaresIntersect as IntersectIcon, SquaresIntersect } from './squares-intersect.js';
|
|
53
|
+
export { TrashIcon } from './trash-icon.js';
|
|
44
54
|
export { IconSvgProps } from './types.js';
|
|
45
55
|
export { UploadIcon } from './upload.js';
|
|
46
56
|
export { VendorIcon } from './vendor.js';
|