Lucide Icons

Browse 1641 free Lucide SVG icons. Download SVG, copy as JSX, PNG or Base64. ISC licensed. Designed by Lucide Contributors. Styles: Precise Shapes, Has Padding, Uses Stroke.

1,641 icons ISC UI 24px 24px grid by Lucide Contributors
+F

Copy & download Lucide icons

Click any icon above to open the detail panel. Four export formats are available instantly — no sign-up required.

SVG

Raw vector markup. Paste directly into HTML or React components. Scales to any size without quality loss.

JSX / TSX

React-ready component. Drop into any React or Next.js project. Works with shadcn/ui, Radix, and Tailwind CSS.

PNG

Raster export at 1×, 2× and 3× for email templates, Figma imports, app assets, and Open Graph images.

Base64

Inline data URI — embed icons in CSS background-image, email HTML, or anywhere an image URL is needed.

Works with shadcn/ui

Copy the JSX format and paste directly into any shadcn/ui component. Alternatively, install lucide-react and use via @iconify/react — fully tree-shakeable, no icon font loading required.

About Lucide

Lucide is one of the most popular open-source SVG icon libraries for modern web development, offering 1,500+ clean, consistent line icons free for personal and commercial use under the MIT license. Born as a community-maintained fork of Feather Icons after Feather development stalled, Lucide has grown into an independent icon system with a consistent 2px stroke, 24px grid, and rounded line caps — crisp at every size from 16px to 48px. Each Lucide icon is hand-crafted for optical balance, making the set feel cohesive across any interface. First-class packages for React, Vue, Svelte, and Angular are maintained alongside a plain JavaScript build. Search, copy SVG code, export as JSX or Base64, or download as PNG — all free. Compared with Heroicons, Lucide offers a wider catalog; compared with Tabler, it has a more refined aesthetic. Ideal for SaaS products, documentation sites, dashboards, and component libraries using Tailwind CSS or shadcn/ui. MIT licensed — no attribution required.

How to use Lucide icons

Package

lucide-react

License SPDX

ISC

Grid Size

24px

Sample Icons

circle-check, award, house

Install

bash
npm install lucide-react

React

tsx
import { Search, Home, Settings } from 'lucide-react';

export default function App() {
  return <Search size={24} strokeWidth={1.5} />;
}

HTML / CDN

html
<!-- Lucide via CDN (ES module) -->
<script type="module">
  import { createIcons, Search } from 'https://cdn.jsdelivr.net/npm/lucide@latest/dist/esm/lucide.js';
  createIcons({ icons: { Search } });
</script>
<i data-lucide="search"></i>

Via Iconify · any framework

tsx
import { Icon } from '@iconify/react';

export default function App() {
  return <Icon icon="lucide:icon-name" width={24} />;
}

Package stats

Build-time npm metadata cached weekly • Last refresh May 12, 2026

lucide-react

A Lucide icon library package for React applications.

v1.14.0
Score 70%
Popularity 24%
Quality 88%
Maintenance 100%

License

ISC

Weekly downloads

73M

Monthly downloads

323.5M

Total downloads

1.3B

Unpacked size

29 MB

Last published

Apr 29, 2026

Registry updated

Apr 29, 2026

Compare Lucide with similar icon packs

Frequently Asked Questions

Yes. Lucide Icons is MIT licensed — you can use it in personal and commercial projects without attribution.

Install with npm install lucide-react, then import: import { Search } from "lucide-react";. You can also copy SVG directly from AllSVGIcons.

Yes. Lucide started as an actively maintained fork of Feather Icons after Feather development stalled. It is API-compatible but has grown to 5× more icons.