@hopepaddy/dumi-theme
Version:
dumi-theme-hopepaddy is a documentation site theme package designed for dumi2. It provides a more beautiful and user-friendly development and reading experience based on @lobehub/ui
28 lines • 821 B
JavaScript
import { Icon } from '@lobehub/ui';
import { Typography } from 'antd';
import { LoaderCircle } from 'lucide-react';
import { memo } from 'react';
import { Center, Flexbox } from 'react-layout-kit';
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
export default /*#__PURE__*/memo(function () {
return /*#__PURE__*/_jsx(Center, {
flex: 1,
height: '100%',
width: '100%',
children: /*#__PURE__*/_jsxs(Flexbox, {
align: 'center',
gap: 8,
children: [/*#__PURE__*/_jsx("div", {
children: /*#__PURE__*/_jsx(Icon, {
icon: LoaderCircle,
size: 'large',
spin: true
})
}), /*#__PURE__*/_jsx(Typography.Text, {
type: 'secondary',
children: "Loading..."
})]
})
});
});