diff --git a/components/kleap-form.tsx b/components/kleap-form.tsx index 14dc666..471832a 100644 --- a/components/kleap-form.tsx +++ b/components/kleap-form.tsx @@ -13,7 +13,7 @@ import { } from "@/components/ui/form"; import { Button } from "./ui/button"; -interface KleapFormField { +export interface KleapFormField { name: string; label: string; type: @@ -56,7 +56,7 @@ interface KleapFormField { * /> * ``` */ -interface KleapFormProps { +export interface KleapFormProps { formId: string; title?: string; description?: string;