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;