---
category: 2
title: 自定义指示符
title_en: Custom spinning indicator
---

 zh-CN

使用自定义指示符。

 en-US

Use custom loading indicator.

````jsx
import { Spin, Icon } from 'parkball';

const antIcon = <Icon type="loading" style={{ fontSize: 24 }} spin />;

ReactDOM.render(<Spin indicator={antIcon} />, mountNode);
````
