This package include the following lucide implementations:
This package is suitable for very specific use cases for example if you want to use icon fonts, svg sprites, normal svgs or Common.js Svg strings in your javascript project.
⚠️ It is not recommended to use this package for svg sprites or icon fonts for web pages/applications, for prototyping it is ok. We recommend to bundlers for web applications to make sure you only bundle the used icons from this icon library (Treeshaking). Otherwise it will load all the icons, making you webpage loading slower. Threeshaking is only available in the packages: lucide, lucide-react, lucide-vue, lucide-vue-next, lucide-angular, lucide-preact
yarn add lucide-static# ornpm install lucide-static
<!-- Svg File --><img src="https://unpkg.com/lucide-static@latest/icons/home.svg"><!-- Icon Font --><style>@font-face {font-family: "LucideIcons";src: url(https://unpkg.com/lucide-static@latest/font/Lucide.ttf) format("truetype");}</style>
Checkout the codesandbox examples.
To use it in for example html:
<!-- Svg File --><img src="~lucide-static/icons/home.svg">
.home-icon {background-image: url(~lucide-static/icons/home.svg)}
Make sure you have the correct webpack loaders to make this work. url-loader
You can simply import each svg by targeting lucide-static/icons/{icon-name}.svg
.
To use svgs in your project you can for example use a svg loader.
import arrowRightIcon from 'lucide-static/icons/arrow-right'// return string of a svg
You may need additional loader for this.
<!-- Icon Sprite, not recommended for production! --><img src="lucide-static/sprite.svg#home"><!-- or --><svgwidth="24"height="24"fill="none"stroke="currentColor"stroke-width="2"stroke-linecap="round"stroke-linejoin="round"><use href="#alert-triangle" /></svg><svg>...sprite svg</svg>
If you'd prefer, you can use CSS to hold your base SVG properties
.lucide-icon {width: 24px;height: 24px;stroke: currentColor;fill: none;stroke-width: 2;stroke-linecap: round;stroke-linejoin: round;}
and update the svg as follows
<svgxmlns="http://www.w3.org/2000/svg"class="lucide-icon"><usehref="#alert-triangle"/></svg><svg>...sprite svg</svg>
@import("~lucide-static/font/Lucide.css")
<div class="icon-home"></div>
To use lucide icons in your Nodejs project you can import each icon as:
const { messageSquare } = require('lucide-static/lib')
Note: Each icon name is in camelCase.
const express = require('express')const { messageSquare } = require('lucide-static/lib')const app = express()const port = 3000app.get('/', (req, res) => {res.send(`<!DOCTYPE html><html><head><title>Page Title</title></head><body><h1>Lucide Icons</h1><p>This is a lucide icon ${messageSquare}</p></body></html>`)})app.listen(port, () => {console.log(`Example app listening at http://localhost:${port}`)})