Lucide: A Community-Driven Icon Toolkit for Modern Web Development
This repository profile is provided by osrepos.com, an open source repository discovery platform.
Summary
Lucide is an open-source icon library, a fork of Feather Icons, offering over 1000 consistent SVG icons. It provides official packages for popular frameworks like React, Vue, and Svelte, making integration seamless for designers and developers. With its strong community and Figma plugin, Lucide is a versatile solution for enhancing UI/UX.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introdução
Lucide is a comprehensive, open-source icon library, serving as a community-driven fork of the popular Feather Icons. It offers over 1000 beautiful and consistent vector (SVG) icons, designed to be easily integrated into various digital and non-digital projects. The project aims to simplify the process of incorporating high-quality icons, providing official packages for a wide range of modern web frameworks and tools.
Instalação
Getting started with Lucide is straightforward. You can install the core package via npm or yarn, and then choose a framework-specific package depending on your project's needs.
For the core icon set:
npm install lucide
# or
yarn add lucide
For framework-specific integrations, such as React:
npm install lucide-react
# or
yarn add lucide-react
Refer to the official Lucide documentation for other framework packages like lucide-vue-next, lucide-svelte, lucide-angular, and more.
Exemplos
Integrating Lucide icons into your project is simple. Here's an example using lucide-react:
import { Camera, Home } from 'lucide-react';
function MyComponent() {
return (
<div>
<Home size={24} color="blue" />
<Camera size={36} strokeWidth={1.5} />
<p>Welcome to Lucide!</p>
</div>
);
}
export default MyComponent;
Each icon component accepts standard SVG attributes and additional props for size, color, and stroke width, allowing for easy customization.
Porquê usar
- Consistency and Quality: Lucide maintains a high standard of design consistency across its extensive icon set, ensuring a polished look for your applications.
- Open-Source and Community-Driven: Being open-source and community-maintained, Lucide benefits from continuous improvements and a vibrant ecosystem.
- Extensive Framework Support: With dedicated packages for React, Vue, Svelte, Angular, Solid, Preact, React Native, and Astro, Lucide offers seamless integration into almost any modern web stack.
- Figma Integration: Designers can leverage the official Lucide Figma plugin to easily browse and use icons directly within their design workflows.
- Customization: Icons are SVG-based, providing full control over size, color, and stroke properties, making them highly adaptable to your brand's aesthetic.
Links
Explore Lucide further through these official resources:
Related repositories
Similar repositories that may be relevant next.
Fluent UI System Icons: Modern, Cross-Platform Icons from Microsoft
May 3, 2026
Fluent System Icons offers a comprehensive collection of familiar, friendly, and modern icons developed by Microsoft. This repository provides these high-quality icons for various platforms, including Android, iOS, Flutter, and plain SVG. It's an excellent resource for developers and designers looking to enhance their applications with a consistent and contemporary visual style.
selfh.st/icons: A Curated Collection of Icons for Self-Hosted Software
November 26, 2025
selfh.st/icons is an extensive collection of logos and icons specifically designed for self-hosted and other software projects. Maintained by the selfh.st team, this repository offers a high-quality, consistent set of visual assets. Users can browse the collection online or integrate icons directly into their projects via jsDelivr.
Source repository
Open the original repository on GitHub.