UNPKG

@lobehub/ui

Version:

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

13 lines 418 B
import { DivProps, SvgProps } from "../../types/index.mjs"; import { FC } from "react"; //#region src/brand/BrandLoading/index.d.ts interface BrandLoadingProps { size?: number; text: FC<SvgProps & DivProps & { size?: number; }>; } declare const BrandLoading: FC<BrandLoadingProps & SvgProps & DivProps>; //#endregion export { BrandLoadingProps, BrandLoading as default }; //# sourceMappingURL=index.d.mts.map