mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-12 11:55:24 +08:00
11 lines
276 B
C#
11 lines
276 B
C#
<div>
|
|
<Progress Percent=50 Steps=3 StrokeColor=_color />
|
|
<br />
|
|
<Progress Percent=30 Steps=5 StrokeColor=_color />
|
|
<br />
|
|
<Progress Percent=100 Steps=5 Size=ProgressSize.Small StrokeColor=_color />
|
|
</div>
|
|
|
|
@code{
|
|
private string _color = "#1890ff";
|
|
} |