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