4 lines
422 B
TypeScript
4 lines
422 B
TypeScript
import { Awaitable, IconifyLoaderOptions } from "./types.js";
|
|
declare function mergeIconProps(svg: string, collection: string, icon: string, options?: IconifyLoaderOptions, propsProvider?: () => Awaitable<Record<string, string>>, afterCustomizations?: (props: Record<string, string>) => void): Promise<string>;
|
|
declare function getPossibleIconNames(icon: string): string[];
|
|
export { getPossibleIconNames, mergeIconProps }; |