@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
14 lines (13 loc) • 360 B
JavaScript
import { jsx } from "react/jsx-runtime";
//#region src/brand/BrandLoading/index.tsx
const BrandLoading = ({ size, text, ...rest }) => {
return /* @__PURE__ */ jsx(text, {
className: "lobe-brand-loading",
size,
...rest
});
};
BrandLoading.displayName = "BrandLoading";
//#endregion
export { BrandLoading as default };
//# sourceMappingURL=index.mjs.map