@grimlink/eleventy-plugin-lucide-icons

2.0.2 • Public • Published

Eleventy Plugin - Lucide Icons

NPM version license

This Eleventy plugin enables the inclusion of lucide-icons as inline SVG elements.

This enables you to use icons to enhance the visual appeal and usability of your website by adding them to your layouts with just a shortcode.

Installation

This eleventy plugin requires;

  • Eleventy v1.0.0 or higher

First install this plugin with;

npm install @grimlink/eleventy-plugin-lucide-icons

How to use

Add to Configuration File (Usually .eleventy.js) the following;

const lucideIcons = require("@grimlink/eleventy-plugin-lucide-icons");

module.exports = function(eleventyConfig) {
  eleventyConfig.addPlugin(lucideIcons);
};

Advanced usage:

const lucideIcons = require('eleventy-plugin-lucide-icons');

module.exports = function (eleventyConfig) {
    eleventyConfig.addPlugin(lucideIcons, {
        "class": "custom-class",
        "width": 24,
        "height": 24,
        "stroke": "currentColor",
        "stroke-width": 2
    });
};

What does it do?

The plugin turns 11ty shortcodes like this:

{% lucide "shopping-cart" %}

into HTML code like this:

<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  <circle cx="8" cy="21" r="1"/>
  <circle cx="19" cy="21" r="1"/>
  <path d="M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12"/>
</svg>

Adding options per icon

{% lucide "shopping-cart", { "stroke": "#1A202C", "stroke-width": "3" } %}

shorthand for width and height

{% lucide "shopping-cart", { "size": "32" } %}

Package Sidebar

Install

npm i @grimlink/eleventy-plugin-lucide-icons

Weekly Downloads

21

Version

2.0.2

License

MIT

Unpacked Size

6.37 kB

Total Files

4

Last publish

Collaborators

  • grimlink