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