[WEB-6734] fix: circular progress indicator stroke color#8802

This commit is contained in:
b-saikrishnakanth 2026-03-26 18:13:57 +05:30 committed by GitHub
parent 5396d438a3
commit ce401c723e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,7 +15,7 @@ interface 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 radius = (size - strokeWidth) / 2;