🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

lucide-vue-next

Package Overview
Dependencies
Maintainers
1
Versions
544
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lucide-vue-next

A Lucide icon library package for Vue 3 applications

0.501.0
Source
npm
Version published
Weekly downloads
131K
-1.33%
Maintainers
1
Weekly downloads
 
Created

What is lucide-vue-next?

The lucide-vue-next package is a Vue 3 component library for using Lucide icons. Lucide is an open-source icon library that provides a wide range of customizable and scalable vector icons. The lucide-vue-next package allows developers to easily integrate these icons into their Vue 3 applications.

What are lucide-vue-next's main functionalities?

Icon Usage

This feature allows you to use Lucide icons in your Vue 3 components. By importing the LucideIcon component from lucide-vue-next, you can easily render any icon by specifying its name as a prop.

<template>
  <div>
    <LucideIcon name="activity" />
  </div>
</template>

<script>
import { defineComponent } from 'vue';
import { LucideIcon } from 'lucide-vue-next';

export default defineComponent({
  components: {
    LucideIcon
  }
});
</script>

Customizable Icons

Lucide icons are highly customizable. You can change their color, size, and other properties by passing additional props to the LucideIcon component. This makes it easy to adapt the icons to fit the design of your application.

<template>
  <div>
    <LucideIcon name="activity" color="red" size="48" />
  </div>
</template>

<script>
import { defineComponent } from 'vue';
import { LucideIcon } from 'lucide-vue-next';

export default defineComponent({
  components: {
    LucideIcon
  }
});
</script>

Other packages similar to lucide-vue-next

Keywords

Lucide

FAQs

Package last updated on 18 Apr 2025

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