"use client"; import { forwardRef, type InputHTMLAttributes } from "react"; import { cn } from "@/lib/utils"; export type InputProps = InputHTMLAttributes; /** * Text input whose focus ring grows from a hairline to two px. Pass * aria-invalid to switch the ring to the destructive color. */ export const Input = forwardRef(function Input( { className, ...props }, ref, ) { return ( ); });