diff --git a/lib/components/Actions/Button/index.tsx b/lib/components/Actions/Button/index.tsx index 6ccb24bb4..c41e7378c 100644 --- a/lib/components/Actions/Button/index.tsx +++ b/lib/components/Actions/Button/index.tsx @@ -1 +1,11 @@ -export { Button } from "@/shadcn/button" +import { Button as ShadcnButton } from "@/shadcn/button" +import { ComponentProps } from "react" + +const Button: React.FC< + Pick< + ComponentProps, + "variant" | "size" | "onClick" | "children" + > +> = ShadcnButton + +export { Button }