Skip to content

Commit

Permalink
fix(lucide-svelte): Remove export mergeClasses in svelte Icon (#2119)
Browse files Browse the repository at this point in the history
* Remove export svelte icon

* formatting
  • Loading branch information
ericfennis committed May 21, 2024
1 parent 6abae7c commit d5f4275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/lucide-svelte/src/Icon.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
export let absoluteStrokeWidth: boolean = false
export let iconNode: IconNode
export const mergeClasses = <ClassType = string | undefined | null>(
const mergeClasses = <ClassType = string | undefined | null>(
...classes: ClassType[]
) => classes.filter((className, index, array) => {
return Boolean(className) && array.indexOf(className) === index;
Expand Down

0 comments on commit d5f4275

Please sign in to comment.