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

[feat]: Add IconPark #784

Open
wants to merge 1 commit 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
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -99,6 +99,7 @@ function Question() {
| [Radix Icons](https://icons.radix-ui.com) | [MIT](https://github.com/radix-ui/icons/blob/master/LICENSE) | @modulz/generate-icon-lib@0.2.1 | 318 |
| [Phosphor Icons](https://github.com/phosphor-icons/core) | [MIT](https://github.com/phosphor-icons/core/blob/main/LICENSE) | 2.0.2 | 7488 |
| [Icons8 Line Awesome](https://icons8.com/line-awesome) | [MIT](https://github.com/icons8/line-awesome/blob/master/LICENSE.md) | 1.2.1 | 1544 |
| [IconPark](https://iconpark.oceanengine.com/) | [Apache License Version 2.0](https://github.com/bytedance/IconPark/blob/master/LICENSE) | 1.0.0 | 2658 |

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

Expand Down
3 changes: 2 additions & 1 deletion packages/react-icons/VERSIONS
Expand Up @@ -9,7 +9,7 @@
| [Typicons](http://s-ings.com/typicons/) | [CC BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0/) | 2.1.2 | 336 |
| [Github Octicons icons](https://octicons.github.com/) | [MIT](https://github.com/primer/octicons/blob/master/LICENSE) | 18.3.0 | 264 |
| [Feather](https://feathericons.com/) | [MIT](https://github.com/feathericons/feather/blob/master/LICENSE) | 4.28.0 | 286 |
| [Lucide](https://lucide.dev/) | [ISC](https://github.com/lucide-icons/lucide/blob/main/LICENSE) | v4.8.1-snapshot.2-18-gf29c8065 | 1042 |
| [Lucide](https://lucide.dev/) | [ISC](https://github.com/lucide-icons/lucide/blob/main/LICENSE) | 29f870de511eb39238f38a5671e2013f1aecf33a | 1042 |
| [Game Icons](https://game-icons.net/) | [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/) | 12920d6565588f0512542a3cb0cdfd36a497f910 | 4040 |
| [Weather Icons](https://erikflowers.github.io/weather-icons/) | [SIL OFL 1.1](http://scripts.sil.org/OFL) | 2.0.12 | 219 |
| [Devicons](https://vorillaz.github.io/devicons/) | [MIT](https://opensource.org/licenses/MIT) | 1.8.0 | 192 |
Expand All @@ -31,3 +31,4 @@
| [Radix Icons](https://icons.radix-ui.com) | [MIT](https://github.com/radix-ui/icons/blob/master/LICENSE) | @radix-ui/react-icons@1.3.0 | 318 |
| [Phosphor Icons](https://github.com/phosphor-icons/core) | [MIT](https://github.com/phosphor-icons/core/blob/main/LICENSE) | 2.0.2 | 7488 |
| [Icons8 Line Awesome](https://icons8.com/line-awesome) | [MIT](https://github.com/icons8/line-awesome/blob/master/LICENSE.md) | 1.3.1 | 1544 |
| [IconPark](https://iconpark.oceanengine.com/) | [Apache License Version 2.0](https://github.com/bytedance/IconPark/blob/master/LICENSE) | 1.0.0 | 2658 |
21 changes: 21 additions & 0 deletions packages/react-icons/src/icons/index.ts
Expand Up @@ -786,4 +786,25 @@ export const icons: IconDefinition[] = [
hash: "78a101217707c9b1c4dcf2a821be75684e36307f",
},
},
{
id: "ip",
name: "IconPark",
contents: [
{
files: path.resolve(__dirname, "../../icons/icon-park/source/*/*.svg"),
formatter: (name) => `Ip${camelcase(name, { pascalCase: true })}`,
},
],
projectUrl: "https://iconpark.oceanengine.com/",
license: "Apache License Version 2.0",
licenseUrl: "https://github.com/bytedance/IconPark/blob/master/LICENSE",
source: {
type: "git",
localName: "icon-park",
remoteDir: "source/",
url: "https://github.com/bytedance/IconPark.git",
branch: "master",
hash: "8dc132da4c85671ba6a5962c87aa2bdafbf158e9",
},
},
];