@kopexa/icons 17.0.7 → 17.1.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/business-unit.d.mts +7 -0
- package/dist/business-unit.d.ts +7 -0
- package/dist/business-unit.js +57 -0
- package/dist/business-unit.mjs +7 -0
- package/dist/chunk-EZ4D45EF.mjs +34 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +529 -498
- package/dist/index.mjs +25 -21
- package/package.json +4 -4
|
@@ -0,0 +1,57 @@
|
|
|
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/business-unit.tsx
|
|
22
|
+
var business_unit_exports = {};
|
|
23
|
+
__export(business_unit_exports, {
|
|
24
|
+
BusinessUnitIcon: () => BusinessUnitIcon
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(business_unit_exports);
|
|
27
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
28
|
+
var BusinessUnitIcon = ({ 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: "BusinessUnit icon" }),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3 7V5c0-1.1.9-2 2-2h2" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M17 3h2c1.1 0 2 .9 2 2v2" }),
|
|
46
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M21 17v2c0 1.1-.9 2-2 2h-2" }),
|
|
47
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M7 21H5c-1.1 0-2-.9-2-2v-2" }),
|
|
48
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { width: "7", height: "5", x: "7", y: "7", rx: "1" }),
|
|
49
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", { width: "7", height: "5", x: "10", y: "12", rx: "1" })
|
|
50
|
+
]
|
|
51
|
+
}
|
|
52
|
+
);
|
|
53
|
+
};
|
|
54
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
55
|
+
0 && (module.exports = {
|
|
56
|
+
BusinessUnitIcon
|
|
57
|
+
});
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/business-unit.tsx
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
var BusinessUnitIcon = ({ 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: "BusinessUnit icon" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M3 7V5c0-1.1.9-2 2-2h2" }),
|
|
22
|
+
/* @__PURE__ */ jsx("path", { d: "M17 3h2c1.1 0 2 .9 2 2v2" }),
|
|
23
|
+
/* @__PURE__ */ jsx("path", { d: "M21 17v2c0 1.1-.9 2-2 2h-2" }),
|
|
24
|
+
/* @__PURE__ */ jsx("path", { d: "M7 21H5c-1.1 0-2-.9-2-2v-2" }),
|
|
25
|
+
/* @__PURE__ */ jsx("rect", { width: "7", height: "5", x: "7", y: "7", rx: "1" }),
|
|
26
|
+
/* @__PURE__ */ jsx("rect", { width: "7", height: "5", x: "10", y: "12", rx: "1" })
|
|
27
|
+
]
|
|
28
|
+
}
|
|
29
|
+
);
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
export {
|
|
33
|
+
BusinessUnitIcon
|
|
34
|
+
};
|
package/dist/index.d.mts
CHANGED
|
@@ -14,6 +14,7 @@ export { AssetsIcon } from './assets.mjs';
|
|
|
14
14
|
export { BanIcon } from './ban-icon.mjs';
|
|
15
15
|
export { BlockquoteIcon } from './blockquote-icon.mjs';
|
|
16
16
|
export { BoldIcon } from './bold-icon.mjs';
|
|
17
|
+
export { BusinessUnitIcon } from './business-unit.mjs';
|
|
17
18
|
export { CatalogIcon } from './catalog.mjs';
|
|
18
19
|
export { ChartPie, ChartPie as PartialIcon } from './chart-pie.mjs';
|
|
19
20
|
export { CheckIcon } from './check.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export { AssetsIcon } from './assets.js';
|
|
|
14
14
|
export { BanIcon } from './ban-icon.js';
|
|
15
15
|
export { BlockquoteIcon } from './blockquote-icon.js';
|
|
16
16
|
export { BoldIcon } from './bold-icon.js';
|
|
17
|
+
export { BusinessUnitIcon } from './business-unit.js';
|
|
17
18
|
export { CatalogIcon } from './catalog.js';
|
|
18
19
|
export { ChartPie, ChartPie as PartialIcon } from './chart-pie.js';
|
|
19
20
|
export { CheckIcon } from './check.js';
|