fix(docs): Icon Component Example for Svelte 5 does not compile (#3416)

This commit is contained in:
Zlendy
2025-07-28 15:58:31 +02:00
committed by GitHub
parent a6f4a08bda
commit d3bafc2848

View File

@@ -296,7 +296,7 @@ The example below imports all ES Modules, so exercise caution when using it. Imp
```svelte [Svelte 5]
<script>
import * as icons from '@lucide/svelte';
let { name } = $props();
let { name, ...props } = $props();
const Icon = icons[name];
</script>