mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 20:47:42 +01:00
* Lucide svelte (#1) * Update peerDependencies to support Svelte 5 * Bump svelte version * Bump @testing-library/svelte version * Remove alias in vitest.config.ts that causes tests to fail due to deprecated svelte/internal API * Convert to svelte 5 syntax * Bump vite & @sveltejs/vite-plugin-svelte version * Fix error during render when children prop is missing & fix components being mounted on the server during tests * Update test snapshots to reflect the differences in the html generated by svelte 5 * Convert class attribute to new array syntax with built-in clsx * Convert export template to svelte 5 syntax * Move svelte 5 to separate directory * Update snapshots * Update docs * fix(icon): change variable declaration from let to const in Icon.svelte * Lucide svelte (#1) (#2727) * Update peerDependencies to support Svelte 5 * Bump svelte version * Bump @testing-library/svelte version * Remove alias in vitest.config.ts that causes tests to fail due to deprecated svelte/internal API * Convert to svelte 5 syntax * Bump vite & @sveltejs/vite-plugin-svelte version * Fix error during render when children prop is missing & fix components being mounted on the server during tests * Update test snapshots to reflect the differences in the html generated by svelte 5 * Convert class attribute to new array syntax with built-in clsx * Convert export template to svelte 5 syntax * Revert changes in lucide-svelte library * Update package lock * Update test files * Formatting * Update clean command * Fix build * Update packages * update deps * Fix export script * Format code * Revert version number change in package json * Update workflows --------- Co-authored-by: Aurélien Richard <56389380+aurelienrichard@users.noreply.github.com>
324 lines
6.5 KiB
Markdown
324 lines
6.5 KiB
Markdown
# Lucide Svelte
|
|
|
|
Implementation of the lucide icon library for svelte applications.
|
|
|
|
## Installation
|
|
|
|
::: code-group
|
|
|
|
```sh [pnpm]
|
|
pnpm add @lucide/svelte
|
|
```
|
|
|
|
```sh [yarn]
|
|
yarn add @lucide/svelte
|
|
```
|
|
|
|
```sh [npm]
|
|
npm install @lucide/svelte
|
|
```
|
|
|
|
```sh [bun]
|
|
bun add @lucide/svelte
|
|
```
|
|
:::
|
|
> `@lucide/svelte` is only for Svelte 5, for Svelte 4 use the `lucide-svelte` package.
|
|
|
|
## How to use
|
|
|
|
Lucide is built with ES Modules, so it's completely tree-shakable.
|
|
|
|
Each icon can be imported as a Svelte 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.
|
|
|
|
### Example
|
|
|
|
Default usage:
|
|
|
|
```svelte
|
|
<script>
|
|
import { Skull } from '@lucide/svelte';
|
|
</script>
|
|
|
|
<Skull />
|
|
```
|
|
|
|
Additional props can be passed to adjust the icon:
|
|
|
|
```svelte
|
|
<script>
|
|
import { Camera } from '@lucide/svelte';
|
|
</script>
|
|
|
|
<Camera color="#ff3e98" />
|
|
```
|
|
|
|
For faster builds and load times, you can import icons directly from the `@lucide/svelte/icons` directory:
|
|
|
|
```svelte
|
|
<script>
|
|
import CircleAlert from '@lucide/svelte/icons/circle-alert';
|
|
</script>
|
|
|
|
<CircleAlert color="#ff3e98" />
|
|
```
|
|
|
|
## Props
|
|
|
|
| name | type | default |
|
|
| --------------------- | --------- | ------------ |
|
|
| `size` | _number_ | 24 |
|
|
| `color` | _string_ | currentColor |
|
|
| `strokeWidth` | _number_ | 2 |
|
|
| `absoluteStrokeWidth` | _boolean_ | false |
|
|
|
|
### Applying props
|
|
|
|
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).
|
|
|
|
```svelte
|
|
<script>
|
|
import { Phone } from '@lucide/svelte';
|
|
</script>
|
|
|
|
<Phone fill="#333" />
|
|
```
|
|
|
|
This results a filled phone icon.
|
|
|
|
## Types
|
|
|
|
The package includes type definitions for all icons. This is useful if you want to dynamically load icons with the `svelte:component` directive whether you are using TypeScript or JSDoc.
|
|
|
|
### TypeScript Example
|
|
|
|
::: code-group
|
|
|
|
```svelte [Svelte 5]
|
|
<script lang="ts">
|
|
import { Home, Library, Cog, type Icon as IconType } from '@lucide/svelte';
|
|
|
|
type MenuItem = {
|
|
name: string;
|
|
href: string;
|
|
icon: typeof IconType;
|
|
};
|
|
|
|
const menuItems: MenuItem[] = [
|
|
{
|
|
name: 'Home',
|
|
href: '/',
|
|
icon: Home
|
|
},
|
|
{
|
|
name: 'Blog',
|
|
href: '/blog',
|
|
icon: Library
|
|
},
|
|
{
|
|
name: 'Projects',
|
|
href: '/projects',
|
|
icon: Cog
|
|
}
|
|
];
|
|
</script>
|
|
|
|
{#each menuItems as item}
|
|
{@const Icon = item.icon}
|
|
<a href={item.href}>
|
|
<Icon />
|
|
<span>{item.name}</span>
|
|
</a>
|
|
{/each}
|
|
```
|
|
|
|
```svelte [Svelte 4]
|
|
<script lang="ts">
|
|
import { Home, Library, Cog, type Icon } from '@lucide/svelte';
|
|
import type { ComponentType } from 'svelte';
|
|
|
|
type MenuItem = {
|
|
name: string;
|
|
href: string;
|
|
icon: ComponentType<Icon>;
|
|
};
|
|
|
|
const menuItems: MenuItem[] = [
|
|
{
|
|
name: 'Home',
|
|
href: '/',
|
|
icon: Home
|
|
},
|
|
{
|
|
name: 'Blog',
|
|
href: '/blog',
|
|
icon: Library
|
|
},
|
|
{
|
|
name: 'Projects',
|
|
href: '/projects',
|
|
icon: Cog
|
|
}
|
|
];
|
|
</script>
|
|
|
|
{#each menuItems as item}
|
|
<a href={item.href}>
|
|
<svelte:component this={item.icon} />
|
|
<span>{item.name}</span>
|
|
</a>
|
|
{/each}
|
|
```
|
|
:::
|
|
|
|
### JSDoc Example
|
|
|
|
::: code-group
|
|
|
|
```svelte [Svelte 5]
|
|
<script>
|
|
import { Home, Library, Cog } from '@lucide/svelte';
|
|
|
|
/**
|
|
* @typedef {Object} MenuItem
|
|
* @property {string} name
|
|
* @property {string} href
|
|
* @property {typeof import('@lucide/svelte').Icon} icon
|
|
*/
|
|
|
|
/** @type {MenuItem[]} */
|
|
const menuItems = [
|
|
{
|
|
name: 'Home',
|
|
href: '/',
|
|
icon: Home
|
|
},
|
|
{
|
|
name: 'Blog',
|
|
href: '/blog',
|
|
icon: Library
|
|
},
|
|
{
|
|
name: 'Projects',
|
|
href: '/projects',
|
|
icon: Cog
|
|
}
|
|
];
|
|
</script>
|
|
|
|
{#each menuItems as item}
|
|
{@const Icon = item.icon}
|
|
<a href={item.href}>
|
|
<Icon />
|
|
<span>{item.name}</span>
|
|
</a>
|
|
{/each}
|
|
```
|
|
|
|
```svelte [Svelte 4]
|
|
<script>
|
|
import { Home, Library, Cog } from '@lucide/svelte';
|
|
|
|
/**
|
|
* @typedef {Object} MenuItem
|
|
* @property {string} name
|
|
* @property {string} href
|
|
* @property {import('svelte').ComponentType<import('@lucide/svelte').Icon>} icon
|
|
*/
|
|
|
|
/** @type {MenuItem[]} */
|
|
const menuItems = [
|
|
{
|
|
name: 'Home',
|
|
href: '/',
|
|
icon: Home,
|
|
},
|
|
{
|
|
name: 'Blog',
|
|
href: '/blog',
|
|
icon: Library,
|
|
},
|
|
{
|
|
name: 'Projects',
|
|
href: '/projects',
|
|
icon: Cog,
|
|
}
|
|
];
|
|
</script>
|
|
|
|
{#each menuItems as item}
|
|
<a href={item.href}>
|
|
<svelte:component this={item.icon} />
|
|
<span>{item.name}</span>
|
|
</a>
|
|
{/each}
|
|
```
|
|
|
|
:::
|
|
|
|
For more details about typing the `svelte:component` directive, see the [Svelte documentation](https://svelte.dev/docs/typescript#types-componenttype).
|
|
|
|
## 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 the 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.
|
|
|
|
```svelte
|
|
<script>
|
|
import { Icon } from '@lucide/svelte';
|
|
import { burger, sausage } from '@lucide/lab';
|
|
</script>
|
|
|
|
<Icon iconNode={burger} />
|
|
<Icon iconNode={sausage} color="red"/>
|
|
```
|
|
|
|
## One generic icon component
|
|
|
|
It is possible to create one generic icon component to load icons, but it is not recommended.
|
|
|
|
::: danger
|
|
The example below imports all ES Modules, so exercise caution when using it. Importing all icons will significantly increase the build size of the application, negatively affecting its performance. This is especially important when using bundlers like `Webpack`, `Rollup`, or `Vite`.
|
|
:::
|
|
|
|
### Icon Component Example
|
|
|
|
::: code-group
|
|
|
|
```svelte [Svelte 5]
|
|
<script>
|
|
import * as icons from '@lucide/svelte';
|
|
let { name } = $props();
|
|
|
|
const Icon = icons[name];
|
|
</script>
|
|
|
|
<Icon {...props} />
|
|
```
|
|
|
|
```svelte [Svelte 4]
|
|
<script>
|
|
import * as icons from '@lucide/svelte';
|
|
export let name;
|
|
</script>
|
|
|
|
<svelte:component this={icons[name]} {...$$props} />
|
|
```
|
|
|
|
:::
|
|
|
|
#### Using the Icon Component
|
|
|
|
```svelte
|
|
<script>
|
|
import LucideIcon from './LucideIcon';
|
|
</script>
|
|
|
|
<LucideIcon name="Menu" />
|
|
```
|