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.
19 lines
368 B
19 lines
368 B
2 years ago
|
import React from 'react';
|
||
|
import { Progress } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<>
|
||
|
<Progress
|
||
|
type="circle"
|
||
|
trailColor="#e6f4ff"
|
||
|
percent={60}
|
||
|
strokeWidth={20}
|
||
|
width={14}
|
||
|
format={number => `进行中,已完成${number}%`}
|
||
|
/>
|
||
|
<span style={{ marginLeft: 8 }}>代码发布</span>
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
export default App;
|