mirror of
https://github.com/coreui/coreui-icons.git
synced 2025-08-15 21:23:59 +02:00
init lerna
This commit is contained in:
@@ -14,8 +14,6 @@
|
|||||||
·
|
·
|
||||||
<a href="https://github.com/coreui/coreui-icons/issues/new?template=feature_request.md">Request feature</a>
|
<a href="https://github.com/coreui/coreui-icons/issues/new?template=feature_request.md">Request feature</a>
|
||||||
·
|
·
|
||||||
<a href="https://community.coreui.io/">Community</a>
|
|
||||||
·
|
|
||||||
<a href="https://blog.coreui.io/">Blog</a>
|
<a href="https://blog.coreui.io/">Blog</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
21
packages/icons-react/LICENSE
Normal file
21
packages/icons-react/LICENSE
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2021 creativeLabs Łukasz Holeczek
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
@@ -14,8 +14,6 @@
|
|||||||
·
|
·
|
||||||
<a href="https://github.com/coreui/coreui-icons/issues/new?template=feature_request.md">Request feature</a>
|
<a href="https://github.com/coreui/coreui-icons/issues/new?template=feature_request.md">Request feature</a>
|
||||||
·
|
·
|
||||||
<a href="https://community.coreui.io/">Community</a>
|
|
||||||
·
|
|
||||||
<a href="https://blog.coreui.io/">Blog</a>
|
<a href="https://blog.coreui.io/">Blog</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
@@ -34,14 +32,14 @@
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm install @coreui/icons
|
npm install @coreui/icons
|
||||||
npm install @coreui/icons-react@next
|
npm install @coreui/icons-react
|
||||||
```
|
```
|
||||||
|
|
||||||
or
|
or
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
yarn add @coreui/icons
|
yarn add @coreui/icons
|
||||||
yarn add @coreui/icons-react@next
|
yarn add @coreui/icons-react
|
||||||
```
|
```
|
||||||
|
|
||||||
## Use
|
## Use
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@coreui/icons-react",
|
"name": "@coreui/icons-react",
|
||||||
"version": "2.0.0-rc.6",
|
"version": "2.0.0",
|
||||||
"description": "Official React component for CoreUI Icons",
|
"description": "Official React component for CoreUI Icons",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"coreui",
|
"coreui",
|
||||||
@@ -26,15 +26,16 @@
|
|||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"module": "dist/index.es.js",
|
"module": "dist/index.es.js",
|
||||||
"jsnext:main": "dist/index.es.js",
|
"jsnext:main": "dist/index.es.js",
|
||||||
"typings": "dist/index.d.ts",
|
"types": "dist/index.d.ts",
|
||||||
"files": [
|
"files": [
|
||||||
"dist/",
|
"dist/",
|
||||||
"README.md"
|
"src/"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "rollup -c",
|
"build": "rollup -c",
|
||||||
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
|
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
|
||||||
"test": "jest --coverage",
|
"test": "jest --coverage",
|
||||||
|
"test:clear": "jest --clearCache",
|
||||||
"test:update": "jest --coverage --updateSnapshot"
|
"test:update": "jest --coverage --updateSnapshot"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@@ -12,12 +12,22 @@ export default {
|
|||||||
format: 'cjs',
|
format: 'cjs',
|
||||||
exports: 'named',
|
exports: 'named',
|
||||||
sourcemap: true,
|
sourcemap: true,
|
||||||
|
sourcemapPathTransform: (relativeSourcePath) => {
|
||||||
|
return relativeSourcePath
|
||||||
|
.replace('../../node_modules/', '../')
|
||||||
|
.replace('../packages/icons-react', '..')
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
file: pkg.module,
|
file: pkg.module,
|
||||||
format: 'es',
|
format: 'es',
|
||||||
exports: 'named',
|
exports: 'named',
|
||||||
sourcemap: true,
|
sourcemap: true,
|
||||||
|
sourcemapPathTransform: (relativeSourcePath) => {
|
||||||
|
return relativeSourcePath
|
||||||
|
.replace('../../node_modules/', '../')
|
||||||
|
.replace('../packages/icons-react', '..')
|
||||||
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
plugins: [
|
plugins: [
|
||||||
|
@@ -1,28 +1,27 @@
|
|||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img height="50" src="https://coreui.io/images/brands/coreui-icons.svg">
|
<a href="https://coreui.io/">
|
||||||
</p>
|
<img src="https://coreui.io/images/brand/coreui-icons.svg" alt="CoreUI Icons logo" height="50">
|
||||||
|
|
||||||
<p align="center">
|
|
||||||
<a href="https://www.npmjs.com/package/@coreui/icons">
|
|
||||||
<img alt="npm (scoped)" src="https://img.shields.io/npm/v/@coreui/icons">
|
|
||||||
</a>
|
|
||||||
<a href="https://www.npmjs.com/package/@coreui/icons">
|
|
||||||
<img alt="npm" src="https://img.shields.io/npm/dw/@coreui/icons">
|
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
# CoreUI Icons (1500+ Free icons)- Simply beautiful open source icons
|
<p align="center">
|
||||||
|
Open Source icons set with over 1500 simply beautiful icons, and components for Angular, React.js & Vue.js.
|
||||||
CoreUI Icons is an open-source icon set with more than 1500 icons in multiple formats SVG, PNG, and Webfonts. CoreUI Icons are beautifully crafted symbols for common actions and items. You can use them in your digital products for web or mobile app.
|
<br>
|
||||||
|
<a href="https://icons.coreui.io/docs/"><strong>Explore CoreUI Iconsdocs »</strong></a>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<a href="https://github.com/coreui/coreui-icons/issues/new?template=bug_report.md">Report bug</a>
|
||||||
|
·
|
||||||
|
<a href="https://github.com/coreui/coreui-icons/issues/new?template=feature_request.md">Request feature</a>
|
||||||
|
·
|
||||||
|
<a href="https://blog.coreui.io/">Blog</a>
|
||||||
|
</p>
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Table of Contents
|
## Table of Contents
|
||||||
|
|
||||||
- [CoreUI Icons (1500+ Free icons)- Simply beautiful open source icons](#coreui-icons-1500-free-icons--simply-beautiful-open-source-icons)
|
- [Preview & Docs](#preview--docs)
|
||||||
- [Table of Contents](#table-of-contents)
|
|
||||||
- [Preview & Docs](#preview--docs)
|
|
||||||
- [Installation](#installation)
|
- [Installation](#installation)
|
||||||
- [CDN](#cdn)
|
- [CDN](#cdn)
|
||||||
- [NPM](#npm)
|
- [NPM](#npm)
|
||||||
@@ -31,14 +30,16 @@ CoreUI Icons is an open-source icon set with more than 1500 icons in multiple fo
|
|||||||
- [Basic Use](#basic-use)
|
- [Basic Use](#basic-use)
|
||||||
- [SVG Sprites](#svg-sprites)
|
- [SVG Sprites](#svg-sprites)
|
||||||
- [SVG Symbols](#svg-symbols)
|
- [SVG Symbols](#svg-symbols)
|
||||||
- [CoreUI Icons for Angular](#coreui-icons-for-angular)
|
- [Usage with Frameworks](#usage)
|
||||||
- [CoreUI Icons for React.js](#coreui-icons-for-reactjs)
|
- [Angular](#angular)
|
||||||
- [CoreUI Icons for Vue.js](#coreui-icons-for-vuejs)
|
- [React.js](#reactjs)
|
||||||
|
- [Vue.js](#vuejs)
|
||||||
- [CoreUI Icons PRO](#coreui-icons-pro)
|
- [CoreUI Icons PRO](#coreui-icons-pro)
|
||||||
- [License](#license)
|
- [License](#license)
|
||||||
- [CoreUI Icons Free Icons](#coreui-icons-free-icons)
|
- [CoreUI Icons Free Icons](#coreui-icons-free-icons)
|
||||||
- [CoreUI Icons Brand and Flag Icons](#coreui-icons-brand-and-flag-icons)
|
- [CoreUI Icons Brand and Flag Icons](#coreui-icons-brand-and-flag-icons)
|
||||||
- [Brand Icons](#brand-icons)
|
- [Brand Icons](#brand-icons)
|
||||||
|
|
||||||
## Preview & Docs
|
## Preview & Docs
|
||||||
|
|
||||||
[https://coreui.io/icons/](https://coreui.io/icons/)
|
[https://coreui.io/icons/](https://coreui.io/icons/)
|
||||||
@@ -72,7 +73,7 @@ npm install @coreui/icons --save
|
|||||||
yarn add @coreui/icons
|
yarn add @coreui/icons
|
||||||
```
|
```
|
||||||
|
|
||||||
Or, you can also clone or [download this repository](https://github.com/coreui/coreui-icons/archive/master.zip) as zip.
|
Or, you can also clone or [download this repository](https://github.com/coreui/coreui-icons/archive/main.zip) as zip.
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
@@ -83,13 +84,7 @@ Please use `cil-` prefix for linear icons, `cib-` prefix for brand icons, and `c
|
|||||||
|
|
||||||
```html
|
```html
|
||||||
<i class="cil-energy"></i>
|
<i class="cil-energy"></i>
|
||||||
```
|
|
||||||
|
|
||||||
```html
|
|
||||||
<i class="cib-twitter"></i>
|
<i class="cib-twitter"></i>
|
||||||
```
|
|
||||||
|
|
||||||
```html
|
|
||||||
<i class="cif-us"></i>
|
<i class="cif-us"></i>
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -119,8 +114,8 @@ When you download your icon set, it comes with a sprites directory that contains
|
|||||||
```html
|
```html
|
||||||
<!-- Define the symbols -->
|
<!-- Define the symbols -->
|
||||||
<symbol id="cil-apple" viewBox="0 0 24 24">
|
<symbol id="cil-apple" viewBox="0 0 24 24">
|
||||||
<title>apple</title>
|
<title>apple</title>
|
||||||
<path d="M21.207 9.987c-0.497-1.275-1.29-2.262-2.293-2.863-0.25 0.477-0.524 0.888-0.835 1.267l0.010-0.013c0.002 0.001 0.004 0.002 0.005 0.003 1.494 0.859 2.364 3.054 2.114 5.338-0.414 3.784-1.563 6.377-3.236 7.302-1.087 0.601-2.444 0.516-4.031-0.254l-0.155-0.075h-1.143l-0.155 0.075c-1.588 0.77-2.944 0.856-4.031 0.254-1.673-0.925-2.822-3.518-3.236-7.302-0.25-2.284 0.619-4.479 2.114-5.338 0.445-0.259 0.979-0.411 1.549-0.411 0.011 0 0.023 0 0.034 0l-0.002-0c1.132 0 2.436 0.53 3.853 1.578l0.051 0.037s2.043-0.248 2.852-0.616c2.439-1.107 2.976-2.867 3.072-3.106 0.262-0.632 0.414-1.366 0.414-2.135 0-0.813-0.17-1.587-0.476-2.287l0.014 0.037-0.191-0.477-0.513 0.005c-3.151 0.036-5.692 2.598-5.692 5.755 0 0.255 0.017 0.507 0.049 0.754l-0.003-0.029c-0.886-0.496-1.747-0.813-2.573-0.944-1.169-0.186-2.241-0.005-3.186 0.538-1.038 0.596-1.855 1.601-2.364 2.906-0.463 1.186-0.638 2.57-0.493 3.895 0.475 4.344 1.859 7.267 4.001 8.452 0.655 0.37 1.438 0.588 2.272 0.588 0.010 0 0.021-0 0.031-0h-0.002c0.918-0 1.904-0.244 2.952-0.73h0.461c1.987 0.923 3.754 0.971 5.253 0.142 2.142-1.185 3.526-4.107 4.001-8.452 0.145-1.325-0.030-2.709-0.493-3.895zM15.376 2.851c0.322-0.143 0.697-0.251 1.088-0.305l0.022-0.003c0.106 0.354 0.167 0.761 0.167 1.182 0 2.15-1.593 3.927-3.663 4.215l-0.022 0.003c-0.106-0.354-0.167-0.76-0.167-1.181 0-1.743 1.048-3.242 2.547-3.901l0.027-0.011z"></path>
|
<path d="M21.207 9.987c-0.497-1.275-1.29-2.262-2.293-2.863-0.25 0.477-0.524 0.888-0.835 1.267l0.010-0.013c0.002 0.001 0.004 0.002 0.005 0.003 1.494 0.859 2.364 3.054 2.114 5.338-0.414 3.784-1.563 6.377-3.236 7.302-1.087 0.601-2.444 0.516-4.031-0.254l-0.155-0.075h-1.143l-0.155 0.075c-1.588 0.77-2.944 0.856-4.031 0.254-1.673-0.925-2.822-3.518-3.236-7.302-0.25-2.284 0.619-4.479 2.114-5.338 0.445-0.259 0.979-0.411 1.549-0.411 0.011 0 0.023 0 0.034 0l-0.002-0c1.132 0 2.436 0.53 3.853 1.578l0.051 0.037s2.043-0.248 2.852-0.616c2.439-1.107 2.976-2.867 3.072-3.106 0.262-0.632 0.414-1.366 0.414-2.135 0-0.813-0.17-1.587-0.476-2.287l0.014 0.037-0.191-0.477-0.513 0.005c-3.151 0.036-5.692 2.598-5.692 5.755 0 0.255 0.017 0.507 0.049 0.754l-0.003-0.029c-0.886-0.496-1.747-0.813-2.573-0.944-1.169-0.186-2.241-0.005-3.186 0.538-1.038 0.596-1.855 1.601-2.364 2.906-0.463 1.186-0.638 2.57-0.493 3.895 0.475 4.344 1.859 7.267 4.001 8.452 0.655 0.37 1.438 0.588 2.272 0.588 0.010 0 0.021-0 0.031-0h-0.002c0.918-0 1.904-0.244 2.952-0.73h0.461c1.987 0.923 3.754 0.971 5.253 0.142 2.142-1.185 3.526-4.107 4.001-8.452 0.145-1.325-0.030-2.709-0.493-3.895zM15.376 2.851c0.322-0.143 0.697-0.251 1.088-0.305l0.022-0.003c0.106 0.354 0.167 0.761 0.167 1.182 0 2.15-1.593 3.927-3.663 4.215l-0.022 0.003c-0.106-0.354-0.167-0.76-0.167-1.181 0-1.743 1.048-3.242 2.547-3.901l0.027-0.011z"></path>
|
||||||
</symbol>
|
</symbol>
|
||||||
|
|
||||||
<!-- Use the defined symbols -->
|
<!-- Use the defined symbols -->
|
||||||
@@ -142,17 +137,22 @@ Referencing an external SVG has the advantage that your icons get cached, with o
|
|||||||
```html
|
```html
|
||||||
<script defer src="https://unpkg.com/@coreui/icons/js/svgxuse.js"></script>
|
<script defer src="https://unpkg.com/@coreui/icons/js/svgxuse.js"></script>
|
||||||
```
|
```
|
||||||
### CoreUI Icons for Angular
|
|
||||||
|
## Usage with frameworks
|
||||||
|
|
||||||
|
If you are using a framework, CoreUI Icons are delivered with official components for Angular, React, and Vue.
|
||||||
|
|
||||||
|
### Angular
|
||||||
|
|
||||||
- Please check official repository [CoreUI Icons for Angular](https://github.com/coreui/coreui-icons-angular)
|
- Please check official repository [CoreUI Icons for Angular](https://github.com/coreui/coreui-icons-angular)
|
||||||
|
|
||||||
### CoreUI Icons for React.js
|
### CoreUI Icons for React.js
|
||||||
|
|
||||||
- Please check official repository [CoreUI Icons for React](https://github.com/coreui/coreui-icons-react)
|
- [CoreUI Icons for React](https://github.com/coreui/coreui-icons/packages/icons-react)
|
||||||
|
|
||||||
### CoreUI Icons for Vue.js
|
### CoreUI Icons for Vue.js
|
||||||
|
|
||||||
- Please check official repository [CoreUI Icons for Vue.js](https://github.com/coreui/coreui-icons-vue)
|
- [CoreUI Icons for Vue](https://github.com/coreui/coreui-icons/packages/icons-vue)
|
||||||
|
|
||||||
## CoreUI Icons PRO
|
## CoreUI Icons PRO
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user