diff --git a/components/ui/custom/CustomButtonClientAction.tsx b/components/ui/custom/CustomButtonClientAction.tsx deleted file mode 100644 index bafc945e17..0000000000 --- a/components/ui/custom/CustomButtonClientAction.tsx +++ /dev/null @@ -1,30 +0,0 @@ -"use client"; - -import { Button, CircularProgress } from "@nextui-org/react"; -import clsx from "clsx"; -import { useFormStatus } from "react-dom"; - -interface CustomButtonClientActionProps { - buttonLabel: string; - danger?: boolean; -} - -export const CustomButtonClientAction = ({ - buttonLabel, - danger = false, -}: CustomButtonClientActionProps) => { - const { pending } = useFormStatus(); - - return ( - - ); -}; diff --git a/components/ui/custom/index.ts b/components/ui/custom/index.ts index 130646a89e..58a00e4d1d 100644 --- a/components/ui/custom/index.ts +++ b/components/ui/custom/index.ts @@ -5,4 +5,3 @@ export * from "./custom-dropdown-filter"; export * from "./custom-input"; export * from "./custom-loader"; export * from "./custom-radio"; -export * from "./CustomButtonClientAction";