From fa604af6eaf24bab389d0449437dea0afc22ff82 Mon Sep 17 00:00:00 2001 From: Pablo Lara Date: Tue, 8 Oct 2024 10:01:43 +0200 Subject: [PATCH] chore: styling tweaks for custom box --- components/ui/custom/{CustomBox.tsx => custom-box.tsx} | 2 +- components/ui/custom/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename components/ui/custom/{CustomBox.tsx => custom-box.tsx} (93%) diff --git a/components/ui/custom/CustomBox.tsx b/components/ui/custom/custom-box.tsx similarity index 93% rename from components/ui/custom/CustomBox.tsx rename to components/ui/custom/custom-box.tsx index 4ceba6b9be..be4da14410 100644 --- a/components/ui/custom/CustomBox.tsx +++ b/components/ui/custom/custom-box.tsx @@ -19,7 +19,7 @@ export const CustomBox = ({ {(preTitle || subTitle || title) && ( <> - + {preTitle && (

{preTitle}

)} diff --git a/components/ui/custom/index.ts b/components/ui/custom/index.ts index 3b8bd9f162..5cf748708d 100644 --- a/components/ui/custom/index.ts +++ b/components/ui/custom/index.ts @@ -1,7 +1,7 @@ +export * from "./custom-box"; export * from "./custom-button"; export * from "./custom-dropdown-filter"; export * from "./CustomAlertModal"; -export * from "./CustomBox"; export * from "./CustomButtonClientAction"; export * from "./CustomInput"; export * from "./CustomLoader";