import * as React from "react"; import { cn } from "@/src/utils/tailwind"; export interface InputProps extends React.InputHTMLAttributes { allowPasswordManager?: boolean; } const Input = React.forwardRef( ({ className, type, allowPasswordManager = false, ...props }, ref) => { return ( ); }, ); Input.displayName = "Input"; export { Input };