@lukkas98/icons 2.0.0 → 3.0.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.
Files changed (75) hide show
  1. package/README.md +32 -39
  2. package/THIRD_PARTY_LICENSES.md +1 -1
  3. package/dist/components/brands/Css.d.ts +2 -0
  4. package/dist/components/brands/Css.js +2 -0
  5. package/dist/components/brands/Expressjs.d.ts +2 -0
  6. package/dist/components/brands/Expressjs.js +2 -0
  7. package/dist/components/brands/FramerMotion.d.ts +2 -0
  8. package/dist/components/brands/FramerMotion.js +2 -0
  9. package/dist/components/brands/Git.d.ts +2 -0
  10. package/dist/components/brands/Git.js +2 -0
  11. package/dist/components/brands/Github.d.ts +2 -0
  12. package/dist/components/brands/Github.js +2 -0
  13. package/dist/components/brands/Html.d.ts +2 -0
  14. package/dist/components/brands/Html.js +2 -0
  15. package/dist/components/brands/Javascript.d.ts +2 -0
  16. package/dist/components/brands/Javascript.js +2 -0
  17. package/dist/components/brands/Linkedin.d.ts +2 -0
  18. package/dist/components/brands/Linkedin.js +2 -0
  19. package/dist/components/brands/Mongodb.d.ts +2 -0
  20. package/dist/components/brands/Mongodb.js +2 -0
  21. package/dist/components/brands/Mongoose.d.ts +2 -0
  22. package/dist/components/brands/Mongoose.js +12 -0
  23. package/dist/components/brands/Netlify.d.ts +2 -0
  24. package/dist/components/brands/Netlify.js +2 -0
  25. package/dist/components/brands/Nextjs.d.ts +2 -0
  26. package/dist/components/brands/Nextjs.js +2 -0
  27. package/dist/components/brands/Nodejs.d.ts +2 -0
  28. package/dist/components/brands/Nodejs.js +2 -0
  29. package/dist/components/brands/Npm.d.ts +2 -0
  30. package/dist/components/brands/Npm.js +2 -0
  31. package/dist/components/brands/Pnpm.d.ts +2 -0
  32. package/dist/components/brands/Pnpm.js +2 -0
  33. package/dist/components/brands/Postgresql.d.ts +2 -0
  34. package/dist/components/brands/Postgresql.js +2 -0
  35. package/dist/components/brands/React.d.ts +2 -0
  36. package/dist/components/brands/React.js +2 -0
  37. package/dist/components/brands/ReactRouter.d.ts +2 -0
  38. package/dist/components/brands/ReactRouter.js +2 -0
  39. package/dist/components/brands/Reactjs.d.ts +2 -0
  40. package/dist/components/brands/Reactjs.js +2 -0
  41. package/dist/components/brands/Redux.d.ts +2 -0
  42. package/dist/components/brands/Redux.js +2 -0
  43. package/dist/components/brands/Sequelize.d.ts +2 -0
  44. package/dist/components/brands/Sequelize.js +2 -0
  45. package/dist/components/brands/Tailwindcss.d.ts +2 -0
  46. package/dist/components/brands/Tailwindcss.js +2 -0
  47. package/dist/components/brands/Typescript.d.ts +2 -0
  48. package/dist/components/brands/Typescript.js +2 -0
  49. package/dist/components/brands/Vercel.d.ts +2 -0
  50. package/dist/components/brands/Vercel.js +2 -0
  51. package/dist/components/brands/Zod.d.ts +2 -0
  52. package/dist/components/brands/Zod.js +2 -0
  53. package/dist/components/brands/index.d.ts +24 -0
  54. package/dist/components/brands/index.js +24 -0
  55. package/dist/components/ui/Arrow.d.ts +2 -0
  56. package/dist/components/ui/Arrow.js +2 -0
  57. package/dist/components/ui/ArrowBadgeDown.d.ts +2 -0
  58. package/dist/components/ui/ArrowBadgeDown.js +2 -0
  59. package/dist/components/ui/ArrowBadgeLeft.d.ts +2 -0
  60. package/dist/components/ui/ArrowBadgeLeft.js +2 -0
  61. package/dist/components/ui/ArrowBadgeRight.d.ts +2 -0
  62. package/dist/components/ui/ArrowBadgeRight.js +2 -0
  63. package/dist/components/ui/ArrowBadgeUp.d.ts +2 -0
  64. package/dist/components/ui/ArrowBadgeUp.js +2 -0
  65. package/dist/components/ui/index.d.ts +4 -0
  66. package/dist/components/ui/index.js +4 -0
  67. package/dist/index.d.ts +2 -1
  68. package/dist/index.js +2 -1
  69. package/dist/types.d.ts +5 -0
  70. package/dist/types.js +1 -0
  71. package/package.json +50 -27
  72. package/dist/icons/brand.d.ts +0 -25
  73. package/dist/icons/brand.js +0 -73
  74. package/dist/icons/index.d.ts +0 -1
  75. package/dist/icons/index.js +0 -1
package/README.md CHANGED
@@ -11,6 +11,7 @@ Iconos SVG como **componentes React**, pensados para **uso personal** en mis pro
11
11
  - 🌳 **Tree-shaking** (solo se incluye lo que usás)
12
12
  - 🧠 Tipados con TypeScript (`SVGProps<SVGSVGElement>`)
13
13
  - 📦 Pensado para proyectos con **React / Next.js**
14
+ - 📂 Organización por dominios (`ui`, `brands`)
14
15
 
15
16
  ---
16
17
 
@@ -27,24 +28,30 @@ pnpm add @lukkas98/icons
27
28
  ## 🚀 Uso básico
28
29
 
29
30
  ```tsx
30
- import { ReactIcon, JavascriptIcon } from "@lukkas98/icons";
31
+ import { IconArrowBadgeDown, IconJavascript } from "@lukkas98/icons";
31
32
 
32
33
  export function Example() {
33
34
  return (
34
35
  <div className="flex gap-4">
35
- <ReactIcon className="w-8 h-8 text-cyan-400" />
36
- <JavascriptIcon className="w-8 h-8" />
36
+ <IconArrowBadgeDown className="w-8 h-8 text-cyan-400" />
37
+ <IconJavascript className="w-8 h-8" />
37
38
  </div>
38
39
  );
39
40
  }
40
41
  ```
41
42
 
43
+ Tambien se permiten exportaciones por UI o brands
44
+
45
+ ```tsx
46
+ import { IconArrowBadgeDown } from "@lukkas98/icons/ui";
47
+ import { IconJavascript } from "@lukkas98/icons/brands";
48
+ ```
49
+
42
50
  Todos los iconos aceptan:
43
51
 
44
52
  - `className`
45
53
  - `style`
46
54
  - `onClick`
47
- - `aria-*`
48
55
  - cualquier `SVGProps<SVGSVGElement>`
49
56
 
50
57
  ---
@@ -53,46 +60,23 @@ Todos los iconos aceptan:
53
60
 
54
61
  ```txt
55
62
  src/
56
- ├─ icons/
57
- ├─ brands.tsx # Tecnologías, herramientas, logos
58
- ├─ ui.tsx # Iconos genéricos de interfaz
59
- └─ index.ts
60
- └─ index.ts
63
+ ├─ raw-icons/ # SVGs originales (Fuentes)
64
+ ├─ components/ # Componentes generados (No editar)
65
+ ├─ scripts/ # Automatización (SVGR + Index gen)
66
+ └─ types.ts # Definición de IconProps
61
67
  ```
62
68
 
63
- ### `brands`
64
-
65
- Iconos de tecnologías, frameworks y herramientas:
66
-
67
- - JavaScript
68
- - React
69
- - Next.js
70
- - Node.js
71
- - MongoDB
72
- - PostgreSQL
73
- - Tailwind
74
- - Git
75
- - npm / pnpm
76
- - etc.
77
-
78
- ### `ui`
79
-
80
- Iconos genéricos reutilizables en interfaces:
81
-
82
- - arrows
83
- - check / close
84
- - menu
85
- - search
86
-
87
69
  ---
88
70
 
89
71
  ## 🎨 Colores
90
72
 
91
- Algunos iconos usan **colores propios** (logos).
92
- Otros usan `currentColor` y responden a:
73
+ Los iconos de marcas mantienen sus **colores originales**,
74
+ Los iconos de UI usan `currentColor`
93
75
 
94
76
  ```tsx
95
- className = "text-sky-500";
77
+ <IconArrowBadgeDown className="text-emerald-500" />
78
+ // o
79
+ <IconArrowBadgeDown color="#10b981" />
96
80
  ```
97
81
 
98
82
  Esto es intencional.
@@ -105,10 +89,11 @@ Esto es intencional.
105
89
  npm build
106
90
  ```
107
91
 
108
- Genera la carpeta `dist/` con:
92
+ Esto ejecuta
109
93
 
110
- - JavaScript compilado
111
- - declaraciones `.d.ts`
94
+ - Generación automática de los componentes e índices
95
+ - Compilación de TypeScript
96
+ - Salida final en `dist/`
112
97
 
113
98
  ---
114
99
 
@@ -120,6 +105,14 @@ Genera la carpeta `dist/` con:
120
105
 
121
106
  ---
122
107
 
108
+ ## 📜 Licencias
109
+
110
+ - Licencia: MIT
111
+ - Los iconos pertenecen a sus respectivos autores
112
+ - Ver [THIRD_PARTY_LICENSES.md](THIRD_PARTY_LICENSES.md)
113
+
114
+ ---
115
+
123
116
  ## 🧑‍💻 Autor
124
117
 
125
118
  Hecho por **lukkas98**.
@@ -15,7 +15,7 @@ Original authors retain all copyrights to their respective works.
15
15
  Some SVG icons are sourced from the following projects:
16
16
 
17
17
  - Iconify Icon Sets — https://icon-sets.iconify.design/
18
- - Xandemon Icons — https://xandemon.github.io/
18
+ - Xandemon Icons — https://xandemon.github.io/developer-icons/
19
19
 
20
20
  Each icon set remains the property of its respective authors and follows
21
21
  its original license terms.
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconCss: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconCss = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#0277bd", rx: 60 }), _jsx("path", { fill: "#ebebeb", d: "m53.753 102.651 2.862 31.942h71.481v-31.942zM128.095 38H48l2.904 31.942h77.191zm0 180.841v-33.233l-.14.037-35.574-9.605-2.274-25.476H58.042l4.475 50.154 65.431 18.164z" }), _jsx("path", { fill: "#fff", d: "m167.318 134.593-3.708 41.426-35.625 9.616v33.231l65.483-18.148.48-5.397 7.506-84.092.779-8.578L208 38h-80.015v31.942h45.009l-2.906 32.709h-42.103v31.942z" })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconExpressjs: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconExpressjs = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, rx: 60 }), _jsx("path", { fill: "#fff", d: "M228 182.937a12.73 12.73 0 0 1-15.791-6.005c-9.063-13.567-19.071-26.522-28.69-39.755l-4.171-5.56c-11.454 15.346-22.908 30.08-33.361 45.371a12.23 12.23 0 0 1-15.012 5.894l42.98-57.659-39.978-52.1a13.29 13.29 0 0 1 15.847 5.56c9.285 13.568 19.572 26.523 29.802 40.257 10.287-13.623 20.462-26.634 29.97-40.09a11.95 11.95 0 0 1 14.901-5.56l-15.513 20.573c-6.95 9.174-13.789 18.404-21.017 27.356a5.56 5.56 0 0 0 0 8.285c13.289 17.626 26.466 35.307 40.033 53.433M28 124.5c1.168-5.56 1.89-11.621 3.503-17.292 9.619-34.195 48.818-48.43 75.785-27.245 15.791 12.4 19.739 29.97 18.961 49.764H37.286c-1.446 35.363 24.075 56.714 56.713 45.816a33.86 33.86 0 0 0 21.518-23.965c1.724-5.56 4.504-6.505 9.786-4.893a45.15 45.15 0 0 1-21.573 32.972 52.26 52.26 0 0 1-60.884-7.784 54.77 54.77 0 0 1-13.678-32.138c0-1.89-.723-3.781-1.112-5.56A861 861 0 0 1 28 124.5m9.397-2.391h80.456c-.501-25.632-16.681-43.814-38.254-43.98-24.02-.334-41.201 17.458-42.258 43.869z" })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconFramerMotion: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconFramerMotion = (props) => _jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "3.7 3.7 43.6 43.6", ...props, children: [_jsx("path", { fill: "#59529d", d: "M47.3 3.7v21.8L36.4 36.4 25.5 47.3 14.6 36.4l10.9-10.9v.1-.1z" }), _jsx("path", { fill: "#5271b4", d: "M47.3 25.5v21.8L36.4 36.4z" }), _jsx("path", { fill: "#bb4b96", d: "M25.5 25.5 14.6 36.4 3.7 47.3V3.7l10.9 10.9z" })] });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconGit: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconGit = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, rx: 60 }), _jsx("g", { clipPath: "url(#prefix__a)", children: _jsx("path", { fill: "#f03c2e", d: "m224.225 119.094-87.319-87.319a12.87 12.87 0 0 0-14.035-2.793 12.9 12.9 0 0 0-4.177 2.793L100.569 49.9l23 23c5.35-1.875 11.475-.594 15.737 3.669a15.31 15.31 0 0 1 3.631 15.831l22.169 22.169c5.363-1.85 11.55-.657 15.831 3.637a15.32 15.32 0 0 1 3.321 16.706 15.333 15.333 0 0 1-20.029 8.293c-1.86-.771-3.55-1.9-4.973-3.324-4.5-4.5-5.612-11.125-3.337-16.669l-20.675-20.675v54.407a15.6 15.6 0 0 1 4.062 2.9 15.326 15.326 0 0 1-21.675 21.675 15.32 15.32 0 0 1-3.326-16.704 15.3 15.3 0 0 1 3.326-4.971c1.481-1.475 3.125-2.594 5.019-3.344v-54.913a15.2 15.2 0 0 1-5.019-3.343 15.315 15.315 0 0 1-3.3-16.757L91.644 58.814l-59.875 59.812a12.88 12.88 0 0 0-2.795 14.04 12.9 12.9 0 0 0 2.795 4.179l87.325 87.312a12.9 12.9 0 0 0 4.177 2.793 12.9 12.9 0 0 0 9.858 0 12.9 12.9 0 0 0 4.177-2.793l86.919-86.781a12.88 12.88 0 0 0 3.776-9.109 12.88 12.88 0 0 0-3.776-9.11" }) }), _jsx("defs", { children: _jsx("clipPath", { id: "prefix__a", children: _jsx("path", { fill: "#f03c2e", d: "M28 28h200v200H28z" }) }) })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconGithub: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconGithub = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, rx: 60 }), _jsx("path", { fill: "#fff", d: "M128.001 30C72.779 30 28 74.77 28 130.001c0 44.183 28.653 81.667 68.387 94.89 4.997.926 6.832-2.169 6.832-4.81 0-2.385-.093-10.262-.136-18.618-27.82 6.049-33.69-11.799-33.69-11.799-4.55-11.559-11.104-14.632-11.104-14.632-9.073-6.207.684-6.079.684-6.079 10.042.705 15.33 10.305 15.33 10.305 8.919 15.288 23.394 10.868 29.1 8.313.898-6.464 3.489-10.875 6.349-13.372-22.211-2.529-45.56-11.104-45.56-49.421 0-10.918 3.906-19.839 10.303-26.842-1.039-2.519-4.462-12.69.968-26.464 0 0 8.398-2.687 27.508 10.25 7.977-2.215 16.531-3.326 25.03-3.364 8.498.038 17.06 1.149 25.051 3.365 19.087-12.939 27.473-10.25 27.473-10.25 5.443 13.773 2.019 23.945.98 26.463 6.412 7.003 10.292 15.924 10.292 26.842 0 38.409-23.394 46.866-45.662 49.341 3.587 3.104 6.783 9.189 6.783 18.519 0 13.38-.116 24.149-.116 27.443 0 2.661 1.8 5.779 6.869 4.797C199.383 211.64 228 174.169 228 130.001 228 74.771 183.227 30 128.001 30M65.454 172.453c-.22.497-1.002.646-1.714.305-.726-.326-1.133-1.004-.898-1.502.215-.512.999-.654 1.722-.311.727.326 1.141 1.01.89 1.508m4.919 4.389c-.477.443-1.41.237-2.042-.462-.654-.697-.777-1.629-.293-2.078.491-.442 1.396-.235 2.051.462.654.706.782 1.631.284 2.078m3.374 5.616c-.613.426-1.615.027-2.234-.863-.613-.889-.613-1.955.013-2.383.621-.427 1.608-.043 2.236.84.611.904.611 1.971-.015 2.406m5.707 6.504c-.548.604-1.715.442-2.57-.383-.874-.806-1.118-1.95-.568-2.555.555-.606 1.729-.435 2.59.383.868.804 1.133 1.957.548 2.555m7.376 2.195c-.242.784-1.366 1.14-2.499.807-1.13-.343-1.871-1.26-1.642-2.052.235-.788 1.364-1.159 2.505-.803 1.13.341 1.871 1.252 1.636 2.048m8.394.932c.028.824-.932 1.508-2.121 1.523-1.196.027-2.163-.641-2.176-1.452 0-.833.939-1.51 2.134-1.53 1.19-.023 2.163.639 2.163 1.459m8.246-.316c.143.804-.683 1.631-1.864 1.851-1.161.212-2.236-.285-2.383-1.083-.144-.825.697-1.651 1.856-1.865 1.183-.205 2.241.279 2.391 1.097" })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconHtml: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconHtml = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#e14e1d", rx: 60 }), _jsx("path", { fill: "#fff", d: "m48 38 8.61 96.593h110.71l-3.715 41.43-35.646 9.638-35.579-9.624-2.379-26.602H57.94l4.585 51.281 65.427 18.172 65.51-18.172 8.783-98.061H85.824l-2.923-32.71h122.238L208 38z" }), _jsx("path", { fill: "#ebebeb", d: "M128 38H48l8.61 96.593H128v-31.938H85.824l-2.923-32.71H128zm0 147.647-.041.014-35.579-9.624-2.379-26.602H57.94l4.585 51.281 65.427 18.172.049-.014z" })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconJavascript: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconJavascript = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#f0db4f", rx: 60 }), _jsx("path", { fill: "#323330", d: "m67.312 213.932 19.59-11.856c3.78 6.701 7.218 12.371 15.465 12.371 7.905 0 12.889-3.092 12.889-15.12v-81.798h24.058v82.138c0 24.917-14.606 36.259-35.916 36.259-19.245 0-30.416-9.967-36.087-21.996m85.07-2.576 19.588-11.341c5.157 8.421 11.859 14.607 23.715 14.607 9.969 0 16.325-4.984 16.325-11.858 0-8.248-6.53-11.17-17.528-15.98l-6.013-2.579c-17.357-7.388-28.871-16.668-28.871-36.258 0-18.044 13.748-31.792 35.229-31.792 15.294 0 26.292 5.328 34.196 19.247l-18.731 12.029c-4.125-7.389-8.591-10.31-15.465-10.31-7.046 0-11.514 4.468-11.514 10.31 0 7.217 4.468 10.139 14.778 14.608l6.014 2.577c20.449 8.765 31.963 17.699 31.963 37.804 0 21.654-17.012 33.51-39.867 33.51-22.339 0-36.774-10.654-43.819-24.574" })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconLinkedin: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconLinkedin = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#fff", rx: 60 }), _jsx("rect", { width: 256, height: 256, fill: "#0a66c2", rx: 60 }), _jsx("path", { fill: "#fff", d: "M184.715 217.685h29.27a4 4 0 0 0 4-3.999l.015-61.842c0-32.323-6.965-57.168-44.738-57.168-14.359-.534-27.9 6.868-35.207 19.228a.32.32 0 0 1-.595-.161V101.66a4 4 0 0 0-4-4h-27.777a4 4 0 0 0-4 4v112.02a4 4 0 0 0 4 4h29.268a4 4 0 0 0 4-4v-55.373c0-15.657 2.97-30.82 22.381-30.82 19.135 0 19.383 17.916 19.383 31.834v54.364a4 4 0 0 0 4 4M38 59.628c0 11.864 9.767 21.626 21.632 21.626 11.862-.001 21.623-9.769 21.623-21.631C81.253 47.761 71.491 38 59.628 38 47.762 38 38 47.763 38 59.627m6.959 158.058h29.307a4 4 0 0 0 4-4V101.66a4 4 0 0 0-4-4H44.959a4 4 0 0 0-4 4v112.025a4 4 0 0 0 4 4" })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconMongodb: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconMongodb = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, rx: 60 }), _jsx("path", { fill: "#10aa50", d: "M171.173 107.591c-10.537-46.481-32.497-58.855-38.099-67.602A99 99 0 0 1 126.949 28c-.296 4.13-.84 6.73-4.35 9.862-7.047 6.283-36.977 30.673-39.496 83.486-2.347 49.242 36.2 79.605 41.292 82.744 3.916 1.927 8.685.041 11.012-1.728 18.581-12.752 43.969-46.75 35.786-94.773" }), _jsx("path", { fill: "#b8c4c2", d: "M128.545 177.871c-.97 12.188-1.665 19.27-4.129 26.235 0 0 1.617 11.603 2.753 23.894h4.019a224 224 0 0 1 4.384-25.732c-5.203-2.56-6.827-13.702-7.027-24.397" }), _jsx("path", { fill: "#12924f", d: "M135.565 202.275c-5.258-2.429-6.779-13.806-7.013-24.404a500 500 0 0 0 1.136-52.545c-.276-9.194.13-85.158-2.265-96.28a92 92 0 0 0 5.651 10.936c5.602 8.754 27.569 21.128 38.099 67.609 8.203 47.941-17.047 81.849-35.608 94.684" })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconMongoose: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconMongoose = (props) => _jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 128 128", ...props, children: [_jsx("path", { d: "M69.953.309c-1.676.07-4.508.52-4.508.71 0 .079 1.996 1.079 2.149 1.079.14 0 2.457 1.156 2.972 1.476.672.43 1.153.82 1.012.82-.09 0-2.469-.921-3.371-1.308-.734-.309-3.785-1.219-5.27-1.57-.804-.188-1.144-.258-2.511-.508C58.41.64 56.039.618 55.008.957c-1.477.48-1.809 1.07-1.809 3.246 0 1.2.059 1.707.32 2.785.114.469.434 1.5.583 1.848.043.11.183.45.3.75.121.297.485 1.066.805 1.695 1.797 3.567 4.488 6.54 8.281 9.156 1.196.82 4.446 2.375 5.75 2.747.332.09.442.277.172.277-.3 0-3.05-.758-3.613-.996a10 10 0 0 0-.652-.262c-1.957-.789-4.457-2.414-6.524-4.262a21.4 21.4 0 0 1-5.312-7.257c-.793-1.79-1.332-3.875-1.465-5.692-.078-1.039-.16-1.289-.43-1.277-.09 0-.945-.031-1.887-.082-2.562-.11-6.062.172-9.527.77-6.625 1.128-13.773 3.734-21.129 7.706a95 95 0 0 0-3.625 2.067c-.14.082-.582.351-.984.601-.399.25-.871.528-1.043.637-.38.223-4.586 3.078-5.09 3.457-.188.137-.711.527-1.152.848C4.98 21.195.633 24.742.383 25.102c-.121.18.07.27.328.18.133-.052.473-.122.746-.16.281-.044 1.004-.231 1.605-.43.61-.192 1.266-.391 1.454-.442 1.488-.348 2.09-.469 2.96-.598.395-.05.977-.14 1.305-.191 4.078-.598 6.024-.746 7.84-.61 3.945.32 7.719.993 9.879 1.758 1.617.582 4.906 2.36 6.352 3.426.836.63 3.523 3.305 4.117 4.113.46.641.972 1.2 1.093 1.2.04 0 .09-2.04.102-4.524l.027-4.512 5.282-.03c4.156-.02 5.308.011 5.379.1.101.13.343.56 1.136 2.024.754 1.41 1.125 2.09 1.356 2.496.12.223.398.739.633 1.149.218.41.628 1.168.91 1.687.281.52.511.961.511.98 0 .09.414.63.485.63.039 0 .14-.153.21-.32.079-.18.29-.579.462-.88.18-.3.5-.886.722-1.296.223-.41.524-.98.684-1.25.441-.79.902-1.645 1.285-2.344A85 85 0 0 1 58.5 24.96c.129-.25.29-.512.34-.578.082-.09 1.265-.121 5.543-.102l5.43.031.03 8.817c.02 6.945.048 8.805.15 8.805.058-.012.46-.243.874-.532.582-.406.832-.656 1.102-1.117.613-1.047 2.351-2.695 3.515-3.336A16.6 16.6 0 0 1 80 35.254c1.605-.34 2.078-.39 5.723-.52 6.652-.23 7.636-.27 7.687-.32.031-.027-.058-.289-.191-.59-.14-.289-.38-.828-.551-1.187-.633-1.367-.633-1.825.031-2.496.45-.47 1.613-.88 3.613-1.278.329-.07.743-.16.91-.218.173-.051.383-.09.473-.09.254 0 2.25-.489 2.672-.649.29-.12 1.856-.46 3.723-.82.812-.16 2.922-.578 4.668-.93 1.105-.218 2.258-.449 2.558-.508.301-.058.735-.148.954-.187.222-.05.511-.113.652-.133.14-.027.844-.168 1.558-.316a34 34 0 0 1 1.614-.313c.504-.047 4.289-.957 5.16-1.238 1.387-.45 1.797-.629 2.672-1.215.941-.64 1.203-.988 2.136-2.848 1.036-2.066 1.184-2.414 1.477-3.285.45-1.386.422-1.914-.152-2.496-.403-.398-1.266-.808-1.895-.898-.472-.059-.535-.04-.765.21-.141.15-.262.329-.262.391 0 .09-.16.528-.61 1.606-.043.11-.132.379-.203.597-.058.223-.18.532-.25.7-.129.28-.14.23-.09-.547.051-.77.18-1.418.473-2.399.051-.187.121-.507.149-.707l.05-.36-1.043-.417c-1.085-.45-2.02-.84-2.558-1.082-.184-.066-.633-.246-1.004-.387-.383-.14-.844-.32-1.035-.41a24 24 0 0 0-1.055-.437c-.672-.262-3.02-1.059-5.02-1.688a458 458 0 0 0-4.011-1.21 36 36 0 0 1-1.406-.388c-.16-.043-.555-.152-.856-.23-1.766-.488-2.226-.61-2.86-.79a26 26 0 0 0-1.054-.28c-.191-.047-.71-.168-1.152-.278-.774-.191-4.016-.937-5.774-1.34l-1.254-.289c-.222-.05-.62-.129-.902-.18-.273-.05-.844-.16-1.258-.25-.41-.077-1.293-.25-1.957-.359-.66-.117-1.453-.257-1.754-.308-2.773-.5-2.96-.528-7.93-1.078-3.062-.348-7.18-.641-8.183-.59-.16 0-1.05.039-1.965.09M58.348 5.23c2.652.86 5.23 2.028 6.996 3.168 1.406.907 3.152 2.356 3.625 3.004l.199.27-.379-.149c-.21-.09-.652-.28-.984-.441-1.766-.82-1.957-.887-1.957-.707 0 .047.41.707.902 1.445.504.75.902 1.41.902 1.47 0 .05-.187-.032-.422-.192-.902-.618-3.02-1.508-3.14-1.328-.031.05.62.878 1.457 1.847.82.969 1.504 1.797 1.504 1.86 0 .148-.16.128-.922-.153-.785-.277-.984-.308-.984-.117 0 .129 1.695 2.414 2.367 3.203.191.219.343.43.343.48 0 .239-2.351-1.288-4.015-2.605-2.38-1.898-4.68-4.445-5.89-6.55-.997-1.72-1.337-2.645-1.337-3.665 0-.597.028-.718.25-.93.13-.136.293-.25.352-.25s.562.153 1.133.34m31.691 3.555c.961.172 2.277.399 2.91.512.633.11 1.406.238 1.707.289.301.059.73.137.953.187.22.051.653.141.954.211.992.22 1.234.27 2.859.649 1.746.41 2.129.488 2.66.597.453.09.902.262.902.34 0 .032-.328.223-.73.43-.824.41-.996.441-4.387.57-2.308.098-3.543.07-4.668-.11-2.27-.35-3.441-.987-4.355-2.366-.32-.469-.531-.61-1.266-.797-.27-.082-.683-.192-.902-.262-.223-.07-.602-.18-.844-.25-.723-.187-.312-.297 1.145-.297 1.003 0 1.707.067 3.062.297m12.074 13.95a.54.54 0 0 1-.25 0c-.07-.032-.02-.051.121-.051.137 0 .188.02.13.05zm-.433.117c0 .05-.117.12-.27.152-.312.078-1.535.43-1.937.558-.141.051-.594.192-1.004.31-1.035.3-3.543 1.116-4.215 1.378-1.266.48-4.238 2.055-4.656 2.477-.625.609-.817 1.265-.723 2.523.027.531.098 1.2.16 1.488.121.63.05.801-.191.489-.242-.309-.754-1.426-.903-1.977-.082-.246-.171-.578-.222-.738-.18-.567-.11-1.239.172-1.645.379-.582 1.746-1.508 3.351-2.277.762-.371 2.98-1.13 5.02-1.727.41-.12.863-.261 1.004-.3 1.445-.489 4.414-.958 4.414-.711m-31.746.671c-.032.028-.121.04-.192.008-.082-.027-.05-.058.059-.058.113-.012.172.02.133.05m0 0", style: {
3
+ fill: "#850000",
4
+ fillOpacity: 1,
5
+ fillRule: "nonzero",
6
+ stroke: "none"
7
+ }, transform: "translate(0 39)" }), _jsx("path", { d: "M48.883 42.832v6.988h5c3.754 0 5.027-.03 5.117-.12.152-.15.184-13.856.031-13.856-.05 0-.12.078-.152.168-.04.09-1.133 1.797-2.438 3.793-2.066 3.156-2.64 3.925-2.64 3.535 0-.07-3.422-5.41-4.297-6.7a4 4 0 0 1-.309-.527c-.082-.152-.18-.27-.23-.27-.043 0-.082 3.145-.082 6.989m0 0", style: {
8
+ fill: "#850000",
9
+ fillOpacity: 1,
10
+ fillRule: "nonzero",
11
+ stroke: "none"
12
+ }, transform: "translate(0 39)" })] });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconNetlify: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconNetlify = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, rx: 60 }), _jsx("path", { fill: "url(#prefix__a)", d: "m172.787 97.405-.073-.031c-.041-.016-.083-.031-.12-.068a.57.57 0 0 1-.146-.485l4.032-24.651 18.909 18.913-19.665 8.367a.4.4 0 0 1-.172.031h-.078a.5.5 0 0 1-.105-.088 9 9 0 0 0-2.582-1.988m27.426-1.502 20.218 20.217c4.199 4.205 6.301 6.301 7.068 8.732.114.36.208.72.281 1.09l-48.316-20.462-.078-.032c-.193-.078-.418-.167-.418-.365s.23-.292.423-.37l.062-.026zm26.743 36.528c-1.043 1.961-3.077 3.996-6.52 7.443l-22.794 22.789-29.481-6.139-.157-.031c-.261-.042-.537-.089-.537-.324a8.9 8.9 0 0 0-3.417-6.222c-.12-.12-.088-.308-.052-.48 0-.026 0-.052.011-.073l5.544-34.04.021-.115c.032-.261.078-.563.313-.563a9.02 9.02 0 0 0 6.051-3.469c.047-.052.078-.11.141-.141.167-.078.365 0 .537.073l50.335 21.292zM192.4 167.905l-37.483 37.483 6.416-39.433.01-.053a.7.7 0 0 1 .032-.151c.052-.125.187-.177.318-.229l.062-.026a9.66 9.66 0 0 0 3.626-2.697c.125-.146.276-.287.469-.313a.5.5 0 0 1 .151 0l26.393 5.425zm-45.417 45.417-4.225 4.225-46.71-67.507-.052-.073c-.072-.099-.15-.198-.135-.313.005-.083.057-.156.115-.219l.052-.067c.14-.209.26-.418.391-.642l.104-.183.016-.015c.073-.125.14-.245.266-.313.11-.052.26-.031.38-.005l51.749 10.672a.85.85 0 0 1 .397.172c.068.068.083.141.099.224a9.16 9.16 0 0 0 5.362 6.129c.146.073.083.235.016.407q-.05.113-.079.235c-.652 3.964-6.243 38.066-7.746 47.273m-8.825 8.82c-3.114 3.083-4.95 4.715-7.026 5.373a10.44 10.44 0 0 1-6.291 0c-2.43-.772-4.532-2.869-8.731-7.073l-46.908-46.908 12.252-19.003a.8.8 0 0 1 .209-.245c.13-.094.318-.052.475 0 2.812.849 5.831.696 8.543-.433.141-.052.282-.088.392.011q.081.075.146.167l46.939 68.116zm-73.479-53.131-10.76-10.76 21.25-9.066a.4.4 0 0 1 .172-.036c.177 0 .282.177.376.339q.32.492.678.959l.067.084c.063.088.021.177-.041.261l-11.737 18.219zm-15.523-15.523-13.614-13.614c-2.315-2.316-3.995-3.995-5.164-5.44l41.395 8.586.157.026c.255.041.537.088.537.328 0 .261-.308.381-.569.48l-.12.052zM28 127.434a10.4 10.4 0 0 1 .47-2.582c.771-2.431 2.868-4.527 7.072-8.732l17.422-17.421a11464 11464 0 0 0 24.13 34.88c.14.187.297.396.135.552-.761.84-1.523 1.758-2.06 2.755a.83.83 0 0 1-.261.323c-.068.042-.14.026-.22.01h-.01L28 127.429zm29.627-33.398L81.052 70.61c2.202.965 10.214 4.35 17.38 7.376 5.425 2.295 10.37 4.381 11.924 5.06.157.062.298.125.365.281.042.094.021.214 0 .313a10.46 10.46 0 0 0 2.728 9.535c.157.157 0 .38-.135.574l-.073.11-23.785 36.84a.7.7 0 0 1-.225.261c-.125.078-.302.042-.448.005a12 12 0 0 0-2.833-.386c-.855 0-1.784.157-2.722.329h-.006c-.104.016-.198.036-.281-.026a1.1 1.1 0 0 1-.235-.266zm28.157-28.157 30.326-30.326c4.199-4.199 6.301-6.3 8.731-7.068a10.43 10.43 0 0 1 6.291 0c2.431.767 4.533 2.87 8.732 7.068l6.572 6.572-21.569 33.404a.8.8 0 0 1-.213.25c-.131.09-.313.053-.47 0a10.94 10.94 0 0 0-10.015 1.93c-.141.146-.349.063-.527-.015-2.816-1.226-24.724-10.484-27.858-11.815m65.232-19.174L170.93 66.62l-4.798 29.721v.078a.8.8 0 0 1-.042.199c-.052.104-.157.125-.261.156a9.5 9.5 0 0 0-2.858 1.424 1 1 0 0 0-.105.089c-.057.062-.114.12-.208.13a.6.6 0 0 1-.225-.036l-30.347-12.894-.057-.027c-.193-.078-.422-.172-.422-.37a11.5 11.5 0 0 0-1.617-4.773c-.146-.24-.308-.49-.183-.735zm-20.51 44.89 28.448 12.049c.157.073.329.14.397.302.027.097.027.2 0 .297a7 7 0 0 0-.157 1.372v.798c0 .199-.203.282-.391.36l-.057.021c-4.507 1.925-63.271 26.983-63.36 26.983s-.182 0-.271-.089c-.156-.156 0-.375.14-.574q.038-.051.074-.104l23.378-36.2.042-.062c.136-.22.292-.464.542-.464l.235.036c.532.073 1.002.141 1.476.141 3.547 0 6.833-1.726 8.815-4.679a.9.9 0 0 1 .178-.208c.141-.105.349-.052.511.02m-32.58 47.909 64.054-27.316s.094 0 .182.088c.35.35.647.584.934.803l.141.089c.13.073.261.157.271.292 0 .052 0 .084-.01.131l-5.488 33.706-.021.135c-.036.261-.073.559-.318.559a9 9 0 0 0-7.161 4.418l-.027.041c-.073.12-.14.235-.26.298-.11.052-.251.031-.365.005l-51.081-10.537c-.052-.01-.793-2.707-.85-2.712" }), _jsx("defs", { children: _jsxs("radialGradient", { id: "prefix__a", cx: 0, cy: 0, r: 1, gradientTransform: "scale(230.653 199.78)rotate(90 -.267 .36)", gradientUnits: "userSpaceOnUse", children: [_jsx("stop", { stopColor: "#20c6b7" }), _jsx("stop", { offset: 1, stopColor: "#4d9abf" })] }) })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconNextjs: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconNextjs = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, rx: 60 }), _jsx("path", { fill: "#000", d: "M121.451 28.054c-.43.039-1.799.176-3.031.273-28.406 2.561-55.014 17.889-71.867 41.447C37.17 82.873 31.167 97.731 28.9 113.47c-.801 5.494-.899 7.117-.899 14.565 0 7.449.098 9.072.9 14.565 5.434 37.556 32.16 69.111 68.406 80.802 6.491 2.092 13.333 3.519 21.114 4.379 3.031.332 16.129.332 19.16 0 13.431-1.486 24.809-4.809 36.031-10.538 1.72-.879 2.053-1.114 1.818-1.309-.156-.118-7.488-9.952-16.285-21.838l-15.992-21.603-20.04-29.658c-11.026-16.305-20.097-29.639-20.176-29.639-.078-.019-.156 13.158-.195 29.248-.059 28.172-.078 29.306-.43 29.97-.508.958-.899 1.349-1.721 1.78-.625.312-1.173.371-4.125.371h-3.382l-.9-.567a3.65 3.65 0 0 1-1.31-1.427l-.41-.88.04-39.198.058-39.218.606-.763c.313-.41.978-.938 1.447-1.192.801-.391 1.114-.43 4.496-.43 3.989 0 4.653.156 5.69 1.29.293.313 11.143 16.657 24.125 36.344a89122 89122 0 0 0 39.452 59.765l15.836 23.989.802-.528c7.096-4.614 14.604-11.183 20.547-18.026 12.649-14.526 20.802-32.238 23.539-51.124.801-5.493.899-7.116.899-14.565s-.098-9.071-.899-14.565c-5.435-37.556-32.161-69.11-68.407-80.801-6.393-2.073-13.196-3.5-20.821-4.36-1.877-.196-14.8-.41-16.422-.254m40.938 60.489c.938.469 1.701 1.368 1.975 2.306.156.509.195 11.379.156 35.875l-.059 35.152-6.197-9.502-6.217-9.501v-25.552c0-16.52.078-25.807.195-26.257.313-1.094.997-1.954 1.936-2.463.801-.41 1.095-.45 4.164-.45 2.894 0 3.402.04 4.047.392" })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconNodejs: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconNodejs = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, rx: 60 }), _jsx("path", { fill: "#81cd39", d: "M119.878 31.116c4.919-2.815 11.325-2.828 16.239 0 24.722 13.97 49.452 27.917 74.17 41.895 4.65 2.619 7.759 7.793 7.712 13.15v84.045c.035 5.579-3.382 10.877-8.287 13.436-24.641 13.893-49.27 27.802-73.907 41.695-5.019 2.87-11.554 2.649-16.418-.457-7.387-4.282-14.787-8.544-22.175-12.822-1.51-.9-3.212-1.616-4.278-3.08.943-1.27 2.628-1.428 3.997-1.983 3.083-.981 5.916-2.555 8.748-4.082.717-.49 1.591-.302 2.278.136 6.317 3.622 12.579 7.35 18.917 10.937 1.352.781 2.721-.256 3.877-.9 24.18-13.667 48.39-27.281 72.567-40.952.896-.431 1.391-1.382 1.318-2.363.017-27.725.004-55.454.009-83.18.102-1.112-.542-2.136-1.549-2.592-24.555-13.829-49.099-27.678-73.65-41.51a2.56 2.56 0 0 0-2.892-.005c-24.552 13.837-49.09 27.7-73.642 41.527-1.003.457-1.676 1.464-1.557 2.58.005 27.726 0 55.455 0 83.184a2.35 2.35 0 0 0 1.336 2.334c6.551 3.715 13.111 7.404 19.667 11.107 3.694 1.987 8.228 3.169 12.298 1.646 3.59-1.288 6.107-4.953 6.039-8.765.034-27.563-.017-55.13.025-82.69-.09-1.223 1.071-2.234 2.261-2.118 3.148-.022 6.3-.043 9.448.008 1.314-.03 2.218 1.288 2.056 2.52-.013 27.738.034 55.476-.021 83.213.008 7.393-3.029 15.437-9.867 19.054-8.423 4.363-18.835 3.438-27.157-.746-7.204-3.596-14.08-7.84-21.156-11.692-4.918-2.545-8.318-7.864-8.283-13.439V86.161c-.052-5.468 3.182-10.736 7.975-13.317 24.637-13.903 49.27-27.818 73.902-41.728" }), _jsx("path", { fill: "#81cd39", d: "M141.372 89.335c10.745-.692 22.248-.41 31.917 4.884 7.487 4.056 11.637 12.57 11.769 20.887-.209 1.121-1.382 1.74-2.453 1.663-3.117-.004-6.236.043-9.353-.021-1.323.051-2.091-1.168-2.257-2.337-.896-3.98-3.067-7.921-6.812-9.841-5.75-2.878-12.416-2.733-18.686-2.673-4.577.242-9.499.639-13.377 3.33-2.977 2.039-3.881 6.155-2.819 9.47 1.002 2.38 3.749 3.148 5.998 3.856 12.949 3.387 26.671 3.049 39.373 7.506 5.259 1.817 10.403 5.35 12.203 10.856 2.355 7.38 1.323 16.2-3.928 22.124-4.258 4.875-10.459 7.529-16.644 8.97-8.228 1.835-16.767 1.882-25.123 1.067-7.857-.896-16.034-2.96-22.099-8.313-5.187-4.504-7.72-11.522-7.469-18.294.06-1.144 1.199-1.942 2.295-1.848 3.139-.025 6.279-.034 9.418.005 1.255-.09 2.184.994 2.249 2.176.578 3.791 2.003 7.771 5.31 10.018 6.38 4.117 14.387 3.835 21.693 3.95 6.053-.268 12.848-.349 17.787-4.35 2.606-2.282 3.378-6.1 2.674-9.384-.763-2.773-3.664-4.065-6.155-4.91-12.783-4.043-26.659-2.576-39.318-7.149-5.14-1.816-10.11-5.25-12.084-10.53-2.755-7.473-1.493-16.717 4.308-22.44 5.656-5.695 13.82-7.888 21.583-8.672" })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconNpm: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconNpm = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsxs("g", { clipPath: "url(#prefix__a)", children: [_jsx("path", { d: "M196 0H60C26.863 0 0 26.863 0 60v136c0 33.137 26.863 60 60 60h136c33.137 0 60-26.863 60-60V60c0-33.137-26.863-60-60-60" }), _jsxs("g", { clipPath: "url(#prefix__b)", children: [_jsx("path", { fill: "#cb3837", d: "M23 88h210v68.571H128V168H81.333v-11.429H23zm11.667 57.143H58v-34.286h11.667v34.286h11.666V99.429H34.667zM93 99.429v57.142h23.333v-11.428h23.334V99.429zm23.333 11.428H128v22.857h-11.667zm35-11.428v45.714h23.334v-34.286h11.666v34.286H198v-34.286h11.667v34.286h11.666V99.429z" }), _jsx("path", { fill: "#fff", d: "M34.667 145.143H58v-34.286h11.667v34.286h11.666V99.429H34.667zM93 99.429v57.142h23.333v-11.428h23.334V99.429zm35 34.285h-11.667v-22.857H128zm23.333-34.285v45.714h23.334v-34.286h11.666v34.286H198v-34.286h11.667v34.286h11.666V99.429z" })] })] }), _jsxs("defs", { children: [_jsx("clipPath", { id: "prefix__a", children: _jsx("path", { fill: "#fff", d: "M0 0h256v256H0z" }) }), _jsx("clipPath", { id: "prefix__b", children: _jsx("path", { fill: "#fff", d: "M23 88h210v80H23z" }) })] })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconPnpm: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconPnpm = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsxs("g", { clipPath: "url(#prefix__a)", children: [_jsx("path", { d: "M196 0H60C26.863 0 0 26.863 0 60v136c0 33.137 26.863 60 60 60h136c33.137 0 60-26.863 60-60V60c0-33.137-26.863-60-60-60" }), _jsx("path", { fill: "#f9ad00", d: "M40 41h55v55H40zm60 0h55v55h-55zm60 0h55v55h-55zm0 60h55v55h-55z" }), _jsx("path", { fill: "#4e4e4e", d: "M160 161h55v55h-55zm-60 0h55v55h-55zm-60 0h55v55H40z" }), _jsx("path", { d: "M40 101h55v55H40z" }), _jsx("path", { fill: "#4e4e4e", d: "M100 101h55v55h-55z" })] }), _jsx("defs", { children: _jsx("clipPath", { id: "prefix__a", children: _jsx("path", { fill: "#fff", d: "M0 0h256v256H0z" }) }) })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconPostgresql: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconPostgresql = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, rx: 60 }), _jsx("path", { fill: "#336791", d: "M203.48 148.688c-20.32 4.19-21.796-2.693-21.796-2.693 21.466-31.852 30.445-72.282 22.696-82.175-21.121-27-57.691-14.224-58.303-13.893l-.197.035a72.5 72.5 0 0 0-13.563-1.414c-9.197-.14-16.172 2.412-21.473 6.427 0 0-65.236-26.873-62.199 33.8.647 12.909 18.493 97.734 39.797 72.07 7.847-9.436 15.37-17.361 15.37-17.361 3.727 2.482 8.206 3.748 12.896 3.291l.365-.309a14.2 14.2 0 0 0 .148 3.642c-5.484 6.131-3.867 7.207-14.836 9.464-11.095 2.285-4.57 6.356-.323 7.425 5.161 1.294 17.1 3.122 25.172-8.17l-.324 1.286c2.152 1.723 3.656 11.201 3.403 19.793-.253 8.593-.422 14.485 1.266 19.097s3.375 14.977 17.789 11.953c12.045-2.58 18.281-9.281 19.16-20.432.619-7.932 2.011-6.765 2.11-13.852l1.125-3.361c1.286-10.758.21-14.224 7.628-12.607l1.807.162c5.464.246 12.615-.879 16.805-2.827 9.035-4.19 14.393-11.194 5.484-9.351z" }), _jsx("path", { stroke: "#fff", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 5.034, d: "M146.07 48.596c-2.25.703 36.31-14.097 58.233 13.908 7.735 9.893-1.23 50.323-22.697 82.174m-53.508 9.106c-.562 20.011.141 40.162 2.096 45 1.954 4.837 6.152 14.414 20.573 11.334 12.045-2.58 16.432-7.58 18.331-18.612l4.45-35.275zM110.816 53.469S45.537 26.779 48.575 87.45c.647 12.909 18.492 97.734 39.797 72.07 7.776-9.373 14.808-16.706 14.808-16.706z" }), _jsx("path", { stroke: "#fff", strokeLinecap: "round", strokeLinejoin: "bevel", strokeWidth: 5.034, d: "M181.613 144.664s1.407 6.891 21.797 2.686c8.909-1.842 3.544 5.161-5.484 9.352-7.411 3.445-24.033 4.324-24.307-.422-.703-12.27 8.747-8.543 8.065-11.616-.619-2.77-4.852-5.484-7.636-12.262-2.44-5.907-33.469-51.258 8.606-44.53 1.547-.316-10.969-40.077-50.344-40.654s-38.13 48.41-38.13 48.41" }), _jsx("path", { stroke: "#fff", strokeLinejoin: "round", strokeWidth: 5.034, d: "M117.08 148.869c-5.484 6.131-3.867 7.207-14.835 9.464-11.096 2.285-4.57 6.356-.324 7.425 5.161 1.294 17.1 3.122 25.172-8.178 2.461-3.445-.014-8.929-3.389-10.321-1.631-.675-3.811-1.519-6.609 1.617z" }), _jsx("path", { stroke: "#fff", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 5.034, d: "M116.722 148.763c-.563-3.607 1.181-7.889 3.044-12.909 2.799-7.523 9.254-15.047 4.093-38.932-3.846-17.79-29.672-3.706-29.672-1.294s1.167 12.235-.422 23.66c-2.088 14.921 9.492 27.535 22.823 26.248" }), _jsx("path", { fill: "#fff", stroke: "#fff", strokeWidth: 1.68, d: "M110.577 95.27c-.12.822 1.511 3.023 3.628 3.318 2.116.296 3.923-1.42 4.043-2.25.119-.83-1.512-1.73-3.628-2.025s-3.938.14-4.043.956Z" }), _jsx("path", { fill: "#fff", stroke: "#fff", strokeWidth: 0.837, d: "M175.011 93.59c.112.822-1.512 3.022-3.628 3.318-2.117.295-3.938-1.42-4.043-2.25-.106-.83 1.512-1.73 3.628-2.025s3.937.14 4.043.956Z" }), _jsx("path", { stroke: "#fff", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 5.034, d: "M182.577 87.887c.351 6.469-1.393 10.863-1.618 17.747-.323 9.998 4.768 21.445-2.904 32.906" })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconReact: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconReact = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, rx: 60 }), _jsx("path", { fill: "#00d8ff", d: "M128.001 146.951c10.304 0 18.656-8.353 18.656-18.656s-8.352-18.656-18.656-18.656-18.656 8.353-18.656 18.656 8.353 18.656 18.656 18.656" }), _jsx("path", { stroke: "#00d8ff", strokeWidth: 8.911, d: "M128.002 90.363c25.048 0 48.317 3.594 65.862 9.635C215.003 107.275 228 118.306 228 128.295c0 10.409-13.774 22.128-36.475 29.649-17.162 5.686-39.746 8.654-63.523 8.654-24.378 0-47.463-2.786-64.819-8.717C41.225 150.376 28 138.506 28 128.295c0-9.908 12.41-20.854 33.252-28.12 17.61-6.14 41.453-9.812 66.746-9.812z", clipRule: "evenodd" }), _jsx("path", { stroke: "#00d8ff", strokeWidth: 8.911, d: "M94.981 109.438c12.514-21.698 27.251-40.06 41.249-52.24 16.864-14.677 32.914-20.425 41.566-15.436 9.017 5.2 12.288 22.988 7.463 46.41-3.645 17.707-12.359 38.753-24.238 59.351-12.179 21.118-26.124 39.724-39.931 51.792-17.471 15.272-34.362 20.799-43.207 15.698-8.583-4.946-11.865-21.167-7.747-42.852 3.479-18.323 12.21-40.812 24.841-62.723z", clipRule: "evenodd" }), _jsx("path", { stroke: "#00d8ff", strokeWidth: 8.911, d: "M95.012 147.578c-12.549-21.674-21.093-43.616-24.659-61.826-4.293-21.941-1.258-38.716 7.387-43.72 9.009-5.216 26.052.834 43.934 16.712 13.52 12.004 27.403 30.061 39.316 50.639 12.214 21.098 21.368 42.473 24.929 60.461 4.506 22.764.859 40.157-7.978 45.272-8.574 4.964-24.265-.291-40.996-14.689-14.136-12.164-29.26-30.959-41.933-52.849Z", clipRule: "evenodd" })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconReactRouter: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconReactRouter = (props) => _jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 602 360", ...props, children: [_jsx("path", { fill: "#F44250", d: "M481.36 180c0 16.572-6.722 31.572-17.603 42.42C452.875 233.28 437.845 240 421.24 240s-31.635 6.708-42.505 17.568c-10.882 10.86-17.615 25.86-17.615 42.432s-6.722 31.572-17.603 42.42C332.635 353.28 317.605 360 301 360s-31.635-6.72-42.505-17.58c-10.882-10.848-17.615-25.848-17.615-42.42s6.733-31.572 17.615-42.432C269.365 246.708 284.395 240 301 240s31.635-6.72 42.517-17.58c10.881-10.848 17.603-25.848 17.603-42.42 0-33.144-26.91-60-60.12-60-16.605 0-31.635-6.72-42.505-17.58C247.613 91.572 240.88 76.572 240.88 60s6.733-31.572 17.615-42.432C269.365 6.708 284.395 0 301 0c33.21 0 60.12 26.856 60.12 60 0 16.572 6.733 31.572 17.615 42.42 10.87 10.86 25.9 17.58 42.505 17.58 33.21 0 60.12 26.856 60.12 60" }), _jsx("path", { fill: "#fff", d: "M240.88 180c0-33.138-26.917-60-60.12-60s-60.12 26.862-60.12 60c0 33.137 26.917 60 60.12 60s60.12-26.863 60.12-60M120.64 300c0-33.137-26.917-60-60.12-60C27.316 240 .4 266.863.4 300s26.917 60 60.12 60 60.12-26.862 60.12-60M601.6 300c0-33.137-26.917-60-60.12-60s-60.12 26.863-60.12 60 26.917 60 60.12 60 60.12-26.862 60.12-60" })] });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconReactjs: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconReactjs = (props) => _jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 100 100", width: "1em", height: "1em", ...props, children: [_jsx("path", { fill: "#61DAFB", d: "M50.307 58.817a8.816 8.816 0 1 0 0-17.632 8.816 8.816 0 0 0 0 17.632" }), _jsx("path", { stroke: "#61DAFB", strokeWidth: 5, d: "M50.307 68.063c26.126 0 47.306-8.087 47.306-18.062s-21.18-18.063-47.306-18.063C24.18 31.938 3 40.025 3 50.001s21.18 18.062 47.307 18.062Z" }), _jsx("path", { stroke: "#61DAFB", strokeWidth: 5, d: "M34.664 59.032C47.727 81.658 65.321 95.957 73.96 90.969c8.64-4.988 5.053-27.373-8.01-50C52.885 18.343 35.291 4.044 26.652 9.032s-5.052 27.373 8.011 50Z" }), _jsx("path", { stroke: "#61DAFB", strokeWidth: 5, d: "M34.664 40.97c-13.063 22.626-16.65 45.011-8.01 50 8.638 4.987 26.232-9.312 39.295-31.938 13.064-22.627 16.65-45.012 8.01-50-8.638-4.988-26.232 9.31-39.295 31.937Z" })] });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconRedux: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconRedux = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, rx: 60 }), _jsx("path", { fill: "#764abc", d: "M166.579 165.599c7.381-.764 12.98-7.127 12.725-14.762-.254-7.635-6.617-13.743-14.252-13.743h-.509c-7.89.254-13.998 6.871-13.744 14.761.255 3.818 1.782 7.126 4.072 9.417-8.653 17.052-21.887 29.523-41.739 39.958-13.489 7.126-27.487 9.671-41.485 7.89-11.453-1.527-20.36-6.618-25.96-15.016-8.144-12.471-8.907-25.96-2.036-39.449 4.836-9.672 12.471-16.798 17.307-20.361-1.018-3.308-2.545-8.908-3.309-12.98-36.903 26.724-33.086 62.864-21.888 79.916 8.4 12.725 25.451 20.615 44.285 20.615 5.09 0 10.18-.509 15.27-1.782 32.578-6.362 57.265-25.705 71.263-54.464" }), _jsx("path", { fill: "#764abc", d: "M211.372 134.04c-19.342-22.652-47.847-35.122-80.424-35.122h-4.072c-2.291-4.582-7.127-7.636-12.471-7.636h-.509c-7.89.255-13.998 6.872-13.744 14.762.255 7.635 6.617 13.743 14.253 13.743h.509c5.599-.254 10.435-3.817 12.471-8.653h4.581c19.342 0 37.667 5.599 54.21 16.543 12.725 8.399 21.888 19.343 26.978 32.577 4.327 10.689 4.072 21.124-.509 30.032-7.126 13.489-19.088 20.87-34.868 20.87-10.18 0-19.851-3.054-24.942-5.345-2.799 2.545-7.889 6.617-11.452 9.162 10.943 5.09 22.142 7.89 32.831 7.89 24.433 0 42.503-13.489 49.375-26.978 7.381-14.761 6.872-40.212-12.217-61.845" }), _jsx("path", { fill: "#764abc", d: "M82.082 169.926c.255 7.635 6.617 13.743 14.253 13.743h.509c7.889-.255 13.998-6.872 13.743-14.762-.254-7.635-6.617-13.743-14.252-13.743h-.51c-.508 0-1.272 0-1.78.255-10.436-17.307-14.762-36.141-13.235-56.501 1.018-15.27 6.108-28.505 15.016-39.45 7.38-9.416 21.633-13.997 31.304-14.252 26.978-.509 38.431 33.086 39.194 46.576 3.309.763 8.908 2.544 12.726 3.817C175.996 54.38 150.545 33 126.112 33c-22.906 0-44.03 16.543-52.429 40.976-11.707 32.577-4.072 63.881 10.18 88.569-1.272 1.781-2.035 4.581-1.78 7.381" })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconSequelize: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconSequelize = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, rx: 60 }), _jsx("path", { fill: "#2f406a", d: "M191.959 91.979v72.006l-63.866 35.849-.587.512v27.142l.587.512 89.92-49.727V78h-.858l-25.353 13.576v.561" }), _jsx("path", { fill: "#2379bd", d: "m63.616 164.406 64.523 35.641V228L37 178V78h.917l25.434 14.103.268.822v71.794" }), _jsx("path", { fill: "#03afef", d: "M63.785 92.557 37 77.837 127.751 28l90.262 49.631-26.09 13.954-64.286-34.91-63.96 35.78" }), _jsx("path", { fill: "#2f406a", d: "m126.944 155.848-.703-.658v-26.717l.703-.356v-.657l24.486-13.384h.76v27.579l-25.408 14.095" }), _jsx("path", { fill: "#2379bd", d: "M101.139 143.086v-29.01h.707l25.027 13.759v28.646l-25.949-13.398" }), _jsx("path", { fill: "#03afef", d: "m126.66 99.675-25.103 14.557 25.53 14.401 25.103-14.346-25.534-14.768" }), _jsx("path", { fill: "#2f406a", d: "m95.897 174.203-.67-.667v-27.142l.67-.36v-.667l23.292-13.569h.722v27.962l-24.168 14.289" }), _jsx("path", { fill: "#2379bd", d: "M69.911 160.804v-29.006h.712l25.238 13.759v28.646l-25.946-13.399" }), _jsx("path", { fill: "#03afef", d: "M95.068 117.292 69.91 131.798l25.532 14.557 25.101-14.347-25.531-14.767" }), _jsx("path", { fill: "#2f406a", d: "m159.855 174.836-.703-.657v-26.737l.703-.354v-.658l24.487-13.367h.759v27.545l-25.408 14.076" }), _jsx("path", { fill: "#2379bd", d: "M134.578 161.431v-29h.815l25.025 13.759v28.646l-25.95-13.405" }), _jsx("path", { fill: "#03afef", d: "m159.889 117.874-24.788 14.24 25.213 14.241 24.787-14.035z" }), _jsx("path", { fill: "#2f406a", d: "m128.842 192.557-.703-.667v-27.144l.703-.36v-.667l24.487-13.567h.76v27.957l-25.409 14.288" }), _jsx("path", { fill: "#2379bd", d: "M102.823 179.108v-28.956h.712l25.237 13.759v28.646l-25.946-13.452" }), _jsx("path", { fill: "#03afef", d: "m128.268 135.602-25.445 14.338 25.877 14.136 25.389-14.136-25.824-14.345" }), _jsx("path", { fill: "#2f406a", d: "m126.944 117.874-.703-.669V90.101l.703-.361v-.669L151.43 75.47h.76v28.03z" }), _jsx("path", { fill: "#2379bd", d: "M101.139 104.546V75.469h.707l25.027 13.792v28.613l-25.949-13.432" }), _jsx("path", { fill: "#03afef", d: "m126.658 61.544-25.101 14.24 25.532 14.241 25.101-14.034z" }), _jsx("path", { fill: "#2f406a", d: "m95.897 135.595-.67-.674v-27.62l.67-.364v-.674l23.292-13.706h.722v28.244l-24.168 14.433" }), _jsx("path", { fill: "#2379bd", d: "M69.911 122.199v-29.01h.712l25.238 13.76v28.646l-25.946-13.399" }), _jsx("path", { fill: "#03afef", d: "M95.068 78.633 69.91 92.797l25.532 14.317 25.101-14.008-25.531-14.42" }), _jsx("path", { fill: "#2f406a", d: "m159.855 136.861-.703-.678v-27.529l.703-.367v-.678l24.487-13.786h.759v28.411l-25.408 14.518" }), _jsx("path", { fill: "#2379bd", d: "M135.101 123.402v-29.58h.783l23.901 13.931v29.108z" }), _jsx("path", { fill: "#03afef", d: "m159.889 79.272-24.788 14.235 25.213 14.24 24.787-14.034-25.212-14.447" }), _jsx("path", { fill: "#2f406a", d: "m128.842 153.946-.703-.679V125.78l.703-.367v-.68l24.487-13.821h.76v28.482l-25.247 14.556" }), _jsx("path", { fill: "#2379bd", d: "M102.823 140.451v-29.539h.712l25.237 14.014v29.024z" }), _jsx("path", { fill: "#03afef", d: "m128.294 96.987-25.471 14.215 25.85 14.266 25.416-14.059-25.792-14.415" })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconTailwindcss: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconTailwindcss = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, rx: 60 }), _jsx("path", { fill: "url(#prefix__a)", fillRule: "evenodd", d: "M83 110q9-36 45-36c36 0 40.5 27 58.5 31.5q18 4.502 31.5-13.5-9 36-45 36c-36 0-40.5-27-58.5-31.5Q96.5 92 83 110m-45 54q9-36 45-36c36 0 40.5 27 58.5 31.5q18 4.502 31.5-13.5-9 36-45 36c-36 0-40.5-27-58.5-31.5q-18-4.502-31.5 13.5", clipRule: "evenodd" }), _jsx("defs", { children: _jsxs("linearGradient", { id: "prefix__a", x1: 86.5, x2: 163.5, y1: 74, y2: 185.5, gradientUnits: "userSpaceOnUse", children: [_jsx("stop", { stopColor: "#32b1c1" }), _jsx("stop", { offset: 1, stopColor: "#14c6b7" })] }) })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconTypescript: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconTypescript = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#007acc", rx: 60 }), _jsx("path", { fill: "#fff", d: "m56.611 128.849-.081 10.484h33.32v94.679h23.569v-94.679h33.32v-10.281c0-5.689-.121-10.443-.284-10.565-.122-.162-20.399-.244-44.983-.203l-44.739.122zm149.956-10.741c6.501 1.626 11.459 4.511 16.01 9.224 2.357 2.52 5.851 7.112 6.136 8.209.081.325-11.053 7.802-17.798 11.987-.244.163-1.22-.894-2.317-2.519-3.291-4.795-6.745-6.868-12.028-7.233-7.761-.529-12.759 3.535-12.718 10.321 0 1.991.284 3.169 1.097 4.795 1.706 3.535 4.876 5.648 14.832 9.955 18.326 7.884 26.168 13.085 31.045 20.48 5.445 8.249 6.664 21.415 2.966 31.208-4.063 10.646-14.141 17.879-28.323 20.277-4.388.772-14.791.65-19.504-.203-10.281-1.829-20.033-6.908-26.047-13.572-2.357-2.601-6.949-9.387-6.664-9.875.121-.162 1.178-.812 2.356-1.503 1.138-.65 5.446-3.129 9.509-5.486l7.355-4.267 1.544 2.276c2.154 3.291 6.867 7.802 9.712 9.305 8.167 4.308 19.383 3.698 24.909-1.259 2.357-2.154 3.332-4.389 3.332-7.68 0-2.967-.366-4.267-1.91-6.502-1.991-2.844-6.054-5.242-17.595-10.24-13.206-5.689-18.895-9.224-24.096-14.832-3.007-3.25-5.852-8.452-7.03-12.8-.975-3.616-1.219-12.678-.447-16.335 2.722-12.759 12.353-21.658 26.25-24.3 4.511-.853 14.994-.528 19.424.569" })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconVercel: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconVercel = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, rx: 60 }), _jsx("path", { fill: "#000", d: "m128 34 95 164.853H33z" })] }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconZod: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ export const IconZod = (props) => _jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 100 100", width: "1em", height: "1em", ...props, children: [_jsx("path", { fill: "#142641", d: "M93.22 31.493 77.406 14.984H23.34L6.746 31.493l41.709 50.222z" }), _jsx("path", { fill: "#274D82", fillRule: "evenodd", d: "m56.14 12.837-2.932 1.693-.713-1.236-1.707.985-.834-1.442-2.592 1.496-.864-1.496-.307.177-.945-1.635-.437.253-.804-1.392-38.5 22.227 1.24 2.15.437-.253.805 1.392.307-.177.945 1.636.377-.219.6 1.04.145-.084.57.987 1.24 2.15 45.21-26.103zm16.336 43.652H55.658v1.664H34.403l54.313-31.358-6.04-10.462-1.212.7-.833-1.442-13.584 7.844.832 1.44L22.6 51.017l6.041 10.463.242-.14v3.221h4.41v5.311h31.43v-5.31h4.733v-6.269h3.02z", clipRule: "evenodd" }), _jsx("path", { fill: "#3068B7", fillRule: "evenodd", d: "M79.533 10h-58.25L0 31.173l48.318 58.189 3.855-4.325L100 31.37zm-2.127 4.985L93.22 31.493 48.455 81.716 6.745 31.493 23.34 14.985z", clipRule: "evenodd" })] });
@@ -0,0 +1,24 @@
1
+ export { IconCss } from "./Css";
2
+ export { IconExpressjs } from "./Expressjs";
3
+ export { IconFramerMotion } from "./FramerMotion";
4
+ export { IconGit } from "./Git";
5
+ export { IconGithub } from "./Github";
6
+ export { IconHtml } from "./Html";
7
+ export { IconJavascript } from "./Javascript";
8
+ export { IconLinkedin } from "./Linkedin";
9
+ export { IconMongodb } from "./Mongodb";
10
+ export { IconMongoose } from "./Mongoose";
11
+ export { IconNetlify } from "./Netlify";
12
+ export { IconNextjs } from "./Nextjs";
13
+ export { IconNodejs } from "./Nodejs";
14
+ export { IconNpm } from "./Npm";
15
+ export { IconPnpm } from "./Pnpm";
16
+ export { IconPostgresql } from "./Postgresql";
17
+ export { IconReact } from "./React";
18
+ export { IconReactRouter } from "./ReactRouter";
19
+ export { IconRedux } from "./Redux";
20
+ export { IconSequelize } from "./Sequelize";
21
+ export { IconTailwindcss } from "./Tailwindcss";
22
+ export { IconTypescript } from "./Typescript";
23
+ export { IconVercel } from "./Vercel";
24
+ export { IconZod } from "./Zod";
@@ -0,0 +1,24 @@
1
+ export { IconCss } from "./Css";
2
+ export { IconExpressjs } from "./Expressjs";
3
+ export { IconFramerMotion } from "./FramerMotion";
4
+ export { IconGit } from "./Git";
5
+ export { IconGithub } from "./Github";
6
+ export { IconHtml } from "./Html";
7
+ export { IconJavascript } from "./Javascript";
8
+ export { IconLinkedin } from "./Linkedin";
9
+ export { IconMongodb } from "./Mongodb";
10
+ export { IconMongoose } from "./Mongoose";
11
+ export { IconNetlify } from "./Netlify";
12
+ export { IconNextjs } from "./Nextjs";
13
+ export { IconNodejs } from "./Nodejs";
14
+ export { IconNpm } from "./Npm";
15
+ export { IconPnpm } from "./Pnpm";
16
+ export { IconPostgresql } from "./Postgresql";
17
+ export { IconReact } from "./React";
18
+ export { IconReactRouter } from "./ReactRouter";
19
+ export { IconRedux } from "./Redux";
20
+ export { IconSequelize } from "./Sequelize";
21
+ export { IconTailwindcss } from "./Tailwindcss";
22
+ export { IconTypescript } from "./Typescript";
23
+ export { IconVercel } from "./Vercel";
24
+ export { IconZod } from "./Zod";
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconArrow: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ export const IconArrow = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "1em", height: "1em", ...props, children: _jsx("path", { fill: "currentColor", d: "M10 22 0 12 10 2l1.775 1.775L3.55 12l8.225 8.225z" }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconArrowBadgeDown: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ export const IconArrowBadgeDown = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "1em", height: "1em", ...props, children: _jsx("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M17 13V7l-5 4-5-4v6l5 4z" }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconArrowBadgeLeft: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ export const IconArrowBadgeLeft = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "1em", height: "1em", ...props, children: _jsx("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M11 17h6l-4-5 4-5h-6l-4 5z" }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconArrowBadgeRight: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ export const IconArrowBadgeRight = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "1em", height: "1em", ...props, children: _jsx("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M13 7H7l4 5-4 5h6l4-5z" }) });
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconArrowBadgeUp: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ export const IconArrowBadgeUp = (props) => _jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "1em", height: "1em", ...props, children: _jsx("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M17 11v6l-5-4-5 4v-6l5-4z" }) });
@@ -0,0 +1,4 @@
1
+ export { IconArrowBadgeDown } from "./ArrowBadgeDown";
2
+ export { IconArrowBadgeLeft } from "./ArrowBadgeLeft";
3
+ export { IconArrowBadgeRight } from "./ArrowBadgeRight";
4
+ export { IconArrowBadgeUp } from "./ArrowBadgeUp";
@@ -0,0 +1,4 @@
1
+ export { IconArrowBadgeDown } from "./ArrowBadgeDown";
2
+ export { IconArrowBadgeLeft } from "./ArrowBadgeLeft";
3
+ export { IconArrowBadgeRight } from "./ArrowBadgeRight";
4
+ export { IconArrowBadgeUp } from "./ArrowBadgeUp";
package/dist/index.d.ts CHANGED
@@ -1 +1,2 @@
1
- export * from "./icons";
1
+ export * from "./components/brands";
2
+ export * from "./components/ui";
package/dist/index.js CHANGED
@@ -1 +1,2 @@
1
- export * from "./icons";
1
+ export * from "./components/brands";
2
+ export * from "./components/ui";
@@ -0,0 +1,5 @@
1
+ import { SVGProps } from "react";
2
+ export interface IconProps extends SVGProps<SVGSVGElement> {
3
+ size?: number | string;
4
+ color?: string;
5
+ }
package/dist/types.js ADDED
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,27 +1,50 @@
1
- {
2
- "name": "@lukkas98/icons",
3
- "version": "2.0.0",
4
- "description": "Iconos SVG como componentes React",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "sideEffects": false,
9
- "author": "lukkas98",
10
- "license": "MIT",
11
- "files": [
12
- "dist",
13
- "README.md",
14
- "LICENSE",
15
- "THIRD_PARTY_LICENSES.md"
16
- ],
17
- "scripts": {
18
- "build": "tsc"
19
- },
20
- "peerDependencies": {
21
- "react": ">=19"
22
- },
23
- "devDependencies": {
24
- "@types/react": ">=19",
25
- "typescript": "^5.9.3"
26
- }
27
- }
1
+ {
2
+ "name": "@lukkas98/icons",
3
+ "version": "3.0.0",
4
+ "description": "Iconos SVG como componentes React",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "sideEffects": false,
10
+ "author": "lukkas98",
11
+ "license": "MIT",
12
+ "files": [
13
+ "dist",
14
+ "README.md",
15
+ "LICENSE",
16
+ "THIRD_PARTY_LICENSES.md"
17
+ ],
18
+ "exports": {
19
+ ".": {
20
+ "types": "./dist/index.d.ts",
21
+ "import": "./dist/index.js"
22
+ },
23
+ "./ui": {
24
+ "types": "./dist/components/ui/index.d.ts",
25
+ "import": "./dist/components/ui/index.js"
26
+ },
27
+ "./brands": {
28
+ "types": "./dist/components/brands/index.d.ts",
29
+ "import": "./dist/components/brands/index.js"
30
+ }
31
+ },
32
+ "scripts": {
33
+ "build:icons": "node src/scripts/buildIcons.js && node src/scripts/generateIndex.js && tsc"
34
+ },
35
+ "peerDependencies": {
36
+ "react": ">=19"
37
+ },
38
+ "devDependencies": {
39
+ "@svgr/cli": "^8.1.0",
40
+ "@svgr/core": "^8.1.0",
41
+ "@svgr/plugin-jsx": "^8.1.0",
42
+ "@svgr/plugin-svgo": "^8.1.0",
43
+ "@types/react": ">=19",
44
+ "typescript": "^5.9.3"
45
+ },
46
+ "repository": {
47
+ "url": "git+https://github.com/Lukkas98/icons-lukkas98.git",
48
+ "type": "git"
49
+ }
50
+ }
@@ -1,25 +0,0 @@
1
- import type { SVGProps } from "react";
2
- export declare function JavascriptIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
3
- export declare function TypescriptIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
4
- export declare function HtmlIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
5
- export declare function CssIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
6
- export declare function NodeJsIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
7
- export declare function MongodbIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
8
- export declare function PostgresqlIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
9
- export declare function NextjsIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
10
- export declare function TailwindcssIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
11
- export declare function ExpressIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
12
- export declare function SequelizeIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
13
- export declare function ReactIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
14
- export declare function ReduxIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
15
- export declare function MongooseIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
16
- export declare function ReactRouterIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
17
- export declare function ZodIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
18
- export declare function FramerMotionIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
19
- export declare function NetlifyIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
20
- export declare function VercelIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
21
- export declare function NpmIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
22
- export declare function PnpmIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
23
- export declare function GitIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
24
- export declare function GithubIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
25
- export declare function LinkedinIcon(props: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
@@ -1,73 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- export function JavascriptIcon(props) {
3
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#f0db4f", rx: 60 }), _jsx("path", { fill: "#323330", d: "m67.312 213.932l19.59-11.856c3.78 6.701 7.218 12.371 15.465 12.371c7.905 0 12.889-3.092 12.889-15.12v-81.798h24.058v82.138c0 24.917-14.606 36.259-35.916 36.259c-19.245 0-30.416-9.967-36.087-21.996m85.07-2.576l19.588-11.341c5.157 8.421 11.859 14.607 23.715 14.607c9.969 0 16.325-4.984 16.325-11.858c0-8.248-6.53-11.17-17.528-15.98l-6.013-2.579c-17.357-7.388-28.871-16.668-28.871-36.258c0-18.044 13.748-31.792 35.229-31.792c15.294 0 26.292 5.328 34.196 19.247l-18.731 12.029c-4.125-7.389-8.591-10.31-15.465-10.31c-7.046 0-11.514 4.468-11.514 10.31c0 7.217 4.468 10.139 14.778 14.608l6.014 2.577c20.449 8.765 31.963 17.699 31.963 37.804c0 21.654-17.012 33.51-39.867 33.51c-22.339 0-36.774-10.654-43.819-24.574" })] }) }));
4
- }
5
- export function TypescriptIcon(props) {
6
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#007acc", rx: 60 }), _jsx("path", { fill: "#fff", d: "m56.611 128.849l-.081 10.484h33.32v94.679h23.569v-94.679h33.32v-10.281c0-5.689-.121-10.443-.284-10.565c-.122-.162-20.399-.244-44.983-.203l-44.739.122zm149.956-10.741c6.501 1.626 11.459 4.511 16.01 9.224c2.357 2.52 5.851 7.112 6.136 8.209c.081.325-11.053 7.802-17.798 11.987c-.244.163-1.22-.894-2.317-2.519c-3.291-4.795-6.745-6.868-12.028-7.233c-7.761-.529-12.759 3.535-12.718 10.321c0 1.991.284 3.169 1.097 4.795c1.706 3.535 4.876 5.648 14.832 9.955c18.326 7.884 26.168 13.085 31.045 20.48c5.445 8.249 6.664 21.415 2.966 31.208c-4.063 10.646-14.141 17.879-28.323 20.277c-4.388.772-14.791.65-19.504-.203c-10.281-1.829-20.033-6.908-26.047-13.572c-2.357-2.601-6.949-9.387-6.664-9.875c.121-.162 1.178-.812 2.356-1.503c1.138-.65 5.446-3.129 9.509-5.486l7.355-4.267l1.544 2.276c2.154 3.291 6.867 7.802 9.712 9.305c8.167 4.308 19.383 3.698 24.909-1.259c2.357-2.154 3.332-4.389 3.332-7.68c0-2.967-.366-4.267-1.91-6.502c-1.991-2.844-6.054-5.242-17.595-10.24c-13.206-5.689-18.895-9.224-24.096-14.832c-3.007-3.25-5.852-8.452-7.03-12.8c-.975-3.616-1.219-12.678-.447-16.335c2.722-12.759 12.353-21.658 26.25-24.3c4.511-.853 14.994-.528 19.424.569" })] }) }));
7
- }
8
- export function HtmlIcon(props) {
9
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#e14e1d", rx: 60 }), _jsx("path", { fill: "#fff", d: "m48 38l8.61 96.593h110.71l-3.715 41.43l-35.646 9.638l-35.579-9.624l-2.379-26.602H57.94l4.585 51.281l65.427 18.172l65.51-18.172l8.783-98.061H85.824l-2.923-32.71h122.238L208 38z" }), _jsx("path", { fill: "#ebebeb", d: "M128 38H48l8.61 96.593H128v-31.938H85.824l-2.923-32.71H128zm0 147.647l-.041.014l-35.579-9.624l-2.379-26.602H57.94l4.585 51.281l65.427 18.172l.049-.014z" })] }) }));
10
- }
11
- export function CssIcon(props) {
12
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#0277bd", rx: 60 }), _jsx("path", { fill: "#ebebeb", d: "m53.753 102.651l2.862 31.942h71.481v-31.942zM128.095 38H48l2.904 31.942h77.191zm0 180.841v-33.233l-.14.037l-35.574-9.605l-2.274-25.476H58.042l4.475 50.154l65.431 18.164z" }), _jsx("path", { fill: "#fff", d: "m167.318 134.593l-3.708 41.426l-35.625 9.616v33.231l65.483-18.148l.48-5.397l7.506-84.092l.779-8.578L208 38h-80.015v31.942h45.009l-2.906 32.709h-42.103v31.942z" })] }) }));
13
- }
14
- export function NodeJsIcon(props) {
15
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#fffff", rx: 60 }), _jsx("path", { fill: "#81cd39", d: "M119.878 31.116c4.919-2.815 11.325-2.828 16.239 0c24.722 13.97 49.452 27.917 74.17 41.895c4.65 2.619 7.759 7.793 7.712 13.15v84.045c.035 5.579-3.382 10.877-8.287 13.436c-24.641 13.893-49.27 27.802-73.907 41.695c-5.019 2.87-11.554 2.649-16.418-.457c-7.387-4.282-14.787-8.544-22.175-12.822c-1.51-.9-3.212-1.616-4.278-3.08c.943-1.27 2.628-1.428 3.997-1.983c3.083-.981 5.916-2.555 8.748-4.082c.717-.49 1.591-.302 2.278.136c6.317 3.622 12.579 7.35 18.917 10.937c1.352.781 2.721-.256 3.877-.9c24.18-13.667 48.39-27.281 72.567-40.952c.896-.431 1.391-1.382 1.318-2.363c.017-27.725.004-55.454.009-83.18c.102-1.112-.542-2.136-1.549-2.592c-24.555-13.829-49.099-27.678-73.65-41.51a2.56 2.56 0 0 0-2.892-.005c-24.552 13.837-49.09 27.7-73.642 41.527c-1.003.457-1.676 1.464-1.557 2.58c.005 27.726 0 55.455 0 83.184a2.35 2.35 0 0 0 1.336 2.334c6.551 3.715 13.111 7.404 19.667 11.107c3.694 1.987 8.228 3.169 12.298 1.646c3.59-1.288 6.107-4.953 6.039-8.765c.034-27.563-.017-55.13.025-82.69c-.09-1.223 1.071-2.234 2.261-2.118c3.148-.022 6.3-.043 9.448.008c1.314-.03 2.218 1.288 2.056 2.52c-.013 27.738.034 55.476-.021 83.213c.008 7.393-3.029 15.437-9.867 19.054c-8.423 4.363-18.835 3.438-27.157-.746c-7.204-3.596-14.08-7.84-21.156-11.692c-4.918-2.545-8.318-7.864-8.283-13.439V86.161c-.052-5.468 3.182-10.736 7.975-13.317c24.637-13.903 49.27-27.818 73.902-41.728" }), _jsx("path", { fill: "#81cd39", d: "M141.372 89.335c10.745-.692 22.248-.41 31.917 4.884c7.487 4.056 11.637 12.57 11.769 20.887c-.209 1.121-1.382 1.74-2.453 1.663c-3.117-.004-6.236.043-9.353-.021c-1.323.051-2.091-1.168-2.257-2.337c-.896-3.98-3.067-7.921-6.812-9.841c-5.75-2.878-12.416-2.733-18.686-2.673c-4.577.242-9.499.639-13.377 3.33c-2.977 2.039-3.881 6.155-2.819 9.47c1.002 2.38 3.749 3.148 5.998 3.856c12.949 3.387 26.671 3.049 39.373 7.506c5.259 1.817 10.403 5.35 12.203 10.856c2.355 7.38 1.323 16.2-3.928 22.124c-4.258 4.875-10.459 7.529-16.644 8.97c-8.228 1.835-16.767 1.882-25.123 1.067c-7.857-.896-16.034-2.96-22.099-8.313c-5.187-4.504-7.72-11.522-7.469-18.294c.06-1.144 1.199-1.942 2.295-1.848c3.139-.025 6.279-.034 9.418.005c1.255-.09 2.184.994 2.249 2.176c.578 3.791 2.003 7.771 5.31 10.018c6.38 4.117 14.387 3.835 21.693 3.95c6.053-.268 12.848-.349 17.787-4.35c2.606-2.282 3.378-6.1 2.674-9.384c-.763-2.773-3.664-4.065-6.155-4.91c-12.783-4.043-26.659-2.576-39.318-7.149c-5.14-1.816-10.11-5.25-12.084-10.53c-2.755-7.473-1.493-16.717 4.308-22.44c5.656-5.695 13.82-7.888 21.583-8.672" })] }) }));
16
- }
17
- export function MongodbIcon(props) {
18
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#023430", rx: 60 }), _jsx("path", { fill: "#10aa50", d: "M171.173 107.591c-10.537-46.481-32.497-58.855-38.099-67.602A99 99 0 0 1 126.949 28c-.296 4.13-.84 6.73-4.35 9.862c-7.047 6.283-36.977 30.673-39.496 83.486c-2.347 49.242 36.2 79.605 41.292 82.744c3.916 1.927 8.685.041 11.012-1.728c18.581-12.752 43.969-46.75 35.786-94.773" }), _jsx("path", { fill: "#b8c4c2", d: "M128.545 177.871c-.97 12.188-1.665 19.27-4.129 26.235c0 0 1.617 11.603 2.753 23.894h4.019a224 224 0 0 1 4.384-25.732c-5.203-2.56-6.827-13.702-7.027-24.397" }), _jsx("path", { fill: "#12924f", d: "M135.565 202.275c-5.258-2.429-6.779-13.806-7.013-24.404a500 500 0 0 0 1.136-52.545c-.276-9.194.13-85.158-2.265-96.28a92 92 0 0 0 5.651 10.936c5.602 8.754 27.569 21.128 38.099 67.609c8.203 47.941-17.047 81.849-35.608 94.684" })] }) }));
19
- }
20
- export function PostgresqlIcon(props) {
21
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#fffff", rx: 60 }), _jsx("path", { fill: "#336791", d: "M203.48 148.688c-20.32 4.19-21.796-2.693-21.796-2.693c21.466-31.852 30.445-72.282 22.696-82.175c-21.121-27-57.691-14.224-58.303-13.893l-.197.035a72.5 72.5 0 0 0-13.563-1.414c-9.197-.14-16.172 2.412-21.473 6.427c0 0-65.236-26.873-62.199 33.8c.647 12.909 18.493 97.734 39.797 72.07c7.847-9.436 15.37-17.361 15.37-17.361c3.727 2.482 8.206 3.748 12.896 3.291l.365-.309a14.2 14.2 0 0 0 .148 3.642c-5.484 6.131-3.867 7.207-14.836 9.464c-11.095 2.285-4.57 6.356-.323 7.425c5.161 1.294 17.1 3.122 25.172-8.17l-.324 1.286c2.152 1.723 3.656 11.201 3.403 19.793c-.253 8.593-.422 14.485 1.266 19.097s3.375 14.977 17.789 11.953c12.045-2.58 18.281-9.281 19.16-20.432c.619-7.932 2.011-6.765 2.11-13.852l1.125-3.361c1.286-10.758.21-14.224 7.628-12.607l1.807.162c5.464.246 12.615-.879 16.805-2.827c9.035-4.19 14.393-11.194 5.484-9.351z" }), _jsx("path", { stroke: "#fff", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 5.034, d: "M146.07 48.596c-2.25.703 36.31-14.097 58.233 13.908c7.735 9.893-1.23 50.323-22.697 82.174m-53.508 9.106c-.562 20.011.141 40.162 2.096 45c1.954 4.837 6.152 14.414 20.573 11.334c12.045-2.58 16.432-7.58 18.331-18.612l4.45-35.275zM110.816 53.469S45.537 26.779 48.575 87.45c.647 12.909 18.492 97.734 39.797 72.07c7.776-9.373 14.808-16.706 14.808-16.706z" }), _jsx("path", { stroke: "#fff", strokeLinecap: "round", strokeLinejoin: "bevel", strokeWidth: 5.034, d: "M181.613 144.664s1.407 6.891 21.797 2.686c8.909-1.842 3.544 5.161-5.484 9.352c-7.411 3.445-24.033 4.324-24.307-.422c-.703-12.27 8.747-8.543 8.065-11.616c-.619-2.77-4.852-5.484-7.636-12.262c-2.44-5.907-33.469-51.258 8.606-44.53c1.547-.316-10.969-40.077-50.344-40.654s-38.13 48.41-38.13 48.41" }), _jsx("path", { stroke: "#fff", strokeLinejoin: "round", strokeWidth: 5.034, d: "M117.08 148.869c-5.484 6.131-3.867 7.207-14.835 9.464c-11.096 2.285-4.57 6.356-.324 7.425c5.161 1.294 17.1 3.122 25.172-8.178c2.461-3.445-.014-8.929-3.389-10.321c-1.631-.675-3.811-1.519-6.609 1.617z" }), _jsx("path", { stroke: "#fff", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 5.034, d: "M116.722 148.763c-.563-3.607 1.181-7.889 3.044-12.909c2.799-7.523 9.254-15.047 4.093-38.932c-3.846-17.79-29.672-3.706-29.672-1.294s1.167 12.235-.422 23.66c-2.088 14.921 9.492 27.535 22.823 26.248" }), _jsx("path", { fill: "#fff", stroke: "#fff", strokeWidth: 1.68, d: "M110.577 95.27c-.12.822 1.511 3.023 3.628 3.318c2.116.296 3.923-1.42 4.043-2.25c.119-.83-1.512-1.73-3.628-2.025s-3.938.14-4.043.956Z" }), _jsx("path", { fill: "#fff", stroke: "#fff", strokeWidth: 0.837, d: "M175.011 93.59c.112.822-1.512 3.022-3.628 3.318c-2.117.295-3.938-1.42-4.043-2.25c-.106-.83 1.512-1.73 3.628-2.025s3.937.14 4.043.956Z" }), _jsx("path", { stroke: "#fff", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 5.034, d: "M182.577 87.887c.351 6.469-1.393 10.863-1.618 17.747c-.323 9.998 4.768 21.445-2.904 32.906" })] }) }));
22
- }
23
- export function NextjsIcon(props) {
24
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "fff", rx: 60 }), _jsx("path", { fill: "#000", d: "M121.451 28.054c-.43.039-1.799.176-3.031.273c-28.406 2.561-55.014 17.889-71.867 41.447C37.17 82.873 31.167 97.731 28.9 113.47c-.801 5.494-.899 7.117-.899 14.565c0 7.449.098 9.072.9 14.565c5.434 37.556 32.16 69.111 68.406 80.802c6.491 2.092 13.333 3.519 21.114 4.379c3.031.332 16.129.332 19.16 0c13.431-1.486 24.809-4.809 36.031-10.538c1.72-.879 2.053-1.114 1.818-1.309c-.156-.118-7.488-9.952-16.285-21.838l-15.992-21.603l-20.04-29.658c-11.026-16.305-20.097-29.639-20.176-29.639c-.078-.019-.156 13.158-.195 29.248c-.059 28.172-.078 29.306-.43 29.97c-.508.958-.899 1.349-1.721 1.78c-.625.312-1.173.371-4.125.371h-3.382l-.9-.567a3.65 3.65 0 0 1-1.31-1.427l-.41-.88l.04-39.198l.058-39.218l.606-.763c.313-.41.978-.938 1.447-1.192c.801-.391 1.114-.43 4.496-.43c3.989 0 4.653.156 5.69 1.29c.293.313 11.143 16.657 24.125 36.344a89122 89122 0 0 0 39.452 59.765l15.836 23.989l.802-.528c7.096-4.614 14.604-11.183 20.547-18.026c12.649-14.526 20.802-32.238 23.539-51.124c.801-5.493.899-7.116.899-14.565s-.098-9.071-.899-14.565c-5.435-37.556-32.161-69.11-68.407-80.801c-6.393-2.073-13.196-3.5-20.821-4.36c-1.877-.196-14.8-.41-16.422-.254m40.938 60.489c.938.469 1.701 1.368 1.975 2.306c.156.509.195 11.379.156 35.875l-.059 35.152l-6.197-9.502l-6.217-9.501v-25.552c0-16.52.078-25.807.195-26.257c.313-1.094.997-1.954 1.936-2.463c.801-.41 1.095-.45 4.164-.45c2.894 0 3.402.04 4.047.392" })] }) }));
25
- }
26
- export function TailwindcssIcon(props) {
27
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#242938", rx: 60 }), _jsx("path", { fill: "url(#SVGYCM7xdyn)", fillRule: "evenodd", d: "M83 110q9-36 45-36c36 0 40.5 27 58.5 31.5q18 4.502 31.5-13.5q-9 36-45 36c-36 0-40.5-27-58.5-31.5Q96.5 92 83 110m-45 54q9-36 45-36c36 0 40.5 27 58.5 31.5q18 4.502 31.5-13.5q-9 36-45 36c-36 0-40.5-27-58.5-31.5q-18-4.502-31.5 13.5", clipRule: "evenodd" }), _jsx("defs", { children: _jsxs("linearGradient", { id: "SVGYCM7xdyn", x1: 86.5, x2: 163.5, y1: 74, y2: 185.5, gradientUnits: "userSpaceOnUse", children: [_jsx("stop", { stopColor: "#32b1c1" }), _jsx("stop", { offset: 1, stopColor: "#14c6b7" })] }) })] }) }));
28
- }
29
- export function ExpressIcon(props) {
30
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#fffff", rx: 60 }), _jsx("path", { fill: "#fff", d: "M228 182.937a12.73 12.73 0 0 1-15.791-6.005c-9.063-13.567-19.071-26.522-28.69-39.755l-4.171-5.56c-11.454 15.346-22.908 30.08-33.361 45.371a12.23 12.23 0 0 1-15.012 5.894l42.98-57.659l-39.978-52.1a13.29 13.29 0 0 1 15.847 5.56c9.285 13.568 19.572 26.523 29.802 40.257c10.287-13.623 20.462-26.634 29.97-40.09a11.95 11.95 0 0 1 14.901-5.56l-15.513 20.573c-6.95 9.174-13.789 18.404-21.017 27.356a5.56 5.56 0 0 0 0 8.285c13.289 17.626 26.466 35.307 40.033 53.433M28 124.5c1.168-5.56 1.89-11.621 3.503-17.292c9.619-34.195 48.818-48.43 75.785-27.245c15.791 12.4 19.739 29.97 18.961 49.764H37.286c-1.446 35.363 24.075 56.714 56.713 45.816a33.86 33.86 0 0 0 21.518-23.965c1.724-5.56 4.504-6.505 9.786-4.893a45.15 45.15 0 0 1-21.573 32.972a52.26 52.26 0 0 1-60.884-7.784a54.77 54.77 0 0 1-13.678-32.138c0-1.89-.723-3.781-1.112-5.56A861 861 0 0 1 28 124.5m9.397-2.391h80.456c-.501-25.632-16.681-43.814-38.254-43.98c-24.02-.334-41.201 17.458-42.258 43.869z" })] }) }));
31
- }
32
- export function SequelizeIcon(props) {
33
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#fffff", rx: 60 }), _jsx("path", { fill: "#2f406a", d: "M191.959 91.979v72.006l-63.866 35.849l-.587.512v27.142l.587.512l89.92-49.727V78h-.858l-25.353 13.576v.561" }), _jsx("path", { fill: "#2379bd", d: "m63.616 164.406l64.523 35.641V228L37 178V78h.917l25.434 14.103l.268.822v71.794" }), _jsx("path", { fill: "#03afef", d: "M63.785 92.557L37 77.837L127.751 28l90.262 49.631l-26.09 13.954l-64.286-34.91l-63.96 35.78" }), _jsx("path", { fill: "#2f406a", d: "m126.944 155.848l-.703-.658v-26.717l.703-.356v-.657l24.486-13.384h.76v27.579l-25.408 14.095" }), _jsx("path", { fill: "#2379bd", d: "M101.139 143.086v-29.01h.707l25.027 13.759v28.646l-25.949-13.398" }), _jsx("path", { fill: "#03afef", d: "m126.66 99.675l-25.103 14.557l25.53 14.401l25.103-14.346l-25.534-14.768" }), _jsx("path", { fill: "#2f406a", d: "m95.897 174.203l-.67-.667v-27.142l.67-.36v-.667l23.292-13.569h.722v27.962l-24.168 14.289" }), _jsx("path", { fill: "#2379bd", d: "M69.911 160.804v-29.006h.712l25.238 13.759v28.646l-25.946-13.399" }), _jsx("path", { fill: "#03afef", d: "M95.068 117.292L69.91 131.798l25.532 14.557l25.101-14.347l-25.531-14.767" }), _jsx("path", { fill: "#2f406a", d: "m159.855 174.836l-.703-.657v-26.737l.703-.354v-.658l24.487-13.367h.759v27.545l-25.408 14.076" }), _jsx("path", { fill: "#2379bd", d: "M134.578 161.431v-29h.815l25.025 13.759v28.646l-25.95-13.405" }), _jsx("path", { fill: "#03afef", d: "m159.889 117.874l-24.788 14.24l25.213 14.241l24.787-14.035z" }), _jsx("path", { fill: "#2f406a", d: "m128.842 192.557l-.703-.667v-27.144l.703-.36v-.667l24.487-13.567h.76v27.957l-25.409 14.288" }), _jsx("path", { fill: "#2379bd", d: "M102.823 179.108v-28.956h.712l25.237 13.759v28.646l-25.946-13.452" }), _jsx("path", { fill: "#03afef", d: "m128.268 135.602l-25.445 14.338l25.877 14.136l25.389-14.136l-25.824-14.345" }), _jsx("path", { fill: "#2f406a", d: "m126.944 117.874l-.703-.669V90.101l.703-.361v-.669L151.43 75.47h.76v28.03z" }), _jsx("path", { fill: "#2379bd", d: "M101.139 104.546V75.469h.707l25.027 13.792v28.613l-25.949-13.432" }), _jsx("path", { fill: "#03afef", d: "m126.658 61.544l-25.101 14.24l25.532 14.241l25.101-14.034z" }), _jsx("path", { fill: "#2f406a", d: "m95.897 135.595l-.67-.674v-27.62l.67-.364v-.674l23.292-13.706h.722v28.244l-24.168 14.433" }), _jsx("path", { fill: "#2379bd", d: "M69.911 122.199v-29.01h.712l25.238 13.76v28.646l-25.946-13.399" }), _jsx("path", { fill: "#03afef", d: "M95.068 78.633L69.91 92.797l25.532 14.317l25.101-14.008l-25.531-14.42" }), _jsx("path", { fill: "#2f406a", d: "m159.855 136.861l-.703-.678v-27.529l.703-.367v-.678l24.487-13.786h.759v28.411l-25.408 14.518" }), _jsx("path", { fill: "#2379bd", d: "M135.101 123.402v-29.58h.783l23.901 13.931v29.108z" }), _jsx("path", { fill: "#03afef", d: "m159.889 79.272l-24.788 14.235l25.213 14.24l24.787-14.034l-25.212-14.447" }), _jsx("path", { fill: "#2f406a", d: "m128.842 153.946l-.703-.679V125.78l.703-.367v-.68l24.487-13.821h.76v28.482l-25.247 14.556" }), _jsx("path", { fill: "#2379bd", d: "M102.823 140.451v-29.539h.712l25.237 14.014v29.024z" }), _jsx("path", { fill: "#03afef", d: "m128.294 96.987l-25.471 14.215l25.85 14.266l25.416-14.059l-25.792-14.415" })] }) }));
34
- }
35
- export function ReactIcon(props) {
36
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#fffff", rx: 60 }), _jsx("path", { fill: "#00d8ff", d: "M128.001 146.951c10.304 0 18.656-8.353 18.656-18.656s-8.352-18.656-18.656-18.656s-18.656 8.353-18.656 18.656s8.353 18.656 18.656 18.656" }), _jsx("path", { stroke: "#00d8ff", strokeWidth: 8.911, d: "M128.002 90.363c25.048 0 48.317 3.594 65.862 9.635C215.003 107.275 228 118.306 228 128.295c0 10.409-13.774 22.128-36.475 29.649c-17.162 5.686-39.746 8.654-63.523 8.654c-24.378 0-47.463-2.786-64.819-8.717C41.225 150.376 28 138.506 28 128.295c0-9.908 12.41-20.854 33.252-28.12c17.61-6.14 41.453-9.812 66.746-9.812z", clipRule: "evenodd" }), _jsx("path", { stroke: "#00d8ff", strokeWidth: 8.911, d: "M94.981 109.438c12.514-21.698 27.251-40.06 41.249-52.24c16.864-14.677 32.914-20.425 41.566-15.436c9.017 5.2 12.288 22.988 7.463 46.41c-3.645 17.707-12.359 38.753-24.238 59.351c-12.179 21.118-26.124 39.724-39.931 51.792c-17.471 15.272-34.362 20.799-43.207 15.698c-8.583-4.946-11.865-21.167-7.747-42.852c3.479-18.323 12.21-40.812 24.841-62.723z", clipRule: "evenodd" }), _jsx("path", { stroke: "#00d8ff", strokeWidth: 8.911, d: "M95.012 147.578c-12.549-21.674-21.093-43.616-24.659-61.826c-4.293-21.941-1.258-38.716 7.387-43.72c9.009-5.216 26.052.834 43.934 16.712c13.52 12.004 27.403 30.061 39.316 50.639c12.214 21.098 21.368 42.473 24.929 60.461c4.506 22.764.859 40.157-7.978 45.272c-8.574 4.964-24.265-.291-40.996-14.689c-14.136-12.164-29.26-30.959-41.933-52.849Z", clipRule: "evenodd" })] }) }));
37
- }
38
- export function ReduxIcon(props) {
39
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#764abc", rx: 60 }), _jsx("path", { fill: "#fff", d: "M166.579 165.599c7.381-.764 12.98-7.127 12.725-14.762c-.254-7.635-6.617-13.743-14.252-13.743h-.509c-7.89.254-13.998 6.871-13.744 14.761c.255 3.818 1.782 7.126 4.072 9.417c-8.653 17.052-21.887 29.523-41.739 39.958c-13.489 7.126-27.487 9.671-41.485 7.89c-11.453-1.527-20.36-6.618-25.96-15.016c-8.144-12.471-8.907-25.96-2.036-39.449c4.836-9.672 12.471-16.798 17.307-20.361c-1.018-3.308-2.545-8.908-3.309-12.98c-36.903 26.724-33.086 62.864-21.888 79.916c8.4 12.725 25.451 20.615 44.285 20.615c5.09 0 10.18-.509 15.27-1.782c32.578-6.362 57.265-25.705 71.263-54.464" }), _jsx("path", { fill: "#fff", d: "M211.372 134.04c-19.342-22.652-47.847-35.122-80.424-35.122h-4.072c-2.291-4.582-7.127-7.636-12.471-7.636h-.509c-7.89.255-13.998 6.872-13.744 14.762c.255 7.635 6.617 13.743 14.253 13.743h.509c5.599-.254 10.435-3.817 12.471-8.653h4.581c19.342 0 37.667 5.599 54.21 16.543c12.725 8.399 21.888 19.343 26.978 32.577c4.327 10.689 4.072 21.124-.509 30.032c-7.126 13.489-19.088 20.87-34.868 20.87c-10.18 0-19.851-3.054-24.942-5.345c-2.799 2.545-7.889 6.617-11.452 9.162c10.943 5.09 22.142 7.89 32.831 7.89c24.433 0 42.503-13.489 49.375-26.978c7.381-14.761 6.872-40.212-12.217-61.845" }), _jsx("path", { fill: "#fff", d: "M82.082 169.926c.255 7.635 6.617 13.743 14.253 13.743h.509c7.889-.255 13.998-6.872 13.743-14.762c-.254-7.635-6.617-13.743-14.252-13.743h-.51c-.508 0-1.272 0-1.78.255c-10.436-17.307-14.762-36.141-13.235-56.501c1.018-15.27 6.108-28.505 15.016-39.45c7.38-9.416 21.633-13.997 31.304-14.252c26.978-.509 38.431 33.086 39.194 46.576c3.309.763 8.908 2.544 12.726 3.817C175.996 54.38 150.545 33 126.112 33c-22.906 0-44.03 16.543-52.429 40.976c-11.707 32.577-4.072 63.881 10.18 88.569c-1.272 1.781-2.035 4.581-1.78 7.381" })] }) }));
40
- }
41
- export function MongooseIcon(props) {
42
- return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg ", ...props, viewBox: "0 0 256 256", children: [_jsx("path", { fill: "#850000", d: "M69.953 39.309c-1.676.07-4.508.52-4.508.71 0 .079 1.996 1.079 2.149 1.079.14 0 2.457 1.156 2.972 1.476.672.43 1.153.82 1.012.82-.09 0-2.469-.921-3.371-1.308-.734-.309-3.785-1.219-5.27-1.57-.804-.188-1.144-.258-2.511-.508-2.016-.368-4.387-.39-5.418-.051-1.477.48-1.809 1.07-1.809 3.246 0 1.2.059 1.707.32 2.785.114.469.434 1.5.583 1.848.043.11.183.45.3.75.121.297.485 1.066.805 1.695 1.797 3.567 4.488 6.54 8.281 9.156 1.196.82 4.446 2.375 5.75 2.747.332.09.442.277.172.277-.3 0-3.05-.758-3.613-.996a10 10 0 0 0-.652-.262c-1.957-.789-4.457-2.414-6.524-4.262a21.4 21.4 0 0 1-5.312-7.257c-.793-1.79-1.332-3.875-1.465-5.692-.078-1.039-.16-1.289-.43-1.277-.09 0-.945-.031-1.887-.082-2.562-.11-6.062.172-9.527.77-6.625 1.128-13.773 3.734-21.129 7.706a95 95 0 0 0-3.625 2.067c-.14.082-.582.351-.984.601-.399.25-.871.528-1.043.637-.38.223-4.586 3.078-5.09 3.457-.188.137-.711.527-1.152.848C4.98 60.195.633 63.742.383 64.102c-.121.18.07.27.328.18.133-.052.473-.122.746-.16.281-.044 1.004-.231 1.605-.43.61-.192 1.266-.391 1.454-.442 1.488-.348 2.09-.469 2.96-.598.395-.05.977-.14 1.305-.191 4.078-.598 6.024-.746 7.84-.61 3.945.32 7.719.993 9.879 1.758 1.617.582 4.906 2.36 6.352 3.426.836.63 3.523 3.305 4.117 4.113.46.641.972 1.2 1.093 1.2.04 0 .09-2.04.102-4.524l.027-4.512 5.282-.03c4.156-.02 5.308.011 5.379.1.101.13.343.56 1.136 2.024.754 1.41 1.125 2.09 1.356 2.496.12.223.398.739.633 1.149.218.41.628 1.168.91 1.687.281.52.511.961.511.98 0 .09.414.63.485.63.039 0 .14-.153.21-.32.079-.18.29-.579.462-.88.18-.3.5-.886.722-1.296.223-.41.524-.98.684-1.25.441-.79.902-1.645 1.285-2.344A85 85 0 0 1 58.5 63.96c.129-.25.29-.512.34-.578.082-.09 1.265-.121 5.543-.102l5.43.031.03 8.817c.02 6.945.048 8.805.15 8.805.058-.012.46-.243.874-.532.582-.406.832-.656 1.102-1.117.613-1.047 2.351-2.695 3.515-3.336A16.6 16.6 0 0 1 80 74.254c1.605-.34 2.078-.39 5.723-.52 6.652-.23 7.636-.27 7.687-.32.031-.027-.058-.289-.191-.59-.14-.289-.38-.828-.551-1.187-.633-1.367-.633-1.825.031-2.496.45-.47 1.613-.88 3.613-1.278.329-.07.743-.16.91-.218.173-.051.383-.09.473-.09.254 0 2.25-.489 2.672-.649.29-.12 1.856-.46 3.723-.82.812-.16 2.922-.578 4.668-.93 1.105-.218 2.258-.449 2.558-.508.301-.058.735-.148.954-.187.222-.05.511-.113.652-.133.14-.027.844-.168 1.558-.316a34 34 0 0 1 1.614-.313c.504-.047 4.289-.957 5.16-1.238 1.387-.45 1.797-.629 2.672-1.215.941-.64 1.203-.988 2.136-2.848 1.036-2.066 1.184-2.414 1.477-3.285.45-1.386.422-1.914-.152-2.496-.403-.398-1.266-.808-1.895-.898-.472-.059-.535-.04-.765.21-.141.15-.262.329-.262.391 0 .09-.16.528-.61 1.606-.043.11-.132.379-.203.597-.058.223-.18.532-.25.7-.129.28-.14.23-.09-.547.051-.77.18-1.418.473-2.399.051-.187.121-.507.149-.707l.05-.36-1.043-.417c-1.085-.45-2.02-.84-2.558-1.082-.184-.066-.633-.246-1.004-.387-.383-.14-.844-.32-1.035-.41a24 24 0 0 0-1.055-.437c-.672-.262-3.02-1.059-5.02-1.688a458 458 0 0 0-4.011-1.21 36 36 0 0 1-1.406-.388c-.16-.043-.555-.152-.856-.23-1.766-.488-2.226-.61-2.86-.79a26 26 0 0 0-1.054-.28c-.191-.047-.71-.168-1.152-.278-.774-.191-4.016-.937-5.774-1.34l-1.254-.289c-.222-.05-.62-.129-.902-.18-.273-.05-.844-.16-1.258-.25-.41-.077-1.293-.25-1.957-.359-.66-.117-1.453-.257-1.754-.308-2.773-.5-2.96-.528-7.93-1.078-3.062-.348-7.18-.641-8.183-.59-.16 0-1.05.039-1.965.09M58.348 44.23c2.652.86 5.23 2.028 6.996 3.168 1.406.907 3.152 2.356 3.625 3.004l.199.27-.379-.149c-.21-.09-.652-.28-.984-.441-1.766-.82-1.957-.887-1.957-.707 0 .047.41.707.902 1.445.504.75.902 1.41.902 1.47 0 .05-.187-.032-.422-.192-.902-.618-3.02-1.508-3.14-1.328-.031.05.62.878 1.457 1.847.82.969 1.504 1.797 1.504 1.86 0 .148-.16.128-.922-.153-.785-.277-.984-.308-.984-.117 0 .129 1.695 2.414 2.367 3.203.191.219.343.43.343.48 0 .239-2.351-1.288-4.015-2.605-2.38-1.898-4.68-4.445-5.89-6.55-.997-1.72-1.337-2.645-1.337-3.665 0-.597.028-.718.25-.93.13-.136.293-.25.352-.25s.562.153 1.133.34m31.691 3.555c.961.172 2.277.399 2.91.512.633.11 1.406.238 1.707.289.301.059.73.137.953.187.22.051.653.141.954.211.992.22 1.234.27 2.859.649 1.746.41 2.129.488 2.66.597.453.09.902.262.902.34 0 .032-.328.223-.73.43-.824.41-.996.441-4.387.57-2.308.098-3.543.07-4.668-.11-2.27-.35-3.441-.987-4.355-2.366-.32-.469-.531-.61-1.266-.797-.27-.082-.683-.192-.902-.262-.223-.07-.602-.18-.844-.25-.723-.187-.312-.297 1.145-.297 1.003 0 1.707.067 3.062.297m12.074 13.95a.54.54 0 0 1-.25 0c-.07-.032-.02-.051.121-.051.137 0 .188.02.13.05zm-.433.117c0 .05-.117.12-.27.152-.312.078-1.535.43-1.937.558-.141.051-.594.192-1.004.31-1.035.3-3.543 1.116-4.215 1.378-1.266.48-4.238 2.055-4.656 2.477-.625.609-.817 1.265-.723 2.523.027.531.098 1.2.16 1.488.121.63.05.801-.191.489-.242-.309-.754-1.426-.903-1.977-.082-.246-.171-.578-.222-.738-.18-.567-.11-1.239.172-1.645.379-.582 1.746-1.508 3.351-2.277.762-.371 2.98-1.13 5.02-1.727.41-.12.863-.261 1.004-.3 1.445-.489 4.414-.958 4.414-.711m-31.746.671c-.032.028-.121.04-.192.008-.082-.027-.05-.058.059-.058.113-.012.172.02.133.05m0 0" }), _jsx("path", { fill: "#850000", d: "M48.883 81.832v6.988h5c3.754 0 5.027-.03 5.117-.12.152-.15.184-13.856.031-13.856-.05 0-.12.078-.152.168-.04.09-1.133 1.797-2.438 3.793-2.066 3.156-2.64 3.925-2.64 3.535 0-.07-3.422-5.41-4.297-6.7a4 4 0 0 1-.309-.527c-.082-.152-.18-.27-.23-.27-.043 0-.082 3.145-.082 6.989m0 0" })] }));
43
- }
44
- export function ReactRouterIcon(props) {
45
- return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: [_jsx("path", { fill: "#61DAFB", d: "M50.307 58.817a8.816 8.816 0 1 0 0-17.632 8.816 8.816 0 0 0 0 17.632" }), _jsx("path", { stroke: "#61DAFB", strokeWidth: "5", d: "M50.307 68.063c26.126 0 47.306-8.087 47.306-18.062s-21.18-18.063-47.306-18.063C24.18 31.938 3 40.025 3 50.001s21.18 18.062 47.307 18.062Z" }), _jsx("path", { stroke: "#61DAFB", strokeWidth: "5", d: "M34.664 59.032C47.727 81.658 65.321 95.957 73.96 90.969c8.64-4.988 5.053-27.373-8.01-50C52.885 18.343 35.291 4.044 26.652 9.032s-5.052 27.373 8.011 50Z" }), _jsx("path", { stroke: "#61DAFB", strokeWidth: "5", d: "M34.664 40.97c-13.063 22.626-16.65 45.011-8.01 50 8.638 4.987 26.232-9.312 39.295-31.938 13.064-22.627 16.65-45.012 8.01-50-8.638-4.988-26.232 9.31-39.295 31.937Z" })] }));
46
- }
47
- export function ZodIcon(props) {
48
- return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: [_jsx("path", { fill: "#142641", d: "M93.22 31.493 77.406 14.984H23.34L6.746 31.493l41.709 50.222z" }), _jsx("path", { fill: "#274D82", fillRule: "evenodd", d: "m56.14 12.837-2.932 1.693-.713-1.236-1.707.985-.834-1.442-2.592 1.496-.864-1.496-.307.177-.945-1.635-.437.253-.804-1.392-38.5 22.227 1.24 2.15.437-.253.805 1.392.307-.177.945 1.636.377-.219.6 1.04.145-.084.57.987 1.24 2.15 45.21-26.103zm16.336 43.652H55.658v1.664H34.403l54.313-31.358-6.04-10.462-1.212.7-.833-1.442-13.584 7.844.832 1.44L22.6 51.017l6.041 10.463.242-.14v3.221h4.41v5.311h31.43v-5.31h4.733v-6.269h3.02z", clipRule: "evenodd" }), _jsx("path", { fill: "#3068B7", fillRule: "evenodd", d: "M79.533 10h-58.25L0 31.173l48.318 58.189 3.855-4.325L100 31.37zm-2.127 4.985L93.22 31.493 48.455 81.716 6.745 31.493 23.34 14.985z", clipRule: "evenodd" })] }));
49
- }
50
- export function FramerMotionIcon(props) {
51
- return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: [_jsx("path", { fill: "#59529d", d: "M47.3 3.7v21.8L36.4 36.4 25.5 47.3 14.6 36.4l10.9-10.9v.1-.1z" }), _jsx("path", { fill: "#5271b4", d: "M47.3 25.5v21.8L36.4 36.4z" }), _jsx("path", { fill: "#bb4b96", d: "M25.5 25.5 14.6 36.4 3.7 47.3V3.7l10.9 10.9z" })] }));
52
- }
53
- export function NetlifyIcon(props) {
54
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#fffff", rx: 60 }), _jsx("path", { fill: "url(#SVGPgr4Pcia)", d: "m172.787 97.405l-.073-.031c-.041-.016-.083-.031-.12-.068a.57.57 0 0 1-.146-.485l4.032-24.651l18.909 18.913l-19.665 8.367a.4.4 0 0 1-.172.031h-.078a.5.5 0 0 1-.105-.088a9 9 0 0 0-2.582-1.988m27.426-1.502l20.218 20.217c4.199 4.205 6.301 6.301 7.068 8.732c.114.36.208.72.281 1.09l-48.316-20.462l-.078-.032c-.193-.078-.418-.167-.418-.365s.23-.292.423-.37l.062-.026zm26.743 36.528c-1.043 1.961-3.077 3.996-6.52 7.443l-22.794 22.789l-29.481-6.139l-.157-.031c-.261-.042-.537-.089-.537-.324a8.9 8.9 0 0 0-3.417-6.222c-.12-.12-.088-.308-.052-.48c0-.026 0-.052.011-.073l5.544-34.04l.021-.115c.032-.261.078-.563.313-.563a9.02 9.02 0 0 0 6.051-3.469c.047-.052.078-.11.141-.141c.167-.078.365 0 .537.073l50.335 21.292zM192.4 167.905l-37.483 37.483l6.416-39.433l.01-.053a.7.7 0 0 1 .032-.151c.052-.125.187-.177.318-.229l.062-.026a9.66 9.66 0 0 0 3.626-2.697c.125-.146.276-.287.469-.313a.5.5 0 0 1 .151 0l26.393 5.425zm-45.417 45.417l-4.225 4.225l-46.71-67.507l-.052-.073c-.072-.099-.15-.198-.135-.313c.005-.083.057-.156.115-.219l.052-.067c.14-.209.26-.418.391-.642l.104-.183l.016-.015c.073-.125.14-.245.266-.313c.11-.052.26-.031.38-.005l51.749 10.672a.85.85 0 0 1 .397.172c.068.068.083.141.099.224a9.16 9.16 0 0 0 5.362 6.129c.146.073.083.235.016.407q-.05.113-.079.235c-.652 3.964-6.243 38.066-7.746 47.273m-8.825 8.82c-3.114 3.083-4.95 4.715-7.026 5.373a10.44 10.44 0 0 1-6.291 0c-2.43-.772-4.532-2.869-8.731-7.073l-46.908-46.908l12.252-19.003a.8.8 0 0 1 .209-.245c.13-.094.318-.052.475 0c2.812.849 5.831.696 8.543-.433c.141-.052.282-.088.392.011q.081.075.146.167l46.939 68.116zm-73.479-53.131l-10.76-10.76l21.25-9.066a.4.4 0 0 1 .172-.036c.177 0 .282.177.376.339q.32.492.678.959l.067.084c.063.088.021.177-.041.261l-11.737 18.219zm-15.523-15.523l-13.614-13.614c-2.315-2.316-3.995-3.995-5.164-5.44l41.395 8.586l.157.026c.255.041.537.088.537.328c0 .261-.308.381-.569.48l-.12.052zM28 127.434a10.4 10.4 0 0 1 .47-2.582c.771-2.431 2.868-4.527 7.072-8.732l17.422-17.421a11464 11464 0 0 0 24.13 34.88c.14.187.297.396.135.552c-.761.84-1.523 1.758-2.06 2.755a.83.83 0 0 1-.261.323c-.068.042-.14.026-.22.01h-.01L28 127.429zm29.627-33.398L81.052 70.61c2.202.965 10.214 4.35 17.38 7.376c5.425 2.295 10.37 4.381 11.924 5.06c.157.062.298.125.365.281c.042.094.021.214 0 .313a10.46 10.46 0 0 0 2.728 9.535c.157.157 0 .38-.135.574l-.073.11l-23.785 36.84a.7.7 0 0 1-.225.261c-.125.078-.302.042-.448.005a12 12 0 0 0-2.833-.386c-.855 0-1.784.157-2.722.329h-.006c-.104.016-.198.036-.281-.026a1.1 1.1 0 0 1-.235-.266zm28.157-28.157l30.326-30.326c4.199-4.199 6.301-6.3 8.731-7.068a10.43 10.43 0 0 1 6.291 0c2.431.767 4.533 2.87 8.732 7.068l6.572 6.572l-21.569 33.404a.8.8 0 0 1-.213.25c-.131.09-.313.053-.47 0a10.94 10.94 0 0 0-10.015 1.93c-.141.146-.349.063-.527-.015c-2.816-1.226-24.724-10.484-27.858-11.815m65.232-19.174L170.93 66.62l-4.798 29.721v.078a.8.8 0 0 1-.042.199c-.052.104-.157.125-.261.156a9.5 9.5 0 0 0-2.858 1.424a1 1 0 0 0-.105.089c-.057.062-.114.12-.208.13a.6.6 0 0 1-.225-.036l-30.347-12.894l-.057-.027c-.193-.078-.422-.172-.422-.37a11.5 11.5 0 0 0-1.617-4.773c-.146-.24-.308-.49-.183-.735zm-20.51 44.89l28.448 12.049c.157.073.329.14.397.302c.027.097.027.2 0 .297a7 7 0 0 0-.157 1.372v.798c0 .199-.203.282-.391.36l-.057.021c-4.507 1.925-63.271 26.983-63.36 26.983s-.182 0-.271-.089c-.156-.156 0-.375.14-.574q.038-.051.074-.104l23.378-36.2l.042-.062c.136-.22.292-.464.542-.464l.235.036c.532.073 1.002.141 1.476.141c3.547 0 6.833-1.726 8.815-4.679a.9.9 0 0 1 .178-.208c.141-.105.349-.052.511.02m-32.58 47.909l64.054-27.316s.094 0 .182.088c.35.35.647.584.934.803l.141.089c.13.073.261.157.271.292c0 .052 0 .084-.01.131l-5.488 33.706l-.021.135c-.036.261-.073.559-.318.559a9 9 0 0 0-7.161 4.418l-.027.041c-.073.12-.14.235-.26.298c-.11.052-.251.031-.365.005l-51.081-10.537c-.052-.01-.793-2.707-.85-2.712" }), _jsx("defs", { children: _jsxs("radialGradient", { id: "SVGPgr4Pcia", cx: 0, cy: 0, r: 1, gradientTransform: "scale(230.653 199.78)rotate(90 -.267 .36)", gradientUnits: "userSpaceOnUse", children: [_jsx("stop", { stopColor: "#20c6b7" }), _jsx("stop", { offset: 1, stopColor: "#4d9abf" })] }) })] }) }));
55
- }
56
- export function VercelIcon(props) {
57
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "fff", rx: 60 }), _jsx("path", { fill: "#000", d: "m128 34l95 164.853H33z" })] }) }));
58
- }
59
- export function NpmIcon(props) {
60
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsxs("g", { clipPath: "url(#SVG9PUMWdIu)", children: [_jsx("path", { fill: "#fffff", d: "M196 0H60C26.863 0 0 26.863 0 60v136c0 33.137 26.863 60 60 60h136c33.137 0 60-26.863 60-60V60c0-33.137-26.863-60-60-60" }), _jsxs("g", { clipPath: "url(#SVGEcngMciu)", children: [_jsx("path", { fill: "#cb3837", d: "M23 88h210v68.571H128V168H81.333v-11.429H23zm11.667 57.143H58v-34.286h11.667v34.286h11.666V99.429H34.667zM93 99.429v57.142h23.333v-11.428h23.334V99.429zm23.333 11.428H128v22.857h-11.667zm35-11.428v45.714h23.334v-34.286h11.666v34.286H198v-34.286h11.667v34.286h11.666V99.429z" }), _jsx("path", { fill: "#fff", d: "M34.667 145.143H58v-34.286h11.667v34.286h11.666V99.429H34.667zM93 99.429v57.142h23.333v-11.428h23.334V99.429zm35 34.285h-11.667v-22.857H128zm23.333-34.285v45.714h23.334v-34.286h11.666v34.286H198v-34.286h11.667v34.286h11.666V99.429z" })] })] }), _jsxs("defs", { children: [_jsx("clipPath", { id: "SVG9PUMWdIu", children: _jsx("path", { fill: "#fff", d: "M0 0h256v256H0z" }) }), _jsx("clipPath", { id: "SVGEcngMciu", children: _jsx("path", { fill: "#fff", d: "M23 88h210v80H23z" }) })] })] }) }));
61
- }
62
- export function PnpmIcon(props) {
63
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsxs("g", { clipPath: "url(#SVG9PUMWdIu)", children: [_jsx("path", { fill: "#fffff", d: "M196 0H60C26.863 0 0 26.863 0 60v136c0 33.137 26.863 60 60 60h136c33.137 0 60-26.863 60-60V60c0-33.137-26.863-60-60-60" }), _jsx("path", { fill: "#f9ad00", d: "M40 41h55v55H40zm60 0h55v55h-55zm60 0h55v55h-55zm0 60h55v55h-55z" }), _jsx("path", { fill: "#4e4e4e", d: "M160 161h55v55h-55zm-60 0h55v55h-55zm-60 0h55v55H40z" }), _jsx("path", { fill: "#fffff", d: "M40 101h55v55H40z" }), _jsx("path", { fill: "#4e4e4e", d: "M100 101h55v55h-55z" })] }), _jsx("defs", { children: _jsx("clipPath", { id: "SVG9PUMWdIu", children: _jsx("path", { fill: "#fff", d: "M0 0h256v256H0z" }) }) })] }) }));
64
- }
65
- export function GitIcon(props) {
66
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#f03c2e", rx: 60 }), _jsx("g", { clipPath: "url(#SVGrk1fDdNV)", children: _jsx("path", { fill: "#fff", d: "m224.225 119.094l-87.319-87.319a12.87 12.87 0 0 0-14.035-2.793a12.9 12.9 0 0 0-4.177 2.793L100.569 49.9l23 23c5.35-1.875 11.475-.594 15.737 3.669a15.31 15.31 0 0 1 3.631 15.831l22.169 22.169c5.363-1.85 11.55-.657 15.831 3.637a15.32 15.32 0 0 1 3.321 16.706a15.333 15.333 0 0 1-20.029 8.293c-1.86-.771-3.55-1.9-4.973-3.324c-4.5-4.5-5.612-11.125-3.337-16.669l-20.675-20.675v54.407a15.6 15.6 0 0 1 4.062 2.9a15.326 15.326 0 0 1-21.675 21.675a15.32 15.32 0 0 1-3.326-16.704a15.3 15.3 0 0 1 3.326-4.971c1.481-1.475 3.125-2.594 5.019-3.344v-54.913a15.2 15.2 0 0 1-5.019-3.343a15.315 15.315 0 0 1-3.3-16.757L91.644 58.814l-59.875 59.812a12.88 12.88 0 0 0-2.795 14.04a12.9 12.9 0 0 0 2.795 4.179l87.325 87.312a12.9 12.9 0 0 0 4.177 2.793a12.9 12.9 0 0 0 9.858 0a12.9 12.9 0 0 0 4.177-2.793l86.919-86.781a12.88 12.88 0 0 0 3.776-9.109a12.88 12.88 0 0 0-3.776-9.11" }) }), _jsx("defs", { children: _jsx("clipPath", { id: "SVGrk1fDdNV", children: _jsx("path", { fill: "#fff", d: "M28 28h200v200H28z" }) }) })] }) }));
67
- }
68
- export function GithubIcon(props) {
69
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#242938", rx: 60 }), _jsx("path", { fill: "#fff", d: "M128.001 30C72.779 30 28 74.77 28 130.001c0 44.183 28.653 81.667 68.387 94.89c4.997.926 6.832-2.169 6.832-4.81c0-2.385-.093-10.262-.136-18.618c-27.82 6.049-33.69-11.799-33.69-11.799c-4.55-11.559-11.104-14.632-11.104-14.632c-9.073-6.207.684-6.079.684-6.079c10.042.705 15.33 10.305 15.33 10.305c8.919 15.288 23.394 10.868 29.1 8.313c.898-6.464 3.489-10.875 6.349-13.372c-22.211-2.529-45.56-11.104-45.56-49.421c0-10.918 3.906-19.839 10.303-26.842c-1.039-2.519-4.462-12.69.968-26.464c0 0 8.398-2.687 27.508 10.25c7.977-2.215 16.531-3.326 25.03-3.364c8.498.038 17.06 1.149 25.051 3.365c19.087-12.939 27.473-10.25 27.473-10.25c5.443 13.773 2.019 23.945.98 26.463c6.412 7.003 10.292 15.924 10.292 26.842c0 38.409-23.394 46.866-45.662 49.341c3.587 3.104 6.783 9.189 6.783 18.519c0 13.38-.116 24.149-.116 27.443c0 2.661 1.8 5.779 6.869 4.797C199.383 211.64 228 174.169 228 130.001C228 74.771 183.227 30 128.001 30M65.454 172.453c-.22.497-1.002.646-1.714.305c-.726-.326-1.133-1.004-.898-1.502c.215-.512.999-.654 1.722-.311c.727.326 1.141 1.01.89 1.508m4.919 4.389c-.477.443-1.41.237-2.042-.462c-.654-.697-.777-1.629-.293-2.078c.491-.442 1.396-.235 2.051.462c.654.706.782 1.631.284 2.078m3.374 5.616c-.613.426-1.615.027-2.234-.863c-.613-.889-.613-1.955.013-2.383c.621-.427 1.608-.043 2.236.84c.611.904.611 1.971-.015 2.406m5.707 6.504c-.548.604-1.715.442-2.57-.383c-.874-.806-1.118-1.95-.568-2.555c.555-.606 1.729-.435 2.59.383c.868.804 1.133 1.957.548 2.555m7.376 2.195c-.242.784-1.366 1.14-2.499.807c-1.13-.343-1.871-1.26-1.642-2.052c.235-.788 1.364-1.159 2.505-.803c1.13.341 1.871 1.252 1.636 2.048m8.394.932c.028.824-.932 1.508-2.121 1.523c-1.196.027-2.163-.641-2.176-1.452c0-.833.939-1.51 2.134-1.53c1.19-.023 2.163.639 2.163 1.459m8.246-.316c.143.804-.683 1.631-1.864 1.851c-1.161.212-2.236-.285-2.383-1.083c-.144-.825.697-1.651 1.856-1.865c1.183-.205 2.241.279 2.391 1.097" })] }) }));
70
- }
71
- export function LinkedinIcon(props) {
72
- return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", ...props, children: _jsxs("g", { fill: "none", children: [_jsx("rect", { width: 256, height: 256, fill: "#fff", rx: 60 }), _jsx("rect", { width: 256, height: 256, fill: "#0a66c2", rx: 60 }), _jsx("path", { fill: "#fff", d: "M184.715 217.685h29.27a4 4 0 0 0 4-3.999l.015-61.842c0-32.323-6.965-57.168-44.738-57.168c-14.359-.534-27.9 6.868-35.207 19.228a.32.32 0 0 1-.595-.161V101.66a4 4 0 0 0-4-4h-27.777a4 4 0 0 0-4 4v112.02a4 4 0 0 0 4 4h29.268a4 4 0 0 0 4-4v-55.373c0-15.657 2.97-30.82 22.381-30.82c19.135 0 19.383 17.916 19.383 31.834v54.364a4 4 0 0 0 4 4M38 59.628c0 11.864 9.767 21.626 21.632 21.626c11.862-.001 21.623-9.769 21.623-21.631C81.253 47.761 71.491 38 59.628 38C47.762 38 38 47.763 38 59.627m6.959 158.058h29.307a4 4 0 0 0 4-4V101.66a4 4 0 0 0-4-4H44.959a4 4 0 0 0-4 4v112.025a4 4 0 0 0 4 4" })] }) }));
73
- }
@@ -1 +0,0 @@
1
- export * from "./brand";
@@ -1 +0,0 @@
1
- export * from "./brand";