import * as React from "react"; import { cn } from "@/lib/utils"; export interface InputProps extends React.InputHTMLAttributes {} const Input = React.forwardRef( ({ className, type, ...props }, ref) => ( ) ); Input.displayName = "Input"; const Textarea = React.forwardRef< HTMLTextAreaElement, React.TextareaHTMLAttributes >(({ className, ...props }, ref) => (