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 11import Button , { ButtonProps } from "antd/es/button" ;
2+ import Spin from "antd/es/spin" ;
3+ import LoadingOutlined from "@ant-design/icons/LoadingOutlined"
24import styled , { css } from "styled-components" ;
35import { Loading } from "./Loading" ;
46import * as React from "react" ;
@@ -206,10 +208,15 @@ const TacoButton = forwardRef(
206208 { props . icon }
207209 { props . children }
208210 </ span >
209- < Loading
211+ { /* <Loading
210212 style={loadingStyle}
211213 backgroundColor={loadingBackground}
212214 color={loadingColor}
215+ /> */ }
216+ < Spin
217+ size = "small"
218+ indicator = { < LoadingOutlined spin style = { { color : 'white' } } /> }
219+ style = { loadingStyle }
213220 />
214221 </ >
215222 ) : (
You can’t perform that action at this time.
0 commit comments