File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
client/packages/lowcoder/src/pages/editor Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ import { default as Skeleton } from "antd/es/skeleton";
16
16
import { default as Spin } from "antd/es/spin" ;
17
17
import { useTemplateViewMode , useUserViewMode } from "util/hooks" ;
18
18
import { ProductLoading } from "components/ProductLoading" ;
19
+ import { default as LoadingOutlined } from "@ant-design/icons/LoadingOutlined" ;
19
20
20
21
const StyledSkeleton = styled ( Skeleton ) `
21
22
padding: 16px;
@@ -40,7 +41,7 @@ export const EditorLoadingSpin = (props: { height?: string | number }) => {
40
41
const { height = "100vh" } = props ;
41
42
return (
42
43
< div style = { { height : height } } >
43
- < StyledSpin />
44
+ < StyledSpin size = "large" indicator = { < LoadingOutlined spin /> } />
44
45
</ div >
45
46
) ;
46
47
} ;
You can’t perform that action at this time.
0 commit comments