Coder Social home page Coder Social logo

remixicon's Introduction

logo

npm downloads donate

Sponsor

English | 简体中文

Remix Icon is a set of open-source neutral-style system symbols for designers and developers. Unlike a patchwork icon library, 2800+ 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.

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, it is 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"
/>

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

Download Manually

Download remixicon.css file, and 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.

React

Installation

npm install @remixicon/react
# or
yarn add @remixicon/react
# or
pnpm install @remixicon/react

Usage

import { RiHeartFill } from "@remixicon/react";

const MyComponent = () => {
    return (
        <RiHeartFill
            size={36} // set custom `width` and `height`
            color="red" // set `fill` color
            className="my-icon" // add custom class name
        />
    );
};

Vue 3

Installation

npm install @remixicon/vue
# or
yarn add @remixicon/vue
# or
pnpm install @remixicon/vue

Usage

<script setup lang="ts">
import { RiHeartFill } from "@remixicon/vue";
</script>

<template>
    <RiHeartFill size="36px" color="red" className="my-icon" />
</template>

Figma

RemixIcon Official Plugin.

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 the title of "Icon request: <Icon name>" and fill in the issue template.

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

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 version of Remix Icon.

License

Remix Icon is based on the Apache License Version 2.0 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.

Support Us

It's simple and easy. Just star our project and recommend it to your friends. Your encouragement is the greatest fuel to drive us forward.

Follow Us on X

We are all newcomers on X / Twitter. Feel free to follow us and help enhance our visibility.

Designer: https://twitter.com/woaichidapi

Developer: https://twitter.com/wendygaoyuan

remixicon's People

Contributors

0xflotus avatar ajmaln avatar ashfahan avatar binary-koan avatar coreyward avatar jenstornell avatar kero3009destiny avatar netchampfaris avatar nitin10s avatar uranbold avatar wendygaoyuan avatar xiaochunjimmy avatar yunyoujun avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

remixicon's Issues

Discord logo

Icon Request

Amazing work here ! Good job guys ! It would also be great to have a category of game icons like CS:GO, Stacraft 2, League of Legends, ...

Bar chart icons

Icon Request

1.
Icon name: Grouped bar chart
Tags of this icon: Grouped bar chart

2.
Icon name: Stacked bar chart
Tags of this icon: Stacked bar chart

3.
Icon name: Adjustable bar chart
Tags of this icon: Adjustable bar chart

4.
Icon name: horizontal bar charts
Tags of this icon: horizontal bar charts

  • Use case: Platform like tableau.com and developers.google.com/chart
  • Screenshots of similar icons:

Github link on homepage

When using a site like yours I often look for the Github icon, to go to the repo. In some cases it's fixed at the top right, in other cases it's part of the menu. In your case it's kind of hidden.

It's possible to go to the repo by clicking "Usage" or "Request" but for someone that does not know, it does not indicate that these links goes to Github.

My suggestion is to add a link with the github icon somewhere at the top of the homepage. As a bonus I think you will have even more stars that way.

Website icon search keywords

On the website, it seems like only one keyword in a search matches one icon.

For example, if I search for "refresh" I see two icons called "refresh". So far so good. However if I search for "reload" I don't get a result. In this case I probably was looking for a kind of spinner with arrows, just like the "refresh" icon. So for usability it can be good if multiple searches could end up with the same match.

  • refresh
  • reload
  • spinner
  • loader
  • ajax
  • update

could find the icon "spinner".

Key Icon

Icon Request

  • Icon name: key
  • Tags of this icon: key
  • Use case: Lock key
  • Screenshots of similar icons:
    Screenshot 2019-04-24 at 4 52 07 PM
    Screenshot 2019-04-24 at 4 51 43 PM

Sell Goodies

Sell goodies like the t-shirts, mugs and caps with unique icons which you are designed it help you guys to make this project more profitable and enjoyable

Icon request: hashtag

Icon Request

  • Icon name: hashtag
  • Tags of this icon: tag, hash
  • Use case: before header or tag
  • Screenshots of similar icons: image

Shared document

Icon Request

Icon name:

  • Shared by me
  • Shared with me

Tags of this icon:

  • Shared by me, shared with me, shared document

Use case:

  • Collaborative tools

Screenshots of similar icons:

  • A person with left and right arrow (example)
  • A document+person have left and right arrow

Patreon

Icon Request

  • Icon name: patreon
  • Tags of this icon: patreon, donate, money, app
  • Use case: patreon donation button
  • Screenshots of similar icons: -

Subscript and Superscript Icons

Icon Request

  • Icon name: Subscript
  • Tags of this icon: #subscript
  • Use case: in Editor to trigger subscript of characters
  • Screenshots of similar icons: used one of yours to remix ;-)
    subscript

  • Icon name: Superscript
  • Tags of this icon: #superscript
  • Use case: in Editor to trigger superscript of characters
  • Screenshots of similar icons: used one of yours to remix ;-)
    superscript

Telegram icon

Icon Request

  • Icon name: telegram
  • Tags of this icon: messenger, logo
  • Use case: telegram logo
  • Screenshots of similar icons: see telegram website

Buggy scrollbar

The scrollbar on the site has a lot of bugs. It's because it does not use the native scrollbar, but a library. I think function is more important than look in this case.

Personally in my projects I use only css to enhance the look of the scrollbar. I suggest you do the same. When all browsers support it, you just need to make minor css changes.

https://css-tricks.com/the-current-state-of-styling-scrollbars/

Alternative code icon

Icon Request

I'd like to see alternative code icon with slash, like this: </>

  • Icon name: code-2
  • Tags of this icon: code, programming, hacking, development
  • Use case: show if there is any code
  • Screenshots of similar icons: code icon

Document protected

Icon Request

  • Icon name: Document protected
  • Tags of this icon: file-protected, document-protected, document-secured
  • Use case:
  • Screenshots of similar icons:
    Icon_24-512

Icons Request: Programming Languages

The development segment is not complete without logos of programming languages such as Python, JavaScript, Ruby, Java, and others. Also, the addition of the most popular web frameworks/libraries would be beneficial (Vue, React, Angular, Svelte, Laravel, Spring, Expressjs).

  • icon name: [name of the programming languages]
  • tags: [name of the programming languages]
  • use case: each time one wants to show what languages do they know, when demonstrating projects, etc
  • screenshots of similar icons: take a look here https://vorillaz.github.io/devicons/#/cheat

Size and fixed width

I'd like to be able to change the icon size via a html class like in font awesome (fa-2x, fa-lg).
Also sometimes it is very usefull to have a fixed width for icons, for example to use them in lists. The class in fa would be fa-fw

Is this already possible or do you plan to integrate these options in the future?

Regards
Andi

check-double-line

Icon Request

  • Icon name: check-double-line
  • Tags of this icon: check,double
  • Use case: In my case, I would like it in a pricing table to make the last items in the list really stand out, compared to the check icon.
  • Screenshots of similar icons: https://thenounproject.com/term/double-check/1003313/

You already have a nice check-icon. So if you make this icon, make sure that looks similar to that one:

https://github.com/Remix-Design/remixicon/blob/master/icons/System/check-line.svg

Consider adding `font-display: swap`?

Hi, will you consider adding a lazy-load option when loading font file using font-display: swap

Maybe something like <i class="remixicon-account-box-fill remixicon-lazy"></i> will make this options is optional,

The goal of this option is to reach a higher score in google speed insight which tells us that the icon is invisible during loading font file until it's loaded completely.

Bug report: icon `zhihu-line` is bolder than `zhihu-fill`

Describe the bug
The zhihu-line icon is bolder than zhihu-fill icon.

To Reproduce
Steps to reproduce the behavior:

  1. Go to https://remixicon.com/
  2. Search zhihu
  3. See error...

Expected behavior
zhihu-line icon is thinner than zhihu-fill icon.

Screenshots
深度截图_选择区域_20190519232103

Device (please complete the following information):

  • OS: [Deepin 15.10]
  • Browser Version [Chrome 73.0.3683.86(64-bit)]
  • Website Version [1.5.0]

Additional context
Thanks for your beautiful icons.
If my opinion is wrong, please tell me why.

Email Icons

Icon Request

  • Icon name: email sent successfully, email failed, spam emails, email alert, add a new email, remove email, favorite email, download emails, email account settings, email scheduling, email privacy, drafts
  • Tags of this icon:
  • Use case: SaaS platform
  • Screenshots of similar icons: https://www.flaticon.com/search?word=email&style_id=28

Check all icon

Icon Request

  • Icon name: check-all
  • Tags of this icon: check, check-all, checkboxes
  • Use case: Let's say we have a column with checkboxes and at the top we want an icon to check them all. We could have an empty checkbox, but that may need explaining. Also note that in case implemented, there are two states, empty and checked
  • Screenshots of similar icons: https://img.icons8.com/ios/420/check-all.png

Add icon preview in release note

Currently, you are only showing the list of icons names in the release note instead of that I would like to suggest to showcasing the icon name and preview or else you can also add a version filter with the search bar

Icon request: douban

Icon Request

  • Icon name: douban
  • Tags of this icon: logo, book, film
  • Use case: Icon for douban
  • Screenshots of similar icons: image

Icon request: Sun

Icon Request

  • Icon name: Sun
  • Tags of this icon: sun, light
  • Use case: Would be a useful companion for the moon icon. Could be used to switch between dark/light mode on a website.
  • Screenshots of similar icons: -

Collection of Linux distributions

Icon Request

There are a bunch of icons for different operating systems or their related companies like Android, Apple (iOS & MacOS), Windows (for any Windows version). Unfortunately, there is neither the Linux penguin nor are there any logos for major Linux distributions like Ubuntu, RHEL, CentOS, Gentoo, Arch, Debian, Linux Mint, openSUSE, Manjaro, Fedora. BSD logos are also missing.

It would be great if some of them are included in the next releases.

  • Icon name: tux
  • Tags of this icon: tux, penguin, linux, os
  • Use case: Web site with comparison of different operating systems.
  • Screenshots of similar icons:
    image

Usage Question?

Hello,

Instead of inserting SVG, Can we set the Font name and Insert Font Symbol on the program?

Thanks.

Shared and received folder

Icon Request

  • Icon name: shared folder

  • Tags of this icon: shared folder

  • Use case: Folder has been shared with team members

  • Screenshots of similar icons: A folder with right arrow

  • Icon name: received folder

  • Tags of this icon: received folder

  • Use case: Folder has been received by a team members

  • Screenshots of similar icons: A folder with left arrow

Icon Request: Spotify

Icon Request

  • Icon name: Spotify
  • Tags of this icon: spotify
  • Use case: Spotify is a very popular music streaming app
  • Screenshots of similar icons:
    Spotify Logo

Remixicon in a real project

I've been looking for a free icon pack a very long time that matches my requirements and finally I've found it.

My requirements was

  • Free for commercial use
  • Common icons in the pack
  • "+file" and "+folder" icons. In other packages there was "+file" OR "+folder", never both.

As a little thank you, I'll give you a screenshot of my unfinished project, so you can see how the icons can be used. It's soon a markdown editor for PHP.

image

The icons looks great for most part. The filetree is using 18px icons so in that case it gets a bit blurry (especially the text file icon). That however is not your fault, because you are using a 24px grid which makes the topbar in my case look awesome.

At the moment I can't make a donation (hopefully in the future), but I will gladly put a link to your icons in my readme.

Thanks!

Folder protected

Icon Request

  • Icon name: Folder protected
  • Tags of this icon: folder-protected, directory-protected, folder-secured
  • Use case:
  • Screenshots of similar icons:
    folder-protected-outline-icon-450w-1021501303

Icon Request: Card processors

Icon Request

  • Icon name: mastercard, visa, amex, diners club, maestro, direct debit
  • Tags of this icon: mastercard, maestro, visa, amex, diners-club, direct-debit
  • Use case: For websites or UIs that have some sort of card processing
  • Screenshots of similar icons:

Card Processors

Logos of games

Icons Request

Icons name:

  • Overwatch
  • League of Legends
  • Counter Strike : Global Offensive
  • Unreal tournament
  • Quake
  • Rocket League
  • Starcraft 2
  • DOTA 2
  • Super smash bros. ultimate
  • Use case: Develop a platform of gaming.

Remix icon logo

Icon Request

  • Icon name: Remix icon
  • Tags of this icon: remix-icon
  • Use case: mention Remix icon
  • Screenshots of similar icons: -

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.