[WEB-6734] fix: circular progress indicator stroke color#8802
This commit is contained in:
parent
5396d438a3
commit
ce401c723e
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ interface ICircularProgressIndicator {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function CircularProgressIndicator(props: ICircularProgressIndicator) {
|
export function CircularProgressIndicator(props: ICircularProgressIndicator) {
|
||||||
const { size = 40, percentage = 25, strokeWidth = 6, strokeColor = "stroke-success", children } = props;
|
const { size = 40, percentage = 25, strokeWidth = 6, strokeColor = "stroke-success-secondary", children } = props;
|
||||||
|
|
||||||
const sqSize = size;
|
const sqSize = size;
|
||||||
const radius = (size - strokeWidth) / 2;
|
const radius = (size - strokeWidth) / 2;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue