2021-10-01 09:19:36 +02:00
# Lucide React
Implementation of the lucide icon library for react applications
## Installation
2023-06-12 22:10:15 +02:00
::: code-group
```sh [pnpm]
pnpm install lucide-react
2022-10-27 08:19:45 +02:00
```
2021-10-01 09:19:36 +02:00
2023-06-12 22:10:15 +02:00
```sh [yarn]
yarn add lucide-react
```
2021-10-01 09:19:36 +02:00
2023-06-12 22:10:15 +02:00
```sh [npm]
2021-10-01 09:19:36 +02:00
npm install lucide-react
```
2024-11-29 09:11:30 +01:00
```sh [bun]
bun add lucide-react
```
2023-06-12 22:10:15 +02:00
:::
2021-10-01 09:19:36 +02:00
## How to use
2023-09-02 13:48:45 -06:00
Lucide is built with ES Modules, so it's completely tree-shakable.
2023-06-12 22:10:15 +02:00
2023-09-02 13:48:45 -06:00
Each icon can be imported as a React component, which renders an inline SVG element. This way, only the icons that are imported into your project are included in the final bundle. The rest of the icons are tree-shaken away.
2021-10-01 09:19:36 +02:00
### Example
2023-06-12 22:10:15 +02:00
Additional props can be passed to adjust the icon:
2021-10-01 09:19:36 +02:00
2023-06-12 22:10:15 +02:00
```jsx
2021-10-01 09:19:36 +02:00
import { Camera } from 'lucide-react';
// Usage
const App = () => {
2022-10-27 08:19:45 +02:00
return <Camera color="red" size={48} />;
2021-10-01 09:19:36 +02:00
};
export default App;
```
2023-06-12 22:10:15 +02:00
## Props
2021-10-01 09:19:36 +02:00
2023-04-20 16:08:34 +02:00
| name | type | default |
| --------------------- | --------- | ------------ |
| `size` | * number * | 24 |
| `color` | * string * | currentColor |
| `strokeWidth` | * number * | 2 |
| `absoluteStrokeWidth` | * boolean * | false |
2021-10-01 09:19:36 +02:00
2023-06-12 22:10:15 +02:00
### Applying props
2021-10-01 09:19:36 +02:00
2023-09-02 13:48:45 -06:00
To customize the appearance of an icon, you can pass custom properties as props directly to the component. The component accepts all SVG attributes as props, which allows flexible styling of the SVG elements. See the list of SVG Presentation Attributes on [MDN ](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/Presentation ).
2021-10-01 09:19:36 +02:00
2023-06-12 22:10:15 +02:00
```jsx
2021-10-01 09:19:36 +02:00
// Usage
const App = () => {
2023-06-12 22:10:15 +02:00
return <Camera size={48} fill="red" />;
2021-10-01 09:19:36 +02:00
};
```
2024-04-26 17:59:04 +02:00
## With Lucide lab or custom icons
[Lucide lab ](https://github.com/lucide-icons/lucide-lab ) is a collection of icons that are not part of the Lucide main library.
They can be used by using the `Icon` component.
All props like regular lucide icons can be passed to adjust the icon appearance.
### Using the `Icon` component
This creates a single icon based on the iconNode passed and renders a Lucide icon component.
```jsx
import { Icon } from 'lucide-react';
2025-05-03 09:28:29 +02:00
import { coconut } from '@lucide/lab ';
2024-04-26 17:59:04 +02:00
const App = () => (
2025-05-03 09:28:29 +02:00
<Icon iconNode={coconut} />
2024-04-26 17:59:04 +02:00
);
```
2025-01-10 14:35:28 +01:00
## Dynamic Icon Component
2021-10-01 09:19:36 +02:00
2025-06-27 17:13:44 +02:00
It is possible to create one generic icon component to load icons. But it is not recommended, since it is importing all icons during the build. This increases build time and the different modules it will create.
2021-10-01 09:19:36 +02:00
2025-01-10 14:35:28 +01:00
`DynamicIcon` is useful for applications that want to show icons dynamically by icon name. For example, when using a content management system with where icon names are stored in a database.
2023-07-13 16:39:02 +02:00
2025-01-10 14:35:28 +01:00
For static use cases, it is recommended to import the icons directly.
2021-10-01 09:19:36 +02:00
2025-01-10 14:35:28 +01:00
The same props can be passed to adjust the icon appearance. The `name` prop is required to load the correct icon.
2021-10-01 09:19:36 +02:00
2023-06-12 22:10:15 +02:00
```jsx
2025-01-10 14:35:28 +01:00
import { DynamicIcon } from 'lucide-react/dynamic';
2023-07-13 16:39:02 +02:00
2025-01-10 14:35:28 +01:00
const App = () => (
<DynamicIcon name="camera" color="red" size={48} />
);
2023-07-13 16:39:02 +02:00
```