You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
448 B
18 lines
448 B
2 years ago
|
import React from 'react';
|
||
|
import { Progress } from 'antd';
|
||
|
import { red, green } from '@ant-design/colors';
|
||
|
|
||
|
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;
|