mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
- Updated import statements in ComponentSettingsModal, ComponentValuePickerModal, ComponentsModal, DocumentationViewer, RunForm, RunModal, Utils, VariableModal, Workflow, WorkflowStatus, Config, EntityFieldType, and various API utility files to reflect the new directory structure. - Ensured all imports from "Common/Types" are now sourced from "../../../Types" to maintain consistency and improve module resolution.
14 lines
417 B
TypeScript
14 lines
417 B
TypeScript
import Loader, { LoaderType } from "../Loader/Loader";
|
|
import { VeryLightGray } from "../../../Types/BrandColors";
|
|
import React, { ReactElement } from "react";
|
|
|
|
const CompactLoader: () => JSX.Element = (): ReactElement => {
|
|
return (
|
|
<div className="my-5 w-full flex justify-center">
|
|
<Loader loaderType={LoaderType.Bar} color={VeryLightGray} size={200} />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default CompactLoader;
|