2021-02-10 21:23:37 +01:00
<p align=center><img width="410" src="https://lucide.dev/logo-text.svg" alt="Lucide Logo"></p>
2020-10-25 22:16:39 +01:00
2020-10-06 20:23:26 +02:00
# Lucide
2020-06-08 16:39:52 +01:00
2020-10-06 23:03:11 +02:00

[](https://www.npmjs.com/package/lucide)
2020-06-26 17:20:06 +02:00
[](https://discord.gg/EH6nSts)
2020-06-08 16:39:52 +01:00
2020-10-06 20:23:26 +02:00
## What is Lucide?
2020-06-08 16:39:52 +01:00
2020-10-06 20:23:26 +02:00
Lucide is a community-run fork of [Feather Icons ](https://github.com/feathericons/feather ), open for anyone to contribute icons.
2021-03-23 19:26:50 +01:00
Started after growing disaffection of the moderation of the [Feather Icons ](https://github.com/feathericons/feather ) project, with over 300+ open issues and over 100+ open PRs, this project is no longer maintained. The owner of the project stopped merging icons and want to keep the project like it now is. Hundreds of developers/designer wasted their time trying to contribute, what a shame.
We're trying to expanding the icon set as much as possible while keeping it nice-looking, we do it as a community of devs and designers, join us!
### Why choose Lucide over Feather Icons
- Lucide already expended the icon set by 130+ in less then a year, so more icons to work with.
- Well maintained code base.
- Active community.
2020-10-05 20:30:34 +02:00
2020-06-08 16:39:52 +01:00
## Table of Contents
2020-10-20 17:22:22 +02:00
* [Installation ](#installation )
* [Package managers ](#package-managers )
* [CDN ](#cdn )
2020-06-08 16:39:52 +01:00
* [Usage ](#usage )
2021-03-23 19:26:50 +01:00
* [Web ](#web )
* [React ](#react )
2021-05-20 21:24:54 +02:00
* [Vue 2 ](#vue-2 )
* [Vue 3 ](#vue-3 )
2021-04-11 15:48:50 +04:30
* [Angular ](#angular )
2020-06-08 16:39:52 +01:00
* [Figma ](#figma )
* [Contributing ](#contributing )
2020-10-20 17:22:22 +02:00
* [Community ](#community )
2020-06-08 16:39:52 +01:00
* [License ](#license )
## Usage
2020-10-06 20:23:26 +02:00
At its core, Lucide is a collection of [SVG ](https://svgontheweb.com/#svg ) files. This means that you can use Feather icons in all the same ways you can use SVGs (e.g. `img` , `background-image` , `inline` , `object` , `embed` , `iframe` ). Here's a helpful article detailing the many ways SVGs can be used on the web: [SVG on the Web – Implementation Options ](https://svgontheweb.com/#implementation )
The following are additional ways you can use Lucide.
With the Javascript library you can easily incorporate the icon you want in your webpage.
2021-03-23 19:26:50 +01:00
### Web
2020-10-06 20:23:26 +02:00
2021-03-23 19:26:50 +01:00
Implementation of the lucide icon library for web applications.
2020-10-06 20:23:26 +02:00
2021-03-23 19:26:50 +01:00
```sh
npm install lucide
2020-10-06 20:23:26 +02:00
2021-03-23 19:26:50 +01:00
#or
2020-10-06 20:23:26 +02:00
2021-03-23 19:26:50 +01:00
yarn add lucide
2020-10-06 20:23:26 +02:00
```
2021-04-13 18:36:08 +04:30
For more details, see the [documentation ](https://github.com/lucide-icons/lucide/tree/master/packages/lucide#lucide ).
2020-06-08 16:39:52 +01:00
2021-03-23 19:26:50 +01:00
### React
2020-12-02 13:48:39 +01:00
2021-03-23 19:26:50 +01:00
Implementation of the lucide icon library for react applications.
2020-12-02 13:48:39 +01:00
2020-12-02 15:11:29 +01:00
```sh
yarn add lucide-react
# or
npm install lucide-react
```
2021-03-23 19:26:50 +01:00
For more details, see the [documentation ](https://github.com/lucide-icons/lucide/tree/master/packages/lucide-react#lucide-react ).
2020-12-02 13:48:39 +01:00
2021-05-20 21:24:54 +02:00
### Vue 2
2021-02-22 20:33:43 +01:00
2021-03-23 19:26:50 +01:00
Implementation of the lucide icon library for vue applications.
2021-02-22 20:33:43 +01:00
```sh
yarn add lucide-vue
# or
npm install lucide-vue
```
2021-03-23 19:26:50 +01:00
For more details, see the [documentation ](https://github.com/lucide-icons/lucide/tree/master/packages/lucide-vue#lucide-vue ).
2021-02-22 20:33:43 +01:00
2021-05-20 21:24:54 +02:00
### Vue 3
Implementation of the lucide icon library for vue applications.
```sh
yarn add lucide-vue-next
# or
npm install lucide-vue-next
```
For more details, see the [documentation ](https://github.com/lucide-icons/lucide/tree/master/packages/lucide-vue-next#lucide-vue-next ).
2021-04-11 15:48:50 +04:30
### Angular
```sh
yarn add lucide-angular
# or
npm install lucide-angular
```
2021-04-14 22:15:35 +02:00
For more details, see the [documentation ](https://github.com/lucide-icons/lucide/tree/packages/lucide-angular#lucide-angular ).
2021-04-11 15:48:50 +04:30
2020-06-08 16:39:52 +01:00
### Figma
2021-03-23 19:26:50 +01:00
The lucide figma plugin.
Visit [Figma community page ](https://www.figma.com/community/plugin/939567362549682242/Lucide-Icons ) to install the plugin.
<img width="420" src="https://www.figma.com/community/plugin/939567362549682242/thumbnail" alt="Figma Lucide Cover">
2020-06-08 16:39:52 +01:00
## Contributing
2020-10-06 20:23:26 +02:00
For more info on how to contribute please see the [contribution guidelines ](https://github.com/lucide-icons/lucide/blob/master/CONTRIBUTING.md ).
2020-06-08 16:39:52 +01:00
2020-10-06 20:23:26 +02:00
Caught a mistake or want to contribute to the documentation? [Edit this page on Github ](https://github.com/lucide-icons/lucide/blob/master/README.md )
2020-06-08 16:39:52 +01:00
2020-06-26 17:20:06 +02:00
## Community
2020-10-05 20:30:34 +02:00
Join the community on our [Discord ](https://discord.gg/EH6nSts ) server!
2020-06-26 17:20:06 +02:00
2020-06-08 16:39:52 +01:00
## License
2021-03-23 19:26:50 +01:00
Lucide is totally free for commercial use and personally use, this software is licensed under the [ISC License ](https://github.com/lucide-icons/lucide/blob/master/LICENSE ).
## Sponsors
2021-02-08 06:53:49 +00:00
2021-03-23 19:26:50 +01:00
<a href="https://vercel.com?utm_source=lucide&utm_campaign=oss">
<img src="./site/public/vercel.svg" alt="Powered by Vercel" width="200" />
</a>