{"id":13397068,"url":"https://github.com/Remix-Design/RemixIcon","last_synced_at":"2025-03-13T23:32:07.550Z","repository":{"id":37390858,"uuid":"161979323","full_name":"Remix-Design/RemixIcon","owner":"Remix-Design","description":"Open source neutral style icon system","archived":false,"fork":false,"pushed_at":"2024-06-14T06:30:05.000Z","size":24294,"stargazers_count":6702,"open_issues_count":492,"forks_count":492,"subscribers_count":78,"default_branch":"master","last_synced_at":"2024-10-14T12:02:30.133Z","etag":null,"topics":["icon","icon-font","icon-pack","svg"],"latest_commit_sha":null,"homepage":"https://remixicon.com","language":"Less","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Remix-Design.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"License","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-12-16T07:48:28.000Z","updated_at":"2024-10-14T11:41:24.000Z","dependencies_parsed_at":"2024-06-18T11:09:30.111Z","dependency_job_id":"19d5b2f5-e8ae-4156-8a1d-08e724737153","html_url":"https://github.com/Remix-Design/RemixIcon","commit_stats":{"total_commits":177,"total_committers":16,"mean_commits":11.0625,"dds":"0.22598870056497178","last_synced_commit":"e252d6eac05b33a01c80794ffa0c745ed5d0b20e"},"previous_names":[],"tags_count":27,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Remix-Design%2FRemixIcon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Remix-Design%2FRemixIcon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Remix-Design%2FRemixIcon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Remix-Design%2FRemixIcon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Remix-Design","download_url":"https://codeload.github.com/Remix-Design/RemixIcon/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243500237,"owners_count":20300760,"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":["icon","icon-font","icon-pack","svg"],"created_at":"2024-07-30T18:01:10.463Z","updated_at":"2025-03-13T23:32:07.538Z","avatar_url":"https://github.com/Remix-Design.png","language":"Less","readme":"[![logo](./.github/files/logo-github.svg)](https://remixicon.com)\n\n[![npm](https://img.shields.io/npm/v/remixicon.svg?labelColor=4A4A4A\u0026color=006AFF\u0026style=flat-square)](https://www.npmjs.com/package/remixicon)\n[![downloads](https://img.shields.io/npm/dt/remixicon.svg?labelColor=4A4A4A\u0026color=23AF5F\u0026style=flat-square)](https://www.npmjs.com/package/remixicon)\n[![](https://data.jsdelivr.com/v1/package/npm/remixicon/badge)](https://www.jsdelivr.com/package/npm/remixicon)\n[![donate](https://img.shields.io/badge/-Donate-DA6429.svg?style=flat-square)](https://remixicon.com/support-us)\n\n[![Sponsor](./.github/files/streamline.svg)](https://go.streamlinehq.com/remix-github)\n\nEnglish | [简体中文](./README_CN.md)\n\nRemix Icon is a set of open-source neutral-style system symbols for designers and developers. Unlike a patchwork icon library, 3000+ icons are all elaborately crafted so that they are born with the genes of readability, consistency, and perfect pixels. Each icon was designed in \"Outlined\" and \"Filled\" styles based on a 24x24 grid. Of course, all the icons are free for both personal and commercial use.\n\n[![icon demo](./.github/files/preview.svg)](https://remixicon.com)\nView the full set of Remix Icons at [remixicon.com](https://remixicon.com).\n\n## Usage\n\n### Basic Usage\n\nJust click the icons you want from [remixicon.com](https://remixicon.com), and then you can download the icons in SVG or PNG format.\n\nDesigners can click the `Copy SVG` button and then press `⌘+V` or `Ctrl+V` to paste the vector graphic into your design tool directly, it is easy and simple.\n\n\u003e We recommend that designers download or copy icons from our website when needed instead of managing all of them in a local folder. The website's search engine allows you to quickly locate the icon you are looking for and the icons on the website are being continuously updated.\n\u003e\n\u003e The `Copy SVG` now supports Sketch, Figma, Adobe XD, Adobe Illustrator, Affinity Designer, Affinity Photo, etc.\n\nUsing SVG on the web is as simple as JPEG or PNG. Such as:\n\n```html\n\u003cimg height=\"32\" width=\"32\" src=\"img/admin-fill.svg\" /\u003e\n```\n\n### Webfont Usage\n\n\u003e **Note:** You can import Remix Icon with npm install, cdn or download it manually.\n\n#### Installation\n\n\u003e **Note:** If you'd like to use Remix Icon with a CDN, you can skip this installation step.\n\n```\nnpm install remixicon --save\n```\n\n```\nimport 'remixicon/fonts/remixicon.css'\n```\n\n\u003e import CSS to your main.js\n\n#### CDN\n\nCopy the following code and add it to the \u0026lt;head\u0026gt; tag of your HTML document.\n\n```html\n\u003clink\n    href=\"https://cdn.jsdelivr.net/npm/remixicon@4.5.0/fonts/remixicon.css\"\n    rel=\"stylesheet\"\n/\u003e\n```\n\n\u003e The `@4.5.0` in the CDN link can be changed to any history version we've published.\n\n#### Download Manually\n\nDownload [`remixicon.css`](https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css) file, and add it to the \u0026lt;head\u0026gt; tag of your HTML document.\n\n#### Use\n\nAdd icon with class name, class name rule: ri-{name}-{style}\n\n```html\n\u003ci class=\"ri-admin-line\"\u003e\u003c/i\u003e\n\u003ci class=\"ri-admin-fill\"\u003e\u003c/i\u003e\n```\n\n\u003e **Note:** We changed the class name prefixes from `remixicon-` to `ri` from v2.0.0;\n\n\u003e **Note:** You can go to [remixicon.com](https://remixicon.com) to check the name of the icons. `-line` means the outlined style icon, and `-fill` means the filled style icon.\n\n#### Sizing\n\nRemixIcon can be resized by CSS class integrated by `remixicon.css` . Icons inherit the `font-size` of their parent container and with the following classes, you can increase or decrease the size of icons relative to that inherited `font-size`. You can also use `ri-fw` class for a fixed width for icons. For example:\n\n```html\n\u003cdiv style=\"font-size: 24px;\"\u003e\n  \u003ci class=\"ri-admin-line ri-fw\"\u003e\u003c/i\u003e \u003c!-- fixed width --\u003e\n  \u003ci class=\"ri-admin-line ri-xxs\"\u003e\u003c/i\u003e \u003c!-- 0.5em --\u003e\n  \u003ci class=\"ri-admin-line ri-xs\"\u003e\u003c/i\u003e \u003c!-- 0.75em --\u003e\n  \u003ci class=\"ri-admin-line ri-sm\"\u003e\u003c/i\u003e \u003c!-- 0.875em --\u003e\n  \u003ci class=\"ri-admin-line ri-1x\"\u003e\u003c/i\u003e \u003c!-- 1em --\u003e\n  \u003ci class=\"ri-admin-line ri-lg\"\u003e\u003c/i\u003e \u003c!-- 1.3333em --\u003e\n  \u003ci class=\"ri-admin-line ri-xl\"\u003e\u003c/i\u003e \u003c!-- 1.5em --\u003e\n  \u003ci class=\"ri-admin-line ri-2x\"\u003e\u003c/i\u003e \u003c!-- 2em --\u003e\n  \u003ci class=\"ri-admin-line ri-3x\"\u003e\u003c/i\u003e \u003c!-- 3em --\u003e\n  ...\n  \u003ci class=\"ri-admin-line ri-10x\"\u003e\u003c/i\u003e \u003c!-- 10em --\u003e\n\u003c/div\u003e\n```\n\n\u003e You can check the [`remixicon.css`](https://github.com/Remix-Design/RemixIcon/blob/master/fonts/remixicon.css) file for more info and details.\n\n### SVG Sprite Usage\n\nDownload [`remixicon.symbol.svg`](https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.symbol.svg) file into your project directory, use icons with the `\u003cuse\u003e` element, such as:\n\n```html\n\u003csvg class=\"remix\"\u003e\n    \u003cuse xlink:href=\"your-path/remixicon.symbol.svg#ri-admin-fill\"\u003e\u003c/use\u003e\n\u003c/svg\u003e\n```\n\n```css\n.remix {\n    width: 24px;\n    height: 24px;\n    fill: #333;\n}\n```\n\n\u003e **Note:** `ri-admin-fill` after the `#` in the above example can be replaced with any valid icon name of Remix Icon. You can go to [remixicon.com](https://remixicon.com) to check the name of the icons. `-line` means the outlined style icon, and `-fill` means the filled style icon.\n\n### React\n\n#### Installation\n\n```bash\nnpm install @remixicon/react\n# or\nyarn add @remixicon/react\n# or\npnpm install @remixicon/react\n```\n\n#### Usage\n\n```jsx\nimport { RiHeartFill } from \"@remixicon/react\";\n\nconst MyComponent = () =\u003e {\n    return (\n        \u003cRiHeartFill\n            size={36} // set custom `width` and `height`\n            color=\"red\" // set `fill` color\n            className=\"my-icon\" // add custom class name\n        /\u003e\n    );\n};\n```\n\n### Vue 3\n\n#### Installation\n\n```bash\nnpm install @remixicon/vue\n# or\nyarn add @remixicon/vue\n# or\npnpm install @remixicon/vue\n```\n\n#### Usage\n\n```vue\n\u003cscript setup lang=\"ts\"\u003e\nimport { RiHeartFill } from \"@remixicon/vue\";\n\u003c/script\u003e\n\n\u003ctemplate\u003e\n    \u003cRiHeartFill size=\"36px\" color=\"red\" className=\"my-icon\" /\u003e\n\u003c/template\u003e\n```\n\n### Figma\n\n[RemixIcon Official Plugin.](https://www.figma.com/community/plugin/1089569154784319246/remixicon)\n\n## Contributing\n\n\u003e **Note:** In order to ensure the quality of each icon, we currently do not accept third-party drawn icons. If you want to contribute an icon to Remix Icon, you can create an [issue](https://github.com/Remix-Design/remixicon/issues) with a screenshot or URL to your svg-format file. If you are not familiar with GitHub, you can also email us directly `jimmy@remixdesign.cn`.\n\n### Icon Request\n\nIf there is no suitable icon for your usage scenario, you can create an [issue](https://github.com/Remix-Design/remixicon/issues) with the title of \"Icon request: `\u003cIcon name\u003e`\" and fill in the issue template.\n\n\u003e RemixIcon is mainly focused on user interface icons. If we did not include the logo icons you were looking for, I recommend this icon library - [Simple Icons](https://github.com/simple-icons/simple-icons)\n\n### Icon Search Keywords\n\nWe use [`tags.json`](https://github.com/Remix-Design/remixicon/blob/master/tags.json) file to manage the search keywords of our [website](https://remixicon.com). But at the moment, we don't have a good automatic method to complete the keywords for each icon. So we hope you can help us to improve the `tags.json` file by creating [issues](https://github.com/Remix-Design/remixicon/issues), sending emails, or \"pull request\" of tags.json file to make the search engine better. Especially when one of our icons matches your scene but you don't find the icon with your keywords.\n\n## Sub-projects\n\n[RemixIcon-Slides](https://github.com/Remix-Design/RemixIcon-Slides) PowerPoint and Keynote version of Remix Icon.\n\n## License\n\nRemix Icon is based on the [Apache License Version 2.0](https://github.com/Remix-Design/remixicon/blob/master/License) license. Feel free to use these icons in your products and distribute them. We would be very grateful if you mentioned \"Remix Icon\" in your product info, but it's not required. The only thing we ask is that these icons are not for sale.\n\n## Support Us\n\nIt's simple and easy. Just star our project and recommend it to your friends. Your encouragement is the greatest fuel to drive us forward.\n\n## Follow Us on X\n\nWe are all newcomers on X / Twitter. Feel free to follow us and help enhance our visibility.\n\nRemixDesign: https://x.com/RemixDesignHQ\n\nDesigner: https://x.com/remixdesigner\n\nDeveloper: https://twitter.com/wendygaoyuan\n","funding_links":[],"categories":["CSS","Less","Uncategorized","Design","Usage","🎨 Design \u0026 Creative","Forms \u0026 UI Components","IconSet Included","General"],"sub_categories":["Uncategorized","Supported Fonts"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FRemix-Design%2FRemixIcon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FRemix-Design%2FRemixIcon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FRemix-Design%2FRemixIcon/lists"}