@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
14 lines (13 loc) • 408 B
text/typescript
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 { BrandLoading, BrandLoadingProps };
//# sourceMappingURL=index.d.mts.map