All Projects → Remix-Design → Remixicon

Remix-Design / Remixicon

Licence: apache-2.0
Open source neutral style icon system

Programming Languages

Less
1899 projects
CSS
56736 projects

Projects that are alternatives of or similar to Remixicon

Fontisto
The iconic font and CSS toolkit. Fontisto gives you scalable vector icons that can instantly be customized: size, color, drop shadow and anything that can be done with the power of CSS.
Stars: ✭ 413 (-89.56%)
Mutual labels:  icon, icon-font, icon-pack
Tabler Icons
A set of over 1400 free MIT-licensed high-quality SVG icons for you to use in your web projects.
Stars: ✭ 10,858 (+174.47%)
Mutual labels:  svg, icon-pack, icon
Coreui Icons
CoreUI Free Icons - Premium designed free icon set with marks in SVG, Webfont and raster formats
Stars: ✭ 1,813 (-54.17%)
Mutual labels:  svg, icon-font, icon-pack
Phosphor React
A flexible icon family for React
Stars: ✭ 97 (-97.55%)
Mutual labels:  svg, icon-font, icon-pack
Boxicons
High Quality web friendly icons
Stars: ✭ 1,104 (-72.09%)
Mutual labels:  svg, icon-font, icon-pack
Eva Icons
A pack of more than 480 beautifully crafted Open Source icons. SVG, Sketch, Web Font and Animations support.
Stars: ✭ 8,114 (+105.11%)
Mutual labels:  icon, icon-font, icon-pack
Akar Icons
A perfectly rounded icon library made for designers, developers, and pretty much everyone.
Stars: ✭ 184 (-95.35%)
Mutual labels:  svg, icon, icon-pack
Awesome Iconjar
44 Collect free icon sets for iconjar. 收集免费的图标包,iconjar 格式(44套)。
Stars: ✭ 188 (-95.25%)
Mutual labels:  icon, icon-font, icon-pack
Phosphor Icons
A flexible icon family for the web
Stars: ✭ 56 (-98.58%)
Mutual labels:  svg, icon-font, icon-pack
Icons
The premium icon font for @uiwjs Component Library. https://uiwjs.github.io/icons
Stars: ✭ 99 (-97.5%)
Mutual labels:  svg, icon, icon-font
Circle Flags
A collection of 300+ minimal circular SVG country flags
Stars: ✭ 139 (-96.49%)
Mutual labels:  svg, icon-pack
Vue Octicon
Octicon component for Vue.js, using inline SVG.
Stars: ✭ 129 (-96.74%)
Mutual labels:  svg, icon
Webfonts Loader
Make an icon font from SVGs!
Stars: ✭ 153 (-96.13%)
Mutual labels:  svg, icon-font
Svelte Awesome
Awesome SVG icon component for Svelte JS, built with Font Awesome icons. Based on Justineo/vue-awesome
Stars: ✭ 193 (-95.12%)
Mutual labels:  svg, icon
Simple Icons
SVG icons for popular brands
Stars: ✭ 12,090 (+205.61%)
Mutual labels:  svg, icon-pack
neu
Free icon set to the world
Stars: ✭ 26 (-99.34%)
Mutual labels:  icon-pack, icon
vue-icon-font
IconFont plugin for Vuejs
Stars: ✭ 25 (-99.37%)
Mutual labels:  icon, icon-font
Vue Awesome
Awesome SVG icon component for Vue.js, built-in with Font Awesome icons.
Stars: ✭ 2,302 (-41.81%)
Mutual labels:  svg, icon
pixeden-stroke-7-icon
A series of iOS 7 inspired vector icons in a custom @font-face icon font that can be styled dynamically using CSS.
Stars: ✭ 81 (-97.95%)
Mutual labels:  icon-pack, icon-font
flutter phosphor icons
Phosphor Icons for Flutter.
Stars: ✭ 12 (-99.7%)
Mutual labels:  icon-pack, icon-font

logo

npm downloads spectrum donate

English | 简体中文

Suspension Notification

Remix Icon is a set of open-source neutral-style system symbols for designers and developers. Unlike a patchwork icon library, 2200+ icons are all elaborately crafted so that they are born with the gene 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.

icon demo View the full set of Remix Icons at remixicon.com.

Usage

Basic Usage

Just click the icons you want from remixicon.com, and then you can download the icons in SVG or PNG format.

Designers can click the Copy SVG button and then press ⌘+V or Ctrl+V to paste the vector graphic into your design tool directly, easy and simple.

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.

The Copy SVG now supports Sketch, Figma, Adobe XD, Adobe Illustrator, Affinity Designer, Affinity Photo, etc.

Using SVG on the web is as simple as JPEG or PNG. Such as:

<img height="32" width="32" src="img/admin-fill.svg" />

Webfont Usage

Note: You can import Remix Icon with npm install, cdn or download it manually.

Installation

Note: If you'd like to use Remix Icon with a CDN, you can skip this installation step.

npm install remixicon --save
import 'remixicon/fonts/remixicon.css'

import CSS to your main.js

CDN

Copy the following code and add it to the <head> tag of your html document.

<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">

==Important Note:== We've changed our CDN service to jsDelivr from v2.2.0, and the previous CDN service will be terminated on Jan 30, 2020. Please replace your old CDN to the new link above so as not to affect your business. We apologize for the inconvenience.

The @2.5.0 in the CDN link can be changed to any history version we've published.

Download Manually

Download remixicon.css file, add it to the <head> tag of your html document.

Use

Add icon with class name, class name rule: ri-{name}-{style}

<i class="ri-admin-line"></i>
<i class="ri-admin-fill"></i>

Note: We changed the class name prefixes from remixicon- to ri from v2.0.0;

Note: You can go to remixicon.com to check the name of the icons. -line means the outlined style icon, and -fill means the filled style icon.

Sizing

RemixIcon 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:

<div style="font-size: 24px;">
  <i class="ri-admin-line ri-fw"></i> <!-- fixed width -->
  <i class="ri-admin-line ri-xxs"></i> <!-- 0.5em -->
  <i class="ri-admin-line ri-xs"></i> <!-- 0.75em -->
  <i class="ri-admin-line ri-sm"></i> <!-- 0.875em -->
  <i class="ri-admin-line ri-1x"></i> <!-- 1em -->
  <i class="ri-admin-line ri-lg"></i> <!-- 1.3333em -->
  <i class="ri-admin-line ri-xl"></i> <!-- 1.5em -->
  <i class="ri-admin-line ri-2x"></i> <!-- 2em -->
  <i class="ri-admin-line ri-3x"></i> <!-- 3em -->
  ...
  <i class="ri-admin-line ri-10x"></i> <!-- 10em -->
</div>

You can check the remixicon.css file for more info and details.

SVG Sprite Usage

Download remixicon.symbol.svg file into your project directory,use icons with the <use> element, such as:

<svg class='remix'>
  <use xlink:href="your-path/remixicon.symbol.svg#ri-admin-fill"></use>
</svg>
.remix {
  width: 24px;
  height: 24px;
  fill: #333;
}

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 to check the name of the icons. -line means the outlined style icon, and -fill means the filled style icon.

Contributing

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 with a screenshot or url to your svg-format file. If you are not familiar with github, you can also email us directly [email protected].

Icon Request

If there is no suitable icon for your usage scenario, you can create an issue with a title of "Icon request: " and fill the issue template.

RemixIcon is mainly focuses on user interface icons. If we did not include the logo icons you were looking for, I recommend this icon library - Simple Icons

Icon Search Keywords

We use tags.json file to manage the search keywords of our website. 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, 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.

Sub-projects

RemixIcon-Slides PowerPoint and Keynote verison of Remix Icon.

License

Remix Icon is licensed under the Apache License Version 2.0. Feel free to use these icons in your products and distribute them. We would be very grateful if you mention "Remix Icon" in your product info, but it's not required. The only thing we ask is that these icons are not for sale.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].