From a149458593d5342c6cb486da81566f7cc49a590a Mon Sep 17 00:00:00 2001 From: Pablo Lara Date: Wed, 9 Oct 2024 06:47:10 +0200 Subject: [PATCH] chore: rename custom components --- .../custom/{CustomAlertModal.tsx => custom-alert-modal.tsx} | 0 components/ui/custom/{CustomInput.tsx => custom-input.tsx} | 0 .../ui/custom/{CustomLoader.tsx => custom-loader.tsx} | 0 components/ui/custom/index.ts | 6 +++--- 4 files changed, 3 insertions(+), 3 deletions(-) rename components/ui/custom/{CustomAlertModal.tsx => custom-alert-modal.tsx} (100%) rename components/ui/custom/{CustomInput.tsx => custom-input.tsx} (100%) rename components/ui/custom/{CustomLoader.tsx => custom-loader.tsx} (100%) diff --git a/components/ui/custom/CustomAlertModal.tsx b/components/ui/custom/custom-alert-modal.tsx similarity index 100% rename from components/ui/custom/CustomAlertModal.tsx rename to components/ui/custom/custom-alert-modal.tsx diff --git a/components/ui/custom/CustomInput.tsx b/components/ui/custom/custom-input.tsx similarity index 100% rename from components/ui/custom/CustomInput.tsx rename to components/ui/custom/custom-input.tsx diff --git a/components/ui/custom/CustomLoader.tsx b/components/ui/custom/custom-loader.tsx similarity index 100% rename from components/ui/custom/CustomLoader.tsx rename to components/ui/custom/custom-loader.tsx diff --git a/components/ui/custom/index.ts b/components/ui/custom/index.ts index 5cf748708d..703b673471 100644 --- a/components/ui/custom/index.ts +++ b/components/ui/custom/index.ts @@ -1,7 +1,7 @@ +export * from "./custom-alert-modal"; export * from "./custom-box"; export * from "./custom-button"; export * from "./custom-dropdown-filter"; -export * from "./CustomAlertModal"; +export * from "./custom-input"; +export * from "./custom-loader"; export * from "./CustomButtonClientAction"; -export * from "./CustomInput"; -export * from "./CustomLoader";