import { Box } from "@mui/material"; import { forwardRef } from "react"; import LinearProgressComponent from "./LinearProgress"; export interface FacebookCircularProgressProps { sx?: any; color?: string; size?: number; thickness?: number; bgColor?: string; fgColor?: string; } const FacebookCircularProgress = forwardRef( ({ sx, color, bgColor, fgColor, ...rest }: FacebookCircularProgressProps, ref) => { return ( ); }, ); export default FacebookCircularProgress;