Skip to content

Commit cddc18a

Browse files
authored
Merge pull request #41 from pheralb/next
🚀 v1.2.7
2 parents c7e5f73 + 1fbb13e commit cddc18a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+2133
-925
lines changed

.github/workflows/publish-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: 📦 Publish
22

33
on:
4-
push:
5-
branches:
6-
- main
4+
workflow_dispatch:
5+
release:
6+
types: [published]
77

88
concurrency: ${{ github.workflow }}-${{ github.ref }}
99

library/package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-symbols/icons",
3-
"version": "1.2.6",
3+
"version": "1.2.7",
44
"description": "Symbols icons by Miguel Solorio for React",
55
"author": "@pheralb_",
66
"license": "MIT",
@@ -53,14 +53,13 @@
5353
},
5454
"devDependencies": {
5555
"@swc/cli": "0.4.0",
56-
"@swc/core": "1.7.23",
57-
"@types/node": "22.5.4",
58-
"@types/react": "18.3.5",
59-
"@types/react-dom": "18.3.0",
56+
"@swc/core": "1.7.40",
57+
"@types/react": "18.3.12",
58+
"@types/react-dom": "18.3.1",
6059
"react": "18.3.1",
6160
"react-dom": "18.3.1",
62-
"tsup": "8.2.4",
63-
"typescript": "5.5.4"
61+
"tsup": "8.3.5",
62+
"typescript": "5.6.3"
6463
},
6564
"peerDependencies": {
6665
"react": ">= 16.8",

library/src/index.ts

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export { default as CloudflareWorkers } from "./library/cloudflareWorkers.js";
137137
export { default as Gif } from "./library/gif.js";
138138
export { default as Rome } from "./library/rome.js";
139139
export { default as Turborepo } from "./library/turborepo.js";
140-
export { default as BiomeOld } from "./library/biome_old.js";
140+
export { default as BiomeOld } from "./library/biomeOld.js";
141141
export { default as Biome } from "./library/biome.js";
142142
export { default as Bun } from "./library/bun.js";
143143
export { default as CMake } from "./library/cmake.js";
@@ -153,7 +153,7 @@ export { default as Earthfile } from "./library/earthfile.js";
153153
export { default as Gatsbyjs } from "./library/gatsbyjs.js";
154154
export { default as Keystatic } from "./library/keystatic.js";
155155
export { default as Knip } from "./library/knip.js";
156-
export { default as PandaCSS } from "./library/pandacss.js";
156+
export { default as PandaCSS } from "./library/panda.js";
157157
export { default as Sanity } from "./library/sanity.js";
158158
export { default as Serverless } from "./library/serverless.js";
159159
export { default as Solidity } from "./library/solidity.js";
@@ -187,6 +187,17 @@ export { default as CodePink } from "./library/codePink.js";
187187
export { default as Func } from "./library/func.js";
188188
export { default as Fresh } from "./library/fresh.js";
189189
export { default as StatamicAntlers } from "./library/statamicAntlers.js";
190+
export { default as NestGuard } from "./library/nestGuard.js";
191+
export { default as AngularDirective } from "./library/angularDirective.js";
192+
export { default as AngularGuard } from "./library/angularGuard.js";
193+
export { default as AngularModule } from "./library/angularModule.js";
194+
export { default as AngularPipe } from "./library/angularPipe.js";
195+
export { default as Fortran } from "./library/fortran.js";
196+
export { default as Oxlint } from "./library/oxlint.js";
197+
export { default as Luau } from "./library/luau.js";
198+
export { default as Docusaurus } from "./library/docusaurus.js";
199+
export { default as MongoDB } from "./library/mongodb.js";
200+
export { default as Bruno } from "./library/bruno.js";
190201

191202
// Folders =>
192203

@@ -256,3 +267,7 @@ export { default as FolderPinkOutline } from "./library/folders/folderPinkOutlin
256267
export { default as FolderPipes } from "./library/folders/folderPipes.js";
257268
export { default as FolderProviders } from "./library/folders/folderProviders.js";
258269
export { default as FolderServices } from "./library/folders/folderServices.js";
270+
export { default as FolderConstants } from "./library/folders/folderConstants.js";
271+
export { default as FolderHooks } from "./library/folders/folderHooks.js";
272+
export { default as FolderMongoDB } from "./library/folders/folderMongoDB.js";
273+
export { default as FolderBruno } from "./library/folders/folderBruno.js";
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import type { ComponentProps, FC } from "react";
2+
3+
const AngularDirective: FC<ComponentProps<"svg">> = (props) => (
4+
<svg
5+
xmlns="http://www.w3.org/2000/svg"
6+
fill="none"
7+
viewBox="0 0 24 24"
8+
{...props}
9+
>
10+
<path
11+
fill="#16A34A"
12+
d="M20.03 5.97l-.614 9.642-5.87-12.643 6.484 3zm-4.066 12.467l-4.436 2.532-4.436-2.532.902-2.186h7.068l.902 2.186zm-4.436-10.67l2.324 5.652H9.203l2.325-5.651zm-7.895 7.845L3.026 5.97 9.51 2.969 3.633 15.612z"
13+
></path>
14+
</svg>
15+
);
16+
17+
export default AngularDirective;

library/src/library/angularGuard.tsx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import type { ComponentProps, FC } from "react";
2+
3+
const AngularGuard: FC<ComponentProps<"svg">> = (props) => (
4+
<svg
5+
xmlns="http://www.w3.org/2000/svg"
6+
fill="none"
7+
viewBox="0 0 24 24"
8+
{...props}
9+
>
10+
<path
11+
fill="#2563EB"
12+
d="M20.03 5.97l-.614 9.642-5.87-12.643 6.484 3zm-4.066 12.467l-4.436 2.532-4.436-2.532.902-2.186h7.068l.902 2.186zm-4.436-10.67l2.324 5.652H9.203l2.325-5.651zm-7.895 7.845L3.026 5.97 9.51 2.969 3.633 15.612z"
13+
></path>
14+
</svg>
15+
);
16+
17+
export default AngularGuard;

library/src/library/angularModule.tsx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import type { ComponentProps, FC } from "react";
2+
3+
const AngularModule: FC<ComponentProps<"svg">> = (props) => (
4+
<svg
5+
xmlns="http://www.w3.org/2000/svg"
6+
fill="none"
7+
viewBox="0 0 24 24"
8+
{...props}
9+
>
10+
<path
11+
fill="#8B5CF6"
12+
d="M20.03 5.97l-.614 9.642-5.87-12.643 6.484 3zm-4.066 12.467l-4.436 2.532-4.436-2.532.902-2.186h7.068l.902 2.186zm-4.436-10.67l2.324 5.652H9.203l2.325-5.651zm-7.895 7.845L3.026 5.97 9.51 2.969 3.633 15.612z"
13+
></path>
14+
</svg>
15+
);
16+
17+
export default AngularModule;

library/src/library/angularPipe.tsx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import type { ComponentProps, FC } from "react";
2+
3+
const AngularModule: FC<ComponentProps<"svg">> = (props) => (
4+
<svg
5+
xmlns="http://www.w3.org/2000/svg"
6+
fill="none"
7+
viewBox="0 0 24 24"
8+
{...props}
9+
>
10+
<path
11+
fill="#EA580C"
12+
d="M20.03 5.97l-.614 9.642-5.87-12.643 6.484 3zm-4.066 12.467l-4.436 2.532-4.436-2.532.902-2.186h7.068l.902 2.186zm-4.436-10.67l2.324 5.652H9.203l2.325-5.651zm-7.895 7.845L3.026 5.97 9.51 2.969 3.633 15.612z"
13+
></path>
14+
</svg>
15+
);
16+
17+
export default AngularModule;
File renamed without changes.

library/src/library/bruno.tsx

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
import type { ComponentProps, FC } from "react";
2+
3+
const Bruno: FC<ComponentProps<"svg">> = (props) => (
4+
<svg
5+
xmlns="http://www.w3.org/2000/svg"
6+
fill="none"
7+
viewBox="0 0 24 24"
8+
{...props}
9+
>
10+
<g clipPath="url(#clip0_35526_298)">
11+
<path
12+
fill="#F4AA41"
13+
d="M7.837 4.474l-1.834.699-2.635 2.853-1.494 3.792.466 1.928c.454 1.37 1.205 2.324 2.55 3.34l.971-.932s1.38 2.784 3.878 3.235c0 0 3.705.7 5.631-.316.538-.284.908-.661 1.19-.937.747-.735 1.094-1.271 1.64-1.892l.602.653.664-.02 1.812-2.611.723-1.831-.008-1.537-.785-2.027-1.745-2.678s-.952-1.537-2.95-1.414c0 0-2.346-1.746-4.272-1.475-1.926.27-1.304-.245-4.404 1.17z"
14+
></path>
15+
<path
16+
fill="#EA5A47"
17+
d="M12 15.876l-1.113.872h-.903l.19 1.405.151 1.089.29.847 1.024.541 1.655-.21.31-.796.254-1.51.279-1.306-.723.09L12 15.877z"
18+
></path>
19+
<path
20+
fill="#3F3F3F"
21+
d="M10.736 12.332l-.572 1.354.783.451.451.18 1.565.061 1.053-.812-.632-1.174-2.648-.06z"
22+
></path>
23+
<path
24+
fill="#000"
25+
d="M9.655 9.873s-.652.448-.993.24a.722.722 0 01.752-1.233c.34.208.24.993.24.993z"
26+
></path>
27+
<path
28+
stroke="#000"
29+
strokeLinecap="round"
30+
strokeLinejoin="round"
31+
strokeWidth="0.722"
32+
d="M10.956 12.363h2.22a.36.36 0 01.332.22l.418.984-.787.414a.361.361 0 01-.526-.273M11.552 13.72a.361.361 0 01-.492.27l-.836-.344.394-1.049a.361.361 0 01.338-.234M9.991 17.065s-.26 3.176 1.086 3.589c.955.293 1.86.192 2.19-.09.315-.271.95-1.616.659-3.499"
33+
></path>
34+
<path
35+
fill="#000"
36+
d="M14.984 9.873s.652.448.993.24a.722.722 0 00-.752-1.233c-.34.208-.24.993-.24.993z"
37+
></path>
38+
<path
39+
stroke="#000"
40+
strokeLinecap="round"
41+
strokeLinejoin="round"
42+
strokeWidth="0.722"
43+
d="M8.253 14.47c-.171 1.3.807 2.076 1.548 2.47.432.23.957.187 1.342-.115l.932-.73.932.73c.385.302.91.345 1.343.115.74-.394 1.718-1.17 1.547-2.47"
44+
></path>
45+
<path
46+
stroke="#000"
47+
strokeLinecap="round"
48+
strokeLinejoin="round"
49+
strokeWidth="0.722"
50+
d="M6.204 9.24c-.836 1.863-.183 4.704.043 5.553a.714.714 0 01-.045.492l-.718 1.514a.721.721 0 01-1.203.16c-1.153-1.368-3.09-4.114-2.365-6.026 2.55-6.72 5.73-6.552 5.73-6.552 1.028-.698 4.732-2.505 8.96.316 0 0 3.117-.62 5.394 6.116.652 1.928-1.238 4.647-2.365 6.01a.721.721 0 01-1.207-.153l-.713-1.505a.715.715 0 01-.046-.492c.227-.849.88-3.689.043-5.552M18.006 15.778s-1.112 2.428-2.819 2.987M6.019 15.961s1.111 2.196 2.818 2.756M12.075 16.095V15"
51+
></path>
52+
</g>
53+
<defs>
54+
<clipPath id="clip0_35526_298">
55+
<path fill="#fff" d="M0 0H24V24H0z"></path>
56+
</clipPath>
57+
</defs>
58+
</svg>
59+
);
60+
61+
export default Bruno;

library/src/library/deno.tsx

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ComponentProps, FC } from "react"
1+
import type { ComponentProps, FC } from "react";
22

33
const Deno: FC<ComponentProps<"svg">> = (props) => (
44
<svg
@@ -8,16 +8,18 @@ const Deno: FC<ComponentProps<"svg">> = (props) => (
88
{...props}
99
>
1010
<path
11-
fill="#2563EB"
11+
fill="#64748B"
1212
fillRule="evenodd"
13-
d="M19.071 4.929A10 10 0 104.93 19.07 10 10 0 0019.07 4.93zM6.414 5.69a.488.488 0 01.941.254l-.003.016-.665 2.46-.003.013a.488.488 0 01-.942-.258l.004-.012.664-2.46.004-.013zm8.531.465a.495.495 0 01.598-.332c.254.07.406.332.344.59v.012l-.524 1.933-.043-.035a5.468 5.468 0 00-.824-.5l.445-1.656.004-.012zM10.27 3.184c.307-.06.617-.105.93-.133a.484.484 0 01-.005.219l-.004.011-.664 2.461-.004.012a.488.488 0 01-.941-.254l.004-.012.617-2.293.067-.011zm6.91 2.05l.129-.484.058.043c.268.2.525.416.77.644l-.016.051-.004.012a.488.488 0 01-.941-.254l.004-.012zm-3.97-1.23l.235-.871.07.012c.298.05.593.115.883.195l-.246.918-.004.012a.488.488 0 01-.941-.254l.004-.012zM6.438 11.77c0-2.278 2.266-4.11 5.172-4.11 1.399 0 2.598.387 3.543 1.125a5.034 5.034 0 011.7 2.477l.007.023.008.027.016.051.023.094.063.219.066.25.293 1.07 1.344 5.02-.043.047a8.976 8.976 0 01-5.442 2.843l-.019-.129-.035-.258-.031-.187-.036-.246-.046-.3-.02-.118-.043-.285-.027-.168-.035-.219-.036-.21-.035-.204-.035-.2-.031-.195-.035-.187-.032-.18-.023-.133-.027-.128-.047-.247-.024-.117-.027-.144-.023-.102-.02-.097-.02-.094-.011-.063-.028-.117-.039-.172-.015-.054-.02-.079-.015-.074-.02-.074-.02-.07-.011-.043-.02-.067-.015-.062-.012-.043-.016-.04-.011-.034-.016-.055-.012-.04-.008-.023a2.628 2.628 0 00-.07-.183l-.012-.024.09-.234-.355.012-.098.004c-3.226.066-5.309-1.305-5.309-3.454zm2.024 6.648a.486.486 0 01.594-.332c.258.066.41.328.347.586l-.004.012-.472 1.761-.067-.027a8.959 8.959 0 01-.84-.363l.438-1.625.004-.012zm2.719-1.191a.488.488 0 01.902-.086l.016.07.023.113.016.082-.004.02-.012.055v.011l-.664 2.461-.004.012a.488.488 0 01-.941-.254v-.012l.664-2.46.004-.012zm-4.063-2.793l.031-.075c.247.215.532.41.844.575l-.601 2.234-.004.012a.488.488 0 01-.942-.258l.004-.012.664-2.46.004-.016zM4.97 11.859a.495.495 0 01.597-.332c.254.07.407.332.344.59v.012l-.664 2.46-.004.013a.489.489 0 01-.941-.258v-.012l.664-2.46.004-.013zm14.89-.558a.492.492 0 01.594-.332c.258.07.41.332.348.586v.015l-.668 2.461v.012a.49.49 0 01-.945-.258l.003-.012.665-2.46.003-.012zm-16.785-.344a8.922 8.922 0 011.043-3.273.49.49 0 01.465.605l-.004.012-.664 2.46-.004.012a.492.492 0 01-.836.184zm15.102-2.926a.496.496 0 01.597-.332c.254.07.41.332.348.59l-.004.012-.664 2.46-.004.012a.488.488 0 01-.941-.257l.004-.012.664-2.461v-.012z"
13+
d="M3.75 15.816a9.048 9.048 0 01-.778-4.856 9.09 9.09 0 012.99-5.749 9.094 9.094 0 014.136-2.1 9.111 9.111 0 015.685.623 9.107 9.107 0 015.176 6.706 9.127 9.127 0 01-.444 4.758 9.096 9.096 0 01-1.802 2.935c-1.008 1.028-2.288 1.486-3.357 1.467a3.337 3.337 0 01-2.063-.776c-.751-.646-1.055-1.386-1.159-2.21a3.76 3.76 0 01.096-1.15c.08-.29.282-.846.577-1.09-.345-.148-.79-.472-.93-.627-.034-.038-.03-.098.001-.14a.117.117 0 01.134-.04c.296.103.657.203 1.038.267.502.084 1.125.189 1.756.22 1.539.076 3.147-.615 3.645-1.99.5-1.374.306-2.734-1.484-3.549-1.79-.816-2.617-1.785-4.063-2.37-.945-.382-1.996-.155-3.076.441-2.907 1.607-5.512 6.684-4.311 11.387a.145.145 0 01-.238.144 9.135 9.135 0 01-1.529-2.3z"
1414
clipRule="evenodd"
1515
></path>
1616
<path
17-
fill="#2563EB"
18-
d="M12.234 9.305a.625.625 0 110 1.25.625.625 0 010-1.25z"
17+
fill="#64748B"
18+
fillRule="evenodd"
19+
d="M11.678 6.776c.49-.038.918.38.992.937.098.741-.174 1.507-1.069 1.525-.764.015-.996-.756-.945-1.223.05-.467.435-1.193 1.022-1.239z"
20+
clipRule="evenodd"
1921
></path>
2022
</svg>
21-
)
23+
);
2224

23-
export default Deno
25+
export default Deno;

0 commit comments

Comments
 (0)