From b8447640dfffca3c088963b4f6051d36eecf33d9 Mon Sep 17 00:00:00 2001 From: Leonmmcoset Date: Sun, 26 Oct 2025 21:04:12 +0800 Subject: [PATCH] upd --- src/component/Common/CircularProgress.tsx | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/src/component/Common/CircularProgress.tsx b/src/component/Common/CircularProgress.tsx index c9bf983..718eddf 100755 --- a/src/component/Common/CircularProgress.tsx +++ b/src/component/Common/CircularProgress.tsx @@ -7,18 +7,15 @@ export interface FacebookCircularProgressProps { color?: string; size?: number; thickness?: number; - bgColor?: string; fgColor?: string; } -const FacebookCircularProgress = forwardRef( - ({ sx, color, bgColor, fgColor, ...rest }: FacebookCircularProgressProps, ref) => { - return ( - - - - ); - }, -); +const FacebookCircularProgress = forwardRef(({ sx, color, fgColor }: FacebookCircularProgressProps, ref) => { + return ( + + + + ); +}); export default FacebookCircularProgress;