UNPKG

@lobehub/ui

Version:

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

12 lines (11 loc) 328 B
import { FC } from 'react'; import { DivProps, SvgProps } from "../../types"; import './style.css'; export interface BrandLoadingProps { size?: number; text: FC<SvgProps & DivProps & { size?: number; }>; } declare const BrandLoading: FC<BrandLoadingProps & SvgProps & DivProps>; export default BrandLoading;