# Lucide Vue Implementation of the lucide icon library for Vue applications. > ⚠️ This version of lucide is for Vue 2, For Vue 3 got to [lucide-vue-next](lucide-vue-next) ## Installation ```sh yarn add lucide-vue ``` or ```sh npm install lucide-vue ``` ## How to use It's build with ESmodules so it's completely tree-shakable. Each icon can be imported as a vue component. ### Example You can pass additional props to adjust the icon. ```html ``` ### Props | name | type | default | | ----------------------- | --------- | ------------ | | `size` | *number* | 24 | | `color` | *string* | currentColor | | `stroke-width` | *number* | 2 | | `absolute-stroke-width` | *boolean* | false | | `default-class` | *string* | lucide-icon | ### Custom props You can also pass custom props that will be added in the svg as attributes. ```html ``` ### One generic icon component It is possible to create one generic icon component to load icons. > ⚠️ 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 ```html ``` ##### Then you can use it like this ```html ```