From ce401c723e6a3407fc4870a425b2b289f82c2fdf Mon Sep 17 00:00:00 2001 From: b-saikrishnakanth <130811169+b-saikrishnakanth@users.noreply.github.com> Date: Thu, 26 Mar 2026 18:13:57 +0530 Subject: [PATCH] [WEB-6734] fix: circular progress indicator stroke color#8802 --- packages/ui/src/progress/circular-progress-indicator.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/src/progress/circular-progress-indicator.tsx b/packages/ui/src/progress/circular-progress-indicator.tsx index a28747936..b67952232 100644 --- a/packages/ui/src/progress/circular-progress-indicator.tsx +++ b/packages/ui/src/progress/circular-progress-indicator.tsx @@ -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;