@kopexa/icons 17.2.4 → 17.3.0
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-CAGDEQQZ.mjs +31 -0
- package/dist/chunk-CGCLCPAM.mjs +60 -0
- package/dist/chunk-OR6JE4FP.mjs +30 -0
- package/dist/download-icon.d.mts +7 -0
- package/dist/download-icon.d.ts +7 -0
- package/dist/download-icon.js +54 -0
- package/dist/download-icon.mjs +7 -0
- package/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +480 -368
- package/dist/index.mjs +36 -24
- package/dist/table-of-contents-icon.d.mts +7 -0
- package/dist/table-of-contents-icon.d.ts +7 -0
- package/dist/table-of-contents-icon.js +83 -0
- package/dist/table-of-contents-icon.mjs +7 -0
- package/dist/tom-icon.d.mts +7 -0
- package/dist/tom-icon.d.ts +7 -0
- package/dist/tom-icon.js +53 -0
- package/dist/tom-icon.mjs +7 -0
- package/package.json +4 -4
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/download-icon.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var DownloadIcon = ({ 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: "Download icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M12 15V3" }),
|
|
22
|
+
/* @__PURE__ */ jsx("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
23
|
+
/* @__PURE__ */ jsx("path", { d: "m7 10 5 5 5-5" })
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
);
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export {
|
|
30
|
+
DownloadIcon
|
|
31
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/table-of-contents-icon.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var TableOfContentsIcon = ({ 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: "currentColor",
|
|
14
|
+
...props,
|
|
15
|
+
children: [
|
|
16
|
+
/* @__PURE__ */ jsx("title", { children: "Table of Contents Icon" }),
|
|
17
|
+
/* @__PURE__ */ jsx(
|
|
18
|
+
"path",
|
|
19
|
+
{
|
|
20
|
+
fillRule: "evenodd",
|
|
21
|
+
clipRule: "evenodd",
|
|
22
|
+
d: "M3 5C3 4.44772 3.44772 4 4 4H20C20.5523 4 21 4.44772 21 5C21 5.55228 20.5523 6 20 6H4C3.44772 6 3 5.55228 3 5Z",
|
|
23
|
+
fill: "currentColor"
|
|
24
|
+
}
|
|
25
|
+
),
|
|
26
|
+
/* @__PURE__ */ jsx(
|
|
27
|
+
"path",
|
|
28
|
+
{
|
|
29
|
+
fillRule: "evenodd",
|
|
30
|
+
clipRule: "evenodd",
|
|
31
|
+
d: "M7 10C7 9.44772 7.44772 9 8 9H18C18.5523 9 19 9.44772 19 10C19 10.5523 18.5523 11 18 11H8C7.44772 11 7 10.5523 7 10Z",
|
|
32
|
+
fill: "currentColor"
|
|
33
|
+
}
|
|
34
|
+
),
|
|
35
|
+
/* @__PURE__ */ jsx(
|
|
36
|
+
"path",
|
|
37
|
+
{
|
|
38
|
+
fillRule: "evenodd",
|
|
39
|
+
clipRule: "evenodd",
|
|
40
|
+
d: "M7 14C7 13.4477 7.44772 13 8 13H16C16.5523 13 17 13.4477 17 14C17 14.5523 16.5523 15 16 15H8C7.44772 15 7 14.5523 7 14Z",
|
|
41
|
+
fill: "currentColor"
|
|
42
|
+
}
|
|
43
|
+
),
|
|
44
|
+
/* @__PURE__ */ jsx(
|
|
45
|
+
"path",
|
|
46
|
+
{
|
|
47
|
+
fillRule: "evenodd",
|
|
48
|
+
clipRule: "evenodd",
|
|
49
|
+
d: "M3 19C3 18.4477 3.44772 18 4 18H14C14.5523 18 15 18.4477 15 19C15 19.5523 14.5523 20 14 20H4C3.44772 20 3 19.5523 3 19Z",
|
|
50
|
+
fill: "currentColor"
|
|
51
|
+
}
|
|
52
|
+
)
|
|
53
|
+
]
|
|
54
|
+
}
|
|
55
|
+
);
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
export {
|
|
59
|
+
TableOfContentsIcon
|
|
60
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/tom-icon.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var TomIcon = ({ 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: "TOM icon" }),
|
|
21
|
+
/* @__PURE__ */ 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" }),
|
|
22
|
+
/* @__PURE__ */ jsx("path", { d: "m9 12 2 2 4-4" })
|
|
23
|
+
]
|
|
24
|
+
}
|
|
25
|
+
);
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export {
|
|
29
|
+
TomIcon
|
|
30
|
+
};
|
|
@@ -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/download-icon.tsx
|
|
22
|
+
var download_icon_exports = {};
|
|
23
|
+
__export(download_icon_exports, {
|
|
24
|
+
DownloadIcon: () => DownloadIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(download_icon_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var DownloadIcon = ({ 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: "Download icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M12 15V3" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
46
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "m7 10 5 5 5-5" })
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
);
|
|
50
|
+
};
|
|
51
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
52
|
+
0 && (module.exports = {
|
|
53
|
+
DownloadIcon
|
|
54
|
+
});
|
package/dist/index.d.mts
CHANGED
|
@@ -40,6 +40,7 @@ export { DataAssetIcon } from './data-asset.mjs';
|
|
|
40
40
|
export { DocumentsIcon } from './documents.mjs';
|
|
41
41
|
export { DomainIcon } from './domain-icon.mjs';
|
|
42
42
|
export { DORAIcon } from './dora-icon.mjs';
|
|
43
|
+
export { DownloadIcon } from './download-icon.mjs';
|
|
43
44
|
export { DSARIcon } from './dsar.mjs';
|
|
44
45
|
export { EditIcon } from './edit-icon.mjs';
|
|
45
46
|
export { EllipsisIcon } from './ellipsis-icon.mjs';
|
|
@@ -95,6 +96,8 @@ export { StrikeIcon } from './strike-icon.mjs';
|
|
|
95
96
|
export { SubscriptIcon } from './subscript-icon.mjs';
|
|
96
97
|
export { SuperscriptIcon } from './superscript-icon.mjs';
|
|
97
98
|
export { TableIcon } from './table-icon.mjs';
|
|
99
|
+
export { TableOfContentsIcon } from './table-of-contents-icon.mjs';
|
|
100
|
+
export { TomIcon } from './tom-icon.mjs';
|
|
98
101
|
export { TrashIcon } from './trash-icon.mjs';
|
|
99
102
|
export { TypeIcon } from './type-icon.mjs';
|
|
100
103
|
export { IconSvgProps } from './types.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export { DataAssetIcon } from './data-asset.js';
|
|
|
40
40
|
export { DocumentsIcon } from './documents.js';
|
|
41
41
|
export { DomainIcon } from './domain-icon.js';
|
|
42
42
|
export { DORAIcon } from './dora-icon.js';
|
|
43
|
+
export { DownloadIcon } from './download-icon.js';
|
|
43
44
|
export { DSARIcon } from './dsar.js';
|
|
44
45
|
export { EditIcon } from './edit-icon.js';
|
|
45
46
|
export { EllipsisIcon } from './ellipsis-icon.js';
|
|
@@ -95,6 +96,8 @@ export { StrikeIcon } from './strike-icon.js';
|
|
|
95
96
|
export { SubscriptIcon } from './subscript-icon.js';
|
|
96
97
|
export { SuperscriptIcon } from './superscript-icon.js';
|
|
97
98
|
export { TableIcon } from './table-icon.js';
|
|
99
|
+
export { TableOfContentsIcon } from './table-of-contents-icon.js';
|
|
100
|
+
export { TomIcon } from './tom-icon.js';
|
|
98
101
|
export { TrashIcon } from './trash-icon.js';
|
|
99
102
|
export { TypeIcon } from './type-icon.js';
|
|
100
103
|
export { IconSvgProps } from './types.js';
|