UNPKG

cjd-parkball

Version:

> 中后台业务组件库,中后台就像公园,进入需要买门票(登录),所以以 Parkball(公园球) 命名,公园内必定捕获!作为一个组件库,提供使用方法文档,方便开发者的调用

26 lines (19 loc) 450 B
--- category: 2 title: 小型进度圈 title_en: Mini size circular progress bar --- zh-CN 小一号的圈形进度。 en-US A smaller circular progress bar. ````jsx import { Progress } from 'parkball'; ReactDOM.render( <div> <Progress type="circle" percent={30} width={80} /> <Progress type="circle" percent={70} width={80} status="exception" /> <Progress type="circle" percent={100} width={80} /> </div>, mountNode); ````