Files
honey-fe/src/components/form/TextAreaInput/TextAreaInput.tsx

19 lines
487 B
TypeScript
Raw Normal View History

2026-03-12 00:42:41 +02:00
import { motion, type HTMLMotionProps } from "motion/react";
import clsx, { type ClassValue } from "clsx";
import classes from "./TextAreaInput.module.css";
type Props = Omit<HTMLMotionProps<"textarea">, "className"> & {
className?: ClassValue;
error?: boolean;
};
export default function TextAreaInput({ className, error, ...props }: Props) {
return (
<motion.textarea
{...props}
className={clsx(classes.input, error && classes.error, className)}
/>
);
}