import { ComponentProps, forwardRef } from "react"; import { cn } from "@/lib/utils"; const ControlledInput = forwardRef>( ({ className, type, ...props }, ref) => { return ( ); } ); ControlledInput.displayName = "ControlledInput"; export { ControlledInput };