@od-oneapp/uni-icons 2026.2.1501-canary.1

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/index.d.mts ADDED
@@ -0,0 +1,13 @@
1
+
2
+ import { LucideProps } from "lucide-react";
3
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
4
+ export * from "lucide-react";
5
+
6
+ //#region src/custom-icon.d.ts
7
+ declare const CustomIcon: ({
8
+ className,
9
+ ...props
10
+ }: LucideProps) => react_jsx_runtime0.JSX.Element;
11
+ //#endregion
12
+ export { CustomIcon };
13
+ //# sourceMappingURL=index.d.mts.map
package/index.mjs ADDED
@@ -0,0 +1,29 @@
1
+ 'use client';
2
+ import "lucide-react";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+
5
+ export * from "lucide-react"
6
+
7
+ //#region src/custom-icon.tsx
8
+ const CustomIcon = ({ className, ...props }) => /* @__PURE__ */ jsxs("svg", {
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ width: "24",
11
+ height: "24",
12
+ viewBox: "0 0 24 24",
13
+ fill: "none",
14
+ stroke: "currentColor",
15
+ strokeWidth: "2",
16
+ strokeLinecap: "round",
17
+ strokeLinejoin: "round",
18
+ className,
19
+ ...props,
20
+ children: [/* @__PURE__ */ jsx("circle", {
21
+ cx: "12",
22
+ cy: "12",
23
+ r: "10"
24
+ }), /* @__PURE__ */ jsx("path", { d: "M8 12h8" })]
25
+ });
26
+
27
+ //#endregion
28
+ export { CustomIcon };
29
+ //# sourceMappingURL=index.mjs.map
package/index.mjs.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.mjs","names":[],"sources":["../src/custom-icon.tsx"],"sourcesContent":["import { type LucideProps } from 'lucide-react';\n\nexport const CustomIcon = ({ className, ...props }: LucideProps) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n className={className}\n {...props}\n >\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"M8 12h8\" />\n </svg>\n);\n"],"mappings":";;;;;;;AAEA,MAAa,cAAc,EAAE,WAAW,GAAG,YACzC,qBAAC;CACC,OAAM;CACN,OAAM;CACN,QAAO;CACP,SAAQ;CACR,MAAK;CACL,QAAO;CACP,aAAY;CACZ,eAAc;CACd,gBAAe;CACJ;CACX,GAAI;YAEJ,oBAAC;EAAO,IAAG;EAAK,IAAG;EAAK,GAAE;GAAO,EACjC,oBAAC,UAAK,GAAE,YAAY;EAChB"}
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@od-oneapp/uni-icons",
3
+ "version": "2026.2.1501-canary.1",
4
+ "description": "Universal icon package",
5
+ "type": "module",
6
+ "sideEffects": false,
7
+ "exports": {
8
+ ".": {
9
+ "import": "./index.mjs",
10
+ "types": "./index.d.mts"
11
+ }
12
+ },
13
+ "dependencies": {
14
+ "lucide-react": "0.563.0"
15
+ },
16
+ "peerDependencies": {
17
+ "react": ">=18.0.0",
18
+ "react-dom": "^19.2.4"
19
+ },
20
+ "peerDependenciesMeta": {},
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/OneDigital-Product/monorepo.git",
24
+ "directory": "platform/packages/uni-icons"
25
+ },
26
+ "license": "UNLICENSED",
27
+ "publishConfig": {
28
+ "access": "restricted",
29
+ "exports": {
30
+ ".": {
31
+ "types": "./dist/index.d.mts",
32
+ "import": "./dist/index.mjs",
33
+ "default": "./dist/index.mjs"
34
+ }
35
+ },
36
+ "registry": "https://registry.npmjs.org/"
37
+ }
38
+ }