Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

lucide-static

Package Overview
Dependencies
Maintainers
1
Versions
470
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lucide-static

Lucide is a community-run fork of Feather Icons, open for anyone to contribute icons.

  • 0.16.15-beta.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
26K
decreased by-12.63%
Maintainers
1
Weekly downloads
 
Created
Source

Lucide Static

This package include the following lucide implementations:

  • All svg files
  • Javascript library containing strings of svgs.
  • Icon fonts
  • Svg sprite

What is lucide? Read it here.

Why lucide-static?

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 (Threeshaking). 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

Installation

Package Managers

yarn add lucide-static

# or

npm install lucide-static

CDN

<!-- Svg File -->
<img src="https://unpkg.com/lucide-static@latest/icons/home.svg">

<!-- Icon Font, not recommended for production! -->
<script src="https://unpkg.com/lucide-static@latest/font/Lucide.ttf"></script>

<!-- Icon Sprite, not recommended for production! -->
<img src="https://unpkg.com/lucide-static@latest/sprite.svg#home">

Usage

SVG Files

Svg file as image

To use it in for example html:

<!-- Svg File -->
<img src="~lucide/icons/home.svg">
.home-icon {
  background-image: url(~lucide/icons/home.svg)
}

Make sure you have the correct webpack loaders to make this work. url-loader

Svg file Inline

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

SVG Sprite

<!-- Icon Sprite, not recommended for production! -->
<img src="https://unpkg.com/lucide-static@latest/sprite.svg#home">

<!-- or -->
<svg
  xmlns="http://www.w3.org/2000/svg"
  width="24"
  height="24"
  viewBox="0 0 24 24"
>
  <use
    href="https://unpkg.com/lucide-static@latest/sprite.svg#alert-triangle"
  />
</svg>
As background image
.home-icon {
  background-image: url(https://unpkg.com/lucide-static@latest/sprite.svg#home)
}

Icon Font

@import("~lucide-static/font/Lucide.css")
<div class="icon-home"></div>

]

Node.js

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.

Example in node.js project
const express = require('express')
const { messageSquare } = require('lucide-static/lib')
const app = express()
const port = 3000

app.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}`)
})

Contributing

For more info on how to contribute please see the contribution guidelines.

Caught a mistake or want to contribute to the documentation? Edit this page on Github

Community

Join the community on our Discord server!

License

Lucide is totally free for commercial use and personally use, this software is licensed under the ISC License.

FAQs

Package last updated on 09 Nov 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc