Update from Vibe Studio

This commit is contained in:
Vibe Studio
2026-01-16 01:51:36 +00:00
parent a4605e311a
commit 58905d02c2
28599 changed files with 2179074 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
import type { SpinProps } from 'antd';
import React from 'react';
declare const PageLoading: React.FC<SpinProps & any>;
export { PageLoading };

View File

@@ -0,0 +1,24 @@
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
var _excluded = ["isLoading", "pastDelay", "timedOut", "error", "retry"];
import { Spin } from 'antd';
import React from 'react';
import { jsx as _jsx } from "react/jsx-runtime";
var PageLoading = function PageLoading(_ref) {
var isLoading = _ref.isLoading,
pastDelay = _ref.pastDelay,
timedOut = _ref.timedOut,
error = _ref.error,
retry = _ref.retry,
reset = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/_jsx("div", {
style: {
paddingBlockStart: 100,
textAlign: 'center'
},
children: /*#__PURE__*/_jsx(Spin, _objectSpread({
size: "large"
}, reset))
});
};
export { PageLoading };