cjd-parkball
Version:
> 中后台业务组件库,中后台就像公园,进入需要买门票(登录),所以以 Parkball(公园球) 命名,公园内必定捕获!作为一个组件库,提供使用方法文档,方便开发者的调用
27 lines (20 loc) • 494 B
Markdown
---
category: 2
title: 小型进度条
title_en: Mini size progress bar
---
zh-CN
适合放在较狭窄的区域内。
en-US
Appropriate for a narrow area.
````jsx
import { Progress } from 'parkball';
ReactDOM.render(
<div style={{ width: 170 }}>
<Progress percent={30} size="small" />
<Progress percent={50} size="small" status="active" />
<Progress percent={70} size="small" status="exception" />
<Progress percent={100} size="small" />
</div>,
mountNode);
````