Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new iconsets #504

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions .gitmodules
Expand Up @@ -49,3 +49,12 @@
[submodule "vscode-icons"]
path = packages/react-icons/src/icons/vscode-icons
url = https://github.com/microsoft/vscode-codicons.git
[submodule "packages/react-icons/src/icons/academicons"]
path = packages/react-icons/src/icons/academicons
url = https://github.com/jpswalsh/academicons
[submodule "packages/react-icons/src/icons/akar-icons"]
path = packages/react-icons/src/icons/akar-icons
url = https://github.com/artcoholic/akar-icons
[submodule "packages/react-icons/src/icons/phosphor-icons"]
path = packages/react-icons/src/icons/phosphor-icons
url = https://github.com/phosphor-icons/phosphor-icons
5 changes: 4 additions & 1 deletion README.md
Expand Up @@ -82,7 +82,10 @@ Icon Library|License|Version|Count
[BoxIcons](https://github.com/atisawd/boxicons)|[CC BY 4.0 License](undefined)|2.0.9|757
[css.gg](https://github.com/astrit/css.gg)|[MIT](https://opensource.org/licenses/MIT)|2.0.0|704
[VS Code Icons](https://github.com/microsoft/vscode-codicons)|[CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)|0.0.23|383

[VS Code Icons](https://github.com/microsoft/vscode-codicons)|[CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)|0.0.23|383
[Akar Icons](https://github.com/artcoholic/akar-icons)|[MIT](https://opensource.org/licenses/MIT)|1.9.0|368
[Akademicons](https://github.com/jpswalsh/academicons)|[SIL OFL 1.1](http://scripts.sil.org/OFL)|1.9.1|145
[Phosphor Icons](https://github.com/jpswalsh/academicons)|[SIL OFL 1.1](http://scripts.sil.org/OFL)|1.3.2|5364

You can add more icons by submitting pull requests or creating issues.

Expand Down
3 changes: 3 additions & 0 deletions packages/react-icons/VERSIONS
Expand Up @@ -23,3 +23,6 @@ Icon Library|License|Version|Count
[BoxIcons](https://github.com/atisawd/boxicons)|[CC BY 4.0 License](undefined)|2.0.9|757
[css.gg](https://github.com/astrit/css.gg)|[MIT](https://opensource.org/licenses/MIT)|2.0.0|704
[VS Code Icons](https://github.com/microsoft/vscode-codicons)|[CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)|0.0.23|383
[Akar Icons](https://github.com/artcoholic/akar-icons)|[MIT](https://opensource.org/licenses/MIT)|1.9.0|368
[Akademicons](https://github.com/jpswalsh/academicons)|[SIL OFL 1.1](http://scripts.sil.org/OFL)|1.9.1|145
[Phosphor Icons](https://github.com/jpswalsh/academicons)|[SIL OFL 1.1](http://scripts.sil.org/OFL)|1.3.2|5364
1 change: 1 addition & 0 deletions packages/react-icons/src/icons/academicons
Submodule academicons added at 444969
1 change: 1 addition & 0 deletions packages/react-icons/src/icons/akar-icons
Submodule akar-icons added at b97a3d
39 changes: 39 additions & 0 deletions packages/react-icons/src/icons/index.js
Expand Up @@ -378,5 +378,44 @@ module.exports = {
license: "CC BY 4.0",
licenseUrl: "https://creativecommons.org/licenses/by/4.0/",
},
{
id: "akaricons",
name: "Akar Icons",
contents: [
{
files: path.resolve(__dirname, "akar-icons/src/svg/*.svg"),
formatter: (name) => `Akaricon${name}`,
},
],
projectUrl: "https://github.com/artcoholic/akar-icons",
license: "MIT",
licenseUrl: "https://opensource.org/licenses/MIT",
},
{
id: "academicons",
name: "Akademicons",
contents: [
{
files: path.resolve(__dirname, "academicons/svg/*.svg"),
formatter: (name) => `Akademicon${name}`,
},
],
projectUrl: "https://github.com/jpswalsh/academicons",
license: "SIL OFL 1.1",
licenseUrl: "http://scripts.sil.org/OFL",
},
{
id: "phosphor-icons",
name: "Phosphor Icons",
contents: [
{
files: path.resolve(__dirname, "phosphor-icons/assets/*/*.svg"),
formatter: (name) => `PhosphorIcon${name}`,
},
],
projectUrl: "https://github.com/phosphor-icons/phosphor-icons",
license: "MIT",
licenseUrl: "https://opensource.org/licenses/MIT",
},
],
};
1 change: 1 addition & 0 deletions packages/react-icons/src/icons/phosphor-icons
Submodule phosphor-icons added at 727d2b