@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
13 lines • 561 B
text/typescript
import { IconProps } from "../type.mjs";
import { ReactNode } from "react";
//#region src/Icon/components/IconProvider.d.ts
type IconContentConfig = Omit<IconProps, 'icon' | 'ref'>;
declare const IconContext: import("react").Context<IconContentConfig>;
declare const IconProvider: import("react").NamedExoticComponent<{
children: ReactNode;
config?: IconContentConfig;
}>;
declare const useIconContext: () => IconContentConfig;
//#endregion
export { IconContentConfig, IconContext, IconProvider, useIconContext };
//# sourceMappingURL=IconProvider.d.mts.map