import { motion, type HTMLMotionProps } from "motion/react";
import clsx, { type ClassValue } from "clsx";
import classes from "./TextAreaInput.module.css";
type Props = Omit, "className"> & {
className?: ClassValue;
error?: boolean;
};
export default function TextAreaInput({ className, error, ...props }: Props) {
return (
);
}