"use client" import * as React from "react" import { cn } from "@/lib/utils" export interface InputProps extends React.InputHTMLAttributes { error?: boolean } const Input = React.forwardRef(({ className, type, error, ...props }, ref) => { return ( ) }) Input.displayName = "Input" export { Input } export interface TextareaProps extends React.TextareaHTMLAttributes { error?: boolean } const Textarea = React.forwardRef(({ className, error, ...props }, ref) => { return (