2021-10-01 09:19:36 +02:00
# Lucide Vue
Implementation of the lucide icon library for Vue applications.
2022-02-01 19:26:07 +01:00
> ⚠️ This version of lucide is for Vue 2, For Vue 3 got to [lucide-vue-next](lucide-vue-next)
2021-10-01 09:19:36 +02:00
## Installation
```sh
yarn add lucide-vue
# or
npm install lucide-vue
```
## 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.
2022-02-01 19:26:07 +01:00
``` html
2021-10-01 09:19:36 +02:00
<template>
<Camera
color="red"
:size="32"
/>
</template>
<script>
// Returns Vue component
import { Camera } from 'lucide-vue';
export default {
name: "My Component",
components: { Camera }
}
</script>
```
### Props
| name | type | default
| ------------ | -------- | --------
| `size` | * Number * | 24
| `color` | * String * | currentColor
| `strokeWidth` | * Number * | 2
| `defaultClass` | * String * | lucide-icon
### Custom props
You can also pass custom props that will be added in the svg as attributes.
2022-02-01 19:26:07 +01:00
``` html
2021-10-01 09:19:36 +02:00
<template>
<Camera fill="red" />
</template>
```
### One generic icon component
It is possible to create one generic icon component to load icons.
2022-02-01 19:26:07 +01:00
> ⚠️ Example below importing all EsModules, caution using this example, not recommended when you using bundlers, your application build size will grow strongly.
2021-10-01 09:19:36 +02:00
#### Icon Component Example
2022-02-01 19:26:07 +01:00
``` html
2021-10-01 09:19:36 +02:00
<template>
<component :is="icon" />
</template>
<script>
import * as icons from "lucide-vue";
export default {
props: {
name: {
type: String,
required: true,
},
},
computed: {
icon() {
return icons[this.name];
},
},
};
</script>
```
##### Then you can use it like this
2022-02-01 19:26:07 +01:00
``` html
2021-10-01 09:19:36 +02:00
<template>
<div id="app">
<Icon name="Airplay" />
</div>
</template>
```