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

lucide-vue-next

Package Overview
Dependencies
Maintainers
1
Versions
505
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lucide-vue-next

Lucide Vue 3 Package

  • 0.15.25
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
62K
decreased by-15.96%
Maintainers
1
Weekly downloads
 
Created
Source

Lucide Vue Next

Implementation of the lucide icon library for Vue 3 applications.

What is lucide? Read it here.

:warning: This version of lucide is for Vue 3, For Vue 2 got to lucide-vue-next

Installation

yarn add lucide-vue-next

# or

npm install lucide-vue-next

How to use

It's build with ESmodules so it's completely threeshakable. Each icon can be imported as a vue component.

Example

You can pass additional props to adjust the icon.

<template>
  <Camera
    color="red"
    :size="32"
  />
</template>

<script>
// Returns Vue component
import { Camera } from 'lucide-vue-next';

export default {
  name: "My Component",
  components: { Camera }
}

</script>

Props

nametypedefault
sizeNumber24
colorStringcurrentColor
strokeWidthNumber2
defaultClassStringlucide-icon

Custom props

You can also pass custom props that will be added in the svg as attributes.

<template>
  <Camera fill="red" />
</template>

One generic icon component

It is possible to create one generic icon component to load icons.

:warning: Example below importing all EsModules, caution using this example, not recommended when you using bundlers, your application build size will grow strongly.

Icon Component Example
<template>
  <component :is="icon" />
</template>

<script>
import * as icons from "lucide-vue-next";

export default {
  props: {
    name: {
      type: String,
      required: true,
    },
  },
  computed: {
    icon() {
      return icons[this.name];
    },
  },
};
</script>
Then you can use it like this
<template>
  <div id="app">
    <Icon name="Airplay" />
  </div>
</template>

FAQs

Package last updated on 24 Jun 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