UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

15 lines (14 loc) 580 B
import { IconProps } from "../type.mjs"; import * as react67 from "react"; import { ReactNode } from "react"; //#region src/Icon/components/IconProvider.d.ts type IconContentConfig = Omit<IconProps, 'icon' | 'ref'>; declare const IconContext: react67.Context<IconContentConfig>; declare const IconProvider: react67.NamedExoticComponent<{ children: ReactNode; config?: IconContentConfig; }>; declare const useIconContext: () => IconContentConfig; //#endregion export { IconContentConfig, IconContext, IconProvider, useIconContext }; //# sourceMappingURL=IconProvider.d.mts.map