{"id":4364,"url":"https://github.com/akveo/react-native-eva-icons","last_synced_at":"2025-04-13T06:42:09.149Z","repository":{"id":47277502,"uuid":"188694434","full_name":"akveo/react-native-eva-icons","owner":"akveo","description":"⭐Eva Icons for React Native","archived":false,"fork":false,"pushed_at":"2023-04-28T13:26:55.000Z","size":1284,"stargazers_count":204,"open_issues_count":6,"forks_count":15,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-04-10T22:03:41.790Z","etag":null,"topics":["eva-icons","icons-source","react-native"],"latest_commit_sha":null,"homepage":"https://github.com/akveo/eva-icons","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/akveo.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2019-05-26T14:37:53.000Z","updated_at":"2024-12-25T11:22:52.000Z","dependencies_parsed_at":"2024-01-08T01:02:55.654Z","dependency_job_id":"26a486e4-0ade-4f6c-833e-9e3eb2b2aae2","html_url":"https://github.com/akveo/react-native-eva-icons","commit_stats":null,"previous_names":["artyorsh/react-native-eva-icons"],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akveo%2Freact-native-eva-icons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akveo%2Freact-native-eva-icons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akveo%2Freact-native-eva-icons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akveo%2Freact-native-eva-icons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/akveo","download_url":"https://codeload.github.com/akveo/react-native-eva-icons/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248305839,"owners_count":21081574,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["eva-icons","icons-source","react-native"],"created_at":"2024-01-05T20:17:09.592Z","updated_at":"2025-04-13T06:42:09.117Z","avatar_url":"https://github.com/akveo.png","language":"TypeScript","funding_links":[],"categories":["Components","TypeScript"],"sub_categories":["UI"],"readme":"# react-native-eva-icons [\u003cimg src=\"https://i.imgur.com/oMcxwZ0.png\" alt=\"Eva Design System\" height=\"20px\" /\u003e][link:eva] [![Build Status][badge:github-actions]][link:github-actions] [![Coverage Status][badge:coveralls]][link:coveralls]\n\n❤️ Clean and powerful [**Eva Icons**][link:eva-icons] implementation for **React Native** based on [react-native-svg][link:react-native-svg] elements. [Demo][link:demo]\n\n[\u003cimg src=\"https://i.imgur.com/cNC9jXj.png\" /\u003e](./README.md)\n\n## Installation\n\n```bash\nnpm i react-native-eva-icons\n# Using Yarn?\n# yarn add react-native-eva-icons\n```\n\nThis framework assumes you have already installed **react-native-svg**, but if not - you should [install it][link:react-native-svg:install] too.\n\n## Usage\n\nIcons can be used by it's name using only `Icon` component.\n\n```jsx\nimport { Icon } from 'react-native-eva-icons';\n\nexport const GithubIcon = () =\u003e (\n  \u003cIcon name='github' width={48} height={48} fill='green' /\u003e\n);\n```\n\nYou can also use a direct imports.\n\n```jsx\nimport GithubIcon from 'react-native-eva-icons/icons/Github';\n\nexport const GithubIcon = () =\u003e (\n  \u003cGithubIcon width={48} height={48} fill='green' /\u003e\n);\n```\n\n## Customization\n\nReact Native Eva Icons are built with  **react-native-svg** elements. All of the components can accept [the same properties as SVG elements][link:react-native-svg:props].\n\nFor example, you can change icon fill color with the following code\n\n```tsx\nimport { Icon } from 'react-native-eva-icons';\n\nexport const GithubIcon = () =\u003e (\n  \u003cIcon name='github' fill='green' /\u003e\n);\n```\n\n## Animations\n\nImplements original Eva Icons animations. Try [demo on Snack][link:demo] for review!\n\n```tsx\nimport React from 'react';\nimport { TouchableWithoutFeedback } from 'react-native';\nimport { Icon } from 'react-native-eva-icons';\n\nexport const GithubIcon = () =\u003e {\n\n  const iconRef = React.useRef(null);\n\n  const onIconPress = () =\u003e {\n    iconRef.current?.startAnimation();\n  };\n\n  return (\n    \u003cTouchableWithoutFeedback onPress={onIconPress}\u003e\n      \u003cIcon ref={iconRef} animation='pulse' name='activity' fill='green' /\u003e\n    \u003c/TouchableWithoutFeedback\u003e\n  );\n};\n```\n\n## Demo\n\nTry it on [Snack][link:demo]!\n\n## Where is icons source code?\n\nReact Native Eva Icons sources are generated with [ts-node scripts](./scripts/ts-node), so there is no need to track them in default branch of the repo. But if you don't trust CI and want to review generated sources, take a look at [bundle branch][link:build-branch].\n\n## How can I support this project?\n\nAny way of supporting gives me a ton of motivation to create other beautiful Open Source things\n\n- Star this repo :star:\n- Submit new issues, open a pull requests :wrench:\n- Follow me on [Twitter][link:twitter] :smirk_cat:\n\n[link:build-branch]: https://github.com/artyorsh/react-native-eva-icons/tree/bundle/v1.0.0-beta.1\n[link:demo]: https://snack.expo.io/@art.yorsh/react-native-eva-icons-playground\n[link:eva-icons]: https://github.com/akveo/eva-icons\n[link:react-native-svg]: https://github.com/react-native-community/react-native-svg\n[link:react-native-svg:install]: https://github.com/react-native-community/react-native-svg#installation\n[link:react-native-svg:props]: https://github.com/react-native-community/react-native-svg#common-props\n[link:github-actions]: https://github.com/artyorsh/react-native-eva-icons/actions\n[link:coveralls]: https://coveralls.io/github/artyorsh/react-native-eva-icons?branch=master\n[link:eva]: https://eva.design\n[link:twitter]: https://twitter.com/artyorsh\n[badge:github-actions]: https://github.com/artyorsh/react-native-eva-icons/workflows/Build/badge.svg\n[badge:coveralls]: https://coveralls.io/repos/github/artyorsh/react-native-eva-icons/badge.svg?branch=master\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakveo%2Freact-native-eva-icons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fakveo%2Freact-native-eva-icons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakveo%2Freact-native-eva-icons/lists"}