@lukkas98/icons 1.0.0 → 1.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/index.d.ts +4 -0
- package/index.js +29 -24
- package/package.json +8 -5
package/index.d.ts
ADDED
package/index.js
CHANGED
|
@@ -1,24 +1,29 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
1
|
+
export { default as F_express } from './icons/Frameworks/express.svg';
|
|
2
|
+
export { default as F_nextjs } from './icons/Frameworks/nextjs.svg';
|
|
3
|
+
export { default as F_tailwind } from './icons/Frameworks/tailwind.svg';
|
|
4
|
+
export { default as H_netlify } from './icons/H_tools_services/netlify.svg';
|
|
5
|
+
export { default as H_npm } from './icons/H_tools_services/npm.svg';
|
|
6
|
+
export { default as H_pnpm } from './icons/H_tools_services/pnpm.svg';
|
|
7
|
+
export { default as H_trello } from './icons/H_tools_services/trello.svg';
|
|
8
|
+
export { default as H_vercel } from './icons/H_tools_services/vercel.svg';
|
|
9
|
+
export { default as L_bootstrap } from './icons/Libraries/bootstrap.svg';
|
|
10
|
+
export { default as L_mongoose } from './icons/Libraries/mongoose.svg';
|
|
11
|
+
export { default as L_nodemon } from './icons/Libraries/nodemon.svg';
|
|
12
|
+
export { default as L_react } from './icons/Libraries/react.svg';
|
|
13
|
+
export { default as L_react_router } from './icons/Libraries/react_router.svg';
|
|
14
|
+
export { default as L_redux } from './icons/Libraries/redux.svg';
|
|
15
|
+
export { default as L_sequelize } from './icons/Libraries/sequelize.svg';
|
|
16
|
+
export { default as L_webpack } from './icons/Libraries/webpack.svg';
|
|
17
|
+
export { default as L_zod } from './icons/Libraries/zod.svg';
|
|
18
|
+
export { default as S_facebook } from './icons/Socials/facebook.svg';
|
|
19
|
+
export { default as S_git } from './icons/Socials/git.svg';
|
|
20
|
+
export { default as S_github } from './icons/Socials/github.svg';
|
|
21
|
+
export { default as S_instagram } from './icons/Socials/instagram.svg';
|
|
22
|
+
export { default as S_linkedin } from './icons/Socials/linkedin.svg';
|
|
23
|
+
export { default as S_whatsapp } from './icons/Socials/whatsapp.svg';
|
|
24
|
+
export { default as T_css } from './icons/Technologies/css.svg';
|
|
25
|
+
export { default as T_html } from './icons/Technologies/html.svg';
|
|
26
|
+
export { default as T_javascript } from './icons/Technologies/javascript.svg';
|
|
27
|
+
export { default as T_mongodb } from './icons/Technologies/mongodb.svg';
|
|
28
|
+
export { default as T_node } from './icons/Technologies/node.svg';
|
|
29
|
+
export { default as T_postgresql } from './icons/Technologies/postgresql.svg';
|
package/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lukkas98/icons",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Iconos para proyectos
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Iconos para proyectos libres de licencias",
|
|
5
5
|
"main": "index.js",
|
|
6
|
-
"
|
|
6
|
+
"types": "index.d.ts",
|
|
7
|
+
"author": "lukkas98",
|
|
7
8
|
"files": [
|
|
8
|
-
"icons"
|
|
9
|
+
"icons",
|
|
10
|
+
"index.js",
|
|
11
|
+
"index.d.ts"
|
|
9
12
|
]
|
|
10
|
-
}
|
|
13
|
+
}
|