UNPKG

zent

Version:

一套前端设计语言和基于React的实现

24 lines (20 loc) 332 B
--- order: 3 zh-CN: title: 自定义尺寸 en-US: title: Custom size --- ```jsx import { Progress } from 'zent'; class App extends Component { render() { return ( <div className="zent-progress-demo"> <Progress percent={70} width={300} strokeWidth={5} /> </div> ); } } ReactDOM.render(<App />, mountNode); ```