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