astro-ghostcms/.pnpm-store/v3/files/51/0fab9195adf5316c0e3555beb5a...

12 lines
441 B
Plaintext
Raw Permalink Normal View History

2024-02-14 14:10:47 +00:00
import { CustomIconLoader, InlineCollection, IconifyLoaderOptions } from './types.js';
import '@antfu/utils';
import '../customisations/defaults.js';
import '@iconify/types';
/**
* 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 };