File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
client/packages/lowcoder-design/src/components Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
1
import Button , { ButtonProps } from "antd/es/button" ;
2
+ import Spin from "antd/es/spin" ;
3
+ import LoadingOutlined from "@ant-design/icons/LoadingOutlined"
2
4
import styled , { css } from "styled-components" ;
3
5
import { Loading } from "./Loading" ;
4
6
import * as React from "react" ;
@@ -206,10 +208,15 @@ const TacoButton = forwardRef(
206
208
{ props . icon }
207
209
{ props . children }
208
210
</ span >
209
- < Loading
211
+ { /* <Loading
210
212
style={loadingStyle}
211
213
backgroundColor={loadingBackground}
212
214
color={loadingColor}
215
+ /> */ }
216
+ < Spin
217
+ size = "small"
218
+ indicator = { < LoadingOutlined spin style = { { color : 'white' } } /> }
219
+ style = { loadingStyle }
213
220
/>
214
221
</ >
215
222
) : (
You can’t perform that action at this time.
0 commit comments