fuc-new/doc/node_modules/@iconify/utils/lib/loader/custom.d.ts
hellcat 6adbc04d4b 1
2025-10-03 17:17:08 +08:00

6 lines
350 B
TypeScript

import { CustomIconLoader, IconifyLoaderOptions, InlineCollection } from "./types.js";
/**
* Get custom icon from inline collection or using loader
*/
declare function getCustomIcon(custom: CustomIconLoader | InlineCollection, collection: string, icon: string, options?: IconifyLoaderOptions): Promise<string | undefined>;
export { getCustomIcon };