mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 11:54:27 +00:00
924 B
924 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 11 |
|
zh-CN
linear-gradient 的封装。推荐只传两种颜色。
en-US
A package of linear-gradient. It is recommended to only pass two colors.
import { Progress } from 'antd';
const Demo = () => (
<div>
<Progress
strokeColor={{
'0%': '#108ee9',
'100%': '#87d068',
}}
percent={99.9}
/>
<Progress
strokeColor={{
from: '#108ee9',
to: '#87d068',
}}
percent={99.9}
status="active"
/>
<Progress
type="circle"
strokeColor={{
'0%': '#108ee9',
'100%': '#87d068',
}}
percent={90}
/>
<Progress
type="circle"
strokeColor={{
'0%': '#108ee9',
'100%': '#87d068',
}}
percent={100}
/>
</div>
);
ReactDOM.render(<Demo />, mountNode);