From 410bf504c83629c2076d09e69ea37c30aab31735 Mon Sep 17 00:00:00 2001 From: b-saikrishnakanth Date: Thu, 26 Mar 2026 15:49:32 +0530 Subject: [PATCH] fix: circular progress indicator stroke color --- 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 a2874793645..b679522322b 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;