ant-design/components/spin/demo/custom-indicator.md
2022-05-21 22:14:15 +08:00

436 B

order title
6
zh-CN en-US
自定义指示符 Custom spinning indicator

zh-CN

使用自定义指示符。

en-US

Use custom loading indicator.

import { LoadingOutlined } from '@ant-design/icons';
import { Spin } from 'antd';
import React from 'react';

const antIcon = <LoadingOutlined style={{ fontSize: 24 }} spin />;

const App: React.FC = () => <Spin indicator={antIcon} />;

export default App;