mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 11:54:27 +00:00
499 B
499 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 2 |
|
zh-CN
适合放在较狭窄的区域内。
en-US
Appropriate for a narrow area.
import { Progress } from 'antd';
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,
);