@remixicon/vue 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,36 @@
1
+ [![logo](http://cdn.remixicon.com/logo-github.svg)](https://remixicon.com)
2
+
3
+ [![remixicon](https://img.shields.io/npm/v/remixicon.svg?labelColor=4A4A4A&color=006AFF&style=flat-square&label=remixicon)](https://www.npmjs.com/package/remixicon)
4
+ [![npm](https://img.shields.io/npm/v/@remixicon/vue.svg?labelColor=4A4A4A&color=006AFF&style=flat-square)](https://www.npmjs.com/package/@remixicon/vue)
5
+ [![downloads](https://img.shields.io/npm/dt/@remixicon/vue.svg?labelColor=4A4A4A&color=23AF5F&style=flat-square)](https://www.npmjs.com/package/@remixicon/vue)
6
+ [![](https://data.jsdelivr.com/v1/package/npm/@remixicon/vue/badge)](https://www.jsdelivr.com/package/npm/@remixicon/vue)
7
+ [![donate](https://img.shields.io/badge/-赞助-DA6429.svg?style=flat-square)](https://remixicon.com/support-us)
8
+
9
+ English | [简体中文](./README_CN.md)
10
+
11
+ Remix Icon is a set of open-source neutral-style system symbols for designers and developers. Unlike a patchwork icon library, 2600+ 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.
12
+
13
+ [![icon demo](http://cdn.remixicon.com/preview.svg)](https://remixicon.com)
14
+ View the full set of Remix Icons at [remixicon.com](https://remixicon.com).
15
+
16
+ ## Installation
17
+
18
+ ```bash
19
+ npm install @remixicon/vue
20
+ # or
21
+ yarn add @remixicon/vue
22
+ # or
23
+ pnpm install @remixicon/vue
24
+ ```
25
+
26
+ ## Usage
27
+
28
+ ```vue
29
+ <script setup lang="ts">
30
+ import { RiHeartFill } from '@remixicon/vue'
31
+ </script>
32
+
33
+ <template>
34
+ <RiHeartFill size="36px" color="red" className="my-icon" />
35
+ </template>
36
+ ```
package/README_CN.md ADDED
@@ -0,0 +1,36 @@
1
+ [![logo](http://cdn.remixicon.com/logo-github.svg)](https://remixicon.com)
2
+
3
+ [![remixicon](https://img.shields.io/npm/v/remixicon.svg?labelColor=4A4A4A&color=006AFF&style=flat-square&label=remixicon)](https://www.npmjs.com/package/remixicon)
4
+ [![npm](https://img.shields.io/npm/v/@remixicon/vue.svg?labelColor=4A4A4A&color=006AFF&style=flat-square)](https://www.npmjs.com/package/@remixicon/vue)
5
+ [![downloads](https://img.shields.io/npm/dt/@remixicon/vue.svg?labelColor=4A4A4A&color=23AF5F&style=flat-square)](https://www.npmjs.com/package/@remixicon/vue)
6
+ [![](https://data.jsdelivr.com/v1/package/npm/@remixicon/vue/badge)](https://www.jsdelivr.com/package/npm/@remixicon/vue)
7
+ [![donate](https://img.shields.io/badge/-赞助-DA6429.svg?style=flat-square)](https://remixicon.com/support-us)
8
+
9
+ [English](./README.md) | 简体中文
10
+
11
+ Remix Icon 是一套面向设计师和开发者的开源图标库。我们在设计之初将图标风格定义为中性风格,以便适用于各种用户群的项目。与拼凑混搭的图标库不同,Remix Icon 的每一枚图标都是由设计师按照统一规范精心绘制的,并确保每一枚图标在拥有完美像素对齐的基础上风格一致且简洁易读。图标以 24x24 网格为基准,分为“线性图标”和“面型图标”两种风格。所有的图标均可免费用于个人项目和商业项目,Enjoy it~
12
+
13
+ [![icon demo](http://cdn.remixicon.com/preview.svg)](https://remixicon.com)
14
+ 前往官网查看整套图标库 [remixicon.com](https://remixicon.com).
15
+
16
+ ## 安装
17
+
18
+ ```bash
19
+ npm install @remixicon/vue
20
+ # or
21
+ yarn add @remixicon/vue
22
+ # or
23
+ pnpm install @remixicon/vue
24
+ ```
25
+
26
+ ## 使用
27
+
28
+ ```vue
29
+ <script setup lang="ts">
30
+ import { RiHeartFill } from '@remixicon/vue'
31
+ </script>
32
+
33
+ <template>
34
+ <RiHeartFill size="36px" color="red" className="my-icon" />
35
+ </template>
36
+ ```