---
category: 2
title: 分段进度条
title_en: Progress bar with success segment
---

 zh-CN

标准的进度条。

 en-US

A standard progress bar.

````jsx
import { Tooltip, Progress } from 'parkball';

ReactDOM.render(
  <Tooltip title="3 done / 3 in progress / 4 to do">
    <Progress percent={60} successPercent={30} />
  </Tooltip>,
  mountNode);
````
