@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
22 lines (21 loc) • 548 B
JavaScript
import Center from "../../Flex/Center.mjs";
import Icon from "../../Icon/Icon.mjs";
import { jsx } from "react/jsx-runtime";
import { Loader2 } from "lucide-react";
//#region src/brand/LogoThree/Loading.tsx
const Loading = ({ size = 32 }) => {
return /* @__PURE__ */ jsx(Center, {
height: "100%",
justify: "center",
style: { position: "absolute" },
width: "100%",
children: /* @__PURE__ */ jsx(Icon, {
spin: true,
icon: Loader2,
size
})
});
};
//#endregion
export { Loading as default };
//# sourceMappingURL=Loading.mjs.map