-
-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathgradient-circle.tsx
58 lines (55 loc) · 1.25 KB
/
gradient-circle.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import * as React from 'react';
import { Circle } from 'rc-progress';
const Example = () => {
const circleContainerStyle = {
width: '250px',
height: '250px',
display: 'inline-block',
};
return (
<div>
<h3>Circle Progress {90}%</h3>
<div style={circleContainerStyle}>
<Circle
percent={90}
strokeWidth={6}
strokeLinecap="round"
strokeColor={{
'0%': '#108ee9',
'100%': '#87d068',
}}
dot={true}
/>
</div>
<h3>Circle Progress {100}%</h3>
<div style={circleContainerStyle}>
<Circle
percent={100}
strokeWidth={6}
strokeLinecap="round"
strokeColor={{
'100%': '#108ee9',
'0%': '#87d068',
}}
/>
</div>
<h3>Circle With Success Percent {65}%</h3>
<div style={circleContainerStyle}>
<Circle
percent={[65, 100]}
strokeWidth={6}
strokeLinecap="round"
strokeColor={[
'#87d068',
{
'100%': '#108ee9',
'0%': '#87d068',
},
]}
dot={{}}
/>
</div>
</div>
);
};
export default Example;