# RemixIcon
**Repository Path**: mirrors/RemixIcon
## Basic Information
- **Project Name**: RemixIcon
- **Description**: Remix Icon 是一套面向设计师和开发者的开源图标库
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 27
- **Forks**: 3
- **Created**: 2019-05-14
- **Last Updated**: 2025-09-20
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
[](https://remixicon.com)
[](https://www.npmjs.com/package/remixicon)
[](https://www.npmjs.com/package/remixicon)
[](https://www.jsdelivr.com/package/npm/remixicon)
[](https://remixicon.com/support-us)
[](https://go.streamlinehq.com/remix-github)
English | [简体中文](./README_CN.md)
Remix 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.
[](https://remixicon.com)
View the full set of Remix Icons at [remixicon.com](https://remixicon.com).
## Usage
### Basic Usage
Just click the icons you want from [remixicon.com](https://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:
```html
```
### 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.
```html
```
> The `@4.5.0` in the CDN link can be changed to any history version we've published.
#### Download Manually
Download [`remixicon.css`](https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/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}
```html
```
> **Note:** We changed the class name prefixes from `remixicon-` to `ri` from v2.0.0;
> **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.
#### 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:
```html