/* eslint-disable */
import {
DetailedHTMLProps,
forwardRef,
InputHTMLAttributes,
RefObject,
} from "react";
import { cn } from "@/lib/utils";
interface FieldProps
extends DetailedHTMLProps<
InputHTMLAttributes,
HTMLTextAreaElement
> {
label?: string;
name: string;
}
export const TextArea = forwardRef(
({ label, className, name, ...props }: FieldProps, forwardedRef) => {
return (
);
}
);