@m4l/icons 0.0.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/DummyIcon.d.ts +7 -0
- package/DummyIcon.js +13 -0
- package/index.d.ts +1 -0
- package/index.js +4 -0
- package/package.json +54 -0
package/DummyIcon.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Icono dummy de prueba para validar la estrategia de distribución de iconos
|
|
3
|
+
* siguiendo el patrón de mui-icons-material
|
|
4
|
+
*/
|
|
5
|
+
export declare const DummyIcon: import('@mui/material/OverridableComponent').OverridableComponent<import('@mui/material').SvgIconTypeMap<{}, "svg">> & {
|
|
6
|
+
muiName: string;
|
|
7
|
+
};
|
package/DummyIcon.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsxs as o, jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import { createSvgIcon as t } from "@mui/material/utils";
|
|
3
|
+
const n = t(
|
|
4
|
+
/* @__PURE__ */ o("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", children: [
|
|
5
|
+
/* @__PURE__ */ r("circle", { cx: "12", cy: "12", r: "10", stroke: "currentColor", "stroke-width": "2", fill: "none" }),
|
|
6
|
+
/* @__PURE__ */ r("line", { x1: "12", y1: "6", x2: "12", y2: "18", stroke: "currentColor", "stroke-width": "2" }),
|
|
7
|
+
/* @__PURE__ */ r("line", { x1: "6", y1: "12", x2: "18", y2: "12", stroke: "currentColor", "stroke-width": "2" })
|
|
8
|
+
] }),
|
|
9
|
+
"DummyIcon"
|
|
10
|
+
);
|
|
11
|
+
export {
|
|
12
|
+
n as DummyIcon
|
|
13
|
+
};
|
package/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { DummyIcon } from './DummyIcon';
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@m4l/icons",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"license": "UNLICENSED",
|
|
5
|
+
"description": "M4L Icons - Iconos personalizados siguiendo la estrategia de mui-icons-material",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"lint-staged": {
|
|
8
|
+
"*.{js,ts,tsx}": "eslint --fix --max-warnings 0"
|
|
9
|
+
},
|
|
10
|
+
"peerDependencies": {
|
|
11
|
+
"@mui/material": "5.16.7",
|
|
12
|
+
"@types/react": "^18.0.0",
|
|
13
|
+
"react": "^18.0.0"
|
|
14
|
+
},
|
|
15
|
+
"resolutions": {
|
|
16
|
+
"eslint": "^9.12.0",
|
|
17
|
+
"react": "^18.0.0",
|
|
18
|
+
"@types/react": "^18.0.0",
|
|
19
|
+
"@types/react-dom": "^18.0.0",
|
|
20
|
+
"react-dom": "^18.0.0",
|
|
21
|
+
"vite": "6.3.5",
|
|
22
|
+
"typescript": "5.8.3"
|
|
23
|
+
},
|
|
24
|
+
"overrides": {
|
|
25
|
+
"eslint": "^9.12.0",
|
|
26
|
+
"react": "^18.0.0",
|
|
27
|
+
"@types/react": "^18.0.0",
|
|
28
|
+
"@types/react-dom": "^18.0.0",
|
|
29
|
+
"react-dom": "^18.0.0",
|
|
30
|
+
"vite": "6.3.5",
|
|
31
|
+
"typescript": "5.8.3"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"*"
|
|
35
|
+
],
|
|
36
|
+
"source": "./index.js",
|
|
37
|
+
"main": "./dist/index.js",
|
|
38
|
+
"module": "./index.js",
|
|
39
|
+
"types": "./index.d.ts",
|
|
40
|
+
"sideEffects": false,
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
43
|
+
},
|
|
44
|
+
"engines": {
|
|
45
|
+
"node": ">=12.0.0"
|
|
46
|
+
},
|
|
47
|
+
"packageManager": "yarn@4.5.0",
|
|
48
|
+
"private": false,
|
|
49
|
+
"exports": {
|
|
50
|
+
".": {
|
|
51
|
+
"import": "./index.js"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|