mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 05:05:48 +08:00
2cdf586291
* chore: fix lint * chore: fix lint * test: fix 16 * fix: lint
18 lines
448 B
TypeScript
18 lines
448 B
TypeScript
import React from 'react';
|
|
import { red, green } from '@ant-design/colors';
|
|
import { Progress } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<Progress percent={50} steps={3} />
|
|
<br />
|
|
<Progress percent={30} steps={5} />
|
|
<br />
|
|
<Progress percent={100} steps={5} size="small" strokeColor={green[6]} />
|
|
<br />
|
|
<Progress percent={60} steps={5} strokeColor={[green[6], green[6], red[5]]} />
|
|
</>
|
|
);
|
|
|
|
export default App;
|