@lukkas98/icons 1.0.1 → 1.0.3
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 +30 -4
- package/index.js +58 -29
- package/package.json +17 -4
package/index.d.ts
CHANGED
|
@@ -1,4 +1,30 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export const F_express: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
3
|
+
export const F_nextjs: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
4
|
+
export const F_tailwind: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
5
|
+
export const H_netlify: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
6
|
+
export const H_npm: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
7
|
+
export const H_pnpm: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
8
|
+
export const H_trello: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
9
|
+
export const H_vercel: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
10
|
+
export const L_bootstrap: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
11
|
+
export const L_mongoose: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
12
|
+
export const L_nodemon: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
13
|
+
export const L_react: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
14
|
+
export const L_react_router: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
15
|
+
export const L_redux: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
16
|
+
export const L_sequelize: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
17
|
+
export const L_webpack: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
18
|
+
export const L_zod: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
19
|
+
export const S_facebook: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
20
|
+
export const S_git: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
21
|
+
export const S_github: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
22
|
+
export const S_instagram: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
23
|
+
export const S_linkedin: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
24
|
+
export const S_whatsapp: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
25
|
+
export const T_css: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
26
|
+
export const T_html: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
27
|
+
export const T_javascript: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
28
|
+
export const T_mongodb: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
29
|
+
export const T_node: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
|
30
|
+
export const T_postgresql: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
package/index.js
CHANGED
|
@@ -1,29 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
export {
|
|
3
|
-
|
|
4
|
-
export {
|
|
5
|
-
|
|
6
|
-
export {
|
|
7
|
-
|
|
8
|
-
export {
|
|
9
|
-
|
|
10
|
-
export {
|
|
11
|
-
|
|
12
|
-
export {
|
|
13
|
-
|
|
14
|
-
export {
|
|
15
|
-
|
|
16
|
-
export {
|
|
17
|
-
|
|
18
|
-
export {
|
|
19
|
-
|
|
20
|
-
export {
|
|
21
|
-
|
|
22
|
-
export {
|
|
23
|
-
|
|
24
|
-
export {
|
|
25
|
-
|
|
26
|
-
export {
|
|
27
|
-
|
|
28
|
-
export {
|
|
29
|
-
|
|
1
|
+
import F_express from './icons/Frameworks/express.svg';
|
|
2
|
+
export { F_express };
|
|
3
|
+
import F_nextjs from './icons/Frameworks/nextjs.svg';
|
|
4
|
+
export { F_nextjs };
|
|
5
|
+
import F_tailwind from './icons/Frameworks/tailwind.svg';
|
|
6
|
+
export { F_tailwind };
|
|
7
|
+
import H_netlify from './icons/H_tools_services/netlify.svg';
|
|
8
|
+
export { H_netlify };
|
|
9
|
+
import H_npm from './icons/H_tools_services/npm.svg';
|
|
10
|
+
export { H_npm };
|
|
11
|
+
import H_pnpm from './icons/H_tools_services/pnpm.svg';
|
|
12
|
+
export { H_pnpm };
|
|
13
|
+
import H_trello from './icons/H_tools_services/trello.svg';
|
|
14
|
+
export { H_trello };
|
|
15
|
+
import H_vercel from './icons/H_tools_services/vercel.svg';
|
|
16
|
+
export { H_vercel };
|
|
17
|
+
import L_bootstrap from './icons/Libraries/bootstrap.svg';
|
|
18
|
+
export { L_bootstrap };
|
|
19
|
+
import L_mongoose from './icons/Libraries/mongoose.svg';
|
|
20
|
+
export { L_mongoose };
|
|
21
|
+
import L_nodemon from './icons/Libraries/nodemon.svg';
|
|
22
|
+
export { L_nodemon };
|
|
23
|
+
import L_react from './icons/Libraries/react.svg';
|
|
24
|
+
export { L_react };
|
|
25
|
+
import L_react_router from './icons/Libraries/react_router.svg';
|
|
26
|
+
export { L_react_router };
|
|
27
|
+
import L_redux from './icons/Libraries/redux.svg';
|
|
28
|
+
export { L_redux };
|
|
29
|
+
import L_sequelize from './icons/Libraries/sequelize.svg';
|
|
30
|
+
export { L_sequelize };
|
|
31
|
+
import L_webpack from './icons/Libraries/webpack.svg';
|
|
32
|
+
export { L_webpack };
|
|
33
|
+
import L_zod from './icons/Libraries/zod.svg';
|
|
34
|
+
export { L_zod };
|
|
35
|
+
import S_facebook from './icons/Socials/facebook.svg';
|
|
36
|
+
export { S_facebook };
|
|
37
|
+
import S_git from './icons/Socials/git.svg';
|
|
38
|
+
export { S_git };
|
|
39
|
+
import S_github from './icons/Socials/github.svg';
|
|
40
|
+
export { S_github };
|
|
41
|
+
import S_instagram from './icons/Socials/instagram.svg';
|
|
42
|
+
export { S_instagram };
|
|
43
|
+
import S_linkedin from './icons/Socials/linkedin.svg';
|
|
44
|
+
export { S_linkedin };
|
|
45
|
+
import S_whatsapp from './icons/Socials/whatsapp.svg';
|
|
46
|
+
export { S_whatsapp };
|
|
47
|
+
import T_css from './icons/Technologies/css.svg';
|
|
48
|
+
export { T_css };
|
|
49
|
+
import T_html from './icons/Technologies/html.svg';
|
|
50
|
+
export { T_html };
|
|
51
|
+
import T_javascript from './icons/Technologies/javascript.svg';
|
|
52
|
+
export { T_javascript };
|
|
53
|
+
import T_mongodb from './icons/Technologies/mongodb.svg';
|
|
54
|
+
export { T_mongodb };
|
|
55
|
+
import T_node from './icons/Technologies/node.svg';
|
|
56
|
+
export { T_node };
|
|
57
|
+
import T_postgresql from './icons/Technologies/postgresql.svg';
|
|
58
|
+
export { T_postgresql };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lukkas98/icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Iconos para proyectos libres de licencias",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -8,6 +8,19 @@
|
|
|
8
8
|
"files": [
|
|
9
9
|
"icons",
|
|
10
10
|
"index.js",
|
|
11
|
-
"index.d.ts"
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
"index.d.ts",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "node generateExports.js"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"react": "^18.3.1",
|
|
19
|
+
"react-dom": "^18.3.1"
|
|
20
|
+
},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@types/react": "^18.3.3",
|
|
23
|
+
"@types/react-dom": "^18.3.0",
|
|
24
|
+
"typescript": "^5.5.4"
|
|
25
|
+
}
|
|
26
|
+
}
|