{"id":19763066,"url":"https://github.com/fdiskas/react-native-unicons","last_synced_at":"2025-04-30T14:31:35.717Z","repository":{"id":49023972,"uuid":"381761379","full_name":"FDiskas/react-native-unicons","owner":"FDiskas","description":null,"archived":false,"fork":false,"pushed_at":"2023-01-20T12:28:38.000Z","size":467,"stargazers_count":5,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-21T02:26:55.482Z","etag":null,"topics":["hacktoberfest","icons","react","react-native","svg"],"latest_commit_sha":null,"homepage":"https://iconscout.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FDiskas.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-06-30T16:10:24.000Z","updated_at":"2024-03-27T02:36:14.000Z","dependencies_parsed_at":"2023-02-12T02:01:32.972Z","dependency_job_id":null,"html_url":"https://github.com/FDiskas/react-native-unicons","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FDiskas%2Freact-native-unicons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FDiskas%2Freact-native-unicons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FDiskas%2Freact-native-unicons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FDiskas%2Freact-native-unicons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FDiskas","download_url":"https://codeload.github.com/FDiskas/react-native-unicons/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251721436,"owners_count":21632829,"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":["hacktoberfest","icons","react","react-native","svg"],"created_at":"2024-11-12T04:07:54.389Z","updated_at":"2025-04-30T14:31:35.309Z","avatar_url":"https://github.com/FDiskas.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## React Native Unicons Icons\n\n[![npm version](https://img.shields.io/npm/v/react-native-unicons.svg?style=flat-square)](https://www.npmjs.com/package/react-native-unicons)\n[![npm downloads](https://img.shields.io/npm/dm/react-native-unicons.svg?style=flat-square)](https://www.npmjs.com/package/react-native-unicons)\n[![npm types](https://badgen.net/npm/types/react-native-unicons?style=flat-square)](https://www.npmjs.com/package/react-native-unicons)\n[![dependency status](https://img.shields.io/librariesio/release/npm/react-native-unicons?style=flat-square)](https://www.npmjs.com/package/react-native-unicons)\n[![npm bundle size](https://img.shields.io/bundlephobia/minzip/react-native-unicons?style=flat-square)](https://www.npmjs.com/package/react-native-unicons)\n[![Open in Visual Studio Code](https://open.vscode.dev/badges/open-in-vscode.svg)](https://open.vscode.dev/FDiskas/react-native-unicons)\n\n#### What is react-native-unicons?\n\nreact-native-unicons is a collection of simply beautiful open source icons for React Native. Each icon is designed on a 24x24 grid with an emphasis on simplicity, consistency and readability.\n\nAt its core, Unicons is a collection of SVG files. To use SVG files on React Native, [`react-native-svg`](https://github.com/react-native-community/react-native-svg) is needed. This component contains \"line\" style Unicons icons converted and made compatible with [`react-native-svg`](https://github.com/react-native-community/react-native-svg) package.\n\n#### Based on [Unicons Icons](https://www.npmjs.com/package/@iconscout/unicons) `v4.0.0`\n\n## Installation\n\n1. Ensure sure you've installed [`react-native-svg`](https://github.com/react-native-community/react-native-svg)\n2. `npm i react-native-unicons`\n\n### Icons\n\nList of available icons in this package.\n[https://iconscout.com](https://iconscout.com/unicons/explore/line)\n\n### Usage\n\nTo use icons as component, all icon names is formatted to Pascal Case.\naward-alt =\u003e `\u003cAwardAlt /\u003e`\n\n```javascript\nimport { AwardAlt } from \"react-native-unicons\";\n\nconst App = () =\u003e {\n  return \u003cAwardAlt /\u003e;\n};\n```\n\nIcons can be configured with inline props:\n\n```javascript\n\u003cAwardAlt stroke=\"red\" fill=\"#fff\" width={32} height={32} /\u003e\n```\n\nYou can also include the whole icon pack:\n\n```javascript\nimport * as Icon from \"react-native-unicons\";\n\nconst App = () =\u003e {\n  return \u003cIcon.AwardAlt color=\"red\" /\u003e;\n};\n```\n\n### Properties\n\nAny [Svg property](https://github.com/react-native-community/react-native-svg#common-props) and the following:\n\n| Prop              | Description                                                          | Default          |\n| ----------------- | -------------------------------------------------------------------- | ---------------- |\n| **`width`**       | Width of the icon.                                                   | `24`             |\n| **`height`**      | Height of the icon.                                                  | `24`             |\n| **`stroke`**      | The stroke prop refers to the color outline the icon.                | `\"currentColor\"` |\n| **`strokeWidth`** | The strokeWidth prop specifies the width of the outline on the icon. | `2`              |\n| **`fill`**        | The fill prop refers to the color inside the icon.                   | `\"currentColor\"` |\n| **`color`**       | The color inside the icon.                                           | `\"currentColor\"` |\n\n### Author\n\n\u003c!-- readme: FDiskas -start --\u003e\n\u003ctable\u003e\n\u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\n        \u003ca href=\"https://github.com/fdiskas\"\u003e\n            \u003cimg src=\"https://avatars.githubusercontent.com/u/468006?v=4\" width=\"100;\" alt=\"fdiskas\"/\u003e\n            \u003cbr /\u003e\n            \u003csub\u003e\u003cb\u003eVytenis\u003c/b\u003e\u003c/sub\u003e\n        \u003c/a\u003e\n    \u003c/td\u003e\u003c/tr\u003e\n\u003c/table\u003e\n\u003c!-- readme: FDiskas -end --\u003e\n\n## Contributors\n\n\u003c!-- readme: contributors -start --\u003e\n\u003ctable\u003e\n\u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\n        \u003ca href=\"https://github.com/FDiskas\"\u003e\n            \u003cimg src=\"https://avatars.githubusercontent.com/u/468006?v=4\" width=\"100;\" alt=\"FDiskas\"/\u003e\n            \u003cbr /\u003e\n            \u003csub\u003e\u003cb\u003eVytenis\u003c/b\u003e\u003c/sub\u003e\n        \u003c/a\u003e\n    \u003c/td\u003e\u003c/tr\u003e\n\u003c/table\u003e\n\u003c!-- readme: contributors -end --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffdiskas%2Freact-native-unicons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffdiskas%2Freact-native-unicons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffdiskas%2Freact-native-unicons/lists"}