From d79d753f4ced94fda3f150d58e8e505f9fbdba8f Mon Sep 17 00:00:00 2001 From: Lea Verou Date: Fri, 2 May 2025 17:36:08 -0400 Subject: [PATCH] Remove unused import --- src/components/icon/library.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/components/icon/library.ts b/src/components/icon/library.ts index 07df92b78..e4e4baf6b 100644 --- a/src/components/icon/library.ts +++ b/src/components/icon/library.ts @@ -1,13 +1,7 @@ import { flatten } from '../../utilities/deep.js'; import type WaIcon from '../icon/icon.js'; import defaultLibrary from './library.default.js'; -import type { - IconLibrary, - IconLibraryCache, - IconLibraryFetched, - IconLibraryResolver, - UnregisteredIconLibrary, -} from './types.d.ts'; +import type { IconLibrary, IconLibraryCache, IconLibraryFetched, UnregisteredIconLibrary } from './types.d.ts'; export type { IconLibrary, IconLibraryCache, IconLibraryFetched, UnregisteredIconLibrary } from './types.d.ts';