export type LoadingInitialValues = {
  isLoading: boolean;
  setIsLoading: (state: boolean, spinnerColor?: string) => void;
};
