diff --git a/packages/lucide-astro/src/createLucideIcon.ts b/packages/lucide-astro/src/createLucideIcon.ts index d55c49f940..ab6b0fd506 100644 --- a/packages/lucide-astro/src/createLucideIcon.ts +++ b/packages/lucide-astro/src/createLucideIcon.ts @@ -1,12 +1,7 @@ import { mergeClasses, toKebabCase } from './utils'; import type { AstroComponentFactory } from 'astro/runtime/server/render/astro/factory.js'; import type { IconNode } from './types'; -import { - render, - renderSlot, - createComponent, - renderComponent, -} from 'astro/compiler-runtime'; +import { render, renderSlot, createComponent, renderComponent } from 'astro/compiler-runtime'; import Icon from './Icon.astro'; export default (iconName: string, iconNode: IconNode): AstroComponentFactory => {