"use client"; import { useTheme } from "@mui/material"; const SvgLoading = ({ width, height, color = null }) => { const theme = useTheme(); const fillColor = color || theme.palette.primary.main; return ( ); }; export default SvgLoading;