import { ComponentProps } from "react"; import { Textarea } from "../ui/textarea"; import { Label } from "@/components/ui/label"; import { cn } from "@/lib/utils/cn"; export function TextareaField({ label, className = "", labelClassName = "", inputClassName = "", ...props }: ComponentProps & { label?: string className?: string labelClassName?: string inputClassName?: string }) { return (
{label && }