/** * IconifyIcon Component * * Dynamic icon loading from Iconify API with automatic caching * Based on Iconify web component architecture */ import React from "react"; import type { IconifyIconProps } from "./types"; /** * IconifyIcon Component * * Renders dynamic icons from Iconify API with automatic caching * * @example * console.log('loaded')} * /> */ export declare function IconifyIcon({ name, size, color, rotate, flip, style, onLoad, onError, fallback, testID, }: IconifyIconProps): React.JSX.Element | null; //# sourceMappingURL=IconifyIcon.d.ts.map