import { FormItem } from "@vertesia/ui/core";
interface FormLabelProps {
label?: string;
required?: boolean;
children: React.ReactNode | React.ReactNode[];
}
export function FormLabel({ label, required, children }: FormLabelProps) {
return (
{children}
) } interface FormErrorProps { children: React.ReactNode | React.ReactNode[]; } export function FormError({ children }: FormErrorProps) { return ({children}
) }