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 Health Icons #865

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
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.29.1 | 287 |
| [Lucide](https://lucide.dev/) | [ISC](https://github.com/lucide-icons/lucide/blob/main/LICENSE) | v4.11.0-15-g7493227d | 1215 |
| [Lucide](https://lucide.dev/) | [ISC](https://github.com/lucide-icons/lucide/blob/main/LICENSE) | 399b45c3c052cd2666eb6432e1872992a4db5589 | 1215 |
| [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-1-g94b3fcf | 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 |
| [Health Icons](https://healthicons.org/) | [MIT](https://github.com/resolvetosavelives/healthicons/blob/main/LICENSE) | 0.1.0 | 1797 |
38 changes: 38 additions & 0 deletions packages/react-icons/src/icons/index.ts
Expand Up @@ -787,4 +787,42 @@ export const icons: IconDefinition[] = [
hash: "78a101217707c9b1c4dcf2a821be75684e36307f",
},
},
{
id: "hti",
name: "Health Icons",
contents: [
{
files: path.resolve(
__dirname,
"../../icons/healthicons/public/icons/svg/filled/*/*.svg",
),
formatter: (name) => `HtiFilled${camelcase(name, { pascalCase: true })}`.replace("!", "ExclamationMark"),
},
{
files: path.resolve(
__dirname,
"../../icons/healthicons/public/icons/svg/negative/*/*.svg",
),
formatter: (name) => `HtiNegative${camelcase(name, { pascalCase: true })}`.replace("!", "ExclamationMark"),
},
{
files: path.resolve(
__dirname,
"../../icons/healthicons/public/icons/svg/outline/*/*.svg",
),
formatter: (name) => `HtiOutline${camelcase(name, { pascalCase: true })}`.replace("!", "ExclamationMark"),
},
],
projectUrl: "https://healthicons.org/",
license: "MIT",
licenseUrl: "https://github.com/resolvetosavelives/healthicons/blob/main/LICENSE",
source: {
type: "git",
localName: "healthicons",
remoteDir: "public/icons/svg/",
url: "https://github.com/resolvetosavelives/healthicons.git",
branch: "main",
hash: "57df21dda664a633479e4fc2fe50227dba963734",
},
},
];